[
  {
    "path": ".claude-plugin/marketplace.json",
    "content": "{\n  \"name\": \"anthropic-agent-skills\",\n  \"owner\": {\n    \"name\": \"Keith Lazuka\",\n    \"email\": \"klazuka@anthropic.com\"\n  },\n  \"metadata\": {\n    \"description\": \"Anthropic example skills\",\n    \"version\": \"1.0.0\"\n  },\n  \"plugins\": [\n    {\n      \"name\": \"document-skills\",\n      \"description\": \"Collection of document processing suite including Excel, Word, PowerPoint, and PDF capabilities\",\n      \"source\": \"./\",\n      \"strict\": false,\n      \"skills\": [\n        \"./skills/xlsx\",\n        \"./skills/docx\",\n        \"./skills/pptx\",\n        \"./skills/pdf\"\n      ]\n    },\n    {\n      \"name\": \"example-skills\",\n      \"description\": \"Collection of example skills demonstrating various capabilities including skill creation, MCP building, visual design, algorithmic art, internal communications, web testing, artifact building, Slack GIFs, and theme styling\",\n      \"source\": \"./\",\n      \"strict\": false,\n      \"skills\": [\n        \"./skills/algorithmic-art\",\n        \"./skills/brand-guidelines\",\n        \"./skills/canvas-design\",\n        \"./skills/doc-coauthoring\",\n        \"./skills/frontend-design\",\n        \"./skills/internal-comms\",\n        \"./skills/mcp-builder\",\n        \"./skills/skill-creator\",\n        \"./skills/slack-gif-creator\",\n        \"./skills/theme-factory\",\n        \"./skills/web-artifacts-builder\",\n        \"./skills/webapp-testing\"\n      ]\n    }\n    ,\n    {\n      \"name\": \"claude-api\",\n      \"description\": \"Claude API and SDK documentation skill for building LLM-powered applications\",\n      \"source\": \"./\",\n      \"strict\": false,\n      \"skills\": [\n        \"./skills/claude-api\"\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": ".gitignore",
    "content": ".DS_Store\n__pycache__/\n.idea/\n.vscode/\n\n"
  },
  {
    "path": "README.md",
    "content": "> **Note:** This repository contains Anthropic's implementation of skills for Claude. For information about the Agent Skills standard, see [agentskills.io](http://agentskills.io).\n\n# Skills\nSkills are folders of instructions, scripts, and resources that Claude loads dynamically to improve performance on specialized tasks. Skills teach Claude how to complete specific tasks in a repeatable way, whether that's creating documents with your company's brand guidelines, analyzing data using your organization's specific workflows, or automating personal tasks.\n\nFor more information, check out:\n- [What are skills?](https://support.claude.com/en/articles/12512176-what-are-skills)\n- [Using skills in Claude](https://support.claude.com/en/articles/12512180-using-skills-in-claude)\n- [How to create custom skills](https://support.claude.com/en/articles/12512198-creating-custom-skills)\n- [Equipping agents for the real world with Agent Skills](https://anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills)\n\n# About This Repository\n\nThis repository contains skills that demonstrate what's possible with Claude's skills system. These skills range from creative applications (art, music, design) to technical tasks (testing web apps, MCP server generation) to enterprise workflows (communications, branding, etc.).\n\nEach skill is self-contained in its own folder with a `SKILL.md` file containing the instructions and metadata that Claude uses. Browse through these skills to get inspiration for your own skills or to understand different patterns and approaches.\n\nMany skills in this repo are open source (Apache 2.0). We've also included the document creation & editing skills that power [Claude's document capabilities](https://www.anthropic.com/news/create-files) under the hood in the [`skills/docx`](./skills/docx), [`skills/pdf`](./skills/pdf), [`skills/pptx`](./skills/pptx), and [`skills/xlsx`](./skills/xlsx) subfolders. These are source-available, not open source, but we wanted to share these with developers as a reference for more complex skills that are actively used in a production AI application.\n\n## Disclaimer\n\n**These skills are provided for demonstration and educational purposes only.** While some of these capabilities may be available in Claude, the implementations and behaviors you receive from Claude may differ from what is shown in these skills. These skills are meant to illustrate patterns and possibilities. Always test skills thoroughly in your own environment before relying on them for critical tasks.\n\n# Skill Sets\n- [./skills](./skills): Skill examples for Creative & Design, Development & Technical, Enterprise & Communication, and Document Skills\n- [./spec](./spec): The Agent Skills specification\n- [./template](./template): Skill template\n\n# Try in Claude Code, Claude.ai, and the API\n\n## Claude Code\nYou can register this repository as a Claude Code Plugin marketplace by running the following command in Claude Code:\n```\n/plugin marketplace add anthropics/skills\n```\n\nThen, to install a specific set of skills:\n1. Select `Browse and install plugins`\n2. Select `anthropic-agent-skills`\n3. Select `document-skills` or `example-skills`\n4. Select `Install now`\n\nAlternatively, directly install either Plugin via:\n```\n/plugin install document-skills@anthropic-agent-skills\n/plugin install example-skills@anthropic-agent-skills\n```\n\nAfter installing the plugin, you can use the skill by just mentioning it. For instance, if you install the `document-skills` plugin from the marketplace, you can ask Claude Code to do something like: \"Use the PDF skill to extract the form fields from `path/to/some-file.pdf`\"\n\n## Claude.ai\n\nThese example skills are all already available to paid plans in Claude.ai. \n\nTo use any skill from this repository or upload custom skills, follow the instructions in [Using skills in Claude](https://support.claude.com/en/articles/12512180-using-skills-in-claude#h_a4222fa77b).\n\n## Claude API\n\nYou can use Anthropic's pre-built skills, and upload custom skills, via the Claude API. See the [Skills API Quickstart](https://docs.claude.com/en/api/skills-guide#creating-a-skill) for more.\n\n# Creating a Basic Skill\n\nSkills are simple to create - just a folder with a `SKILL.md` file containing YAML frontmatter and instructions. You can use the **template-skill** in this repository as a starting point:\n\n```markdown\n---\nname: my-skill-name\ndescription: A clear description of what this skill does and when to use it\n---\n\n# My Skill Name\n\n[Add your instructions here that Claude will follow when this skill is active]\n\n## Examples\n- Example usage 1\n- Example usage 2\n\n## Guidelines\n- Guideline 1\n- Guideline 2\n```\n\nThe frontmatter requires only two fields:\n- `name` - A unique identifier for your skill (lowercase, hyphens for spaces)\n- `description` - A complete description of what the skill does and when to use it\n\nThe markdown content below contains the instructions, examples, and guidelines that Claude will follow. For more details, see [How to create custom skills](https://support.claude.com/en/articles/12512198-creating-custom-skills).\n\n# Partner Skills\n\nSkills are a great way to teach Claude how to get better at using specific pieces of software. As we see awesome example skills from partners, we may highlight some of them here:\n\n- **Notion** - [Notion Skills for Claude](https://www.notion.so/notiondevs/Notion-Skills-for-Claude-28da4445d27180c7af1df7d8615723d0)\n"
  },
  {
    "path": "THIRD_PARTY_NOTICES.md",
    "content": "# **Third-Party Notices**\n\nTHE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THIS PRODUCT.\n\n---\n\n## **BSD 2-Clause License**\n\nThe following components are licensed under BSD 2-Clause License reproduced below:\n\n**imageio 2.37.0**, Copyright (c) 2014-2022, imageio developers\n\n**imageio-ffmpeg 0.6.0**, Copyright (c) 2019-2025, imageio \n\n**License Text:**\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.  \n     \n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n---\n\n## **GNU General Public License v3.0**\n\nThe following components are licensed under GNU General Public License v3.0 reproduced below:\n\n**FFmpeg 7.0.2**, Copyright (c) 2000-2024 the FFmpeg developers\n\nSource Code: [https://ffmpeg.org/releases/ffmpeg-7.0.2.tar.xz](https://ffmpeg.org/releases/ffmpeg-7.0.2.tar.xz)\n\n**License Text:**\n\nGNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007\n\nCopyright © 2007 Free Software Foundation, Inc. [https://fsf.org/](https://fsf.org/)\n\nEveryone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nPreamble\n\nThe GNU General Public License is a free, copyleft license for software and other kinds of works.\n\nThe licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.\n\nTo protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.\n\nFor example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.\n\nDevelopers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.\n\nFor the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.\n\nSome devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.\n\nFinally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.\n\nThe precise terms and conditions for copying, distribution and modification follow.\n\nTERMS AND CONDITIONS\n\n0. Definitions.\n\n\"This License\" refers to version 3 of the GNU General Public License.\n\n\"Copyright\" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.\n\n\"The Program\" refers to any copyrightable work licensed under this License. Each licensee is addressed as \"you\". \"Licensees\" and \"recipients\" may be individuals or organizations.\n\nTo \"modify\" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a \"modified version\" of the earlier work or a work \"based on\" the earlier work.\n\nA \"covered work\" means either the unmodified Program or a work based on the Program.\n\nTo \"propagate\" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.\n\nTo \"convey\" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.\n\nAn interactive user interface displays \"Appropriate Legal Notices\" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.\n\n1. Source Code.\n\nThe \"source code\" for a work means the preferred form of the work for making modifications to it. \"Object code\" means any non-source form of a work.\n\nA \"Standard Interface\" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.\n\nThe \"System Libraries\" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A \"Major Component\", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.\n\nThe \"Corresponding Source\" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.\n\nThe Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.\n\nThe Corresponding Source for a work in source code form is that same work.\n\n2. Basic Permissions.\n\nAll rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.\n\nYou may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.\n\nConveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.\n\n3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\nNo covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.\n\nWhen you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.\n\n4. Conveying Verbatim Copies.\n\nYou may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.\n\nYou may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.\n\n5. Conveying Modified Source Versions.\n\nYou may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:\n\na) The work must carry prominent notices stating that you modified it, and giving a relevant date.\n\nb) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7\\. This requirement modifies the requirement in section 4 to \"keep intact all notices\".\n\nc) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.\n\nd) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.\n\nA compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an \"aggregate\" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.\n\n6. Conveying Non-Source Forms.\n\nYou may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:\n\na) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.\n\nb) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.\n\nc) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.\n\nd) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.\n\ne) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.\n\nA separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.\n\nA \"User Product\" is either (1) a \"consumer product\", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, \"normally used\" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.\n\n\"Installation Information\" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.\n\nIf you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).\n\nThe requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.\n\nCorresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.\n\n7. Additional Terms.\n\n\"Additional permissions\" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.\n\nWhen you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.\n\nNotwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:\n\na) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or\n\nb) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or\n\nc) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or\n\nd) Limiting the use for publicity purposes of names of licensors or authors of the material; or\n\ne) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or\n\nf) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.\n\nAll other non-permissive additional terms are considered \"further restrictions\" within the meaning of section 10\\. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.\n\nIf you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.\n\nAdditional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.\n\n8. Termination.\n\nYou may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).\n\nHowever, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.\n\nMoreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.\n\nTermination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10\\.\n\n9. Acceptance Not Required for Having Copies.\n\nYou are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.\n\n10. Automatic Licensing of Downstream Recipients.\n\nEach time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.\n\nAn \"entity transaction\" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.\n\nYou may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.\n\n11. Patents.\n\nA \"contributor\" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's \"contributor version\".\n\nA contributor's \"essential patent claims\" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, \"control\" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.\n\nEach contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.\n\nIn the following three paragraphs, a \"patent license\" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To \"grant\" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.\n\nIf you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. \"Knowingly relying\" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.\n\nIf, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.\n\nA patent license is \"discriminatory\" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007\\.\n\nNothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.\n\n12. No Surrender of Others' Freedom.\n\nIf conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.\n\n13. Use with the GNU Affero General Public License.\n\nNotwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.\n\n14. Revised Versions of this License.\n\nThe Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License \"or any later version\" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.\n\nIf the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.\n\nLater license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.\n\n15. Disclaimer of Warranty.\n\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n16. Limitation of Liability.\n\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n17. Interpretation of Sections 15 and 16\\.\n\nIf the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.\n\nEND OF TERMS AND CONDITIONS\n\nHow to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.\n\nTo do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the \"copyright\" line and a pointer to where the full notice is found.\n\n\\<one line to give the program's name and a brief idea of what it does.\\>   \nCopyright (C) \\<year\\>  \\<name of author\\>\n\nThis program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with this program. If not, see [https://www.gnu.org/licenses/](https://www.gnu.org/licenses/).\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:\n\n\\<program\\> Copyright (C) \\<year\\> \\<name of author\\>  \nThis program comes with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free software, and you are welcome to redistribute it under certain conditions; type 'show c' for details.\n\nThe hypothetical commands 'show w' and 'show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an \"about box\".\n\nYou should also get your employer (if you work as a programmer) or school, if any, to sign a \"copyright disclaimer\" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see [https://www.gnu.org/licenses/](https://www.gnu.org/licenses/).\n\nThe GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read [https://www.gnu.org/licenses/why-not-lgpl.html](https://www.gnu.org/licenses/why-not-lgpl.html).\n\n---\n\n## **MIT-CMU License (HPND)**\n\nThe following components are licensed under MIT-CMU License (HPND) reproduced below:\n\n**Pillow 11.3.0**, Copyright © 1997-2011 by Secret Labs AB, Copyright © 1995-2011 by Fredrik Lundh and contributors, Copyright © 2010 by Jeffrey A. Clark and contributors\n\n**License Text:**\n\nBy obtaining, using, and/or copying this software and/or its associated documentation, you agree that you have read, understood, and will comply with the following terms and conditions:\n\nPermission to use, copy, modify and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies, and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Secret Labs AB or the author not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission.\n\nSECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n---\n\n## **SIL Open Font License v1.1**\n\nThe following fonts are licensed under SIL Open Font License v1.1 reproduced below:\n\n**Arsenal SC**, Copyright 2012 The Arsenal Project Authors ([andrij.design@gmail.com](mailto:andrij.design@gmail.com))\n\n**Big Shoulders**, Copyright 2019 The Big Shoulders Project Authors ([https://github.com/xotypeco/big\\_shoulders](https://github.com/xotypeco/big_shoulders))\n\n**Boldonse**, Copyright 2024 The Boldonse Project Authors ([https://github.com/googlefonts/boldonse](https://github.com/googlefonts/boldonse))\n\n**Bricolage Grotesque**, Copyright 2022 The Bricolage Grotesque Project Authors ([https://github.com/ateliertriay/bricolage](https://github.com/ateliertriay/bricolage))\n\n**Crimson Pro**, Copyright 2018 The Crimson Pro Project Authors ([https://github.com/Fonthausen/CrimsonPro](https://github.com/Fonthausen/CrimsonPro))\n\n**DM Mono**, Copyright 2020 The DM Mono Project Authors ([https://www.github.com/googlefonts/dm-mono](https://www.github.com/googlefonts/dm-mono))\n\n**Erica One**, Copyright (c) 2011 by LatinoType Limitada ([luciano@latinotype.com](mailto:luciano@latinotype.com)), with Reserved Font Name \"Erica One\"\n\n**Geist Mono**, Copyright 2024 The Geist Project Authors ([https://github.com/vercel/geist-font.git](https://github.com/vercel/geist-font.git))\n\n**Gloock**, Copyright 2022 The Gloock Project Authors ([https://github.com/duartp/gloock](https://github.com/duartp/gloock))\n\n**IBM Plex Mono**, Copyright © 2017 IBM Corp., with Reserved Font Name \"Plex\"\n\n**Instrument Sans**, Copyright 2022 The Instrument Sans Project Authors ([https://github.com/Instrument/instrument-sans](https://github.com/Instrument/instrument-sans))\n\n**Italiana**, Copyright (c) 2011, Santiago Orozco ([hi@typemade.mx](mailto:hi@typemade.mx)), with Reserved Font Name \"Italiana\"\n\n**JetBrains Mono**, Copyright 2020 The JetBrains Mono Project Authors ([https://github.com/JetBrains/JetBrainsMono](https://github.com/JetBrains/JetBrainsMono))\n\n**Jura**, Copyright 2019 The Jura Project Authors ([https://github.com/ossobuffo/jura](https://github.com/ossobuffo/jura))\n\n**Libre Baskerville**, Copyright 2012 The Libre Baskerville Project Authors ([https://github.com/impallari/Libre-Baskerville](https://github.com/impallari/Libre-Baskerville)), with Reserved Font Name \"Libre Baskerville\"\n\n**Lora**, Copyright 2011 The Lora Project Authors ([https://github.com/cyrealtype/Lora-Cyrillic](https://github.com/cyrealtype/Lora-Cyrillic)), with Reserved Font Name \"Lora\"\n\n**National Park**, Copyright 2025 The National Park Project Authors ([https://github.com/benhoepner/National-Park](https://github.com/benhoepner/National-Park))\n\n**Nothing You Could Do**, Copyright (c) 2010, Kimberly Geswein (kimberlygeswein.com)\n\n**Outfit**, Copyright 2021 The Outfit Project Authors ([https://github.com/Outfitio/Outfit-Fonts](https://github.com/Outfitio/Outfit-Fonts))\n\n**Pixelify Sans**, Copyright 2021 The Pixelify Sans Project Authors ([https://github.com/eifetx/Pixelify-Sans](https://github.com/eifetx/Pixelify-Sans))\n\n**Poiret One**, Copyright (c) 2011, Denis Masharov ([denis.masharov@gmail.com](mailto:denis.masharov@gmail.com))\n\n**Red Hat Mono**, Copyright 2024 The Red Hat Project Authors ([https://github.com/RedHatOfficial/RedHatFont](https://github.com/RedHatOfficial/RedHatFont))\n\n**Silkscreen**, Copyright 2001 The Silkscreen Project Authors ([https://github.com/googlefonts/silkscreen](https://github.com/googlefonts/silkscreen))\n\n**Smooch Sans**, Copyright 2016 The Smooch Sans Project Authors ([https://github.com/googlefonts/smooch-sans](https://github.com/googlefonts/smooch-sans))\n\n**Tektur**, Copyright 2023 The Tektur Project Authors ([https://www.github.com/hyvyys/Tektur](https://www.github.com/hyvyys/Tektur))\n\n**Work Sans**, Copyright 2019 The Work Sans Project Authors ([https://github.com/weiweihuanghuang/Work-Sans](https://github.com/weiweihuanghuang/Work-Sans))\n\n**Young Serif**, Copyright 2023 The Young Serif Project Authors ([https://github.com/noirblancrouge/YoungSerif](https://github.com/noirblancrouge/YoungSerif))\n\n**License Text:**\n\n---\n\n## **SIL OPEN FONT LICENSE Version 1.1 \\- 26 February 2007**\n\nPREAMBLE\n\nThe goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\n\"Font Software\" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the copyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as distributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting, or substituting \\-- in part or in whole \\-- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.  \n     \n2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.  \n     \n3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.  \n     \n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.  \n     \n5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.\n\nTERMINATION\n\nThis license becomes null and void if any of the above conditions are not met.\n\nDISCLAIMER\n\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.  "
  },
  {
    "path": "skills/algorithmic-art/LICENSE.txt",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License."
  },
  {
    "path": "skills/algorithmic-art/SKILL.md",
    "content": "---\nname: algorithmic-art\ndescription: Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.\nlicense: Complete terms in LICENSE.txt\n---\n\nAlgorithmic philosophies are computational aesthetic movements that are then expressed through code. Output .md files (philosophy), .html files (interactive viewer), and .js files (generative algorithms).\n\nThis happens in two steps:\n1. Algorithmic Philosophy Creation (.md file)\n2. Express by creating p5.js generative art (.html + .js files)\n\nFirst, undertake this task:\n\n## ALGORITHMIC PHILOSOPHY CREATION\n\nTo begin, create an ALGORITHMIC PHILOSOPHY (not static images or templates) that will be interpreted through:\n- Computational processes, emergent behavior, mathematical beauty\n- Seeded randomness, noise fields, organic systems\n- Particles, flows, fields, forces\n- Parametric variation and controlled chaos\n\n### THE CRITICAL UNDERSTANDING\n- What is received: Some subtle input or instructions by the user to take into account, but use as a foundation; it should not constrain creative freedom.\n- What is created: An algorithmic philosophy/generative aesthetic movement.\n- What happens next: The same version receives the philosophy and EXPRESSES IT IN CODE - creating p5.js sketches that are 90% algorithmic generation, 10% essential parameters.\n\nConsider this approach:\n- Write a manifesto for a generative art movement\n- The next phase involves writing the algorithm that brings it to life\n\nThe philosophy must emphasize: Algorithmic expression. Emergent behavior. Computational beauty. Seeded variation.\n\n### HOW TO GENERATE AN ALGORITHMIC PHILOSOPHY\n\n**Name the movement** (1-2 words): \"Organic Turbulence\" / \"Quantum Harmonics\" / \"Emergent Stillness\"\n\n**Articulate the philosophy** (4-6 paragraphs - concise but complete):\n\nTo capture the ALGORITHMIC essence, express how this philosophy manifests through:\n- Computational processes and mathematical relationships?\n- Noise functions and randomness patterns?\n- Particle behaviors and field dynamics?\n- Temporal evolution and system states?\n- Parametric variation and emergent complexity?\n\n**CRITICAL GUIDELINES:**\n- **Avoid redundancy**: Each algorithmic aspect should be mentioned once. Avoid repeating concepts about noise theory, particle dynamics, or mathematical principles unless adding new depth.\n- **Emphasize craftsmanship REPEATEDLY**: The philosophy MUST stress multiple times that the final algorithm should appear as though it took countless hours to develop, was refined with care, and comes from someone at the absolute top of their field. This framing is essential - repeat phrases like \"meticulously crafted algorithm,\" \"the product of deep computational expertise,\" \"painstaking optimization,\" \"master-level implementation.\"\n- **Leave creative space**: Be specific about the algorithmic direction, but concise enough that the next Claude has room to make interpretive implementation choices at an extremely high level of craftsmanship.\n\nThe philosophy must guide the next version to express ideas ALGORITHMICALLY, not through static images. Beauty lives in the process, not the final frame.\n\n### PHILOSOPHY EXAMPLES\n\n**\"Organic Turbulence\"**\nPhilosophy: Chaos constrained by natural law, order emerging from disorder.\nAlgorithmic expression: Flow fields driven by layered Perlin noise. Thousands of particles following vector forces, their trails accumulating into organic density maps. Multiple noise octaves create turbulent regions and calm zones. Color emerges from velocity and density - fast particles burn bright, slow ones fade to shadow. The algorithm runs until equilibrium - a meticulously tuned balance where every parameter was refined through countless iterations by a master of computational aesthetics.\n\n**\"Quantum Harmonics\"**\nPhilosophy: Discrete entities exhibiting wave-like interference patterns.\nAlgorithmic expression: Particles initialized on a grid, each carrying a phase value that evolves through sine waves. When particles are near, their phases interfere - constructive interference creates bright nodes, destructive creates voids. Simple harmonic motion generates complex emergent mandalas. The result of painstaking frequency calibration where every ratio was carefully chosen to produce resonant beauty.\n\n**\"Recursive Whispers\"**\nPhilosophy: Self-similarity across scales, infinite depth in finite space.\nAlgorithmic expression: Branching structures that subdivide recursively. Each branch slightly randomized but constrained by golden ratios. L-systems or recursive subdivision generate tree-like forms that feel both mathematical and organic. Subtle noise perturbations break perfect symmetry. Line weights diminish with each recursion level. Every branching angle the product of deep mathematical exploration.\n\n**\"Field Dynamics\"**\nPhilosophy: Invisible forces made visible through their effects on matter.\nAlgorithmic expression: Vector fields constructed from mathematical functions or noise. Particles born at edges, flowing along field lines, dying when they reach equilibrium or boundaries. Multiple fields can attract, repel, or rotate particles. The visualization shows only the traces - ghost-like evidence of invisible forces. A computational dance meticulously choreographed through force balance.\n\n**\"Stochastic Crystallization\"**\nPhilosophy: Random processes crystallizing into ordered structures.\nAlgorithmic expression: Randomized circle packing or Voronoi tessellation. Start with random points, let them evolve through relaxation algorithms. Cells push apart until equilibrium. Color based on cell size, neighbor count, or distance from center. The organic tiling that emerges feels both random and inevitable. Every seed produces unique crystalline beauty - the mark of a master-level generative algorithm.\n\n*These are condensed examples. The actual algorithmic philosophy should be 4-6 substantial paragraphs.*\n\n### ESSENTIAL PRINCIPLES\n- **ALGORITHMIC PHILOSOPHY**: Creating a computational worldview to be expressed through code\n- **PROCESS OVER PRODUCT**: Always emphasize that beauty emerges from the algorithm's execution - each run is unique\n- **PARAMETRIC EXPRESSION**: Ideas communicate through mathematical relationships, forces, behaviors - not static composition\n- **ARTISTIC FREEDOM**: The next Claude interprets the philosophy algorithmically - provide creative implementation room\n- **PURE GENERATIVE ART**: This is about making LIVING ALGORITHMS, not static images with randomness\n- **EXPERT CRAFTSMANSHIP**: Repeatedly emphasize the final algorithm must feel meticulously crafted, refined through countless iterations, the product of deep expertise by someone at the absolute top of their field in computational aesthetics\n\n**The algorithmic philosophy should be 4-6 paragraphs long.** Fill it with poetic computational philosophy that brings together the intended vision. Avoid repeating the same points. Output this algorithmic philosophy as a .md file.\n\n---\n\n## DEDUCING THE CONCEPTUAL SEED\n\n**CRITICAL STEP**: Before implementing the algorithm, identify the subtle conceptual thread from the original request.\n\n**THE ESSENTIAL PRINCIPLE**:\nThe concept is a **subtle, niche reference embedded within the algorithm itself** - not always literal, always sophisticated. Someone familiar with the subject should feel it intuitively, while others simply experience a masterful generative composition. The algorithmic philosophy provides the computational language. The deduced concept provides the soul - the quiet conceptual DNA woven invisibly into parameters, behaviors, and emergence patterns.\n\nThis is **VERY IMPORTANT**: The reference must be so refined that it enhances the work's depth without announcing itself. Think like a jazz musician quoting another song through algorithmic harmony - only those who know will catch it, but everyone appreciates the generative beauty.\n\n---\n\n## P5.JS IMPLEMENTATION\n\nWith the philosophy AND conceptual framework established, express it through code. Pause to gather thoughts before proceeding. Use only the algorithmic philosophy created and the instructions below.\n\n### ⚠️ STEP 0: READ THE TEMPLATE FIRST ⚠️\n\n**CRITICAL: BEFORE writing any HTML:**\n\n1. **Read** `templates/viewer.html` using the Read tool\n2. **Study** the exact structure, styling, and Anthropic branding\n3. **Use that file as the LITERAL STARTING POINT** - not just inspiration\n4. **Keep all FIXED sections exactly as shown** (header, sidebar structure, Anthropic colors/fonts, seed controls, action buttons)\n5. **Replace only the VARIABLE sections** marked in the file's comments (algorithm, parameters, UI controls for parameters)\n\n**Avoid:**\n- ❌ Creating HTML from scratch\n- ❌ Inventing custom styling or color schemes\n- ❌ Using system fonts or dark themes\n- ❌ Changing the sidebar structure\n\n**Follow these practices:**\n- ✅ Copy the template's exact HTML structure\n- ✅ Keep Anthropic branding (Poppins/Lora fonts, light colors, gradient backdrop)\n- ✅ Maintain the sidebar layout (Seed → Parameters → Colors? → Actions)\n- ✅ Replace only the p5.js algorithm and parameter controls\n\nThe template is the foundation. Build on it, don't rebuild it.\n\n---\n\nTo create gallery-quality computational art that lives and breathes, use the algorithmic philosophy as the foundation.\n\n### TECHNICAL REQUIREMENTS\n\n**Seeded Randomness (Art Blocks Pattern)**:\n```javascript\n// ALWAYS use a seed for reproducibility\nlet seed = 12345; // or hash from user input\nrandomSeed(seed);\nnoiseSeed(seed);\n```\n\n**Parameter Structure - FOLLOW THE PHILOSOPHY**:\n\nTo establish parameters that emerge naturally from the algorithmic philosophy, consider: \"What qualities of this system can be adjusted?\"\n\n```javascript\nlet params = {\n  seed: 12345,  // Always include seed for reproducibility\n  // colors\n  // Add parameters that control YOUR algorithm:\n  // - Quantities (how many?)\n  // - Scales (how big? how fast?)\n  // - Probabilities (how likely?)\n  // - Ratios (what proportions?)\n  // - Angles (what direction?)\n  // - Thresholds (when does behavior change?)\n};\n```\n\n**To design effective parameters, focus on the properties the system needs to be tunable rather than thinking in terms of \"pattern types\".**\n\n**Core Algorithm - EXPRESS THE PHILOSOPHY**:\n\n**CRITICAL**: The algorithmic philosophy should dictate what to build.\n\nTo express the philosophy through code, avoid thinking \"which pattern should I use?\" and instead think \"how to express this philosophy through code?\"\n\nIf the philosophy is about **organic emergence**, consider using:\n- Elements that accumulate or grow over time\n- Random processes constrained by natural rules\n- Feedback loops and interactions\n\nIf the philosophy is about **mathematical beauty**, consider using:\n- Geometric relationships and ratios\n- Trigonometric functions and harmonics\n- Precise calculations creating unexpected patterns\n\nIf the philosophy is about **controlled chaos**, consider using:\n- Random variation within strict boundaries\n- Bifurcation and phase transitions\n- Order emerging from disorder\n\n**The algorithm flows from the philosophy, not from a menu of options.**\n\nTo guide the implementation, let the conceptual essence inform creative and original choices. Build something that expresses the vision for this particular request.\n\n**Canvas Setup**: Standard p5.js structure:\n```javascript\nfunction setup() {\n  createCanvas(1200, 1200);\n  // Initialize your system\n}\n\nfunction draw() {\n  // Your generative algorithm\n  // Can be static (noLoop) or animated\n}\n```\n\n### CRAFTSMANSHIP REQUIREMENTS\n\n**CRITICAL**: To achieve mastery, create algorithms that feel like they emerged through countless iterations by a master generative artist. Tune every parameter carefully. Ensure every pattern emerges with purpose. This is NOT random noise - this is CONTROLLED CHAOS refined through deep expertise.\n\n- **Balance**: Complexity without visual noise, order without rigidity\n- **Color Harmony**: Thoughtful palettes, not random RGB values\n- **Composition**: Even in randomness, maintain visual hierarchy and flow\n- **Performance**: Smooth execution, optimized for real-time if animated\n- **Reproducibility**: Same seed ALWAYS produces identical output\n\n### OUTPUT FORMAT\n\nOutput:\n1. **Algorithmic Philosophy** - As markdown or text explaining the generative aesthetic\n2. **Single HTML Artifact** - Self-contained interactive generative art built from `templates/viewer.html` (see STEP 0 and next section)\n\nThe HTML artifact contains everything: p5.js (from CDN), the algorithm, parameter controls, and UI - all in one file that works immediately in claude.ai artifacts or any browser. Start from the template file, not from scratch.\n\n---\n\n## INTERACTIVE ARTIFACT CREATION\n\n**REMINDER: `templates/viewer.html` should have already been read (see STEP 0). Use that file as the starting point.**\n\nTo allow exploration of the generative art, create a single, self-contained HTML artifact. Ensure this artifact works immediately in claude.ai or any browser - no setup required. Embed everything inline.\n\n### CRITICAL: WHAT'S FIXED VS VARIABLE\n\nThe `templates/viewer.html` file is the foundation. It contains the exact structure and styling needed.\n\n**FIXED (always include exactly as shown):**\n- Layout structure (header, sidebar, main canvas area)\n- Anthropic branding (UI colors, fonts, gradients)\n- Seed section in sidebar:\n  - Seed display\n  - Previous/Next buttons\n  - Random button\n  - Jump to seed input + Go button\n- Actions section in sidebar:\n  - Regenerate button\n  - Reset button\n\n**VARIABLE (customize for each artwork):**\n- The entire p5.js algorithm (setup/draw/classes)\n- The parameters object (define what the art needs)\n- The Parameters section in sidebar:\n  - Number of parameter controls\n  - Parameter names\n  - Min/max/step values for sliders\n  - Control types (sliders, inputs, etc.)\n- Colors section (optional):\n  - Some art needs color pickers\n  - Some art might use fixed colors\n  - Some art might be monochrome (no color controls needed)\n  - Decide based on the art's needs\n\n**Every artwork should have unique parameters and algorithm!** The fixed parts provide consistent UX - everything else expresses the unique vision.\n\n### REQUIRED FEATURES\n\n**1. Parameter Controls**\n- Sliders for numeric parameters (particle count, noise scale, speed, etc.)\n- Color pickers for palette colors\n- Real-time updates when parameters change\n- Reset button to restore defaults\n\n**2. Seed Navigation**\n- Display current seed number\n- \"Previous\" and \"Next\" buttons to cycle through seeds\n- \"Random\" button for random seed\n- Input field to jump to specific seed\n- Generate 100 variations when requested (seeds 1-100)\n\n**3. Single Artifact Structure**\n```html\n<!DOCTYPE html>\n<html>\n<head>\n  <!-- p5.js from CDN - always available -->\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.7.0/p5.min.js\"></script>\n  <style>\n    /* All styling inline - clean, minimal */\n    /* Canvas on top, controls below */\n  </style>\n</head>\n<body>\n  <div id=\"canvas-container\"></div>\n  <div id=\"controls\">\n    <!-- All parameter controls -->\n  </div>\n  <script>\n    // ALL p5.js code inline here\n    // Parameter objects, classes, functions\n    // setup() and draw()\n    // UI handlers\n    // Everything self-contained\n  </script>\n</body>\n</html>\n```\n\n**CRITICAL**: This is a single artifact. No external files, no imports (except p5.js CDN). Everything inline.\n\n**4. Implementation Details - BUILD THE SIDEBAR**\n\nThe sidebar structure:\n\n**1. Seed (FIXED)** - Always include exactly as shown:\n- Seed display\n- Prev/Next/Random/Jump buttons\n\n**2. Parameters (VARIABLE)** - Create controls for the art:\n```html\n<div class=\"control-group\">\n    <label>Parameter Name</label>\n    <input type=\"range\" id=\"param\" min=\"...\" max=\"...\" step=\"...\" value=\"...\" oninput=\"updateParam('param', this.value)\">\n    <span class=\"value-display\" id=\"param-value\">...</span>\n</div>\n```\nAdd as many control-group divs as there are parameters.\n\n**3. Colors (OPTIONAL/VARIABLE)** - Include if the art needs adjustable colors:\n- Add color pickers if users should control palette\n- Skip this section if the art uses fixed colors\n- Skip if the art is monochrome\n\n**4. Actions (FIXED)** - Always include exactly as shown:\n- Regenerate button\n- Reset button\n- Download PNG button\n\n**Requirements**:\n- Seed controls must work (prev/next/random/jump/display)\n- All parameters must have UI controls\n- Regenerate, Reset, Download buttons must work\n- Keep Anthropic branding (UI styling, not art colors)\n\n### USING THE ARTIFACT\n\nThe HTML artifact works immediately:\n1. **In claude.ai**: Displayed as an interactive artifact - runs instantly\n2. **As a file**: Save and open in any browser - no server needed\n3. **Sharing**: Send the HTML file - it's completely self-contained\n\n---\n\n## VARIATIONS & EXPLORATION\n\nThe artifact includes seed navigation by default (prev/next/random buttons), allowing users to explore variations without creating multiple files. If the user wants specific variations highlighted:\n\n- Include seed presets (buttons for \"Variation 1: Seed 42\", \"Variation 2: Seed 127\", etc.)\n- Add a \"Gallery Mode\" that shows thumbnails of multiple seeds side-by-side\n- All within the same single artifact\n\nThis is like creating a series of prints from the same plate - the algorithm is consistent, but each seed reveals different facets of its potential. The interactive nature means users discover their own favorites by exploring the seed space.\n\n---\n\n## THE CREATIVE PROCESS\n\n**User request** → **Algorithmic philosophy** → **Implementation**\n\nEach request is unique. The process involves:\n\n1. **Interpret the user's intent** - What aesthetic is being sought?\n2. **Create an algorithmic philosophy** (4-6 paragraphs) describing the computational approach\n3. **Implement it in code** - Build the algorithm that expresses this philosophy\n4. **Design appropriate parameters** - What should be tunable?\n5. **Build matching UI controls** - Sliders/inputs for those parameters\n\n**The constants**:\n- Anthropic branding (colors, fonts, layout)\n- Seed navigation (always present)\n- Self-contained HTML artifact\n\n**Everything else is variable**:\n- The algorithm itself\n- The parameters\n- The UI controls\n- The visual outcome\n\nTo achieve the best results, trust creativity and let the philosophy guide the implementation.\n\n---\n\n## RESOURCES\n\nThis skill includes helpful templates and documentation:\n\n- **templates/viewer.html**: REQUIRED STARTING POINT for all HTML artifacts.\n  - This is the foundation - contains the exact structure and Anthropic branding\n  - **Keep unchanged**: Layout structure, sidebar organization, Anthropic colors/fonts, seed controls, action buttons\n  - **Replace**: The p5.js algorithm, parameter definitions, and UI controls in Parameters section\n  - The extensive comments in the file mark exactly what to keep vs replace\n\n- **templates/generator_template.js**: Reference for p5.js best practices and code structure principles.\n  - Shows how to organize parameters, use seeded randomness, structure classes\n  - NOT a pattern menu - use these principles to build unique algorithms\n  - Embed algorithms inline in the HTML artifact (don't create separate .js files)\n\n**Critical reminder**:\n- The **template is the STARTING POINT**, not inspiration\n- The **algorithm is where to create** something unique\n- Don't copy the flow field example - build what the philosophy demands\n- But DO keep the exact UI structure and Anthropic branding from the template"
  },
  {
    "path": "skills/algorithmic-art/templates/generator_template.js",
    "content": "/**\n * ═══════════════════════════════════════════════════════════════════════════\n *                  P5.JS GENERATIVE ART - BEST PRACTICES\n * ═══════════════════════════════════════════════════════════════════════════\n *\n * This file shows STRUCTURE and PRINCIPLES for p5.js generative art.\n * It does NOT prescribe what art you should create.\n *\n * Your algorithmic philosophy should guide what you build.\n * These are just best practices for how to structure your code.\n *\n * ═══════════════════════════════════════════════════════════════════════════\n */\n\n// ============================================================================\n// 1. PARAMETER ORGANIZATION\n// ============================================================================\n// Keep all tunable parameters in one object\n// This makes it easy to:\n// - Connect to UI controls\n// - Reset to defaults\n// - Serialize/save configurations\n\nlet params = {\n    // Define parameters that match YOUR algorithm\n    // Examples (customize for your art):\n    // - Counts: how many elements (particles, circles, branches, etc.)\n    // - Scales: size, speed, spacing\n    // - Probabilities: likelihood of events\n    // - Angles: rotation, direction\n    // - Colors: palette arrays\n\n    seed: 12345,\n    // define colorPalette as an array -- choose whatever colors you'd like ['#d97757', '#6a9bcc', '#788c5d', '#b0aea5']\n    // Add YOUR parameters here based on your algorithm\n};\n\n// ============================================================================\n// 2. SEEDED RANDOMNESS (Critical for reproducibility)\n// ============================================================================\n// ALWAYS use seeded random for Art Blocks-style reproducible output\n\nfunction initializeSeed(seed) {\n    randomSeed(seed);\n    noiseSeed(seed);\n    // Now all random() and noise() calls will be deterministic\n}\n\n// ============================================================================\n// 3. P5.JS LIFECYCLE\n// ============================================================================\n\nfunction setup() {\n    createCanvas(800, 800);\n\n    // Initialize seed first\n    initializeSeed(params.seed);\n\n    // Set up your generative system\n    // This is where you initialize:\n    // - Arrays of objects\n    // - Grid structures\n    // - Initial positions\n    // - Starting states\n\n    // For static art: call noLoop() at the end of setup\n    // For animated art: let draw() keep running\n}\n\nfunction draw() {\n    // Option 1: Static generation (runs once, then stops)\n    // - Generate everything in setup()\n    // - Call noLoop() in setup()\n    // - draw() doesn't do much or can be empty\n\n    // Option 2: Animated generation (continuous)\n    // - Update your system each frame\n    // - Common patterns: particle movement, growth, evolution\n    // - Can optionally call noLoop() after N frames\n\n    // Option 3: User-triggered regeneration\n    // - Use noLoop() by default\n    // - Call redraw() when parameters change\n}\n\n// ============================================================================\n// 4. CLASS STRUCTURE (When you need objects)\n// ============================================================================\n// Use classes when your algorithm involves multiple entities\n// Examples: particles, agents, cells, nodes, etc.\n\nclass Entity {\n    constructor() {\n        // Initialize entity properties\n        // Use random() here - it will be seeded\n    }\n\n    update() {\n        // Update entity state\n        // This might involve:\n        // - Physics calculations\n        // - Behavioral rules\n        // - Interactions with neighbors\n    }\n\n    display() {\n        // Render the entity\n        // Keep rendering logic separate from update logic\n    }\n}\n\n// ============================================================================\n// 5. PERFORMANCE CONSIDERATIONS\n// ============================================================================\n\n// For large numbers of elements:\n// - Pre-calculate what you can\n// - Use simple collision detection (spatial hashing if needed)\n// - Limit expensive operations (sqrt, trig) when possible\n// - Consider using p5 vectors efficiently\n\n// For smooth animation:\n// - Aim for 60fps\n// - Profile if things are slow\n// - Consider reducing particle counts or simplifying calculations\n\n// ============================================================================\n// 6. UTILITY FUNCTIONS\n// ============================================================================\n\n// Color utilities\nfunction hexToRgb(hex) {\n    const result = /^#?([a-f\\d]{2})([a-f\\d]{2})([a-f\\d]{2})$/i.exec(hex);\n    return result ? {\n        r: parseInt(result[1], 16),\n        g: parseInt(result[2], 16),\n        b: parseInt(result[3], 16)\n    } : null;\n}\n\nfunction colorFromPalette(index) {\n    return params.colorPalette[index % params.colorPalette.length];\n}\n\n// Mapping and easing\nfunction mapRange(value, inMin, inMax, outMin, outMax) {\n    return outMin + (outMax - outMin) * ((value - inMin) / (inMax - inMin));\n}\n\nfunction easeInOutCubic(t) {\n    return t < 0.5 ? 4 * t * t * t : 1 - Math.pow(-2 * t + 2, 3) / 2;\n}\n\n// Constrain to bounds\nfunction wrapAround(value, max) {\n    if (value < 0) return max;\n    if (value > max) return 0;\n    return value;\n}\n\n// ============================================================================\n// 7. PARAMETER UPDATES (Connect to UI)\n// ============================================================================\n\nfunction updateParameter(paramName, value) {\n    params[paramName] = value;\n    // Decide if you need to regenerate or just update\n    // Some params can update in real-time, others need full regeneration\n}\n\nfunction regenerate() {\n    // Reinitialize your generative system\n    // Useful when parameters change significantly\n    initializeSeed(params.seed);\n    // Then regenerate your system\n}\n\n// ============================================================================\n// 8. COMMON P5.JS PATTERNS\n// ============================================================================\n\n// Drawing with transparency for trails/fading\nfunction fadeBackground(opacity) {\n    fill(250, 249, 245, opacity); // Anthropic light with alpha\n    noStroke();\n    rect(0, 0, width, height);\n}\n\n// Using noise for organic variation\nfunction getNoiseValue(x, y, scale = 0.01) {\n    return noise(x * scale, y * scale);\n}\n\n// Creating vectors from angles\nfunction vectorFromAngle(angle, magnitude = 1) {\n    return createVector(cos(angle), sin(angle)).mult(magnitude);\n}\n\n// ============================================================================\n// 9. EXPORT FUNCTIONS\n// ============================================================================\n\nfunction exportImage() {\n    saveCanvas('generative-art-' + params.seed, 'png');\n}\n\n// ============================================================================\n// REMEMBER\n// ============================================================================\n//\n// These are TOOLS and PRINCIPLES, not a recipe.\n// Your algorithmic philosophy should guide WHAT you create.\n// This structure helps you create it WELL.\n//\n// Focus on:\n// - Clean, readable code\n// - Parameterized for exploration\n// - Seeded for reproducibility\n// - Performant execution\n//\n// The art itself is entirely up to you!\n//\n// ============================================================================"
  },
  {
    "path": "skills/algorithmic-art/templates/viewer.html",
    "content": "<!DOCTYPE html>\n<!--\n    THIS IS A TEMPLATE THAT SHOULD BE USED EVERY TIME AND MODIFIED.\n    WHAT TO KEEP:\n    ✓ Overall structure (header, sidebar, main content)\n    ✓ Anthropic branding (colors, fonts, layout)\n    ✓ Seed navigation section (always include this)\n    ✓ Self-contained artifact (everything inline)\n\n    WHAT TO CREATIVELY EDIT:\n    ✗ The p5.js algorithm (implement YOUR vision)\n    ✗ The parameters (define what YOUR art needs)\n    ✗ The UI controls (match YOUR parameters)\n\n    Let your philosophy guide the implementation.\n    The world is your oyster - be creative!\n-->\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Generative Art Viewer</title>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.7.0/p5.min.js\"></script>\n    <link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin>\n    <link href=\"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Lora:wght@400;500&display=swap\" rel=\"stylesheet\">\n    <style>\n        /* Anthropic Brand Colors */\n        :root {\n            --anthropic-dark: #141413;\n            --anthropic-light: #faf9f5;\n            --anthropic-mid-gray: #b0aea5;\n            --anthropic-light-gray: #e8e6dc;\n            --anthropic-orange: #d97757;\n            --anthropic-blue: #6a9bcc;\n            --anthropic-green: #788c5d;\n        }\n\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n        body {\n            font-family: 'Poppins', sans-serif;\n            background: linear-gradient(135deg, var(--anthropic-light) 0%, #f5f3ee 100%);\n            min-height: 100vh;\n            color: var(--anthropic-dark);\n        }\n\n        .container {\n            display: flex;\n            min-height: 100vh;\n            padding: 20px;\n            gap: 20px;\n        }\n\n        /* Sidebar */\n        .sidebar {\n            width: 320px;\n            flex-shrink: 0;\n            background: rgba(255, 255, 255, 0.95);\n            backdrop-filter: blur(10px);\n            padding: 24px;\n            border-radius: 12px;\n            box-shadow: 0 10px 30px rgba(20, 20, 19, 0.1);\n            overflow-y: auto;\n            overflow-x: hidden;\n        }\n\n        .sidebar h1 {\n            font-family: 'Lora', serif;\n            font-size: 24px;\n            font-weight: 500;\n            color: var(--anthropic-dark);\n            margin-bottom: 8px;\n        }\n\n        .sidebar .subtitle {\n            color: var(--anthropic-mid-gray);\n            font-size: 14px;\n            margin-bottom: 32px;\n            line-height: 1.4;\n        }\n\n        /* Control Sections */\n        .control-section {\n            margin-bottom: 32px;\n        }\n\n        .control-section h3 {\n            font-size: 16px;\n            font-weight: 600;\n            color: var(--anthropic-dark);\n            margin-bottom: 16px;\n            display: flex;\n            align-items: center;\n            gap: 8px;\n        }\n\n        .control-section h3::before {\n            content: '•';\n            color: var(--anthropic-orange);\n            font-weight: bold;\n        }\n\n        /* Seed Controls */\n        .seed-input {\n            width: 100%;\n            background: var(--anthropic-light);\n            padding: 12px;\n            border-radius: 8px;\n            font-family: 'Courier New', monospace;\n            font-size: 14px;\n            margin-bottom: 12px;\n            border: 1px solid var(--anthropic-light-gray);\n            text-align: center;\n        }\n\n        .seed-input:focus {\n            outline: none;\n            border-color: var(--anthropic-orange);\n            box-shadow: 0 0 0 2px rgba(217, 119, 87, 0.1);\n            background: white;\n        }\n\n        .seed-controls {\n            display: grid;\n            grid-template-columns: 1fr 1fr;\n            gap: 8px;\n            margin-bottom: 8px;\n        }\n\n        .regen-button {\n            margin-bottom: 0;\n        }\n\n        /* Parameter Controls */\n        .control-group {\n            margin-bottom: 20px;\n        }\n\n        .control-group label {\n            display: block;\n            font-size: 14px;\n            font-weight: 500;\n            color: var(--anthropic-dark);\n            margin-bottom: 8px;\n        }\n\n        .slider-container {\n            display: flex;\n            align-items: center;\n            gap: 12px;\n        }\n\n        .slider-container input[type=\"range\"] {\n            flex: 1;\n            height: 4px;\n            background: var(--anthropic-light-gray);\n            border-radius: 2px;\n            outline: none;\n            -webkit-appearance: none;\n        }\n\n        .slider-container input[type=\"range\"]::-webkit-slider-thumb {\n            -webkit-appearance: none;\n            width: 16px;\n            height: 16px;\n            background: var(--anthropic-orange);\n            border-radius: 50%;\n            cursor: pointer;\n            transition: all 0.2s ease;\n        }\n\n        .slider-container input[type=\"range\"]::-webkit-slider-thumb:hover {\n            transform: scale(1.1);\n            background: #c86641;\n        }\n\n        .slider-container input[type=\"range\"]::-moz-range-thumb {\n            width: 16px;\n            height: 16px;\n            background: var(--anthropic-orange);\n            border-radius: 50%;\n            border: none;\n            cursor: pointer;\n            transition: all 0.2s ease;\n        }\n\n        .value-display {\n            font-family: 'Courier New', monospace;\n            font-size: 12px;\n            color: var(--anthropic-mid-gray);\n            min-width: 60px;\n            text-align: right;\n        }\n\n        /* Color Pickers */\n        .color-group {\n            margin-bottom: 16px;\n        }\n\n        .color-group label {\n            display: block;\n            font-size: 12px;\n            color: var(--anthropic-mid-gray);\n            margin-bottom: 4px;\n        }\n\n        .color-picker-container {\n            display: flex;\n            align-items: center;\n            gap: 8px;\n        }\n\n        .color-picker-container input[type=\"color\"] {\n            width: 32px;\n            height: 32px;\n            border: none;\n            border-radius: 6px;\n            cursor: pointer;\n            background: none;\n            padding: 0;\n        }\n\n        .color-value {\n            font-family: 'Courier New', monospace;\n            font-size: 12px;\n            color: var(--anthropic-mid-gray);\n        }\n\n        /* Buttons */\n        .button {\n            background: var(--anthropic-orange);\n            color: white;\n            border: none;\n            padding: 10px 16px;\n            border-radius: 6px;\n            font-size: 14px;\n            font-weight: 500;\n            cursor: pointer;\n            transition: all 0.2s ease;\n            width: 100%;\n        }\n\n        .button:hover {\n            background: #c86641;\n            transform: translateY(-1px);\n        }\n\n        .button:active {\n            transform: translateY(0);\n        }\n\n        .button.secondary {\n            background: var(--anthropic-blue);\n        }\n\n        .button.secondary:hover {\n            background: #5a8bb8;\n        }\n\n        .button.tertiary {\n            background: var(--anthropic-green);\n        }\n\n        .button.tertiary:hover {\n            background: #6b7b52;\n        }\n\n        .button-row {\n            display: flex;\n            gap: 8px;\n        }\n\n        .button-row .button {\n            flex: 1;\n        }\n\n        /* Canvas Area */\n        .canvas-area {\n            flex: 1;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            min-width: 0;\n        }\n\n        #canvas-container {\n            width: 100%;\n            max-width: 1000px;\n            border-radius: 12px;\n            overflow: hidden;\n            box-shadow: 0 20px 40px rgba(20, 20, 19, 0.1);\n            background: white;\n        }\n\n        #canvas-container canvas {\n            display: block;\n            width: 100% !important;\n            height: auto !important;\n        }\n\n        /* Loading State */\n        .loading {\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-size: 18px;\n            color: var(--anthropic-mid-gray);\n        }\n\n        /* Responsive - Stack on mobile */\n        @media (max-width: 600px) {\n            .container {\n                flex-direction: column;\n            }\n\n            .sidebar {\n                width: 100%;\n            }\n\n            .canvas-area {\n                padding: 20px;\n            }\n        }\n    </style>\n</head>\n<body>\n    <div class=\"container\">\n        <!-- Control Sidebar -->\n        <div class=\"sidebar\">\n            <!-- Headers (CUSTOMIZE THIS FOR YOUR ART) -->\n            <h1>TITLE - EDIT</h1>\n            <div class=\"subtitle\">SUBHEADER - EDIT</div>\n\n            <!-- Seed Section (ALWAYS KEEP THIS) -->\n            <div class=\"control-section\">\n                <h3>Seed</h3>\n                <input type=\"number\" id=\"seed-input\" class=\"seed-input\" value=\"12345\" onchange=\"updateSeed()\">\n                <div class=\"seed-controls\">\n                    <button class=\"button secondary\" onclick=\"previousSeed()\">← Prev</button>\n                    <button class=\"button secondary\" onclick=\"nextSeed()\">Next →</button>\n                </div>\n                <button class=\"button tertiary regen-button\" onclick=\"randomSeedAndUpdate()\">↻ Random</button>\n            </div>\n\n            <!-- Parameters Section (CUSTOMIZE THIS FOR YOUR ART) -->\n            <div class=\"control-section\">\n                <h3>Parameters</h3>\n                \n                <!-- Particle Count -->\n                <div class=\"control-group\">\n                    <label>Particle Count</label>\n                    <div class=\"slider-container\">\n                        <input type=\"range\" id=\"particleCount\" min=\"1000\" max=\"10000\" step=\"500\" value=\"5000\" oninput=\"updateParam('particleCount', this.value)\">\n                        <span class=\"value-display\" id=\"particleCount-value\">5000</span>\n                    </div>\n                </div>\n\n                <!-- Flow Speed -->\n                <div class=\"control-group\">\n                    <label>Flow Speed</label>\n                    <div class=\"slider-container\">\n                        <input type=\"range\" id=\"flowSpeed\" min=\"0.1\" max=\"2.0\" step=\"0.1\" value=\"0.5\" oninput=\"updateParam('flowSpeed', this.value)\">\n                        <span class=\"value-display\" id=\"flowSpeed-value\">0.5</span>\n                    </div>\n                </div>\n\n                <!-- Noise Scale -->\n                <div class=\"control-group\">\n                    <label>Noise Scale</label>\n                    <div class=\"slider-container\">\n                        <input type=\"range\" id=\"noiseScale\" min=\"0.001\" max=\"0.02\" step=\"0.001\" value=\"0.005\" oninput=\"updateParam('noiseScale', this.value)\">\n                        <span class=\"value-display\" id=\"noiseScale-value\">0.005</span>\n                    </div>\n                </div>\n\n                <!-- Trail Length -->\n                <div class=\"control-group\">\n                    <label>Trail Length</label>\n                    <div class=\"slider-container\">\n                        <input type=\"range\" id=\"trailLength\" min=\"2\" max=\"20\" step=\"1\" value=\"8\" oninput=\"updateParam('trailLength', this.value)\">\n                        <span class=\"value-display\" id=\"trailLength-value\">8</span>\n                    </div>\n                </div>\n            </div>\n\n            <!-- Colors Section (OPTIONAL - CUSTOMIZE OR REMOVE) -->\n            <div class=\"control-section\">\n                <h3>Colors</h3>\n                \n                <!-- Color 1 -->\n                <div class=\"color-group\">\n                    <label>Primary Color</label>\n                    <div class=\"color-picker-container\">\n                        <input type=\"color\" id=\"color1\" value=\"#d97757\" onchange=\"updateColor('color1', this.value)\">\n                        <span class=\"color-value\" id=\"color1-value\">#d97757</span>\n                    </div>\n                </div>\n\n                <!-- Color 2 -->\n                <div class=\"color-group\">\n                    <label>Secondary Color</label>\n                    <div class=\"color-picker-container\">\n                        <input type=\"color\" id=\"color2\" value=\"#6a9bcc\" onchange=\"updateColor('color2', this.value)\">\n                        <span class=\"color-value\" id=\"color2-value\">#6a9bcc</span>\n                    </div>\n                </div>\n\n                <!-- Color 3 -->\n                <div class=\"color-group\">\n                    <label>Accent Color</label>\n                    <div class=\"color-picker-container\">\n                        <input type=\"color\" id=\"color3\" value=\"#788c5d\" onchange=\"updateColor('color3', this.value)\">\n                        <span class=\"color-value\" id=\"color3-value\">#788c5d</span>\n                    </div>\n                </div>\n            </div>\n\n            <!-- Actions Section (ALWAYS KEEP THIS) -->\n            <div class=\"control-section\">\n                <h3>Actions</h3>\n                <div class=\"button-row\">\n                    <button class=\"button\" onclick=\"resetParameters()\">Reset</button>\n                </div>\n            </div>\n        </div>\n\n        <!-- Main Canvas Area -->\n        <div class=\"canvas-area\">\n            <div id=\"canvas-container\">\n                <div class=\"loading\">Initializing generative art...</div>\n            </div>\n        </div>\n    </div>\n\n    <script>\n        // ═══════════════════════════════════════════════════════════════════════\n        // GENERATIVE ART PARAMETERS - CUSTOMIZE FOR YOUR ALGORITHM\n        // ═══════════════════════════════════════════════════════════════════════\n\n        let params = {\n            seed: 12345,\n            particleCount: 5000,\n            flowSpeed: 0.5,\n            noiseScale: 0.005,\n            trailLength: 8,\n            colorPalette: ['#d97757', '#6a9bcc', '#788c5d']\n        };\n\n        let defaultParams = {...params}; // Store defaults for reset\n\n        // ═══════════════════════════════════════════════════════════════════════\n        // P5.JS GENERATIVE ART ALGORITHM - REPLACE WITH YOUR VISION\n        // ═══════════════════════════════════════════════════════════════════════\n\n        let particles = [];\n        let flowField = [];\n        let cols, rows;\n        let scl = 10; // Flow field resolution\n\n        function setup() {\n            let canvas = createCanvas(1200, 1200);\n            canvas.parent('canvas-container');\n            \n            initializeSystem();\n            \n            // Remove loading message\n            document.querySelector('.loading').style.display = 'none';\n        }\n\n        function initializeSystem() {\n            // Seed the randomness for reproducibility\n            randomSeed(params.seed);\n            noiseSeed(params.seed);\n\n            // Clear particles and recreate\n            particles = [];\n            \n            // Initialize particles\n            for (let i = 0; i < params.particleCount; i++) {\n                particles.push(new Particle());\n            }\n\n            // Calculate flow field dimensions\n            cols = floor(width / scl);\n            rows = floor(height / scl);\n            \n            // Generate flow field\n            generateFlowField();\n\n            // Clear background\n            background(250, 249, 245); // Anthropic light background\n        }\n\n        function generateFlowField() {\n          // fill this in\n        }\n\n        function draw() {\n            // fill this in\n        }\n\n        // ═══════════════════════════════════════════════════════════════════════\n        // PARTICLE SYSTEM - CUSTOMIZE FOR YOUR ALGORITHM\n        // ═══════════════════════════════════════════════════════════════════════\n\n        class Particle {\n            constructor() {\n                // fill this in\n            }\n            // fill this in\n        }\n\n        // ═══════════════════════════════════════════════════════════════════════\n        // UI CONTROL HANDLERS - CUSTOMIZE FOR YOUR PARAMETERS\n        // ═══════════════════════════════════════════════════════════════════════\n\n        function updateParam(paramName, value) {\n            // fill this in\n        }\n\n        function updateColor(colorId, value) {\n            // fill this in\n        }\n\n        // ═══════════════════════════════════════════════════════════════════════\n        // SEED CONTROL FUNCTIONS - ALWAYS KEEP THESE\n        // ═══════════════════════════════════════════════════════════════════════\n\n        function updateSeedDisplay() {\n            document.getElementById('seed-input').value = params.seed;\n        }\n\n        function updateSeed() {\n            let input = document.getElementById('seed-input');\n            let newSeed = parseInt(input.value);\n            if (newSeed && newSeed > 0) {\n                params.seed = newSeed;\n                initializeSystem();\n            } else {\n                // Reset to current seed if invalid\n                updateSeedDisplay();\n            }\n        }\n\n        function previousSeed() {\n            params.seed = Math.max(1, params.seed - 1);\n            updateSeedDisplay();\n            initializeSystem();\n        }\n\n        function nextSeed() {\n            params.seed = params.seed + 1;\n            updateSeedDisplay();\n            initializeSystem();\n        }\n\n        function randomSeedAndUpdate() {\n            params.seed = Math.floor(Math.random() * 999999) + 1;\n            updateSeedDisplay();\n            initializeSystem();\n        }\n\n        function resetParameters() {\n            params = {...defaultParams};\n            \n            // Update UI elements\n            document.getElementById('particleCount').value = params.particleCount;\n            document.getElementById('particleCount-value').textContent = params.particleCount;\n            document.getElementById('flowSpeed').value = params.flowSpeed;\n            document.getElementById('flowSpeed-value').textContent = params.flowSpeed;\n            document.getElementById('noiseScale').value = params.noiseScale;\n            document.getElementById('noiseScale-value').textContent = params.noiseScale;\n            document.getElementById('trailLength').value = params.trailLength;\n            document.getElementById('trailLength-value').textContent = params.trailLength;\n            \n            // Reset colors\n            document.getElementById('color1').value = params.colorPalette[0];\n            document.getElementById('color1-value').textContent = params.colorPalette[0];\n            document.getElementById('color2').value = params.colorPalette[1];\n            document.getElementById('color2-value').textContent = params.colorPalette[1];\n            document.getElementById('color3').value = params.colorPalette[2];\n            document.getElementById('color3-value').textContent = params.colorPalette[2];\n            \n            updateSeedDisplay();\n            initializeSystem();\n        }\n\n        // Initialize UI on load\n        window.addEventListener('load', function() {\n            updateSeedDisplay();\n        });\n    </script>\n</body>\n</html>"
  },
  {
    "path": "skills/brand-guidelines/LICENSE.txt",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License."
  },
  {
    "path": "skills/brand-guidelines/SKILL.md",
    "content": "---\nname: brand-guidelines\ndescription: Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.\nlicense: Complete terms in LICENSE.txt\n---\n\n# Anthropic Brand Styling\n\n## Overview\n\nTo access Anthropic's official brand identity and style resources, use this skill.\n\n**Keywords**: branding, corporate identity, visual identity, post-processing, styling, brand colors, typography, Anthropic brand, visual formatting, visual design\n\n## Brand Guidelines\n\n### Colors\n\n**Main Colors:**\n\n- Dark: `#141413` - Primary text and dark backgrounds\n- Light: `#faf9f5` - Light backgrounds and text on dark\n- Mid Gray: `#b0aea5` - Secondary elements\n- Light Gray: `#e8e6dc` - Subtle backgrounds\n\n**Accent Colors:**\n\n- Orange: `#d97757` - Primary accent\n- Blue: `#6a9bcc` - Secondary accent\n- Green: `#788c5d` - Tertiary accent\n\n### Typography\n\n- **Headings**: Poppins (with Arial fallback)\n- **Body Text**: Lora (with Georgia fallback)\n- **Note**: Fonts should be pre-installed in your environment for best results\n\n## Features\n\n### Smart Font Application\n\n- Applies Poppins font to headings (24pt and larger)\n- Applies Lora font to body text\n- Automatically falls back to Arial/Georgia if custom fonts unavailable\n- Preserves readability across all systems\n\n### Text Styling\n\n- Headings (24pt+): Poppins font\n- Body text: Lora font\n- Smart color selection based on background\n- Preserves text hierarchy and formatting\n\n### Shape and Accent Colors\n\n- Non-text shapes use accent colors\n- Cycles through orange, blue, and green accents\n- Maintains visual interest while staying on-brand\n\n## Technical Details\n\n### Font Management\n\n- Uses system-installed Poppins and Lora fonts when available\n- Provides automatic fallback to Arial (headings) and Georgia (body)\n- No font installation required - works with existing system fonts\n- For best results, pre-install Poppins and Lora fonts in your environment\n\n### Color Application\n\n- Uses RGB color values for precise brand matching\n- Applied via python-pptx's RGBColor class\n- Maintains color fidelity across different systems\n"
  },
  {
    "path": "skills/canvas-design/LICENSE.txt",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License."
  },
  {
    "path": "skills/canvas-design/SKILL.md",
    "content": "---\nname: canvas-design\ndescription: Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.\nlicense: Complete terms in LICENSE.txt\n---\n\nThese are instructions for creating design philosophies - aesthetic movements that are then EXPRESSED VISUALLY. Output only .md files, .pdf files, and .png files.\n\nComplete this in two steps:\n1. Design Philosophy Creation (.md file)\n2. Express by creating it on a canvas (.pdf file or .png file)\n\nFirst, undertake this task:\n\n## DESIGN PHILOSOPHY CREATION\n\nTo begin, create a VISUAL PHILOSOPHY (not layouts or templates) that will be interpreted through:\n- Form, space, color, composition\n- Images, graphics, shapes, patterns\n- Minimal text as visual accent\n\n### THE CRITICAL UNDERSTANDING\n- What is received: Some subtle input or instructions by the user that should be taken into account, but used as a foundation; it should not constrain creative freedom.\n- What is created: A design philosophy/aesthetic movement.\n- What happens next: Then, the same version receives the philosophy and EXPRESSES IT VISUALLY - creating artifacts that are 90% visual design, 10% essential text.\n\nConsider this approach:\n- Write a manifesto for an art movement\n- The next phase involves making the artwork\n\nThe philosophy must emphasize: Visual expression. Spatial communication. Artistic interpretation. Minimal words.\n\n### HOW TO GENERATE A VISUAL PHILOSOPHY\n\n**Name the movement** (1-2 words): \"Brutalist Joy\" / \"Chromatic Silence\" / \"Metabolist Dreams\"\n\n**Articulate the philosophy** (4-6 paragraphs - concise but complete):\n\nTo capture the VISUAL essence, express how the philosophy manifests through:\n- Space and form\n- Color and material\n- Scale and rhythm\n- Composition and balance\n- Visual hierarchy\n\n**CRITICAL GUIDELINES:**\n- **Avoid redundancy**: Each design aspect should be mentioned once. Avoid repeating points about color theory, spatial relationships, or typographic principles unless adding new depth.\n- **Emphasize craftsmanship REPEATEDLY**: The philosophy MUST stress multiple times that the final work should appear as though it took countless hours to create, was labored over with care, and comes from someone at the absolute top of their field. This framing is essential - repeat phrases like \"meticulously crafted,\" \"the product of deep expertise,\" \"painstaking attention,\" \"master-level execution.\"\n- **Leave creative space**: Remain specific about the aesthetic direction, but concise enough that the next Claude has room to make interpretive choices also at a extremely high level of craftmanship.\n\nThe philosophy must guide the next version to express ideas VISUALLY, not through text. Information lives in design, not paragraphs.\n\n### PHILOSOPHY EXAMPLES\n\n**\"Concrete Poetry\"**\nPhilosophy: Communication through monumental form and bold geometry.\nVisual expression: Massive color blocks, sculptural typography (huge single words, tiny labels), Brutalist spatial divisions, Polish poster energy meets Le Corbusier. Ideas expressed through visual weight and spatial tension, not explanation. Text as rare, powerful gesture - never paragraphs, only essential words integrated into the visual architecture. Every element placed with the precision of a master craftsman.\n\n**\"Chromatic Language\"**\nPhilosophy: Color as the primary information system.\nVisual expression: Geometric precision where color zones create meaning. Typography minimal - small sans-serif labels letting chromatic fields communicate. Think Josef Albers' interaction meets data visualization. Information encoded spatially and chromatically. Words only to anchor what color already shows. The result of painstaking chromatic calibration.\n\n**\"Analog Meditation\"**\nPhilosophy: Quiet visual contemplation through texture and breathing room.\nVisual expression: Paper grain, ink bleeds, vast negative space. Photography and illustration dominate. Typography whispered (small, restrained, serving the visual). Japanese photobook aesthetic. Images breathe across pages. Text appears sparingly - short phrases, never explanatory blocks. Each composition balanced with the care of a meditation practice.\n\n**\"Organic Systems\"**\nPhilosophy: Natural clustering and modular growth patterns.\nVisual expression: Rounded forms, organic arrangements, color from nature through architecture. Information shown through visual diagrams, spatial relationships, iconography. Text only for key labels floating in space. The composition tells the story through expert spatial orchestration.\n\n**\"Geometric Silence\"**\nPhilosophy: Pure order and restraint.\nVisual expression: Grid-based precision, bold photography or stark graphics, dramatic negative space. Typography precise but minimal - small essential text, large quiet zones. Swiss formalism meets Brutalist material honesty. Structure communicates, not words. Every alignment the work of countless refinements.\n\n*These are condensed examples. The actual design philosophy should be 4-6 substantial paragraphs.*\n\n### ESSENTIAL PRINCIPLES\n- **VISUAL PHILOSOPHY**: Create an aesthetic worldview to be expressed through design\n- **MINIMAL TEXT**: Always emphasize that text is sparse, essential-only, integrated as visual element - never lengthy\n- **SPATIAL EXPRESSION**: Ideas communicate through space, form, color, composition - not paragraphs\n- **ARTISTIC FREEDOM**: The next Claude interprets the philosophy visually - provide creative room\n- **PURE DESIGN**: This is about making ART OBJECTS, not documents with decoration\n- **EXPERT CRAFTSMANSHIP**: Repeatedly emphasize the final work must look meticulously crafted, labored over with care, the product of countless hours by someone at the top of their field\n\n**The design philosophy should be 4-6 paragraphs long.** Fill it with poetic design philosophy that brings together the core vision. Avoid repeating the same points. Keep the design philosophy generic without mentioning the intention of the art, as if it can be used wherever. Output the design philosophy as a .md file.\n\n---\n\n## DEDUCING THE SUBTLE REFERENCE\n\n**CRITICAL STEP**: Before creating the canvas, identify the subtle conceptual thread from the original request.\n\n**THE ESSENTIAL PRINCIPLE**:\nThe topic is a **subtle, niche reference embedded within the art itself** - not always literal, always sophisticated. Someone familiar with the subject should feel it intuitively, while others simply experience a masterful abstract composition. The design philosophy provides the aesthetic language. The deduced topic provides the soul - the quiet conceptual DNA woven invisibly into form, color, and composition.\n\nThis is **VERY IMPORTANT**: The reference must be refined so it enhances the work's depth without announcing itself. Think like a jazz musician quoting another song - only those who know will catch it, but everyone appreciates the music.\n\n---\n\n## CANVAS CREATION\n\nWith both the philosophy and the conceptual framework established, express it on a canvas. Take a moment to gather thoughts and clear the mind. Use the design philosophy created and the instructions below to craft a masterpiece, embodying all aspects of the philosophy with expert craftsmanship.\n\n**IMPORTANT**: For any type of content, even if the user requests something for a movie/game/book, the approach should still be sophisticated. Never lose sight of the idea that this should be art, not something that's cartoony or amateur.\n\nTo create museum or magazine quality work, use the design philosophy as the foundation. Create one single page, highly visual, design-forward PDF or PNG output (unless asked for more pages). Generally use repeating patterns and perfect shapes. Treat the abstract philosophical design as if it were a scientific bible, borrowing the visual language of systematic observation—dense accumulation of marks, repeated elements, or layered patterns that build meaning through patient repetition and reward sustained viewing. Add sparse, clinical typography and systematic reference markers that suggest this could be a diagram from an imaginary discipline, treating the invisible subject with the same reverence typically reserved for documenting observable phenomena. Anchor the piece with simple phrase(s) or details positioned subtly, using a limited color palette that feels intentional and cohesive. Embrace the paradox of using analytical visual language to express ideas about human experience: the result should feel like an artifact that proves something ephemeral can be studied, mapped, and understood through careful attention. This is true art. \n\n**Text as a contextual element**: Text is always minimal and visual-first, but let context guide whether that means whisper-quiet labels or bold typographic gestures. A punk venue poster might have larger, more aggressive type than a minimalist ceramics studio identity. Most of the time, font should be thin. All use of fonts must be design-forward and prioritize visual communication. Regardless of text scale, nothing falls off the page and nothing overlaps. Every element must be contained within the canvas boundaries with proper margins. Check carefully that all text, graphics, and visual elements have breathing room and clear separation. This is non-negotiable for professional execution. **IMPORTANT: Use different fonts if writing text. Search the `./canvas-fonts` directory. Regardless of approach, sophistication is non-negotiable.**\n\nDownload and use whatever fonts are needed to make this a reality. Get creative by making the typography actually part of the art itself -- if the art is abstract, bring the font onto the canvas, not typeset digitally.\n\nTo push boundaries, follow design instinct/intuition while using the philosophy as a guiding principle. Embrace ultimate design freedom and choice. Push aesthetics and design to the frontier. \n\n**CRITICAL**: To achieve human-crafted quality (not AI-generated), create work that looks like it took countless hours. Make it appear as though someone at the absolute top of their field labored over every detail with painstaking care. Ensure the composition, spacing, color choices, typography - everything screams expert-level craftsmanship. Double-check that nothing overlaps, formatting is flawless, every detail perfect. Create something that could be shown to people to prove expertise and rank as undeniably impressive.\n\nOutput the final result as a single, downloadable .pdf or .png file, alongside the design philosophy used as a .md file.\n\n---\n\n## FINAL STEP\n\n**IMPORTANT**: The user ALREADY said \"It isn't perfect enough. It must be pristine, a masterpiece if craftsmanship, as if it were about to be displayed in a museum.\"\n\n**CRITICAL**: To refine the work, avoid adding more graphics; instead refine what has been created and make it extremely crisp, respecting the design philosophy and the principles of minimalism entirely. Rather than adding a fun filter or refactoring a font, consider how to make the existing composition more cohesive with the art. If the instinct is to call a new function or draw a new shape, STOP and instead ask: \"How can I make what's already here more of a piece of art?\"\n\nTake a second pass. Go back to the code and refine/polish further to make this a philosophically designed masterpiece.\n\n## MULTI-PAGE OPTION\n\nTo create additional pages when requested, create more creative pages along the same lines as the design philosophy but distinctly different as well. Bundle those pages in the same .pdf or many .pngs. Treat the first page as just a single page in a whole coffee table book waiting to be filled. Make the next pages unique twists and memories of the original. Have them almost tell a story in a very tasteful way. Exercise full creative freedom."
  },
  {
    "path": "skills/canvas-design/canvas-fonts/ArsenalSC-OFL.txt",
    "content": "Copyright 2012 The Arsenal Project Authors (andrij.design@gmail.com)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/BigShoulders-OFL.txt",
    "content": "Copyright 2019 The Big Shoulders Project Authors (https://github.com/xotypeco/big_shoulders)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/Boldonse-OFL.txt",
    "content": "Copyright 2024 The Boldonse Project Authors (https://github.com/googlefonts/boldonse)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/BricolageGrotesque-OFL.txt",
    "content": "Copyright 2022 The Bricolage Grotesque Project Authors (https://github.com/ateliertriay/bricolage)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/CrimsonPro-OFL.txt",
    "content": "Copyright 2018 The Crimson Pro Project Authors (https://github.com/Fonthausen/CrimsonPro)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/DMMono-OFL.txt",
    "content": "Copyright 2020 The DM Mono Project Authors (https://www.github.com/googlefonts/dm-mono)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/EricaOne-OFL.txt",
    "content": "Copyright (c) 2011 by LatinoType Limitada (luciano@latinotype.com), \nwith Reserved Font Names \"Erica One\"\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/GeistMono-OFL.txt",
    "content": "Copyright 2024 The Geist Project Authors (https://github.com/vercel/geist-font.git)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/Gloock-OFL.txt",
    "content": "Copyright 2022 The Gloock Project Authors (https://github.com/duartp/gloock)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/IBMPlexMono-OFL.txt",
    "content": "Copyright © 2017 IBM Corp. with Reserved Font Name \"Plex\"\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/InstrumentSans-OFL.txt",
    "content": "Copyright 2022 The Instrument Sans Project Authors (https://github.com/Instrument/instrument-sans)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/Italiana-OFL.txt",
    "content": "Copyright (c) 2011, Santiago Orozco (hi@typemade.mx), with Reserved Font Name \"Italiana\".\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/JetBrainsMono-OFL.txt",
    "content": "Copyright 2020 The JetBrains Mono Project Authors (https://github.com/JetBrains/JetBrainsMono)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/Jura-OFL.txt",
    "content": "Copyright 2019 The Jura Project Authors (https://github.com/ossobuffo/jura)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/LibreBaskerville-OFL.txt",
    "content": "Copyright 2012 The Libre Baskerville Project Authors (https://github.com/impallari/Libre-Baskerville) with Reserved Font Name Libre Baskerville.\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/Lora-OFL.txt",
    "content": "Copyright 2011 The Lora Project Authors (https://github.com/cyrealtype/Lora-Cyrillic), with Reserved Font Name \"Lora\".\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/NationalPark-OFL.txt",
    "content": "Copyright 2025 The National Park Project Authors (https://github.com/benhoepner/National-Park)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/NothingYouCouldDo-OFL.txt",
    "content": "Copyright (c) 2010, Kimberly Geswein (kimberlygeswein.com)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/Outfit-OFL.txt",
    "content": "Copyright 2021 The Outfit Project Authors (https://github.com/Outfitio/Outfit-Fonts)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/PixelifySans-OFL.txt",
    "content": "Copyright 2021 The Pixelify Sans Project Authors (https://github.com/eifetx/Pixelify-Sans)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/PoiretOne-OFL.txt",
    "content": "Copyright (c) 2011, Denis Masharov (denis.masharov@gmail.com)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/RedHatMono-OFL.txt",
    "content": "Copyright 2024 The Red Hat Project Authors (https://github.com/RedHatOfficial/RedHatFont)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/Silkscreen-OFL.txt",
    "content": "Copyright 2001 The Silkscreen Project Authors (https://github.com/googlefonts/silkscreen)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/SmoochSans-OFL.txt",
    "content": "Copyright 2016 The Smooch Sans Project Authors (https://github.com/googlefonts/smooch-sans)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/Tektur-OFL.txt",
    "content": "Copyright 2023 The Tektur Project Authors (https://www.github.com/hyvyys/Tektur)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/WorkSans-OFL.txt",
    "content": "Copyright 2019 The Work Sans Project Authors (https://github.com/weiweihuanghuang/Work-Sans)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/canvas-design/canvas-fonts/YoungSerif-OFL.txt",
    "content": "Copyright 2023 The Young Serif Project Authors (https://github.com/noirblancrouge/YoungSerif)\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at:\nhttps://openfontlicense.org\n\n\n-----------------------------------------------------------\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n-----------------------------------------------------------\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded, \nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting -- in part or in whole -- any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "skills/claude-api/LICENSE.txt",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License."
  },
  {
    "path": "skills/claude-api/SKILL.md",
    "content": "---\nname: claude-api\ndescription: \"Build apps with the Claude API or Anthropic SDK. TRIGGER when: code imports `anthropic`/`@anthropic-ai/sdk`/`claude_agent_sdk`, or user asks to use Claude API, Anthropic SDKs, or Agent SDK. DO NOT TRIGGER when: code imports `openai`/other AI SDK, general programming, or ML/data-science tasks.\"\nlicense: Complete terms in LICENSE.txt\n---\n\n# Building LLM-Powered Applications with Claude\n\nThis skill helps you build LLM-powered applications with Claude. Choose the right surface based on your needs, detect the project language, then read the relevant language-specific documentation.\n\n## Defaults\n\nUnless the user requests otherwise:\n\nFor the Claude model version, please use Claude Opus 4.6, which you can access via the exact model string `claude-opus-4-6`. Please default to using adaptive thinking (`thinking: {type: \"adaptive\"}`) for anything remotely complicated. And finally, please default to streaming for any request that may involve long input, long output, or high `max_tokens` — it prevents hitting request timeouts. Use the SDK's `.get_final_message()` / `.finalMessage()` helper to get the complete response if you don't need to handle individual stream events\n\n---\n\n## Language Detection\n\nBefore reading code examples, determine which language the user is working in:\n\n1. **Look at project files** to infer the language:\n\n   - `*.py`, `requirements.txt`, `pyproject.toml`, `setup.py`, `Pipfile` → **Python** — read from `python/`\n   - `*.ts`, `*.tsx`, `package.json`, `tsconfig.json` → **TypeScript** — read from `typescript/`\n   - `*.js`, `*.jsx` (no `.ts` files present) → **TypeScript** — JS uses the same SDK, read from `typescript/`\n   - `*.java`, `pom.xml`, `build.gradle` → **Java** — read from `java/`\n   - `*.kt`, `*.kts`, `build.gradle.kts` → **Java** — Kotlin uses the Java SDK, read from `java/`\n   - `*.scala`, `build.sbt` → **Java** — Scala uses the Java SDK, read from `java/`\n   - `*.go`, `go.mod` → **Go** — read from `go/`\n   - `*.rb`, `Gemfile` → **Ruby** — read from `ruby/`\n   - `*.cs`, `*.csproj` → **C#** — read from `csharp/`\n   - `*.php`, `composer.json` → **PHP** — read from `php/`\n\n2. **If multiple languages detected** (e.g., both Python and TypeScript files):\n\n   - Check which language the user's current file or question relates to\n   - If still ambiguous, ask: \"I detected both Python and TypeScript files. Which language are you using for the Claude API integration?\"\n\n3. **If language can't be inferred** (empty project, no source files, or unsupported language):\n\n   - Use AskUserQuestion with options: Python, TypeScript, Java, Go, Ruby, cURL/raw HTTP, C#, PHP\n   - If AskUserQuestion is unavailable, default to Python examples and note: \"Showing Python examples. Let me know if you need a different language.\"\n\n4. **If unsupported language detected** (Rust, Swift, C++, Elixir, etc.):\n\n   - Suggest cURL/raw HTTP examples from `curl/` and note that community SDKs may exist\n   - Offer to show Python or TypeScript examples as reference implementations\n\n5. **If user needs cURL/raw HTTP examples**, read from `curl/`.\n\n### Language-Specific Feature Support\n\n| Language   | Tool Runner | Agent SDK | Notes                                 |\n| ---------- | ----------- | --------- | ------------------------------------- |\n| Python     | Yes (beta)  | Yes       | Full support — `@beta_tool` decorator |\n| TypeScript | Yes (beta)  | Yes       | Full support — `betaZodTool` + Zod    |\n| Java       | Yes (beta)  | No        | Beta tool use with annotated classes  |\n| Go         | Yes (beta)  | No        | `BetaToolRunner` in `toolrunner` pkg  |\n| Ruby       | Yes (beta)  | No        | `BaseTool` + `tool_runner` in beta    |\n| cURL       | N/A         | N/A       | Raw HTTP, no SDK features             |\n| C#         | No          | No        | Official SDK                          |\n| PHP        | No          | No        | Official SDK                          |\n\n---\n\n## Which Surface Should I Use?\n\n> **Start simple.** Default to the simplest tier that meets your needs. Single API calls and workflows handle most use cases — only reach for agents when the task genuinely requires open-ended, model-driven exploration.\n\n| Use Case                                        | Tier            | Recommended Surface       | Why                                     |\n| ----------------------------------------------- | --------------- | ------------------------- | --------------------------------------- |\n| Classification, summarization, extraction, Q&A  | Single LLM call | **Claude API**            | One request, one response               |\n| Batch processing or embeddings                  | Single LLM call | **Claude API**            | Specialized endpoints                   |\n| Multi-step pipelines with code-controlled logic | Workflow        | **Claude API + tool use** | You orchestrate the loop                |\n| Custom agent with your own tools                | Agent           | **Claude API + tool use** | Maximum flexibility                     |\n| AI agent with file/web/terminal access          | Agent           | **Agent SDK**             | Built-in tools, safety, and MCP support |\n| Agentic coding assistant                        | Agent           | **Agent SDK**             | Designed for this use case              |\n| Want built-in permissions and guardrails        | Agent           | **Agent SDK**             | Safety features included                |\n\n> **Note:** The Agent SDK is for when you want built-in file/web/terminal tools, permissions, and MCP out of the box. If you want to build an agent with your own tools, Claude API is the right choice — use the tool runner for automatic loop handling, or the manual loop for fine-grained control (approval gates, custom logging, conditional execution).\n\n### Decision Tree\n\n```\nWhat does your application need?\n\n1. Single LLM call (classification, summarization, extraction, Q&A)\n   └── Claude API — one request, one response\n\n2. Does Claude need to read/write files, browse the web, or run shell commands\n   as part of its work? (Not: does your app read a file and hand it to Claude —\n   does Claude itself need to discover and access files/web/shell?)\n   └── Yes → Agent SDK — built-in tools, don't reimplement them\n       Examples: \"scan a codebase for bugs\", \"summarize every file in a directory\",\n                 \"find bugs using subagents\", \"research a topic via web search\"\n\n3. Workflow (multi-step, code-orchestrated, with your own tools)\n   └── Claude API with tool use — you control the loop\n\n4. Open-ended agent (model decides its own trajectory, your own tools)\n   └── Claude API agentic loop (maximum flexibility)\n```\n\n### Should I Build an Agent?\n\nBefore choosing the agent tier, check all four criteria:\n\n- **Complexity** — Is the task multi-step and hard to fully specify in advance? (e.g., \"turn this design doc into a PR\" vs. \"extract the title from this PDF\")\n- **Value** — Does the outcome justify higher cost and latency?\n- **Viability** — Is Claude capable at this task type?\n- **Cost of error** — Can errors be caught and recovered from? (tests, review, rollback)\n\nIf the answer is \"no\" to any of these, stay at a simpler tier (single call or workflow).\n\n---\n\n## Architecture\n\nEverything goes through `POST /v1/messages`. Tools and output constraints are features of this single endpoint — not separate APIs.\n\n**User-defined tools** — You define tools (via decorators, Zod schemas, or raw JSON), and the SDK's tool runner handles calling the API, executing your functions, and looping until Claude is done. For full control, you can write the loop manually.\n\n**Server-side tools** — Anthropic-hosted tools that run on Anthropic's infrastructure. Code execution is fully server-side (declare it in `tools`, Claude runs code automatically). Computer use can be server-hosted or self-hosted.\n\n**Structured outputs** — Constrains the Messages API response format (`output_config.format`) and/or tool parameter validation (`strict: true`). The recommended approach is `client.messages.parse()` which validates responses against your schema automatically. Note: the old `output_format` parameter is deprecated; use `output_config: {format: {...}}` on `messages.create()`.\n\n**Supporting endpoints** — Batches (`POST /v1/messages/batches`), Files (`POST /v1/files`), and Token Counting feed into or support Messages API requests.\n\n---\n\n## Current Models (cached: 2026-02-17)\n\n| Model             | Model ID            | Context        | Input $/1M | Output $/1M |\n| ----------------- | ------------------- | -------------- | ---------- | ----------- |\n| Claude Opus 4.6   | `claude-opus-4-6`   | 200K (1M beta) | $5.00      | $25.00      |\n| Claude Sonnet 4.6 | `claude-sonnet-4-6` | 200K (1M beta) | $3.00      | $15.00      |\n| Claude Haiku 4.5  | `claude-haiku-4-5`  | 200K           | $1.00      | $5.00       |\n\n**ALWAYS use `claude-opus-4-6` unless the user explicitly names a different model.** This is non-negotiable. Do not use `claude-sonnet-4-6`, `claude-sonnet-4-5`, or any other model unless the user literally says \"use sonnet\" or \"use haiku\". Never downgrade for cost — that's the user's decision, not yours.\n\n**CRITICAL: Use only the exact model ID strings from the table above — they are complete as-is. Do not append date suffixes.** For example, use `claude-sonnet-4-5`, never `claude-sonnet-4-5-20250514` or any other date-suffixed variant you might recall from training data. If the user requests an older model not in the table (e.g., \"opus 4.5\", \"sonnet 3.7\"), read `shared/models.md` for the exact ID — do not construct one yourself.\n\nA note: if any of the model strings above look unfamiliar to you, that's to be expected — that just means they were released after your training data cutoff. Rest assured they are real models; we wouldn't mess with you like that.\n\n---\n\n## Thinking & Effort (Quick Reference)\n\n**Opus 4.6 — Adaptive thinking (recommended):** Use `thinking: {type: \"adaptive\"}`. Claude dynamically decides when and how much to think. No `budget_tokens` needed — `budget_tokens` is deprecated on Opus 4.6 and Sonnet 4.6 and must not be used. Adaptive thinking also automatically enables interleaved thinking (no beta header needed). **When the user asks for \"extended thinking\", a \"thinking budget\", or `budget_tokens`: always use Opus 4.6 with `thinking: {type: \"adaptive\"}`. The concept of a fixed token budget for thinking is deprecated — adaptive thinking replaces it. Do NOT use `budget_tokens` and do NOT switch to an older model.**\n\n**Effort parameter (GA, no beta header):** Controls thinking depth and overall token spend via `output_config: {effort: \"low\"|\"medium\"|\"high\"|\"max\"}` (inside `output_config`, not top-level). Default is `high` (equivalent to omitting it). `max` is Opus 4.6 only. Works on Opus 4.5, Opus 4.6, and Sonnet 4.6. Will error on Sonnet 4.5 / Haiku 4.5. Combine with adaptive thinking for the best cost-quality tradeoffs. Use `low` for subagents or simple tasks; `max` for the deepest reasoning.\n\n**Sonnet 4.6:** Supports adaptive thinking (`thinking: {type: \"adaptive\"}`). `budget_tokens` is deprecated on Sonnet 4.6 — use adaptive thinking instead.\n\n**Older models (only if explicitly requested):** If the user specifically asks for Sonnet 4.5 or another older model, use `thinking: {type: \"enabled\", budget_tokens: N}`. `budget_tokens` must be less than `max_tokens` (minimum 1024). Never choose an older model just because the user mentions `budget_tokens` — use Opus 4.6 with adaptive thinking instead.\n\n---\n\n## Compaction (Quick Reference)\n\n**Beta, Opus 4.6 only.** For long-running conversations that may exceed the 200K context window, enable server-side compaction. The API automatically summarizes earlier context when it approaches the trigger threshold (default: 150K tokens). Requires beta header `compact-2026-01-12`.\n\n**Critical:** Append `response.content` (not just the text) back to your messages on every turn. Compaction blocks in the response must be preserved — the API uses them to replace the compacted history on the next request. Extracting only the text string and appending that will silently lose the compaction state.\n\nSee `{lang}/claude-api/README.md` (Compaction section) for code examples. Full docs via WebFetch in `shared/live-sources.md`.\n\n---\n\n## Reading Guide\n\nAfter detecting the language, read the relevant files based on what the user needs:\n\n### Quick Task Reference\n\n**Single text classification/summarization/extraction/Q&A:**\n→ Read only `{lang}/claude-api/README.md`\n\n**Chat UI or real-time response display:**\n→ Read `{lang}/claude-api/README.md` + `{lang}/claude-api/streaming.md`\n\n**Long-running conversations (may exceed context window):**\n→ Read `{lang}/claude-api/README.md` — see Compaction section\n\n**Function calling / tool use / agents:**\n→ Read `{lang}/claude-api/README.md` + `shared/tool-use-concepts.md` + `{lang}/claude-api/tool-use.md`\n\n**Batch processing (non-latency-sensitive):**\n→ Read `{lang}/claude-api/README.md` + `{lang}/claude-api/batches.md`\n\n**File uploads across multiple requests:**\n→ Read `{lang}/claude-api/README.md` + `{lang}/claude-api/files-api.md`\n\n**Agent with built-in tools (file/web/terminal):**\n→ Read `{lang}/agent-sdk/README.md` + `{lang}/agent-sdk/patterns.md`\n\n### Claude API (Full File Reference)\n\nRead the **language-specific Claude API folder** (`{language}/claude-api/`):\n\n1. **`{language}/claude-api/README.md`** — **Read this first.** Installation, quick start, common patterns, error handling.\n2. **`shared/tool-use-concepts.md`** — Read when the user needs function calling, code execution, memory, or structured outputs. Covers conceptual foundations.\n3. **`{language}/claude-api/tool-use.md`** — Read for language-specific tool use code examples (tool runner, manual loop, code execution, memory, structured outputs).\n4. **`{language}/claude-api/streaming.md`** — Read when building chat UIs or interfaces that display responses incrementally.\n5. **`{language}/claude-api/batches.md`** — Read when processing many requests offline (not latency-sensitive). Runs asynchronously at 50% cost.\n6. **`{language}/claude-api/files-api.md`** — Read when sending the same file across multiple requests without re-uploading.\n7. **`shared/error-codes.md`** — Read when debugging HTTP errors or implementing error handling.\n8. **`shared/live-sources.md`** — WebFetch URLs for fetching the latest official documentation.\n\n> **Note:** For Java, Go, Ruby, C#, PHP, and cURL — these have a single file each covering all basics. Read that file plus `shared/tool-use-concepts.md` and `shared/error-codes.md` as needed.\n\n### Agent SDK\n\nRead the **language-specific Agent SDK folder** (`{language}/agent-sdk/`). Agent SDK is available for **Python and TypeScript only**.\n\n1. **`{language}/agent-sdk/README.md`** — Installation, quick start, built-in tools, permissions, MCP, hooks.\n2. **`{language}/agent-sdk/patterns.md`** — Custom tools, hooks, subagents, MCP integration, session resumption.\n3. **`shared/live-sources.md`** — WebFetch URLs for current Agent SDK docs.\n\n---\n\n## When to Use WebFetch\n\nUse WebFetch to get the latest documentation when:\n\n- User asks for \"latest\" or \"current\" information\n- Cached data seems incorrect\n- User asks about features not covered here\n\nLive documentation URLs are in `shared/live-sources.md`.\n\n## Common Pitfalls\n\n- Don't truncate inputs when passing files or content to the API. If the content is too long to fit in the context window, notify the user and discuss options (chunking, summarization, etc.) rather than silently truncating.\n- **Opus 4.6 / Sonnet 4.6 thinking:** Use `thinking: {type: \"adaptive\"}` — do NOT use `budget_tokens` (deprecated on both Opus 4.6 and Sonnet 4.6). For older models, `budget_tokens` must be less than `max_tokens` (minimum 1024). This will throw an error if you get it wrong.\n- **Opus 4.6 prefill removed:** Assistant message prefills (last-assistant-turn prefills) return a 400 error on Opus 4.6. Use structured outputs (`output_config.format`) or system prompt instructions to control response format instead.\n- **128K output tokens:** Opus 4.6 supports up to 128K `max_tokens`, but the SDKs require streaming for large `max_tokens` to avoid HTTP timeouts. Use `.stream()` with `.get_final_message()` / `.finalMessage()`.\n- **Tool call JSON parsing (Opus 4.6):** Opus 4.6 may produce different JSON string escaping in tool call `input` fields (e.g., Unicode or forward-slash escaping). Always parse tool inputs with `json.loads()` / `JSON.parse()` — never do raw string matching on the serialized input.\n- **Structured outputs (all models):** Use `output_config: {format: {...}}` instead of the deprecated `output_format` parameter on `messages.create()`. This is a general API change, not 4.6-specific.\n- **Don't reimplement SDK functionality:** The SDK provides high-level helpers — use them instead of building from scratch. Specifically: use `stream.finalMessage()` instead of wrapping `.on()` events in `new Promise()`; use typed exception classes (`Anthropic.RateLimitError`, etc.) instead of string-matching error messages; use SDK types (`Anthropic.MessageParam`, `Anthropic.Tool`, `Anthropic.Message`, etc.) instead of redefining equivalent interfaces.\n- **Don't define custom types for SDK data structures:** The SDK exports types for all API objects. Use `Anthropic.MessageParam` for messages, `Anthropic.Tool` for tool definitions, `Anthropic.ToolUseBlock` / `Anthropic.ToolResultBlockParam` for tool results, `Anthropic.Message` for responses. Defining your own `interface ChatMessage { role: string; content: unknown }` duplicates what the SDK already provides and loses type safety.\n- **Report and document output:** For tasks that produce reports, documents, or visualizations, the code execution sandbox has `python-docx`, `python-pptx`, `matplotlib`, `pillow`, and `pypdf` pre-installed. Claude can generate formatted files (DOCX, PDF, charts) and return them via the Files API — consider this for \"report\" or \"document\" type requests instead of plain stdout text.\n"
  },
  {
    "path": "skills/claude-api/csharp/claude-api.md",
    "content": "# Claude API — C#\n\n> **Note:** The C# SDK is the official Anthropic SDK for C#. Tool use is supported via the Messages API. A class-annotation-based tool runner is not available; use raw tool definitions with JSON schema. The SDK also supports Microsoft.Extensions.AI IChatClient integration with function invocation.\n\n## Installation\n\n```bash\ndotnet add package Anthropic\n```\n\n## Client Initialization\n\n```csharp\nusing Anthropic;\n\n// Default (uses ANTHROPIC_API_KEY env var)\nAnthropicClient client = new();\n\n// Explicit API key (use environment variables — never hardcode keys)\nAnthropicClient client = new() {\n    ApiKey = Environment.GetEnvironmentVariable(\"ANTHROPIC_API_KEY\")\n};\n```\n\n---\n\n## Basic Message Request\n\n```csharp\nusing Anthropic.Models.Messages;\n\nvar parameters = new MessageCreateParams\n{\n    Model = Model.ClaudeOpus4_6,\n    MaxTokens = 1024,\n    Messages = [new() { Role = Role.User, Content = \"What is the capital of France?\" }]\n};\nvar message = await client.Messages.Create(parameters);\nConsole.WriteLine(message);\n```\n\n---\n\n## Streaming\n\n```csharp\nusing Anthropic.Models.Messages;\n\nvar parameters = new MessageCreateParams\n{\n    Model = Model.ClaudeOpus4_6,\n    MaxTokens = 1024,\n    Messages = [new() { Role = Role.User, Content = \"Write a haiku\" }]\n};\n\nawait foreach (RawMessageStreamEvent streamEvent in client.Messages.CreateStreaming(parameters))\n{\n    if (streamEvent.TryPickContentBlockDelta(out var delta) &&\n        delta.Delta.TryPickText(out var text))\n    {\n        Console.Write(text.Text);\n    }\n}\n```\n\n---\n\n## Tool Use (Manual Loop)\n\nThe C# SDK supports raw tool definitions via JSON schema. See the [shared tool use concepts](../shared/tool-use-concepts.md) for the tool definition format and agentic loop pattern.\n"
  },
  {
    "path": "skills/claude-api/curl/examples.md",
    "content": "# Claude API — cURL / Raw HTTP\n\nUse these examples when the user needs raw HTTP requests or is working in a language without an official SDK.\n\n## Setup\n\n```bash\nexport ANTHROPIC_API_KEY=\"your-api-key\"\n```\n\n---\n\n## Basic Message Request\n\n```bash\ncurl https://api.anthropic.com/v1/messages \\\n  -H \"Content-Type: application/json\" \\\n  -H \"x-api-key: $ANTHROPIC_API_KEY\" \\\n  -H \"anthropic-version: 2023-06-01\" \\\n  -d '{\n    \"model\": \"claude-opus-4-6\",\n    \"max_tokens\": 1024,\n    \"messages\": [\n      {\"role\": \"user\", \"content\": \"What is the capital of France?\"}\n    ]\n  }'\n```\n\n---\n\n## Streaming (SSE)\n\n```bash\ncurl https://api.anthropic.com/v1/messages \\\n  -H \"Content-Type: application/json\" \\\n  -H \"x-api-key: $ANTHROPIC_API_KEY\" \\\n  -H \"anthropic-version: 2023-06-01\" \\\n  -d '{\n    \"model\": \"claude-opus-4-6\",\n    \"max_tokens\": 1024,\n    \"stream\": true,\n    \"messages\": [{\"role\": \"user\", \"content\": \"Write a haiku\"}]\n  }'\n```\n\nThe response is a stream of Server-Sent Events:\n\n```\nevent: message_start\ndata: {\"type\":\"message_start\",\"message\":{\"id\":\"msg_...\",\"type\":\"message\",...}}\n\nevent: content_block_start\ndata: {\"type\":\"content_block_start\",\"index\":0,\"content_block\":{\"type\":\"text\",\"text\":\"\"}}\n\nevent: content_block_delta\ndata: {\"type\":\"content_block_delta\",\"index\":0,\"delta\":{\"type\":\"text_delta\",\"text\":\"Hello\"}}\n\nevent: content_block_stop\ndata: {\"type\":\"content_block_stop\",\"index\":0}\n\nevent: message_delta\ndata: {\"type\":\"message_delta\",\"delta\":{\"stop_reason\":\"end_turn\"},\"usage\":{\"output_tokens\":12}}\n\nevent: message_stop\ndata: {\"type\":\"message_stop\"}\n```\n\n---\n\n## Tool Use\n\n```bash\ncurl https://api.anthropic.com/v1/messages \\\n  -H \"Content-Type: application/json\" \\\n  -H \"x-api-key: $ANTHROPIC_API_KEY\" \\\n  -H \"anthropic-version: 2023-06-01\" \\\n  -d '{\n    \"model\": \"claude-opus-4-6\",\n    \"max_tokens\": 1024,\n    \"tools\": [{\n      \"name\": \"get_weather\",\n      \"description\": \"Get current weather for a location\",\n      \"input_schema\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"location\": {\"type\": \"string\", \"description\": \"City name\"}\n        },\n        \"required\": [\"location\"]\n      }\n    }],\n    \"messages\": [{\"role\": \"user\", \"content\": \"What is the weather in Paris?\"}]\n  }'\n```\n\nWhen Claude responds with a `tool_use` block, send the result back:\n\n```bash\ncurl https://api.anthropic.com/v1/messages \\\n  -H \"Content-Type: application/json\" \\\n  -H \"x-api-key: $ANTHROPIC_API_KEY\" \\\n  -H \"anthropic-version: 2023-06-01\" \\\n  -d '{\n    \"model\": \"claude-opus-4-6\",\n    \"max_tokens\": 1024,\n    \"tools\": [{\n      \"name\": \"get_weather\",\n      \"description\": \"Get current weather for a location\",\n      \"input_schema\": {\n        \"type\": \"object\",\n        \"properties\": {\n          \"location\": {\"type\": \"string\", \"description\": \"City name\"}\n        },\n        \"required\": [\"location\"]\n      }\n    }],\n    \"messages\": [\n      {\"role\": \"user\", \"content\": \"What is the weather in Paris?\"},\n      {\"role\": \"assistant\", \"content\": [\n        {\"type\": \"text\", \"text\": \"Let me check the weather.\"},\n        {\"type\": \"tool_use\", \"id\": \"toolu_abc123\", \"name\": \"get_weather\", \"input\": {\"location\": \"Paris\"}}\n      ]},\n      {\"role\": \"user\", \"content\": [\n        {\"type\": \"tool_result\", \"tool_use_id\": \"toolu_abc123\", \"content\": \"72°F and sunny\"}\n      ]}\n    ]\n  }'\n```\n\n---\n\n## Extended Thinking\n\n> **Opus 4.6 and Sonnet 4.6:** Use adaptive thinking. `budget_tokens` is deprecated on both Opus 4.6 and Sonnet 4.6.\n> **Older models:** Use `\"type\": \"enabled\"` with `\"budget_tokens\": N` (must be < `max_tokens`, min 1024).\n\n```bash\n# Opus 4.6: adaptive thinking (recommended)\ncurl https://api.anthropic.com/v1/messages \\\n  -H \"Content-Type: application/json\" \\\n  -H \"x-api-key: $ANTHROPIC_API_KEY\" \\\n  -H \"anthropic-version: 2023-06-01\" \\\n  -d '{\n    \"model\": \"claude-opus-4-6\",\n    \"max_tokens\": 16000,\n    \"thinking\": {\n      \"type\": \"adaptive\"\n    },\n    \"output_config\": {\n      \"effort\": \"high\"\n    },\n    \"messages\": [{\"role\": \"user\", \"content\": \"Solve this step by step...\"}]\n  }'\n```\n\n---\n\n## Required Headers\n\n| Header              | Value              | Description                |\n| ------------------- | ------------------ | -------------------------- |\n| `Content-Type`      | `application/json` | Required                   |\n| `x-api-key`         | Your API key       | Authentication             |\n| `anthropic-version` | `2023-06-01`       | API version                |\n| `anthropic-beta`    | Beta feature IDs   | Required for beta features |\n"
  },
  {
    "path": "skills/claude-api/go/claude-api.md",
    "content": "# Claude API — Go\n\n> **Note:** The Go SDK supports the Claude API and beta tool use with `BetaToolRunner`. Agent SDK is not yet available for Go.\n\n## Installation\n\n```bash\ngo get github.com/anthropics/anthropic-sdk-go\n```\n\n## Client Initialization\n\n```go\nimport (\n    \"github.com/anthropics/anthropic-sdk-go\"\n    \"github.com/anthropics/anthropic-sdk-go/option\"\n)\n\n// Default (uses ANTHROPIC_API_KEY env var)\nclient := anthropic.NewClient()\n\n// Explicit API key\nclient := anthropic.NewClient(\n    option.WithAPIKey(\"your-api-key\"),\n)\n```\n\n---\n\n## Basic Message Request\n\n```go\nresponse, err := client.Messages.New(context.TODO(), anthropic.MessageNewParams{\n    Model:     anthropic.ModelClaudeOpus4_6,\n    MaxTokens: 1024,\n    Messages: []anthropic.MessageParam{\n        anthropic.NewUserMessage(anthropic.NewTextBlock(\"What is the capital of France?\")),\n    },\n})\nif err != nil {\n    log.Fatal(err)\n}\nfmt.Println(response.Content[0].Text)\n```\n\n---\n\n## Streaming\n\n```go\nstream := client.Messages.NewStreaming(context.TODO(), anthropic.MessageNewParams{\n    Model:     anthropic.ModelClaudeOpus4_6,\n    MaxTokens: 1024,\n    Messages: []anthropic.MessageParam{\n        anthropic.NewUserMessage(anthropic.NewTextBlock(\"Write a haiku\")),\n    },\n})\n\nfor stream.Next() {\n    event := stream.Current()\n    switch eventVariant := event.AsAny().(type) {\n    case anthropic.ContentBlockDeltaEvent:\n        switch deltaVariant := eventVariant.Delta.AsAny().(type) {\n        case anthropic.TextDelta:\n            fmt.Print(deltaVariant.Text)\n        }\n    }\n}\nif err := stream.Err(); err != nil {\n    log.Fatal(err)\n}\n```\n\n---\n\n## Tool Use\n\n### Tool Runner (Beta — Recommended)\n\n**Beta:** The Go SDK provides `BetaToolRunner` for automatic tool use loops via the `toolrunner` package.\n\n```go\nimport (\n    \"context\"\n    \"fmt\"\n    \"log\"\n\n    \"github.com/anthropics/anthropic-sdk-go\"\n    \"github.com/anthropics/anthropic-sdk-go/toolrunner\"\n)\n\n// Define tool input with jsonschema tags for automatic schema generation\ntype GetWeatherInput struct {\n    City string `json:\"city\" jsonschema:\"required,description=The city name\"`\n}\n\n// Create a tool with automatic schema generation from struct tags\nweatherTool, err := toolrunner.NewBetaToolFromJSONSchema(\n    \"get_weather\",\n    \"Get current weather for a city\",\n    func(ctx context.Context, input GetWeatherInput) (anthropic.BetaToolResultBlockParamContentUnion, error) {\n        return anthropic.BetaToolResultBlockParamContentUnion{\n            OfText: &anthropic.BetaTextBlockParam{\n                Text: fmt.Sprintf(\"The weather in %s is sunny, 72°F\", input.City),\n            },\n        }, nil\n    },\n)\nif err != nil {\n    log.Fatal(err)\n}\n\n// Create a tool runner that handles the conversation loop automatically\nrunner := client.Beta.Messages.NewToolRunner(\n    []anthropic.BetaTool{weatherTool},\n    anthropic.BetaToolRunnerParams{\n        BetaMessageNewParams: anthropic.BetaMessageNewParams{\n            Model:     anthropic.ModelClaudeOpus4_6,\n            MaxTokens: 1024,\n            Messages: []anthropic.BetaMessageParam{\n                anthropic.NewBetaUserMessage(anthropic.NewBetaTextBlock(\"What's the weather in Paris?\")),\n            },\n        },\n        MaxIterations: 5,\n    },\n)\n\n// Run until Claude produces a final response\nmessage, err := runner.RunToCompletion(context.Background())\nif err != nil {\n    log.Fatal(err)\n}\nfmt.Println(message.Content[0].Text)\n```\n\n**Key features of the Go tool runner:**\n\n- Automatic schema generation from Go structs via `jsonschema` tags\n- `RunToCompletion()` for simple one-shot usage\n- `All()` iterator for processing each message in the conversation\n- `NextMessage()` for step-by-step iteration\n- Streaming variant via `NewToolRunnerStreaming()` with `AllStreaming()`\n\n### Manual Loop\n\nFor fine-grained control, use raw tool definitions via JSON schema. See the [shared tool use concepts](../shared/tool-use-concepts.md) for the tool definition format and agentic loop pattern.\n"
  },
  {
    "path": "skills/claude-api/java/claude-api.md",
    "content": "# Claude API — Java\n\n> **Note:** The Java SDK supports the Claude API and beta tool use with annotated classes. Agent SDK is not yet available for Java.\n\n## Installation\n\nMaven:\n\n```xml\n<dependency>\n    <groupId>com.anthropic</groupId>\n    <artifactId>anthropic-java</artifactId>\n    <version>2.15.0</version>\n</dependency>\n```\n\nGradle:\n\n```groovy\nimplementation(\"com.anthropic:anthropic-java:2.15.0\")\n```\n\n## Client Initialization\n\n```java\nimport com.anthropic.client.AnthropicClient;\nimport com.anthropic.client.okhttp.AnthropicOkHttpClient;\n\n// Default (reads ANTHROPIC_API_KEY from environment)\nAnthropicClient client = AnthropicOkHttpClient.fromEnv();\n\n// Explicit API key\nAnthropicClient client = AnthropicOkHttpClient.builder()\n    .apiKey(\"your-api-key\")\n    .build();\n```\n\n---\n\n## Basic Message Request\n\n```java\nimport com.anthropic.models.messages.MessageCreateParams;\nimport com.anthropic.models.messages.Message;\nimport com.anthropic.models.messages.Model;\n\nMessageCreateParams params = MessageCreateParams.builder()\n    .model(Model.CLAUDE_OPUS_4_6)\n    .maxTokens(1024L)\n    .addUserMessage(\"What is the capital of France?\")\n    .build();\n\nMessage response = client.messages().create(params);\nresponse.content().stream()\n    .flatMap(block -> block.text().stream())\n    .forEach(textBlock -> System.out.println(textBlock.text()));\n```\n\n---\n\n## Streaming\n\n```java\nimport com.anthropic.core.http.StreamResponse;\nimport com.anthropic.models.messages.RawMessageStreamEvent;\n\nMessageCreateParams params = MessageCreateParams.builder()\n    .model(Model.CLAUDE_OPUS_4_6)\n    .maxTokens(1024L)\n    .addUserMessage(\"Write a haiku\")\n    .build();\n\ntry (StreamResponse<RawMessageStreamEvent> streamResponse = client.messages().createStreaming(params)) {\n    streamResponse.stream()\n        .flatMap(event -> event.contentBlockDelta().stream())\n        .flatMap(deltaEvent -> deltaEvent.delta().text().stream())\n        .forEach(textDelta -> System.out.print(textDelta.text()));\n}\n```\n\n---\n\n## Tool Use (Beta)\n\nThe Java SDK supports beta tool use with annotated classes. Tool classes implement `Supplier<String>` for automatic execution via `BetaToolRunner`.\n\n### Tool Runner (automatic loop)\n\n```java\nimport com.anthropic.models.beta.messages.MessageCreateParams;\nimport com.anthropic.models.beta.messages.BetaMessage;\nimport com.anthropic.helpers.BetaToolRunner;\nimport com.fasterxml.jackson.annotation.JsonClassDescription;\nimport com.fasterxml.jackson.annotation.JsonPropertyDescription;\nimport java.util.function.Supplier;\n\n@JsonClassDescription(\"Get the weather in a given location\")\nstatic class GetWeather implements Supplier<String> {\n    @JsonPropertyDescription(\"The city and state, e.g. San Francisco, CA\")\n    public String location;\n\n    @Override\n    public String get() {\n        return \"The weather in \" + location + \" is sunny and 72°F\";\n    }\n}\n\nBetaToolRunner toolRunner = client.beta().messages().toolRunner(\n    MessageCreateParams.builder()\n        .model(\"claude-opus-4-6\")\n        .maxTokens(1024L)\n        .putAdditionalHeader(\"anthropic-beta\", \"structured-outputs-2025-11-13\")\n        .addTool(GetWeather.class)\n        .addUserMessage(\"What's the weather in San Francisco?\")\n        .build());\n\nfor (BetaMessage message : toolRunner) {\n    System.out.println(message);\n}\n```\n\n### Non-Beta Tool Use\n\nTool use is also available through the non-beta `com.anthropic.models.messages.MessageCreateParams` with `addTool(Tool)` for manually defined JSON schemas, without needing the beta namespace. The beta namespace is only needed for the class-annotation convenience layer (`@JsonClassDescription`, `BetaToolRunner`).\n\n### Manual Loop\n\nFor manual tool loops, define tools as JSON schema in the request, handle `tool_use` blocks in the response, send `tool_result` back, and loop until `stop_reason` is `\"end_turn\"`. See the [shared tool use concepts](../shared/tool-use-concepts.md) for the agentic loop pattern.\n"
  },
  {
    "path": "skills/claude-api/php/claude-api.md",
    "content": "# Claude API — PHP\n\n> **Note:** The PHP SDK is the official Anthropic SDK for PHP. Tool runner and Agent SDK are not available. Bedrock, Vertex AI, and Foundry clients are supported.\n\n## Installation\n\n```bash\ncomposer require \"anthropic-ai/sdk\"\n```\n\n## Client Initialization\n\n```php\nuse Anthropic\\Client;\n\n// Using API key from environment variable\n$client = new Client(apiKey: getenv(\"ANTHROPIC_API_KEY\"));\n```\n\n### Amazon Bedrock\n\n```php\nuse Anthropic\\BedrockClient;\n\n$client = new BedrockClient(\n    region: 'us-east-1',\n);\n```\n\n### Google Vertex AI\n\n```php\nuse Anthropic\\VertexClient;\n\n$client = new VertexClient(\n    region: 'us-east5',\n    projectId: 'my-project-id',\n);\n```\n\n### Anthropic Foundry\n\n```php\nuse Anthropic\\FoundryClient;\n\n$client = new FoundryClient(\n    authToken: getenv(\"ANTHROPIC_AUTH_TOKEN\"),\n);\n```\n\n---\n\n## Basic Message Request\n\n```php\n$message = $client->messages->create(\n    model: 'claude-opus-4-6',\n    maxTokens: 1024,\n    messages: [\n        ['role' => 'user', 'content' => 'What is the capital of France?'],\n    ],\n);\necho $message->content[0]->text;\n```\n\n---\n\n## Streaming\n\n```php\n$stream = $client->messages->createStream(\n    model: 'claude-opus-4-6',\n    maxTokens: 1024,\n    messages: [\n        ['role' => 'user', 'content' => 'Write a haiku'],\n    ],\n);\n\nforeach ($stream as $event) {\n    echo $event;\n}\n```\n\n---\n\n## Tool Use (Manual Loop)\n\nThe PHP SDK supports raw tool definitions via JSON schema. See the [shared tool use concepts](../shared/tool-use-concepts.md) for the tool definition format and agentic loop pattern.\n"
  },
  {
    "path": "skills/claude-api/python/agent-sdk/README.md",
    "content": "# Agent SDK — Python\n\nThe Claude Agent SDK provides a higher-level interface for building AI agents with built-in tools, safety features, and agentic capabilities.\n\n## Installation\n\n```bash\npip install claude-agent-sdk\n```\n\n---\n\n## Quick Start\n\n```python\nimport anyio\nfrom claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage\n\nasync def main():\n    async for message in query(\n        prompt=\"Explain this codebase\",\n        options=ClaudeAgentOptions(allowed_tools=[\"Read\", \"Glob\", \"Grep\"])\n    ):\n        if isinstance(message, ResultMessage):\n            print(message.result)\n\nanyio.run(main)\n```\n\n---\n\n## Built-in Tools\n\n| Tool      | Description                          |\n| --------- | ------------------------------------ |\n| Read      | Read files in the workspace          |\n| Write     | Create new files                     |\n| Edit      | Make precise edits to existing files |\n| Bash      | Execute shell commands               |\n| Glob      | Find files by pattern                |\n| Grep      | Search files by content              |\n| WebSearch | Search the web for information       |\n| WebFetch        | Fetch and analyze web pages          |\n| AskUserQuestion | Ask user clarifying questions         |\n| Agent           | Spawn subagents                      |\n\n---\n\n## Primary Interfaces\n\n### `query()` — Simple One-Shot Usage\n\nThe `query()` function is the simplest way to run an agent. It returns an async iterator of messages.\n\n```python\nfrom claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage\n\nasync for message in query(\n    prompt=\"Explain this codebase\",\n    options=ClaudeAgentOptions(allowed_tools=[\"Read\", \"Glob\", \"Grep\"])\n):\n    if isinstance(message, ResultMessage):\n        print(message.result)\n```\n\n### `ClaudeSDKClient` — Full Control\n\n`ClaudeSDKClient` provides full control over the agent lifecycle. Use it when you need custom tools, hooks, streaming, or the ability to interrupt execution.\n\n```python\nimport anyio\nfrom claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions, AssistantMessage, TextBlock\n\nasync def main():\n    options = ClaudeAgentOptions(allowed_tools=[\"Read\", \"Glob\", \"Grep\"])\n    async with ClaudeSDKClient(options=options) as client:\n        await client.query(\"Explain this codebase\")\n        async for message in client.receive_response():\n            if isinstance(message, AssistantMessage):\n                for block in message.content:\n                    if isinstance(block, TextBlock):\n                        print(block.text)\n\nanyio.run(main)\n```\n\n`ClaudeSDKClient` supports:\n\n- **Context manager** (`async with`) for automatic resource cleanup\n- **`client.query(prompt)`** to send a prompt to the agent\n- **`receive_response()`** for streaming messages until completion\n- **`interrupt()`** to stop agent execution mid-task\n- **Required for custom tools** (via SDK MCP servers)\n\n---\n\n## Permission System\n\n```python\nfrom claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage\n\nasync for message in query(\n    prompt=\"Refactor the authentication module\",\n    options=ClaudeAgentOptions(\n        allowed_tools=[\"Read\", \"Edit\", \"Write\"],\n        permission_mode=\"acceptEdits\"  # Auto-accept file edits\n    )\n):\n    if isinstance(message, ResultMessage):\n        print(message.result)\n```\n\nPermission modes:\n\n- `\"default\"`: Prompt for dangerous operations\n- `\"plan\"`: Planning only, no execution\n- `\"acceptEdits\"`: Auto-accept file edits\n- `\"dontAsk\"`: Don't prompt (useful for CI/CD)\n- `\"bypassPermissions\"`: Skip all prompts (requires `allow_dangerously_skip_permissions=True` in options)\n\n---\n\n## MCP (Model Context Protocol) Support\n\n```python\nfrom claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage\n\nasync for message in query(\n    prompt=\"Open example.com and describe what you see\",\n    options=ClaudeAgentOptions(\n        mcp_servers={\n            \"playwright\": {\"command\": \"npx\", \"args\": [\"@playwright/mcp@latest\"]}\n        }\n    )\n):\n    if isinstance(message, ResultMessage):\n        print(message.result)\n```\n\n---\n\n## Hooks\n\nCustomize agent behavior with hooks using callback functions:\n\n```python\nfrom claude_agent_sdk import query, ClaudeAgentOptions, HookMatcher, ResultMessage\n\nasync def log_file_change(input_data, tool_use_id, context):\n    file_path = input_data.get('tool_input', {}).get('file_path', 'unknown')\n    print(f\"Modified: {file_path}\")\n    return {}\n\nasync for message in query(\n    prompt=\"Refactor utils.py\",\n    options=ClaudeAgentOptions(\n        permission_mode=\"acceptEdits\",\n        hooks={\n            \"PostToolUse\": [HookMatcher(matcher=\"Edit|Write\", hooks=[log_file_change])]\n        }\n    )\n):\n    if isinstance(message, ResultMessage):\n        print(message.result)\n```\n\nAvailable hook events: `PreToolUse`, `PostToolUse`, `PostToolUseFailure`, `Notification`, `UserPromptSubmit`, `SessionStart`, `SessionEnd`, `Stop`, `SubagentStart`, `SubagentStop`, `PreCompact`, `PermissionRequest`, `Setup`, `TeammateIdle`, `TaskCompleted`, `ConfigChange`\n\n---\n\n## Common Options\n\n`query()` takes a top-level `prompt` (string) and an `options` object (`ClaudeAgentOptions`):\n\n```python\nasync for message in query(prompt=\"...\", options=ClaudeAgentOptions(...)):\n```\n\n| Option                              | Type   | Description                                                                |\n| ----------------------------------- | ------ | -------------------------------------------------------------------------- |\n| `cwd`                               | string | Working directory for file operations                                      |\n| `allowed_tools`                     | list   | Tools the agent can use (e.g., `[\"Read\", \"Edit\", \"Bash\"]`)                |\n| `tools`                             | list   | Built-in tools to make available (restricts the default set)               |\n| `disallowed_tools`                  | list   | Tools to explicitly disallow                                               |\n| `permission_mode`                   | string | How to handle permission prompts                                           |\n| `allow_dangerously_skip_permissions`| bool   | Must be `True` to use `permission_mode=\"bypassPermissions\"`                |\n| `mcp_servers`                       | dict   | MCP servers to connect to                                                  |\n| `hooks`                             | dict   | Hooks for customizing behavior                                             |\n| `system_prompt`                     | string | Custom system prompt                                                       |\n| `max_turns`                         | int    | Maximum agent turns before stopping                                        |\n| `max_budget_usd`                    | float  | Maximum budget in USD for the query                                        |\n| `model`                             | string | Model ID (default: determined by CLI)                                      |\n| `agents`                            | dict   | Subagent definitions (`dict[str, AgentDefinition]`)                        |\n| `output_format`                     | dict   | Structured output schema                                                   |\n| `thinking`                          | dict   | Thinking/reasoning control                                                 |\n| `betas`                             | list   | Beta features to enable (e.g., `[\"context-1m-2025-08-07\"]`)               |\n| `setting_sources`                   | list   | Settings to load (e.g., `[\"project\"]`). Default: none (no CLAUDE.md files) |\n| `env`                               | dict   | Environment variables to set for the session                               |\n\n---\n\n## Message Types\n\n```python\nfrom claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage, SystemMessage\n\nasync for message in query(\n    prompt=\"Find TODO comments\",\n    options=ClaudeAgentOptions(allowed_tools=[\"Read\", \"Glob\", \"Grep\"])\n):\n    if isinstance(message, ResultMessage):\n        print(message.result)\n    elif isinstance(message, SystemMessage) and message.subtype == \"init\":\n        session_id = message.session_id  # Capture for resuming later\n```\n\n---\n\n## Subagents\n\n```python\nfrom claude_agent_sdk import query, ClaudeAgentOptions, AgentDefinition, ResultMessage\n\nasync for message in query(\n    prompt=\"Use the code-reviewer agent to review this codebase\",\n    options=ClaudeAgentOptions(\n        allowed_tools=[\"Read\", \"Glob\", \"Grep\", \"Agent\"],\n        agents={\n            \"code-reviewer\": AgentDefinition(\n                description=\"Expert code reviewer for quality and security reviews.\",\n                prompt=\"Analyze code quality and suggest improvements.\",\n                tools=[\"Read\", \"Glob\", \"Grep\"]\n            )\n        }\n    )\n):\n    if isinstance(message, ResultMessage):\n        print(message.result)\n```\n\n---\n\n## Error Handling\n\n```python\nfrom claude_agent_sdk import query, ClaudeAgentOptions, CLINotFoundError, CLIConnectionError, ResultMessage\n\ntry:\n    async for message in query(\n        prompt=\"...\",\n        options=ClaudeAgentOptions(allowed_tools=[\"Read\"])\n    ):\n        if isinstance(message, ResultMessage):\n            print(message.result)\nexcept CLINotFoundError:\n    print(\"Claude Code CLI not found. Install with: pip install claude-agent-sdk\")\nexcept CLIConnectionError as e:\n    print(f\"Connection error: {e}\")\n```\n\n---\n\n## Best Practices\n\n1. **Always specify allowed_tools** — Explicitly list which tools the agent can use\n2. **Set working directory** — Always specify `cwd` for file operations\n3. **Use appropriate permission modes** — Start with `\"default\"` and only escalate when needed\n4. **Handle all message types** — Check for `ResultMessage` to get agent output\n5. **Limit max_turns** — Prevent runaway agents with reasonable limits\n"
  },
  {
    "path": "skills/claude-api/python/agent-sdk/patterns.md",
    "content": "# Agent SDK Patterns — Python\n\n## Basic Agent\n\n```python\nimport anyio\nfrom claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage\n\nasync def main():\n    async for message in query(\n        prompt=\"Explain what this repository does\",\n        options=ClaudeAgentOptions(\n            cwd=\"/path/to/project\",\n            allowed_tools=[\"Read\", \"Glob\", \"Grep\"]\n        )\n    ):\n        if isinstance(message, ResultMessage):\n            print(message.result)\n\nanyio.run(main)\n```\n\n---\n\n## Custom Tools\n\nCustom tools require an MCP server. Use `ClaudeSDKClient` for full control, or pass the server to `query()` via `mcp_servers`.\n\n```python\nimport anyio\nfrom claude_agent_sdk import (\n    tool,\n    create_sdk_mcp_server,\n    ClaudeSDKClient,\n    ClaudeAgentOptions,\n    AssistantMessage,\n    TextBlock,\n)\n\n@tool(\"get_weather\", \"Get the current weather for a location\", {\"location\": str})\nasync def get_weather(args):\n    location = args[\"location\"]\n    return {\"content\": [{\"type\": \"text\", \"text\": f\"The weather in {location} is sunny and 72°F.\"}]}\n\nserver = create_sdk_mcp_server(\"weather-tools\", tools=[get_weather])\n\nasync def main():\n    options = ClaudeAgentOptions(mcp_servers={\"weather\": server})\n    async with ClaudeSDKClient(options=options) as client:\n        await client.query(\"What's the weather in Paris?\")\n        async for message in client.receive_response():\n            if isinstance(message, AssistantMessage):\n                for block in message.content:\n                    if isinstance(block, TextBlock):\n                        print(block.text)\n\nanyio.run(main)\n```\n\n---\n\n## Hooks\n\n### After Tool Use Hook\n\nLog file changes after any edit:\n\n```python\nimport anyio\nfrom datetime import datetime\nfrom claude_agent_sdk import query, ClaudeAgentOptions, HookMatcher, ResultMessage\n\nasync def log_file_change(input_data, tool_use_id, context):\n    file_path = input_data.get('tool_input', {}).get('file_path', 'unknown')\n    with open('./audit.log', 'a') as f:\n        f.write(f\"{datetime.now()}: modified {file_path}\\n\")\n    return {}\n\nasync def main():\n    async for message in query(\n        prompt=\"Refactor utils.py to improve readability\",\n        options=ClaudeAgentOptions(\n            allowed_tools=[\"Read\", \"Edit\", \"Write\"],\n            permission_mode=\"acceptEdits\",\n            hooks={\n                \"PostToolUse\": [HookMatcher(matcher=\"Edit|Write\", hooks=[log_file_change])]\n            }\n        )\n    ):\n        if isinstance(message, ResultMessage):\n            print(message.result)\n\nanyio.run(main)\n```\n\n---\n\n## Subagents\n\n```python\nimport anyio\nfrom claude_agent_sdk import query, ClaudeAgentOptions, AgentDefinition, ResultMessage\n\nasync def main():\n    async for message in query(\n        prompt=\"Use the code-reviewer agent to review this codebase\",\n        options=ClaudeAgentOptions(\n            allowed_tools=[\"Read\", \"Glob\", \"Grep\", \"Agent\"],\n            agents={\n                \"code-reviewer\": AgentDefinition(\n                    description=\"Expert code reviewer for quality and security reviews.\",\n                    prompt=\"Analyze code quality and suggest improvements.\",\n                    tools=[\"Read\", \"Glob\", \"Grep\"]\n                )\n            }\n        )\n    ):\n        if isinstance(message, ResultMessage):\n            print(message.result)\n\nanyio.run(main)\n```\n\n---\n\n## MCP Server Integration\n\n### Browser Automation (Playwright)\n\n```python\nimport anyio\nfrom claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage\n\nasync def main():\n    async for message in query(\n        prompt=\"Open example.com and describe what you see\",\n        options=ClaudeAgentOptions(\n            mcp_servers={\n                \"playwright\": {\"command\": \"npx\", \"args\": [\"@playwright/mcp@latest\"]}\n            }\n        )\n    ):\n        if isinstance(message, ResultMessage):\n            print(message.result)\n\nanyio.run(main)\n```\n\n### Database Access (PostgreSQL)\n\n```python\nimport os\nimport anyio\nfrom claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage\n\nasync def main():\n    async for message in query(\n        prompt=\"Show me the top 10 users by order count\",\n        options=ClaudeAgentOptions(\n            mcp_servers={\n                \"postgres\": {\n                    \"command\": \"npx\",\n                    \"args\": [\"-y\", \"@modelcontextprotocol/server-postgres\"],\n                    \"env\": {\"DATABASE_URL\": os.environ[\"DATABASE_URL\"]}\n                }\n            }\n        )\n    ):\n        if isinstance(message, ResultMessage):\n            print(message.result)\n\nanyio.run(main)\n```\n\n---\n\n## Permission Modes\n\n```python\nimport anyio\nfrom claude_agent_sdk import query, ClaudeAgentOptions\n\nasync def main():\n    # Default: prompt for dangerous operations\n    async for message in query(\n        prompt=\"Delete all test files\",\n        options=ClaudeAgentOptions(\n            allowed_tools=[\"Bash\"],\n            permission_mode=\"default\"  # Will prompt before deleting\n        )\n    ):\n        pass\n\n    # Plan: agent creates a plan before making changes\n    async for message in query(\n        prompt=\"Refactor the auth system\",\n        options=ClaudeAgentOptions(\n            allowed_tools=[\"Read\", \"Edit\"],\n            permission_mode=\"plan\"\n        )\n    ):\n        pass\n\n    # Accept edits: auto-accept file edits\n    async for message in query(\n        prompt=\"Refactor this module\",\n        options=ClaudeAgentOptions(\n            allowed_tools=[\"Read\", \"Edit\"],\n            permission_mode=\"acceptEdits\"\n        )\n    ):\n        pass\n\n    # Bypass: skip all prompts (use with caution)\n    async for message in query(\n        prompt=\"Set up the development environment\",\n        options=ClaudeAgentOptions(\n            allowed_tools=[\"Bash\", \"Write\"],\n            permission_mode=\"bypassPermissions\",\n            allow_dangerously_skip_permissions=True\n        )\n    ):\n        pass\n\nanyio.run(main)\n```\n\n---\n\n## Error Recovery\n\n```python\nimport anyio\nfrom claude_agent_sdk import (\n    query,\n    ClaudeAgentOptions,\n    CLINotFoundError,\n    CLIConnectionError,\n    ProcessError,\n    ResultMessage,\n)\n\nasync def run_with_recovery():\n    try:\n        async for message in query(\n            prompt=\"Fix the failing tests\",\n            options=ClaudeAgentOptions(\n                allowed_tools=[\"Read\", \"Edit\", \"Bash\"],\n                max_turns=10\n            )\n        ):\n            if isinstance(message, ResultMessage):\n                print(message.result)\n    except CLINotFoundError:\n        print(\"Claude Code CLI not found. Install with: pip install claude-agent-sdk\")\n    except CLIConnectionError as e:\n        print(f\"Connection error: {e}\")\n    except ProcessError as e:\n        print(f\"Process error: {e}\")\n\nanyio.run(run_with_recovery)\n```\n\n---\n\n## Session Resumption\n\n```python\nimport anyio\nfrom claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage, SystemMessage\n\nasync def main():\n    session_id = None\n\n    # First query: capture the session ID\n    async for message in query(\n        prompt=\"Read the authentication module\",\n        options=ClaudeAgentOptions(allowed_tools=[\"Read\", \"Glob\"])\n    ):\n        if isinstance(message, SystemMessage) and message.subtype == \"init\":\n            session_id = message.session_id\n\n    # Resume with full context from the first query\n    async for message in query(\n        prompt=\"Now find all places that call it\",  # \"it\" = auth module\n        options=ClaudeAgentOptions(resume=session_id)\n    ):\n        if isinstance(message, ResultMessage):\n            print(message.result)\n\nanyio.run(main)\n```\n\n---\n\n## Custom System Prompt\n\n```python\nimport anyio\nfrom claude_agent_sdk import query, ClaudeAgentOptions, ResultMessage\n\nasync def main():\n    async for message in query(\n        prompt=\"Review this code\",\n        options=ClaudeAgentOptions(\n            allowed_tools=[\"Read\", \"Glob\", \"Grep\"],\n            system_prompt=\"\"\"You are a senior code reviewer focused on:\n1. Security vulnerabilities\n2. Performance issues\n3. Code maintainability\n\nAlways provide specific line numbers and suggestions for improvement.\"\"\"\n        )\n    ):\n        if isinstance(message, ResultMessage):\n            print(message.result)\n\nanyio.run(main)\n```\n"
  },
  {
    "path": "skills/claude-api/python/claude-api/README.md",
    "content": "# Claude API — Python\n\n## Installation\n\n```bash\npip install anthropic\n```\n\n## Client Initialization\n\n```python\nimport anthropic\n\n# Default (uses ANTHROPIC_API_KEY env var)\nclient = anthropic.Anthropic()\n\n# Explicit API key\nclient = anthropic.Anthropic(api_key=\"your-api-key\")\n\n# Async client\nasync_client = anthropic.AsyncAnthropic()\n```\n\n---\n\n## Basic Message Request\n\n```python\nresponse = client.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    messages=[\n        {\"role\": \"user\", \"content\": \"What is the capital of France?\"}\n    ]\n)\nprint(response.content[0].text)\n```\n\n---\n\n## System Prompts\n\n```python\nresponse = client.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    system=\"You are a helpful coding assistant. Always provide examples in Python.\",\n    messages=[{\"role\": \"user\", \"content\": \"How do I read a JSON file?\"}]\n)\n```\n\n---\n\n## Vision (Images)\n\n### Base64\n\n```python\nimport base64\n\nwith open(\"image.png\", \"rb\") as f:\n    image_data = base64.standard_b64encode(f.read()).decode(\"utf-8\")\n\nresponse = client.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    messages=[{\n        \"role\": \"user\",\n        \"content\": [\n            {\n                \"type\": \"image\",\n                \"source\": {\n                    \"type\": \"base64\",\n                    \"media_type\": \"image/png\",\n                    \"data\": image_data\n                }\n            },\n            {\"type\": \"text\", \"text\": \"What's in this image?\"}\n        ]\n    }]\n)\n```\n\n### URL\n\n```python\nresponse = client.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    messages=[{\n        \"role\": \"user\",\n        \"content\": [\n            {\n                \"type\": \"image\",\n                \"source\": {\n                    \"type\": \"url\",\n                    \"url\": \"https://example.com/image.png\"\n                }\n            },\n            {\"type\": \"text\", \"text\": \"Describe this image\"}\n        ]\n    }]\n)\n```\n\n---\n\n## Prompt Caching\n\nCache large context to reduce costs (up to 90% savings).\n\n### Automatic Caching (Recommended)\n\nUse top-level `cache_control` to automatically cache the last cacheable block in the request — no need to annotate individual content blocks:\n\n```python\nresponse = client.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    cache_control={\"type\": \"ephemeral\"},  # auto-caches the last cacheable block\n    system=\"You are an expert on this large document...\",\n    messages=[{\"role\": \"user\", \"content\": \"Summarize the key points\"}]\n)\n```\n\n### Manual Cache Control\n\nFor fine-grained control, add `cache_control` to specific content blocks:\n\n```python\nresponse = client.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    system=[{\n        \"type\": \"text\",\n        \"text\": \"You are an expert on this large document...\",\n        \"cache_control\": {\"type\": \"ephemeral\"}  # default TTL is 5 minutes\n    }],\n    messages=[{\"role\": \"user\", \"content\": \"Summarize the key points\"}]\n)\n\n# With explicit TTL (time-to-live)\nresponse = client.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    system=[{\n        \"type\": \"text\",\n        \"text\": \"You are an expert on this large document...\",\n        \"cache_control\": {\"type\": \"ephemeral\", \"ttl\": \"1h\"}  # 1 hour TTL\n    }],\n    messages=[{\"role\": \"user\", \"content\": \"Summarize the key points\"}]\n)\n```\n\n---\n\n## Extended Thinking\n\n> **Opus 4.6 and Sonnet 4.6:** Use adaptive thinking. `budget_tokens` is deprecated on both Opus 4.6 and Sonnet 4.6.\n> **Older models:** Use `thinking: {type: \"enabled\", budget_tokens: N}` (must be < `max_tokens`, min 1024).\n\n```python\n# Opus 4.6: adaptive thinking (recommended)\nresponse = client.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=16000,\n    thinking={\"type\": \"adaptive\"},\n    output_config={\"effort\": \"high\"},  # low | medium | high | max\n    messages=[{\"role\": \"user\", \"content\": \"Solve this step by step...\"}]\n)\n\n# Access thinking and response\nfor block in response.content:\n    if block.type == \"thinking\":\n        print(f\"Thinking: {block.thinking}\")\n    elif block.type == \"text\":\n        print(f\"Response: {block.text}\")\n```\n\n---\n\n## Error Handling\n\n```python\nimport anthropic\n\ntry:\n    response = client.messages.create(...)\nexcept anthropic.BadRequestError as e:\n    print(f\"Bad request: {e.message}\")\nexcept anthropic.AuthenticationError:\n    print(\"Invalid API key\")\nexcept anthropic.PermissionDeniedError:\n    print(\"API key lacks required permissions\")\nexcept anthropic.NotFoundError:\n    print(\"Invalid model or endpoint\")\nexcept anthropic.RateLimitError as e:\n    retry_after = int(e.response.headers.get(\"retry-after\", \"60\"))\n    print(f\"Rate limited. Retry after {retry_after}s.\")\nexcept anthropic.APIStatusError as e:\n    if e.status_code >= 500:\n        print(f\"Server error ({e.status_code}). Retry later.\")\n    else:\n        print(f\"API error: {e.message}\")\nexcept anthropic.APIConnectionError:\n    print(\"Network error. Check internet connection.\")\n```\n\n---\n\n## Multi-Turn Conversations\n\nThe API is stateless — send the full conversation history each time.\n\n```python\nclass ConversationManager:\n    \"\"\"Manage multi-turn conversations with the Claude API.\"\"\"\n\n    def __init__(self, client: anthropic.Anthropic, model: str, system: str = None):\n        self.client = client\n        self.model = model\n        self.system = system\n        self.messages = []\n\n    def send(self, user_message: str, **kwargs) -> str:\n        \"\"\"Send a message and get a response.\"\"\"\n        self.messages.append({\"role\": \"user\", \"content\": user_message})\n\n        response = self.client.messages.create(\n            model=self.model,\n            max_tokens=kwargs.get(\"max_tokens\", 1024),\n            system=self.system,\n            messages=self.messages,\n            **kwargs\n        )\n\n        assistant_message = response.content[0].text\n        self.messages.append({\"role\": \"assistant\", \"content\": assistant_message})\n\n        return assistant_message\n\n# Usage\nconversation = ConversationManager(\n    client=anthropic.Anthropic(),\n    model=\"claude-opus-4-6\",\n    system=\"You are a helpful assistant.\"\n)\n\nresponse1 = conversation.send(\"My name is Alice.\")\nresponse2 = conversation.send(\"What's my name?\")  # Claude remembers \"Alice\"\n```\n\n**Rules:**\n\n- Messages must alternate between `user` and `assistant`\n- First message must be `user`\n\n---\n\n### Compaction (long conversations)\n\n> **Beta, Opus 4.6 only.** When conversations approach the 200K context window, compaction automatically summarizes earlier context server-side. The API returns a `compaction` block; you must pass it back on subsequent requests — append `response.content`, not just the text.\n\n```python\nimport anthropic\n\nclient = anthropic.Anthropic()\nmessages = []\n\ndef chat(user_message: str) -> str:\n    messages.append({\"role\": \"user\", \"content\": user_message})\n\n    response = client.beta.messages.create(\n        betas=[\"compact-2026-01-12\"],\n        model=\"claude-opus-4-6\",\n        max_tokens=4096,\n        messages=messages,\n        context_management={\n            \"edits\": [{\"type\": \"compact_20260112\"}]\n        }\n    )\n\n    # Append full content — compaction blocks must be preserved\n    messages.append({\"role\": \"assistant\", \"content\": response.content})\n\n    return next(block.text for block in response.content if block.type == \"text\")\n\n# Compaction triggers automatically when context grows large\nprint(chat(\"Help me build a Python web scraper\"))\nprint(chat(\"Add support for JavaScript-rendered pages\"))\nprint(chat(\"Now add rate limiting and error handling\"))\n```\n\n---\n\n## Stop Reasons\n\nThe `stop_reason` field in the response indicates why the model stopped generating:\n\n| Value | Meaning |\n|-------|---------|\n| `end_turn` | Claude finished its response naturally |\n| `max_tokens` | Hit the `max_tokens` limit — increase it or use streaming |\n| `stop_sequence` | Hit a custom stop sequence |\n| `tool_use` | Claude wants to call a tool — execute it and continue |\n| `pause_turn` | Model paused and can be resumed (agentic flows) |\n| `refusal` | Claude refused for safety reasons — output may not match your schema |\n\n---\n\n## Cost Optimization Strategies\n\n### 1. Use Prompt Caching for Repeated Context\n\n```python\n# Automatic caching (simplest — caches the last cacheable block)\nresponse = client.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    cache_control={\"type\": \"ephemeral\"},\n    system=large_document_text,  # e.g., 50KB of context\n    messages=[{\"role\": \"user\", \"content\": \"Summarize the key points\"}]\n)\n\n# First request: full cost\n# Subsequent requests: ~90% cheaper for cached portion\n```\n\n### 2. Choose the Right Model\n\n```python\n# Default to Opus for most tasks\nresponse = client.messages.create(\n    model=\"claude-opus-4-6\",  # $5.00/$25.00 per 1M tokens\n    max_tokens=1024,\n    messages=[{\"role\": \"user\", \"content\": \"Explain quantum computing\"}]\n)\n\n# Use Sonnet for high-volume production workloads\nstandard_response = client.messages.create(\n    model=\"claude-sonnet-4-6\",  # $3.00/$15.00 per 1M tokens\n    max_tokens=1024,\n    messages=[{\"role\": \"user\", \"content\": \"Summarize this document\"}]\n)\n\n# Use Haiku only for simple, speed-critical tasks\nsimple_response = client.messages.create(\n    model=\"claude-haiku-4-5\",  # $1.00/$5.00 per 1M tokens\n    max_tokens=256,\n    messages=[{\"role\": \"user\", \"content\": \"Classify this as positive or negative\"}]\n)\n```\n\n### 3. Use Token Counting Before Requests\n\n```python\ncount_response = client.messages.count_tokens(\n    model=\"claude-opus-4-6\",\n    messages=messages,\n    system=system\n)\n\nestimated_input_cost = count_response.input_tokens * 0.000005  # $5/1M tokens\nprint(f\"Estimated input cost: ${estimated_input_cost:.4f}\")\n```\n\n---\n\n## Retry with Exponential Backoff\n\n> **Note:** The Anthropic SDK automatically retries rate limit (429) and server errors (5xx) with exponential backoff. You can configure this with `max_retries` (default: 2). Only implement custom retry logic if you need behavior beyond what the SDK provides.\n\n```python\nimport time\nimport random\nimport anthropic\n\ndef call_with_retry(\n    client: anthropic.Anthropic,\n    max_retries: int = 5,\n    base_delay: float = 1.0,\n    max_delay: float = 60.0,\n    **kwargs\n):\n    \"\"\"Call the API with exponential backoff retry.\"\"\"\n    last_exception = None\n\n    for attempt in range(max_retries):\n        try:\n            return client.messages.create(**kwargs)\n        except anthropic.RateLimitError as e:\n            last_exception = e\n        except anthropic.APIStatusError as e:\n            if e.status_code >= 500:\n                last_exception = e\n            else:\n                raise  # Client errors (4xx except 429) should not be retried\n\n        delay = min(base_delay * (2 ** attempt) + random.uniform(0, 1), max_delay)\n        print(f\"Retry {attempt + 1}/{max_retries} after {delay:.1f}s\")\n        time.sleep(delay)\n\n    raise last_exception\n```\n"
  },
  {
    "path": "skills/claude-api/python/claude-api/batches.md",
    "content": "# Message Batches API — Python\n\nThe Batches API (`POST /v1/messages/batches`) processes Messages API requests asynchronously at 50% of standard prices.\n\n## Key Facts\n\n- Up to 100,000 requests or 256 MB per batch\n- Most batches complete within 1 hour; maximum 24 hours\n- Results available for 29 days after creation\n- 50% cost reduction on all token usage\n- All Messages API features supported (vision, tools, caching, etc.)\n\n---\n\n## Create a Batch\n\n```python\nimport anthropic\nfrom anthropic.types.message_create_params import MessageCreateParamsNonStreaming\nfrom anthropic.types.messages.batch_create_params import Request\n\nclient = anthropic.Anthropic()\n\nmessage_batch = client.messages.batches.create(\n    requests=[\n        Request(\n            custom_id=\"request-1\",\n            params=MessageCreateParamsNonStreaming(\n                model=\"claude-opus-4-6\",\n                max_tokens=1024,\n                messages=[{\"role\": \"user\", \"content\": \"Summarize climate change impacts\"}]\n            )\n        ),\n        Request(\n            custom_id=\"request-2\",\n            params=MessageCreateParamsNonStreaming(\n                model=\"claude-opus-4-6\",\n                max_tokens=1024,\n                messages=[{\"role\": \"user\", \"content\": \"Explain quantum computing basics\"}]\n            )\n        ),\n    ]\n)\n\nprint(f\"Batch ID: {message_batch.id}\")\nprint(f\"Status: {message_batch.processing_status}\")\n```\n\n---\n\n## Poll for Completion\n\n```python\nimport time\n\nwhile True:\n    batch = client.messages.batches.retrieve(message_batch.id)\n    if batch.processing_status == \"ended\":\n        break\n    print(f\"Status: {batch.processing_status}, processing: {batch.request_counts.processing}\")\n    time.sleep(60)\n\nprint(\"Batch complete!\")\nprint(f\"Succeeded: {batch.request_counts.succeeded}\")\nprint(f\"Errored: {batch.request_counts.errored}\")\n```\n\n---\n\n## Retrieve Results\n\n> **Note:** Examples below use `match/case` syntax, requiring Python 3.10+. For earlier versions, use `if/elif` chains instead.\n\n```python\nfor result in client.messages.batches.results(message_batch.id):\n    match result.result.type:\n        case \"succeeded\":\n            print(f\"[{result.custom_id}] {result.result.message.content[0].text[:100]}\")\n        case \"errored\":\n            if result.result.error.type == \"invalid_request\":\n                print(f\"[{result.custom_id}] Validation error - fix request and retry\")\n            else:\n                print(f\"[{result.custom_id}] Server error - safe to retry\")\n        case \"canceled\":\n            print(f\"[{result.custom_id}] Canceled\")\n        case \"expired\":\n            print(f\"[{result.custom_id}] Expired - resubmit\")\n```\n\n---\n\n## Cancel a Batch\n\n```python\ncancelled = client.messages.batches.cancel(message_batch.id)\nprint(f\"Status: {cancelled.processing_status}\")  # \"canceling\"\n```\n\n---\n\n## Batch with Prompt Caching\n\n```python\nshared_system = [\n    {\"type\": \"text\", \"text\": \"You are a literary analyst.\"},\n    {\n        \"type\": \"text\",\n        \"text\": large_document_text,  # Shared across all requests\n        \"cache_control\": {\"type\": \"ephemeral\"}\n    }\n]\n\nmessage_batch = client.messages.batches.create(\n    requests=[\n        Request(\n            custom_id=f\"analysis-{i}\",\n            params=MessageCreateParamsNonStreaming(\n                model=\"claude-opus-4-6\",\n                max_tokens=1024,\n                system=shared_system,\n                messages=[{\"role\": \"user\", \"content\": question}]\n            )\n        )\n        for i, question in enumerate(questions)\n    ]\n)\n```\n\n---\n\n## Full End-to-End Example\n\n```python\nimport anthropic\nimport time\nfrom anthropic.types.message_create_params import MessageCreateParamsNonStreaming\nfrom anthropic.types.messages.batch_create_params import Request\n\nclient = anthropic.Anthropic()\n\n# 1. Prepare requests\nitems_to_classify = [\n    \"The product quality is excellent!\",\n    \"Terrible customer service, never again.\",\n    \"It's okay, nothing special.\",\n]\n\nrequests = [\n    Request(\n        custom_id=f\"classify-{i}\",\n        params=MessageCreateParamsNonStreaming(\n            model=\"claude-haiku-4-5\",\n            max_tokens=50,\n            messages=[{\n                \"role\": \"user\",\n                \"content\": f\"Classify as positive/negative/neutral (one word): {text}\"\n            }]\n        )\n    )\n    for i, text in enumerate(items_to_classify)\n]\n\n# 2. Create batch\nbatch = client.messages.batches.create(requests=requests)\nprint(f\"Created batch: {batch.id}\")\n\n# 3. Wait for completion\nwhile True:\n    batch = client.messages.batches.retrieve(batch.id)\n    if batch.processing_status == \"ended\":\n        break\n    time.sleep(10)\n\n# 4. Collect results\nresults = {}\nfor result in client.messages.batches.results(batch.id):\n    if result.result.type == \"succeeded\":\n        results[result.custom_id] = result.result.message.content[0].text\n\nfor custom_id, classification in sorted(results.items()):\n    print(f\"{custom_id}: {classification}\")\n```\n"
  },
  {
    "path": "skills/claude-api/python/claude-api/files-api.md",
    "content": "# Files API — Python\n\nThe Files API uploads files for use in Messages API requests. Reference files via `file_id` in content blocks, avoiding re-uploads across multiple API calls.\n\n**Beta:** Pass `betas=[\"files-api-2025-04-14\"]` in your API calls (the SDK sets the required header automatically).\n\n## Key Facts\n\n- Maximum file size: 500 MB\n- Total storage: 100 GB per organization\n- Files persist until deleted\n- File operations (upload, list, delete) are free; content used in messages is billed as input tokens\n- Not available on Amazon Bedrock or Google Vertex AI\n\n---\n\n## Upload a File\n\n```python\nimport anthropic\n\nclient = anthropic.Anthropic()\n\nuploaded = client.beta.files.upload(\n    file=(\"report.pdf\", open(\"report.pdf\", \"rb\"), \"application/pdf\"),\n)\nprint(f\"File ID: {uploaded.id}\")\nprint(f\"Size: {uploaded.size_bytes} bytes\")\n```\n\n---\n\n## Use a File in Messages\n\n### PDF / Text Document\n\n```python\nresponse = client.beta.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    messages=[{\n        \"role\": \"user\",\n        \"content\": [\n            {\"type\": \"text\", \"text\": \"Summarize the key findings in this report.\"},\n            {\n                \"type\": \"document\",\n                \"source\": {\"type\": \"file\", \"file_id\": uploaded.id},\n                \"title\": \"Q4 Report\",           # optional\n                \"citations\": {\"enabled\": True}   # optional, enables citations\n            }\n        ]\n    }],\n    betas=[\"files-api-2025-04-14\"],\n)\nprint(response.content[0].text)\n```\n\n### Image\n\n```python\nimage_file = client.beta.files.upload(\n    file=(\"photo.png\", open(\"photo.png\", \"rb\"), \"image/png\"),\n)\n\nresponse = client.beta.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    messages=[{\n        \"role\": \"user\",\n        \"content\": [\n            {\"type\": \"text\", \"text\": \"What's in this image?\"},\n            {\n                \"type\": \"image\",\n                \"source\": {\"type\": \"file\", \"file_id\": image_file.id}\n            }\n        ]\n    }],\n    betas=[\"files-api-2025-04-14\"],\n)\n```\n\n---\n\n## Manage Files\n\n### List Files\n\n```python\nfiles = client.beta.files.list()\nfor f in files.data:\n    print(f\"{f.id}: {f.filename} ({f.size_bytes} bytes)\")\n```\n\n### Get File Metadata\n\n```python\nfile_info = client.beta.files.retrieve_metadata(\"file_011CNha8iCJcU1wXNR6q4V8w\")\nprint(f\"Filename: {file_info.filename}\")\nprint(f\"MIME type: {file_info.mime_type}\")\n```\n\n### Delete a File\n\n```python\nclient.beta.files.delete(\"file_011CNha8iCJcU1wXNR6q4V8w\")\n```\n\n### Download a File\n\nOnly files created by the code execution tool or skills can be downloaded (not user-uploaded files).\n\n```python\nfile_content = client.beta.files.download(\"file_011CNha8iCJcU1wXNR6q4V8w\")\nfile_content.write_to_file(\"output.txt\")\n```\n\n---\n\n## Full End-to-End Example\n\nUpload a document once, ask multiple questions about it:\n\n```python\nimport anthropic\n\nclient = anthropic.Anthropic()\n\n# 1. Upload once\nuploaded = client.beta.files.upload(\n    file=(\"contract.pdf\", open(\"contract.pdf\", \"rb\"), \"application/pdf\"),\n)\nprint(f\"Uploaded: {uploaded.id}\")\n\n# 2. Ask multiple questions using the same file_id\nquestions = [\n    \"What are the key terms and conditions?\",\n    \"What is the termination clause?\",\n    \"Summarize the payment schedule.\",\n]\n\nfor question in questions:\n    response = client.beta.messages.create(\n        model=\"claude-opus-4-6\",\n        max_tokens=1024,\n        messages=[{\n            \"role\": \"user\",\n            \"content\": [\n                {\"type\": \"text\", \"text\": question},\n                {\n                    \"type\": \"document\",\n                    \"source\": {\"type\": \"file\", \"file_id\": uploaded.id}\n                }\n            ]\n        }],\n        betas=[\"files-api-2025-04-14\"],\n    )\n    print(f\"\\nQ: {question}\")\n    print(f\"A: {response.content[0].text[:200]}\")\n\n# 3. Clean up when done\nclient.beta.files.delete(uploaded.id)\n```\n"
  },
  {
    "path": "skills/claude-api/python/claude-api/streaming.md",
    "content": "# Streaming — Python\n\n## Quick Start\n\n```python\nwith client.messages.stream(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    messages=[{\"role\": \"user\", \"content\": \"Write a story\"}]\n) as stream:\n    for text in stream.text_stream:\n        print(text, end=\"\", flush=True)\n```\n\n### Async\n\n```python\nasync with async_client.messages.stream(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    messages=[{\"role\": \"user\", \"content\": \"Write a story\"}]\n) as stream:\n    async for text in stream.text_stream:\n        print(text, end=\"\", flush=True)\n```\n\n---\n\n## Handling Different Content Types\n\nClaude may return text, thinking blocks, or tool use. Handle each appropriately:\n\n> **Opus 4.6:** Use `thinking: {type: \"adaptive\"}`. On older models, use `thinking: {type: \"enabled\", budget_tokens: N}` instead.\n\n```python\nwith client.messages.stream(\n    model=\"claude-opus-4-6\",\n    max_tokens=16000,\n    thinking={\"type\": \"adaptive\"},\n    messages=[{\"role\": \"user\", \"content\": \"Analyze this problem\"}]\n) as stream:\n    for event in stream:\n        if event.type == \"content_block_start\":\n            if event.content_block.type == \"thinking\":\n                print(\"\\n[Thinking...]\")\n            elif event.content_block.type == \"text\":\n                print(\"\\n[Response:]\")\n\n        elif event.type == \"content_block_delta\":\n            if event.delta.type == \"thinking_delta\":\n                print(event.delta.thinking, end=\"\", flush=True)\n            elif event.delta.type == \"text_delta\":\n                print(event.delta.text, end=\"\", flush=True)\n```\n\n---\n\n## Streaming with Tool Use\n\nThe Python tool runner currently returns complete messages. Use streaming for individual API calls within a manual loop if you need per-token streaming with tools:\n\n```python\nwith client.messages.stream(\n    model=\"claude-opus-4-6\",\n    max_tokens=4096,\n    tools=tools,\n    messages=messages\n) as stream:\n    for text in stream.text_stream:\n        print(text, end=\"\", flush=True)\n\n    response = stream.get_final_message()\n    # Continue with tool execution if response.stop_reason == \"tool_use\"\n```\n\n---\n\n## Getting the Final Message\n\n```python\nwith client.messages.stream(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    messages=[{\"role\": \"user\", \"content\": \"Hello\"}]\n) as stream:\n    for text in stream.text_stream:\n        print(text, end=\"\", flush=True)\n\n    # Get full message after streaming\n    final_message = stream.get_final_message()\n    print(f\"\\n\\nTokens used: {final_message.usage.output_tokens}\")\n```\n\n---\n\n## Streaming with Progress Updates\n\n```python\ndef stream_with_progress(client, **kwargs):\n    \"\"\"Stream a response with progress updates.\"\"\"\n    total_tokens = 0\n    content_parts = []\n\n    with client.messages.stream(**kwargs) as stream:\n        for event in stream:\n            if event.type == \"content_block_delta\":\n                if event.delta.type == \"text_delta\":\n                    text = event.delta.text\n                    content_parts.append(text)\n                    print(text, end=\"\", flush=True)\n\n            elif event.type == \"message_delta\":\n                if event.usage and event.usage.output_tokens is not None:\n                    total_tokens = event.usage.output_tokens\n\n        final_message = stream.get_final_message()\n\n    print(f\"\\n\\n[Tokens used: {total_tokens}]\")\n    return \"\".join(content_parts)\n```\n\n---\n\n## Error Handling in Streams\n\n```python\ntry:\n    with client.messages.stream(\n        model=\"claude-opus-4-6\",\n        max_tokens=1024,\n        messages=[{\"role\": \"user\", \"content\": \"Write a story\"}]\n    ) as stream:\n        for text in stream.text_stream:\n            print(text, end=\"\", flush=True)\nexcept anthropic.APIConnectionError:\n    print(\"\\nConnection lost. Please retry.\")\nexcept anthropic.RateLimitError:\n    print(\"\\nRate limited. Please wait and retry.\")\nexcept anthropic.APIStatusError as e:\n    print(f\"\\nAPI error: {e.status_code}\")\n```\n\n---\n\n## Stream Event Types\n\n| Event Type            | Description                 | When it fires                     |\n| --------------------- | --------------------------- | --------------------------------- |\n| `message_start`       | Contains message metadata   | Once at the beginning             |\n| `content_block_start` | New content block beginning | When a text/tool_use block starts |\n| `content_block_delta` | Incremental content update  | For each token/chunk              |\n| `content_block_stop`  | Content block complete      | When a block finishes             |\n| `message_delta`       | Message-level updates       | Contains `stop_reason`, usage     |\n| `message_stop`        | Message complete            | Once at the end                   |\n\n## Best Practices\n\n1. **Always flush output** — Use `flush=True` to show tokens immediately\n2. **Handle partial responses** — If the stream is interrupted, you may have incomplete content\n3. **Track token usage** — The `message_delta` event contains usage information\n4. **Use timeouts** — Set appropriate timeouts for your application\n5. **Default to streaming** — Use `.get_final_message()` to get the complete response even when streaming, giving you timeout protection without needing to handle individual events\n"
  },
  {
    "path": "skills/claude-api/python/claude-api/tool-use.md",
    "content": "# Tool Use — Python\n\nFor conceptual overview (tool definitions, tool choice, tips), see [shared/tool-use-concepts.md](../../shared/tool-use-concepts.md).\n\n## Tool Runner (Recommended)\n\n**Beta:** The tool runner is in beta in the Python SDK.\n\nUse the `@beta_tool` decorator to define tools as typed functions, then pass them to `client.beta.messages.tool_runner()`:\n\n```python\nimport anthropic\nfrom anthropic import beta_tool\n\nclient = anthropic.Anthropic()\n\n@beta_tool\ndef get_weather(location: str, unit: str = \"celsius\") -> str:\n    \"\"\"Get current weather for a location.\n\n    Args:\n        location: City and state, e.g., San Francisco, CA.\n        unit: Temperature unit, either \"celsius\" or \"fahrenheit\".\n    \"\"\"\n    # Your implementation here\n    return f\"72°F and sunny in {location}\"\n\n# The tool runner handles the agentic loop automatically\nrunner = client.beta.messages.tool_runner(\n    model=\"claude-opus-4-6\",\n    max_tokens=4096,\n    tools=[get_weather],\n    messages=[{\"role\": \"user\", \"content\": \"What's the weather in Paris?\"}],\n)\n\n# Each iteration yields a BetaMessage; iteration stops when Claude is done\nfor message in runner:\n    print(message)\n```\n\nFor async usage, use `@beta_async_tool` with `async def` functions.\n\n**Key benefits of the tool runner:**\n\n- No manual loop — the SDK handles calling tools and feeding results back\n- Type-safe tool inputs via decorators\n- Tool schemas are generated automatically from function signatures\n- Iteration stops automatically when Claude has no more tool calls\n\n---\n\n## MCP Tool Conversion Helpers\n\n**Beta.** Convert [MCP (Model Context Protocol)](https://modelcontextprotocol.io/) tools, prompts, and resources to Anthropic API types for use with the tool runner. Requires `pip install anthropic[mcp]` (Python 3.10+).\n\n> **Note:** The Claude API also supports an `mcp_servers` parameter that lets Claude connect directly to remote MCP servers. Use these helpers instead when you need local MCP servers, prompts, resources, or more control over the MCP connection.\n\n### MCP Tools with Tool Runner\n\n```python\nfrom anthropic import AsyncAnthropic\nfrom anthropic.lib.tools.mcp import async_mcp_tool\nfrom mcp import ClientSession\nfrom mcp.client.stdio import stdio_client, StdioServerParameters\n\nclient = AsyncAnthropic()\n\nasync with stdio_client(StdioServerParameters(command=\"mcp-server\")) as (read, write):\n    async with ClientSession(read, write) as mcp_client:\n        await mcp_client.initialize()\n\n        tools_result = await mcp_client.list_tools()\n        runner = await client.beta.messages.tool_runner(\n            model=\"claude-opus-4-6\",\n            max_tokens=1024,\n            messages=[{\"role\": \"user\", \"content\": \"Use the available tools\"}],\n            tools=[async_mcp_tool(t, mcp_client) for t in tools_result.tools],\n        )\n        async for message in runner:\n            print(message)\n```\n\nFor sync usage, use `mcp_tool` instead of `async_mcp_tool`.\n\n### MCP Prompts\n\n```python\nfrom anthropic.lib.tools.mcp import mcp_message\n\nprompt = await mcp_client.get_prompt(name=\"my-prompt\")\nresponse = await client.beta.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    messages=[mcp_message(m) for m in prompt.messages],\n)\n```\n\n### MCP Resources as Content\n\n```python\nfrom anthropic.lib.tools.mcp import mcp_resource_to_content\n\nresource = await mcp_client.read_resource(uri=\"file:///path/to/doc.txt\")\nresponse = await client.beta.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    messages=[{\n        \"role\": \"user\",\n        \"content\": [\n            mcp_resource_to_content(resource),\n            {\"type\": \"text\", \"text\": \"Summarize this document\"},\n        ],\n    }],\n)\n```\n\n### Upload MCP Resources as Files\n\n```python\nfrom anthropic.lib.tools.mcp import mcp_resource_to_file\n\nresource = await mcp_client.read_resource(uri=\"file:///path/to/data.json\")\nuploaded = await client.beta.files.upload(file=mcp_resource_to_file(resource))\n```\n\nConversion functions raise `UnsupportedMCPValueError` if an MCP value cannot be converted (e.g., unsupported content types like audio, unsupported MIME types).\n\n---\n\n## Manual Agentic Loop\n\nUse this when you need fine-grained control over the loop (e.g., custom logging, conditional tool execution, human-in-the-loop approval):\n\n```python\nimport anthropic\n\nclient = anthropic.Anthropic()\ntools = [...]  # Your tool definitions\nmessages = [{\"role\": \"user\", \"content\": user_input}]\n\n# Agentic loop: keep going until Claude stops calling tools\nwhile True:\n    response = client.messages.create(\n        model=\"claude-opus-4-6\",\n        max_tokens=4096,\n        tools=tools,\n        messages=messages\n    )\n\n    # If Claude is done (no more tool calls), break\n    if response.stop_reason == \"end_turn\":\n        break\n\n    # Server-side tool hit iteration limit; re-send to continue\n    if response.stop_reason == \"pause_turn\":\n        messages = [\n            {\"role\": \"user\", \"content\": user_input},\n            {\"role\": \"assistant\", \"content\": response.content},\n        ]\n        continue\n\n    # Extract tool use blocks from the response\n    tool_use_blocks = [b for b in response.content if b.type == \"tool_use\"]\n\n    # Append assistant's response (including tool_use blocks)\n    messages.append({\"role\": \"assistant\", \"content\": response.content})\n\n    # Execute each tool and collect results\n    tool_results = []\n    for tool in tool_use_blocks:\n        result = execute_tool(tool.name, tool.input)  # Your implementation\n        tool_results.append({\n            \"type\": \"tool_result\",\n            \"tool_use_id\": tool.id,  # Must match the tool_use block's id\n            \"content\": result\n        })\n\n    # Append tool results as a user message\n    messages.append({\"role\": \"user\", \"content\": tool_results})\n\n# Final response text\nfinal_text = next(b.text for b in response.content if b.type == \"text\")\n```\n\n---\n\n## Handling Tool Results\n\n```python\nresponse = client.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    tools=tools,\n    messages=[{\"role\": \"user\", \"content\": \"What's the weather in Paris?\"}]\n)\n\nfor block in response.content:\n    if block.type == \"tool_use\":\n        tool_name = block.name\n        tool_input = block.input\n        tool_use_id = block.id\n\n        result = execute_tool(tool_name, tool_input)\n\n        followup = client.messages.create(\n            model=\"claude-opus-4-6\",\n            max_tokens=1024,\n            tools=tools,\n            messages=[\n                {\"role\": \"user\", \"content\": \"What's the weather in Paris?\"},\n                {\"role\": \"assistant\", \"content\": response.content},\n                {\n                    \"role\": \"user\",\n                    \"content\": [{\n                        \"type\": \"tool_result\",\n                        \"tool_use_id\": tool_use_id,\n                        \"content\": result\n                    }]\n                }\n            ]\n        )\n```\n\n---\n\n## Multiple Tool Calls\n\n```python\ntool_results = []\n\nfor block in response.content:\n    if block.type == \"tool_use\":\n        result = execute_tool(block.name, block.input)\n        tool_results.append({\n            \"type\": \"tool_result\",\n            \"tool_use_id\": block.id,\n            \"content\": result\n        })\n\n# Send all results back at once\nif tool_results:\n    followup = client.messages.create(\n        model=\"claude-opus-4-6\",\n        max_tokens=1024,\n        tools=tools,\n        messages=[\n            *previous_messages,\n            {\"role\": \"assistant\", \"content\": response.content},\n            {\"role\": \"user\", \"content\": tool_results}\n        ]\n    )\n```\n\n---\n\n## Error Handling in Tool Results\n\n```python\ntool_result = {\n    \"type\": \"tool_result\",\n    \"tool_use_id\": tool_use_id,\n    \"content\": \"Error: Location 'xyz' not found. Please provide a valid city name.\",\n    \"is_error\": True\n}\n```\n\n---\n\n## Tool Choice\n\n```python\nresponse = client.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    tools=tools,\n    tool_choice={\"type\": \"tool\", \"name\": \"get_weather\"},  # Force specific tool\n    messages=[{\"role\": \"user\", \"content\": \"What's the weather in Paris?\"}]\n)\n```\n\n---\n\n## Code Execution\n\n### Basic Usage\n\n```python\nimport anthropic\n\nclient = anthropic.Anthropic()\n\nresponse = client.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=4096,\n    messages=[{\n        \"role\": \"user\",\n        \"content\": \"Calculate the mean and standard deviation of [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]\"\n    }],\n    tools=[{\n        \"type\": \"code_execution_20260120\",\n        \"name\": \"code_execution\"\n    }]\n)\n\nfor block in response.content:\n    if block.type == \"text\":\n        print(block.text)\n    elif block.type == \"bash_code_execution_tool_result\":\n        print(f\"stdout: {block.content.stdout}\")\n```\n\n### Upload Files for Analysis\n\n```python\n# 1. Upload a file\nuploaded = client.beta.files.upload(file=open(\"sales_data.csv\", \"rb\"))\n\n# 2. Pass to code execution via container_upload block\n# Code execution is GA; Files API is still beta (pass via extra_headers)\nresponse = client.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=4096,\n    extra_headers={\"anthropic-beta\": \"files-api-2025-04-14\"},\n    messages=[{\n        \"role\": \"user\",\n        \"content\": [\n            {\"type\": \"text\", \"text\": \"Analyze this sales data. Show trends and create a visualization.\"},\n            {\"type\": \"container_upload\", \"file_id\": uploaded.id}\n        ]\n    }],\n    tools=[{\"type\": \"code_execution_20260120\", \"name\": \"code_execution\"}]\n)\n```\n\n### Retrieve Generated Files\n\n```python\nimport os\n\nOUTPUT_DIR = \"./claude_outputs\"\nos.makedirs(OUTPUT_DIR, exist_ok=True)\n\nfor block in response.content:\n    if block.type == \"bash_code_execution_tool_result\":\n        result = block.content\n        if result.type == \"bash_code_execution_result\" and result.content:\n            for file_ref in result.content:\n                if file_ref.type == \"bash_code_execution_output\":\n                    metadata = client.beta.files.retrieve_metadata(file_ref.file_id)\n                    file_content = client.beta.files.download(file_ref.file_id)\n                    # Use basename to prevent path traversal; validate result\n                    safe_name = os.path.basename(metadata.filename)\n                    if not safe_name or safe_name in (\".\", \"..\"):\n                        print(f\"Skipping invalid filename: {metadata.filename}\")\n                        continue\n                    output_path = os.path.join(OUTPUT_DIR, safe_name)\n                    file_content.write_to_file(output_path)\n                    print(f\"Saved: {output_path}\")\n```\n\n### Container Reuse\n\n```python\n# First request: set up environment\nresponse1 = client.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=4096,\n    messages=[{\"role\": \"user\", \"content\": \"Install tabulate and create data.json with sample data\"}],\n    tools=[{\"type\": \"code_execution_20260120\", \"name\": \"code_execution\"}]\n)\n\n# Get container ID from response\ncontainer_id = response1.container.id\n\n# Second request: reuse the same container\nresponse2 = client.messages.create(\n    container=container_id,\n    model=\"claude-opus-4-6\",\n    max_tokens=4096,\n    messages=[{\"role\": \"user\", \"content\": \"Read data.json and display as a formatted table\"}],\n    tools=[{\"type\": \"code_execution_20260120\", \"name\": \"code_execution\"}]\n)\n```\n\n### Response Structure\n\n```python\nfor block in response.content:\n    if block.type == \"text\":\n        print(block.text)  # Claude's explanation\n    elif block.type == \"server_tool_use\":\n        print(f\"Running: {block.name} - {block.input}\")  # What Claude is doing\n    elif block.type == \"bash_code_execution_tool_result\":\n        result = block.content\n        if result.type == \"bash_code_execution_result\":\n            if result.return_code == 0:\n                print(f\"Output: {result.stdout}\")\n            else:\n                print(f\"Error: {result.stderr}\")\n        else:\n            print(f\"Tool error: {result.error_code}\")\n    elif block.type == \"text_editor_code_execution_tool_result\":\n        print(f\"File operation: {block.content}\")\n```\n\n---\n\n## Memory Tool\n\n### Basic Usage\n\n```python\nimport anthropic\n\nclient = anthropic.Anthropic()\n\nresponse = client.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=2048,\n    messages=[{\"role\": \"user\", \"content\": \"Remember that my preferred language is Python.\"}],\n    tools=[{\"type\": \"memory_20250818\", \"name\": \"memory\"}],\n)\n```\n\n### SDK Memory Helper\n\nSubclass `BetaAbstractMemoryTool`:\n\n```python\nfrom anthropic.lib.tools import BetaAbstractMemoryTool\n\nclass MyMemoryTool(BetaAbstractMemoryTool):\n    def view(self, command): ...\n    def create(self, command): ...\n    def str_replace(self, command): ...\n    def insert(self, command): ...\n    def delete(self, command): ...\n    def rename(self, command): ...\n\nmemory = MyMemoryTool()\n\n# Use with tool runner\nrunner = client.beta.messages.tool_runner(\n    model=\"claude-opus-4-6\",\n    max_tokens=2048,\n    tools=[memory],\n    messages=[{\"role\": \"user\", \"content\": \"Remember my preferences\"}],\n)\n\nfor message in runner:\n    print(message)\n```\n\nFor full implementation examples, use WebFetch:\n\n- `https://github.com/anthropics/anthropic-sdk-python/blob/main/examples/memory/basic.py`\n\n---\n\n## Structured Outputs\n\n### JSON Outputs (Pydantic — Recommended)\n\n```python\nfrom pydantic import BaseModel\nfrom typing import List\nimport anthropic\n\nclass ContactInfo(BaseModel):\n    name: str\n    email: str\n    plan: str\n    interests: List[str]\n    demo_requested: bool\n\nclient = anthropic.Anthropic()\n\nresponse = client.messages.parse(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    messages=[{\n        \"role\": \"user\",\n        \"content\": \"Extract: Jane Doe (jane@co.com) wants Enterprise, interested in API and SDKs, wants a demo.\"\n    }],\n    output_format=ContactInfo,\n)\n\n# response.parsed_output is a validated ContactInfo instance\ncontact = response.parsed_output\nprint(contact.name)           # \"Jane Doe\"\nprint(contact.interests)      # [\"API\", \"SDKs\"]\n```\n\n### Raw Schema\n\n```python\nresponse = client.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    messages=[{\n        \"role\": \"user\",\n        \"content\": \"Extract info: John Smith (john@example.com) wants the Enterprise plan.\"\n    }],\n    output_config={\n        \"format\": {\n            \"type\": \"json_schema\",\n            \"schema\": {\n                \"type\": \"object\",\n                \"properties\": {\n                    \"name\": {\"type\": \"string\"},\n                    \"email\": {\"type\": \"string\"},\n                    \"plan\": {\"type\": \"string\"},\n                    \"demo_requested\": {\"type\": \"boolean\"}\n                },\n                \"required\": [\"name\", \"email\", \"plan\", \"demo_requested\"],\n                \"additionalProperties\": False\n            }\n        }\n    }\n)\n\nimport json\ndata = json.loads(response.content[0].text)\n```\n\n### Strict Tool Use\n\n```python\nresponse = client.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    messages=[{\"role\": \"user\", \"content\": \"Book a flight to Tokyo for 2 passengers on March 15\"}],\n    tools=[{\n        \"name\": \"book_flight\",\n        \"description\": \"Book a flight to a destination\",\n        \"strict\": True,\n        \"input_schema\": {\n            \"type\": \"object\",\n            \"properties\": {\n                \"destination\": {\"type\": \"string\"},\n                \"date\": {\"type\": \"string\", \"format\": \"date\"},\n                \"passengers\": {\"type\": \"integer\", \"enum\": [1, 2, 3, 4, 5, 6, 7, 8]}\n            },\n            \"required\": [\"destination\", \"date\", \"passengers\"],\n            \"additionalProperties\": False\n        }\n    }]\n)\n```\n\n### Using Both Together\n\n```python\nresponse = client.messages.create(\n    model=\"claude-opus-4-6\",\n    max_tokens=1024,\n    messages=[{\"role\": \"user\", \"content\": \"Plan a trip to Paris next month\"}],\n    output_config={\n        \"format\": {\n            \"type\": \"json_schema\",\n            \"schema\": {\n                \"type\": \"object\",\n                \"properties\": {\n                    \"summary\": {\"type\": \"string\"},\n                    \"next_steps\": {\"type\": \"array\", \"items\": {\"type\": \"string\"}}\n                },\n                \"required\": [\"summary\", \"next_steps\"],\n                \"additionalProperties\": False\n            }\n        }\n    },\n    tools=[{\n        \"name\": \"search_flights\",\n        \"description\": \"Search for available flights\",\n        \"strict\": True,\n        \"input_schema\": {\n            \"type\": \"object\",\n            \"properties\": {\n                \"destination\": {\"type\": \"string\"},\n                \"date\": {\"type\": \"string\", \"format\": \"date\"}\n            },\n            \"required\": [\"destination\", \"date\"],\n            \"additionalProperties\": False\n        }\n    }]\n)\n```\n"
  },
  {
    "path": "skills/claude-api/ruby/claude-api.md",
    "content": "# Claude API — Ruby\n\n> **Note:** The Ruby SDK supports the Claude API. A tool runner is available in beta via `client.beta.messages.tool_runner()`. Agent SDK is not yet available for Ruby.\n\n## Installation\n\n```bash\ngem install anthropic\n```\n\n## Client Initialization\n\n```ruby\nrequire \"anthropic\"\n\n# Default (uses ANTHROPIC_API_KEY env var)\nclient = Anthropic::Client.new\n\n# Explicit API key\nclient = Anthropic::Client.new(api_key: \"your-api-key\")\n```\n\n---\n\n## Basic Message Request\n\n```ruby\nmessage = client.messages.create(\n  model: :\"claude-opus-4-6\",\n  max_tokens: 1024,\n  messages: [\n    { role: \"user\", content: \"What is the capital of France?\" }\n  ]\n)\nputs message.content.first.text\n```\n\n---\n\n## Streaming\n\n```ruby\nstream = client.messages.stream(\n  model: :\"claude-opus-4-6\",\n  max_tokens: 1024,\n  messages: [{ role: \"user\", content: \"Write a haiku\" }]\n)\n\nstream.text.each { |text| print(text) }\n```\n\n---\n\n## Tool Use\n\nThe Ruby SDK supports tool use via raw JSON schema definitions and also provides a beta tool runner for automatic tool execution.\n\n### Tool Runner (Beta)\n\n```ruby\nclass GetWeatherInput < Anthropic::BaseModel\n  required :location, String, doc: \"City and state, e.g. San Francisco, CA\"\nend\n\nclass GetWeather < Anthropic::BaseTool\n  doc \"Get the current weather for a location\"\n\n  input_schema GetWeatherInput\n\n  def call(input)\n    \"The weather in #{input.location} is sunny and 72°F.\"\n  end\nend\n\nclient.beta.messages.tool_runner(\n  model: :\"claude-opus-4-6\",\n  max_tokens: 1024,\n  tools: [GetWeather.new],\n  messages: [{ role: \"user\", content: \"What's the weather in San Francisco?\" }]\n).each_message do |message|\n  puts message.content\nend\n```\n\n### Manual Loop\n\nSee the [shared tool use concepts](../shared/tool-use-concepts.md) for the tool definition format and agentic loop pattern.\n"
  },
  {
    "path": "skills/claude-api/shared/error-codes.md",
    "content": "# HTTP Error Codes Reference\n\nThis file documents HTTP error codes returned by the Claude API, their common causes, and how to handle them. For language-specific error handling examples, see the `python/` or `typescript/` folders.\n\n## Error Code Summary\n\n| Code | Error Type              | Retryable | Common Cause                         |\n| ---- | ----------------------- | --------- | ------------------------------------ |\n| 400  | `invalid_request_error` | No        | Invalid request format or parameters |\n| 401  | `authentication_error`  | No        | Invalid or missing API key           |\n| 403  | `permission_error`      | No        | API key lacks permission             |\n| 404  | `not_found_error`       | No        | Invalid endpoint or model ID         |\n| 413  | `request_too_large`     | No        | Request exceeds size limits          |\n| 429  | `rate_limit_error`      | Yes       | Too many requests                    |\n| 500  | `api_error`             | Yes       | Anthropic service issue              |\n| 529  | `overloaded_error`      | Yes       | API is temporarily overloaded        |\n\n## Detailed Error Information\n\n### 400 Bad Request\n\n**Causes:**\n\n- Malformed JSON in request body\n- Missing required parameters (`model`, `max_tokens`, `messages`)\n- Invalid parameter types (e.g., string where integer expected)\n- Empty messages array\n- Messages not alternating user/assistant\n\n**Example error:**\n\n```json\n{\n  \"type\": \"error\",\n  \"error\": {\n    \"type\": \"invalid_request_error\",\n    \"message\": \"messages: roles must alternate between \\\"user\\\" and \\\"assistant\\\"\"\n  }\n}\n```\n\n**Fix:** Validate request structure before sending. Check that:\n\n- `model` is a valid model ID\n- `max_tokens` is a positive integer\n- `messages` array is non-empty and alternates correctly\n\n---\n\n### 401 Unauthorized\n\n**Causes:**\n\n- Missing `x-api-key` header or `Authorization` header\n- Invalid API key format\n- Revoked or deleted API key\n\n**Fix:** Ensure `ANTHROPIC_API_KEY` environment variable is set correctly.\n\n---\n\n### 403 Forbidden\n\n**Causes:**\n\n- API key doesn't have access to the requested model\n- Organization-level restrictions\n- Attempting to access beta features without beta access\n\n**Fix:** Check your API key permissions in the Console. You may need a different API key or to request access to specific features.\n\n---\n\n### 404 Not Found\n\n**Causes:**\n\n- Typo in model ID (e.g., `claude-sonnet-4.6` instead of `claude-sonnet-4-6`)\n- Using deprecated model ID\n- Invalid API endpoint\n\n**Fix:** Use exact model IDs from the models documentation. You can use aliases (e.g., `claude-opus-4-6`).\n\n---\n\n### 413 Request Too Large\n\n**Causes:**\n\n- Request body exceeds maximum size\n- Too many tokens in input\n- Image data too large\n\n**Fix:** Reduce input size — truncate conversation history, compress/resize images, or split large documents into chunks.\n\n---\n\n### 400 Validation Errors\n\nSome 400 errors are specifically related to parameter validation:\n\n- `max_tokens` exceeds model's limit\n- Invalid `temperature` value (must be 0.0-1.0)\n- `budget_tokens` >= `max_tokens` in extended thinking\n- Invalid tool definition schema\n\n**Common mistake with extended thinking:**\n\n```\n# Wrong: budget_tokens must be < max_tokens\nthinking: budget_tokens=10000, max_tokens=1000  → Error!\n\n# Correct\nthinking: budget_tokens=10000, max_tokens=16000\n```\n\n---\n\n### 429 Rate Limited\n\n**Causes:**\n\n- Exceeded requests per minute (RPM)\n- Exceeded tokens per minute (TPM)\n- Exceeded tokens per day (TPD)\n\n**Headers to check:**\n\n- `retry-after`: Seconds to wait before retrying\n- `x-ratelimit-limit-*`: Your limits\n- `x-ratelimit-remaining-*`: Remaining quota\n\n**Fix:** The Anthropic SDKs automatically retry 429 and 5xx errors with exponential backoff (default: `max_retries=2`). For custom retry behavior, see the language-specific error handling examples.\n\n---\n\n### 500 Internal Server Error\n\n**Causes:**\n\n- Temporary Anthropic service issue\n- Bug in API processing\n\n**Fix:** Retry with exponential backoff. If persistent, check [status.anthropic.com](https://status.anthropic.com).\n\n---\n\n### 529 Overloaded\n\n**Causes:**\n\n- High API demand\n- Service capacity reached\n\n**Fix:** Retry with exponential backoff. Consider using a different model (Haiku is often less loaded), spreading requests over time, or implementing request queuing.\n\n---\n\n## Common Mistakes and Fixes\n\n| Mistake                         | Error            | Fix                                                     |\n| ------------------------------- | ---------------- | ------------------------------------------------------- |\n| `budget_tokens` >= `max_tokens` | 400              | Ensure `budget_tokens` < `max_tokens`                   |\n| Typo in model ID                | 404              | Use valid model ID like `claude-opus-4-6`               |\n| First message is `assistant`    | 400              | First message must be `user`                            |\n| Consecutive same-role messages  | 400              | Alternate `user` and `assistant`                        |\n| API key in code                 | 401 (leaked key) | Use environment variable                                |\n| Custom retry needs              | 429/5xx          | SDK retries automatically; customize with `max_retries` |\n\n## Typed Exceptions in SDKs\n\n**Always use the SDK's typed exception classes** instead of checking error messages with string matching. Each HTTP error code maps to a specific exception class:\n\n| HTTP Code | TypeScript Class                  | Python Class                      |\n| --------- | --------------------------------- | --------------------------------- |\n| 400       | `Anthropic.BadRequestError`       | `anthropic.BadRequestError`       |\n| 401       | `Anthropic.AuthenticationError`   | `anthropic.AuthenticationError`   |\n| 403       | `Anthropic.PermissionDeniedError` | `anthropic.PermissionDeniedError` |\n| 404       | `Anthropic.NotFoundError`         | `anthropic.NotFoundError`         |\n| 429       | `Anthropic.RateLimitError`        | `anthropic.RateLimitError`        |\n| 500+      | `Anthropic.InternalServerError`   | `anthropic.InternalServerError`   |\n| Any       | `Anthropic.APIError`              | `anthropic.APIError`              |\n\n```typescript\n// ✅ Correct: use typed exceptions\ntry {\n  const response = await client.messages.create({...});\n} catch (error) {\n  if (error instanceof Anthropic.RateLimitError) {\n    // Handle rate limiting\n  } else if (error instanceof Anthropic.APIError) {\n    console.error(`API error ${error.status}:`, error.message);\n  }\n}\n\n// ❌ Wrong: don't check error messages with string matching\ntry {\n  const response = await client.messages.create({...});\n} catch (error) {\n  const msg = error instanceof Error ? error.message : String(error);\n  if (msg.includes(\"429\") || msg.includes(\"rate_limit\")) { ... }\n}\n```\n\nAll exception classes extend `Anthropic.APIError`, which has a `status` property. Use `instanceof` checks from most specific to least specific (e.g., check `RateLimitError` before `APIError`).\n"
  },
  {
    "path": "skills/claude-api/shared/live-sources.md",
    "content": "# Live Documentation Sources\n\nThis file contains WebFetch URLs for fetching current information from platform.claude.com and Agent SDK repositories. Use these when users need the latest data that may have changed since the cached content was last updated.\n\n## When to Use WebFetch\n\n- User explicitly asks for \"latest\" or \"current\" information\n- Cached data seems incorrect\n- User asks about features not covered in cached content\n- User needs specific API details or examples\n\n## Claude API Documentation URLs\n\n### Models & Pricing\n\n| Topic           | URL                                                                   | Extraction Prompt                                                               |\n| --------------- | --------------------------------------------------------------------- | ------------------------------------------------------------------------------- |\n| Models Overview | `https://platform.claude.com/docs/en/about-claude/models/overview.md` | \"Extract current model IDs, context windows, and pricing for all Claude models\" |\n| Pricing         | `https://platform.claude.com/docs/en/pricing.md`                      | \"Extract current pricing per million tokens for input and output\"               |\n\n### Core Features\n\n| Topic             | URL                                                                          | Extraction Prompt                                                                      |\n| ----------------- | ---------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |\n| Extended Thinking | `https://platform.claude.com/docs/en/build-with-claude/extended-thinking.md` | \"Extract extended thinking parameters, budget_tokens requirements, and usage examples\" |\n| Adaptive Thinking | `https://platform.claude.com/docs/en/build-with-claude/adaptive-thinking.md` | \"Extract adaptive thinking setup, effort levels, and Claude Opus 4.6 usage examples\"         |\n| Effort Parameter  | `https://platform.claude.com/docs/en/build-with-claude/effort.md`            | \"Extract effort levels, cost-quality tradeoffs, and interaction with thinking\"        |\n| Tool Use          | `https://platform.claude.com/docs/en/agents-and-tools/tool-use/overview.md`  | \"Extract tool definition schema, tool_choice options, and handling tool results\"       |\n| Streaming         | `https://platform.claude.com/docs/en/build-with-claude/streaming.md`         | \"Extract streaming event types, SDK examples, and best practices\"                      |\n| Prompt Caching    | `https://platform.claude.com/docs/en/build-with-claude/prompt-caching.md`    | \"Extract cache_control usage, pricing benefits, and implementation examples\"           |\n\n### Media & Files\n\n| Topic       | URL                                                                    | Extraction Prompt                                                 |\n| ----------- | ---------------------------------------------------------------------- | ----------------------------------------------------------------- |\n| Vision      | `https://platform.claude.com/docs/en/build-with-claude/vision.md`      | \"Extract supported image formats, size limits, and code examples\" |\n| PDF Support | `https://platform.claude.com/docs/en/build-with-claude/pdf-support.md` | \"Extract PDF handling capabilities, limits, and examples\"         |\n\n### API Operations\n\n| Topic            | URL                                                                         | Extraction Prompt                                                                                       |\n| ---------------- | --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |\n| Batch Processing | `https://platform.claude.com/docs/en/build-with-claude/batch-processing.md` | \"Extract batch API endpoints, request format, and polling for results\"                                  |\n| Files API        | `https://platform.claude.com/docs/en/build-with-claude/files.md`            | \"Extract file upload, download, and referencing in messages, including supported types and beta header\" |\n| Token Counting   | `https://platform.claude.com/docs/en/build-with-claude/token-counting.md`   | \"Extract token counting API usage and examples\"                                                         |\n| Rate Limits      | `https://platform.claude.com/docs/en/api/rate-limits.md`                    | \"Extract current rate limits by tier and model\"                                                         |\n| Errors           | `https://platform.claude.com/docs/en/api/errors.md`                         | \"Extract HTTP error codes, meanings, and retry guidance\"                                                |\n\n### Tools\n\n| Topic          | URL                                                                                    | Extraction Prompt                                                                        |\n| -------------- | -------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- |\n| Code Execution | `https://platform.claude.com/docs/en/agents-and-tools/tool-use/code-execution-tool.md` | \"Extract code execution tool setup, file upload, container reuse, and response handling\" |\n| Computer Use   | `https://platform.claude.com/docs/en/agents-and-tools/tool-use/computer-use.md`        | \"Extract computer use tool setup, capabilities, and implementation examples\"             |\n\n### Advanced Features\n\n| Topic              | URL                                                                           | Extraction Prompt                                   |\n| ------------------ | ----------------------------------------------------------------------------- | --------------------------------------------------- |\n| Structured Outputs | `https://platform.claude.com/docs/en/build-with-claude/structured-outputs.md` | \"Extract output_config.format usage and schema enforcement\"                           |\n| Compaction         | `https://platform.claude.com/docs/en/build-with-claude/compaction.md`         | \"Extract compaction setup, trigger config, and streaming with compaction\"             |\n| Citations          | `https://platform.claude.com/docs/en/build-with-claude/citations.md`          | \"Extract citation format and implementation\"        |\n| Context Windows    | `https://platform.claude.com/docs/en/build-with-claude/context-windows.md`    | \"Extract context window sizes and token management\" |\n\n---\n\n## Claude API SDK Repositories\n\n| SDK        | URL                                                       | Description                    |\n| ---------- | --------------------------------------------------------- | ------------------------------ |\n| Python     | `https://github.com/anthropics/anthropic-sdk-python`     | `anthropic` pip package source |\n| TypeScript | `https://github.com/anthropics/anthropic-sdk-typescript` | `@anthropic-ai/sdk` npm source |\n| Java       | `https://github.com/anthropics/anthropic-sdk-java`       | `anthropic-java` Maven source  |\n| Go         | `https://github.com/anthropics/anthropic-sdk-go`         | Go module source               |\n| Ruby       | `https://github.com/anthropics/anthropic-sdk-ruby`       | `anthropic` gem source         |\n| C#         | `https://github.com/anthropics/anthropic-sdk-csharp`     | NuGet package source           |\n| PHP        | `https://github.com/anthropics/anthropic-sdk-php`        | Composer package source        |\n\n---\n\n## Agent SDK Documentation URLs\n\n### Core Documentation\n\n| Topic                | URL                                                         | Extraction Prompt                                               |\n| -------------------- | ----------------------------------------------------------- | --------------------------------------------------------------- |\n| Agent SDK Overview   | `https://platform.claude.com/docs/en/agent-sdk.md`          | \"Extract the Agent SDK overview, key features, and use cases\"   |\n| Agent SDK Python     | `https://github.com/anthropics/claude-agent-sdk-python`     | \"Extract Python SDK installation, imports, and basic usage\"     |\n| Agent SDK TypeScript | `https://github.com/anthropics/claude-agent-sdk-typescript` | \"Extract TypeScript SDK installation, imports, and basic usage\" |\n\n### SDK Reference (GitHub READMEs)\n\n| Topic          | URL                                                                                       | Extraction Prompt                                            |\n| -------------- | ----------------------------------------------------------------------------------------- | ------------------------------------------------------------ |\n| Python SDK     | `https://raw.githubusercontent.com/anthropics/claude-agent-sdk-python/main/README.md`     | \"Extract Python SDK API reference, classes, and methods\"     |\n| TypeScript SDK | `https://raw.githubusercontent.com/anthropics/claude-agent-sdk-typescript/main/README.md` | \"Extract TypeScript SDK API reference, types, and functions\" |\n\n### npm/PyPI Packages\n\n| Package                             | URL                                                            | Description               |\n| ----------------------------------- | -------------------------------------------------------------- | ------------------------- |\n| claude-agent-sdk (Python)           | `https://pypi.org/project/claude-agent-sdk/`                   | Python package on PyPI    |\n| @anthropic-ai/claude-agent-sdk (TS) | `https://www.npmjs.com/package/@anthropic-ai/claude-agent-sdk` | TypeScript package on npm |\n\n### GitHub Repositories\n\n| Resource       | URL                                                         | Description                         |\n| -------------- | ----------------------------------------------------------- | ----------------------------------- |\n| Python SDK     | `https://github.com/anthropics/claude-agent-sdk-python`     | Python package source               |\n| TypeScript SDK | `https://github.com/anthropics/claude-agent-sdk-typescript` | TypeScript/Node.js package source   |\n| MCP Servers    | `https://github.com/modelcontextprotocol`                   | Official MCP server implementations |\n\n---\n\n## Fallback Strategy\n\nIf WebFetch fails (network issues, URL changed):\n\n1. Use cached content from the language-specific files (note the cache date)\n2. Inform user the data may be outdated\n3. Suggest they check platform.claude.com or the GitHub repos directly\n"
  },
  {
    "path": "skills/claude-api/shared/models.md",
    "content": "# Claude Model Catalog\n\n**Only use exact model IDs listed in this file.** Never guess or construct model IDs — incorrect IDs will cause API errors. Use aliases wherever available. For the latest information, WebFetch the Models Overview URL in `shared/live-sources.md`.\n\n## Current Models (recommended)\n\n| Friendly Name     | Alias (use this)    | Full ID                       | Context        | Max Output | Status |\n|-------------------|---------------------|-------------------------------|----------------|------------|--------|\n| Claude Opus 4.6   | `claude-opus-4-6`   | —                             | 200K (1M beta) | 128K       | Active |\n| Claude Sonnet 4.6 | `claude-sonnet-4-6` | -                             | 200K (1M beta) | 64K        | Active |\n| Claude Haiku 4.5  | `claude-haiku-4-5`  | `claude-haiku-4-5-20251001`   | 200K           | 64K        | Active |\n\n### Model Descriptions\n\n- **Claude Opus 4.6** — Our most intelligent model for building agents and coding. Supports adaptive thinking (recommended), 128K max output tokens (requires streaming for large outputs). 1M context window available in beta via `context-1m-2025-08-07` header.\n- **Claude Sonnet 4.6** — Our best combination of speed and intelligence. Supports adaptive thinking (recommended). 1M context window available in beta via `context-1m-2025-08-07` header. 64K max output tokens.\n- **Claude Haiku 4.5** — Fastest and most cost-effective model for simple tasks.\n\n## Legacy Models (still active)\n\n| Friendly Name     | Alias (use this)    | Full ID                       | Status |\n|-------------------|---------------------|-------------------------------|--------|\n| Claude Opus 4.5   | `claude-opus-4-5`   | `claude-opus-4-5-20251101`    | Active |\n| Claude Opus 4.1   | `claude-opus-4-1`   | `claude-opus-4-1-20250805`    | Active |\n| Claude Sonnet 4.5 | `claude-sonnet-4-5` | `claude-sonnet-4-5-20250929`  | Active |\n| Claude Sonnet 4   | `claude-sonnet-4-0` | `claude-sonnet-4-20250514`    | Active |\n| Claude Opus 4     | `claude-opus-4-0`   | `claude-opus-4-20250514`      | Active |\n\n## Deprecated Models (retiring soon)\n\n| Friendly Name     | Alias (use this)    | Full ID                       | Status     |\n|-------------------|---------------------|-------------------------------|------------|\n| Claude Haiku 3    | —                   | `claude-3-haiku-20240307`     | Deprecated |\n\n## Retired Models (no longer available)\n\n| Friendly Name     | Full ID                       | Retired     |\n|-------------------|-------------------------------|-------------|\n| Claude Sonnet 3.7 | `claude-3-7-sonnet-20250219`  | Feb 19, 2026 |\n| Claude Haiku 3.5  | `claude-3-5-haiku-20241022`   | Feb 19, 2026 |\n| Claude Opus 3     | `claude-3-opus-20240229`      | Jan 5, 2026 |\n| Claude Sonnet 3.5 | `claude-3-5-sonnet-20241022`  | Oct 28, 2025 |\n| Claude Sonnet 3.5 | `claude-3-5-sonnet-20240620`  | Oct 28, 2025 |\n| Claude Sonnet 3   | `claude-3-sonnet-20240229`    | Jul 21, 2025 |\n| Claude 2.1        | `claude-2.1`                  | Jul 21, 2025 |\n| Claude 2.0        | `claude-2.0`                  | Jul 21, 2025 |\n\n## Resolving User Requests\n\nWhen a user asks for a model by name, use this table to find the correct model ID:\n\n| User says...                              | Use this model ID              |\n|-------------------------------------------|--------------------------------|\n| \"opus\", \"most powerful\"                   | `claude-opus-4-6`              |\n| \"opus 4.6\"                                | `claude-opus-4-6`              |\n| \"opus 4.5\"                                | `claude-opus-4-5`              |\n| \"opus 4.1\"                                | `claude-opus-4-1`              |\n| \"opus 4\", \"opus 4.0\"                      | `claude-opus-4-0`              |\n| \"sonnet\", \"balanced\"                      | `claude-sonnet-4-6`            |\n| \"sonnet 4.6\"                              | `claude-sonnet-4-6`            |\n| \"sonnet 4.5\"                              | `claude-sonnet-4-5`            |\n| \"sonnet 4\", \"sonnet 4.0\"                  | `claude-sonnet-4-0`            |\n| \"sonnet 3.7\"                              | Retired — suggest `claude-sonnet-4-5` |\n| \"sonnet 3.5\"                              | Retired — suggest `claude-sonnet-4-5` |\n| \"haiku\", \"fast\", \"cheap\"                  | `claude-haiku-4-5`             |\n| \"haiku 4.5\"                               | `claude-haiku-4-5`             |\n| \"haiku 3.5\"                               | Retired — suggest `claude-haiku-4-5` |\n| \"haiku 3\"                                 | Deprecated — suggest `claude-haiku-4-5` |\n"
  },
  {
    "path": "skills/claude-api/shared/tool-use-concepts.md",
    "content": "# Tool Use Concepts\n\nThis file covers the conceptual foundations of tool use with the Claude API. For language-specific code examples, see the `python/`, `typescript/`, or other language folders.\n\n## User-Defined Tools\n\n### Tool Definition Structure\n\n> **Note:** When using the Tool Runner (beta), tool schemas are generated automatically from your function signatures (Python), Zod schemas (TypeScript), annotated classes (Java), `jsonschema` struct tags (Go), or `BaseTool` subclasses (Ruby). The raw JSON schema format below is for the manual approach or SDKs without tool runner support.\n\nEach tool requires a name, description, and JSON Schema for its inputs:\n\n```json\n{\n  \"name\": \"get_weather\",\n  \"description\": \"Get current weather for a location\",\n  \"input_schema\": {\n    \"type\": \"object\",\n    \"properties\": {\n      \"location\": {\n        \"type\": \"string\",\n        \"description\": \"City and state, e.g., San Francisco, CA\"\n      },\n      \"unit\": {\n        \"type\": \"string\",\n        \"enum\": [\"celsius\", \"fahrenheit\"],\n        \"description\": \"Temperature unit\"\n      }\n    },\n    \"required\": [\"location\"]\n  }\n}\n```\n\n**Best practices for tool definitions:**\n\n- Use clear, descriptive names (e.g., `get_weather`, `search_database`, `send_email`)\n- Write detailed descriptions — Claude uses these to decide when to use the tool\n- Include descriptions for each property\n- Use `enum` for parameters with a fixed set of values\n- Mark truly required parameters in `required`; make others optional with defaults\n\n---\n\n### Tool Choice Options\n\nControl when Claude uses tools:\n\n| Value                             | Behavior                                      |\n| --------------------------------- | --------------------------------------------- |\n| `{\"type\": \"auto\"}`                | Claude decides whether to use tools (default) |\n| `{\"type\": \"any\"}`                 | Claude must use at least one tool             |\n| `{\"type\": \"tool\", \"name\": \"...\"}` | Claude must use the specified tool            |\n| `{\"type\": \"none\"}`                | Claude cannot use tools                       |\n\nAny `tool_choice` value can also include `\"disable_parallel_tool_use\": true` to force Claude to use at most one tool per response. By default, Claude may request multiple tool calls in a single response.\n\n---\n\n### Tool Runner vs Manual Loop\n\n**Tool Runner (Recommended):** The SDK's tool runner handles the agentic loop automatically — it calls the API, detects tool use requests, executes your tool functions, feeds results back to Claude, and repeats until Claude stops calling tools. Available in Python, TypeScript, Java, Go, and Ruby SDKs (beta). The Python SDK also provides MCP conversion helpers (`anthropic.lib.tools.mcp`) to convert MCP tools, prompts, and resources for use with the tool runner — see `python/claude-api/tool-use.md` for details.\n\n**Manual Agentic Loop:** Use when you need fine-grained control over the loop (e.g., custom logging, conditional tool execution, human-in-the-loop approval). Loop until `stop_reason == \"end_turn\"`, always append the full `response.content` to preserve tool_use blocks, and ensure each `tool_result` includes the matching `tool_use_id`.\n\n**Stop reasons for server-side tools:** When using server-side tools (code execution, web search, etc.), the API runs a server-side sampling loop. If this loop reaches its default limit of 10 iterations, the response will have `stop_reason: \"pause_turn\"`. To continue, re-send the user message and assistant response and make another API request — the server will resume where it left off. Do NOT add an extra user message like \"Continue.\" — the API detects the trailing `server_tool_use` block and knows to resume automatically.\n\n```python\n# Handle pause_turn in your agentic loop\nif response.stop_reason == \"pause_turn\":\n    messages = [\n        {\"role\": \"user\", \"content\": user_query},\n        {\"role\": \"assistant\", \"content\": response.content},\n    ]\n    # Make another API request — server resumes automatically\n    response = client.messages.create(\n        model=\"claude-opus-4-6\", messages=messages, tools=tools\n    )\n```\n\nSet a `max_continuations` limit (e.g., 5) to prevent infinite loops. For the full guide, see: `https://platform.claude.com/docs/en/build-with-claude/handling-stop-reasons`\n\n> **Security:** The tool runner executes your tool functions automatically whenever Claude requests them. For tools with side effects (sending emails, modifying databases, financial transactions), validate inputs within your tool functions and consider requiring confirmation for destructive operations. Use the manual agentic loop if you need human-in-the-loop approval before each tool execution.\n\n---\n\n### Handling Tool Results\n\nWhen Claude uses a tool, the response contains a `tool_use` block. You must:\n\n1. Execute the tool with the provided input\n2. Send the result back in a `tool_result` message\n3. Continue the conversation\n\n**Error handling in tool results:** When a tool execution fails, set `\"is_error\": true` and provide an informative error message. Claude will typically acknowledge the error and either try a different approach or ask for clarification.\n\n**Multiple tool calls:** Claude can request multiple tools in a single response. Handle them all before continuing — send all results back in a single `user` message.\n\n---\n\n## Server-Side Tools: Code Execution\n\nThe code execution tool lets Claude run code in a secure, sandboxed container. Unlike user-defined tools, server-side tools run on Anthropic's infrastructure — you don't execute anything client-side. Just include the tool definition and Claude handles the rest.\n\n### Key Facts\n\n- Runs in an isolated container (1 CPU, 5 GiB RAM, 5 GiB disk)\n- No internet access (fully sandboxed)\n- Python 3.11 with data science libraries pre-installed\n- Containers persist for 30 days and can be reused across requests\n- Free when used with web search/web fetch tools; otherwise $0.05/hour after 1,550 free hours/month per organization\n\n### Tool Definition\n\nThe tool requires no schema — just declare it in the `tools` array:\n\n```json\n{\n  \"type\": \"code_execution_20260120\",\n  \"name\": \"code_execution\"\n}\n```\n\nClaude automatically gains access to `bash_code_execution` (run shell commands) and `text_editor_code_execution` (create/view/edit files).\n\n### Pre-installed Python Libraries\n\n- **Data science**: pandas, numpy, scipy, scikit-learn, statsmodels\n- **Visualization**: matplotlib, seaborn\n- **File processing**: openpyxl, xlsxwriter, pillow, pypdf, pdfplumber, python-docx, python-pptx\n- **Math**: sympy, mpmath\n- **Utilities**: tqdm, python-dateutil, pytz, sqlite3\n\nAdditional packages can be installed at runtime via `pip install`.\n\n### Supported File Types for Upload\n\n| Type   | Extensions                         |\n| ------ | ---------------------------------- |\n| Data   | CSV, Excel (.xlsx/.xls), JSON, XML |\n| Images | JPEG, PNG, GIF, WebP               |\n| Text   | .txt, .md, .py, .js, etc.          |\n\n### Container Reuse\n\nReuse containers across requests to maintain state (files, installed packages, variables). Extract the `container_id` from the first response and pass it to subsequent requests.\n\n### Response Structure\n\nThe response contains interleaved text and tool result blocks:\n\n- `text` — Claude's explanation\n- `server_tool_use` — What Claude is doing\n- `bash_code_execution_tool_result` — Code execution output (check `return_code` for success/failure)\n- `text_editor_code_execution_tool_result` — File operation results\n\n> **Security:** Always sanitize filenames with `os.path.basename()` / `path.basename()` before writing downloaded files to disk to prevent path traversal attacks. Write files to a dedicated output directory.\n\n---\n\n## Server-Side Tools: Web Search and Web Fetch\n\nWeb search and web fetch let Claude search the web and retrieve page content. They run server-side — just include the tool definitions and Claude handles queries, fetching, and result processing automatically.\n\n### Tool Definitions\n\n```json\n[\n  { \"type\": \"web_search_20260209\", \"name\": \"web_search\" },\n  { \"type\": \"web_fetch_20260209\", \"name\": \"web_fetch\" }\n]\n```\n\n### Dynamic Filtering (Opus 4.6 / Sonnet 4.6)\n\nThe `web_search_20260209` and `web_fetch_20260209` versions support **dynamic filtering** — Claude writes and executes code to filter search results before they reach the context window, improving accuracy and token efficiency. Dynamic filtering is built into these tool versions and activates automatically; you do not need to separately declare the `code_execution` tool or pass any beta header.\n\n```json\n{\n  \"tools\": [\n    { \"type\": \"web_search_20260209\", \"name\": \"web_search\" },\n    { \"type\": \"web_fetch_20260209\", \"name\": \"web_fetch\" }\n  ]\n}\n```\n\nWithout dynamic filtering, the previous `web_search_20250305` version is also available.\n\n> **Note:** Only include the standalone `code_execution` tool when your application needs code execution for its own purposes (data analysis, file processing, visualization) independent of web search. Including it alongside `_20260209` web tools creates a second execution environment that can confuse the model.\n\n---\n\n## Server-Side Tools: Programmatic Tool Calling\n\nProgrammatic tool calling lets Claude execute complex multi-tool workflows in code, keeping intermediate results out of the context window. Claude writes code that calls your tools directly, reducing token usage for multi-step operations.\n\nFor full documentation, use WebFetch:\n\n- URL: `https://platform.claude.com/docs/en/agents-and-tools/tool-use/programmatic-tool-calling`\n\n---\n\n## Server-Side Tools: Tool Search\n\nThe tool search tool lets Claude dynamically discover tools from large libraries without loading all definitions into the context window. Useful when you have many tools but only a few are relevant to any given query.\n\nFor full documentation, use WebFetch:\n\n- URL: `https://platform.claude.com/docs/en/agents-and-tools/tool-use/tool-search-tool`\n\n---\n\n## Tool Use Examples\n\nYou can provide sample tool calls directly in your tool definitions to demonstrate usage patterns and reduce parameter errors. This helps Claude understand how to correctly format tool inputs, especially for tools with complex schemas.\n\nFor full documentation, use WebFetch:\n\n- URL: `https://platform.claude.com/docs/en/agents-and-tools/tool-use/implement-tool-use`\n\n---\n\n## Server-Side Tools: Computer Use\n\nComputer use lets Claude interact with a desktop environment (screenshots, mouse, keyboard). It can be Anthropic-hosted (server-side, like code execution) or self-hosted (you provide the environment and execute actions client-side).\n\nFor full documentation, use WebFetch:\n\n- URL: `https://platform.claude.com/docs/en/agents-and-tools/computer-use/overview`\n\n---\n\n## Client-Side Tools: Memory\n\nThe memory tool enables Claude to store and retrieve information across conversations through a memory file directory. Claude can create, read, update, and delete files that persist between sessions.\n\n### Key Facts\n\n- Client-side tool — you control storage via your implementation\n- Supports commands: `view`, `create`, `str_replace`, `insert`, `delete`, `rename`\n- Operates on files in a `/memories` directory\n- The SDKs provide helper classes/functions for implementing the memory backend\n\n> **Security:** Never store API keys, passwords, tokens, or other secrets in memory files. Be cautious with personally identifiable information (PII) — check data privacy regulations (GDPR, CCPA) before persisting user data. The reference implementations have no built-in access control; in multi-user systems, implement per-user memory directories and authentication in your tool handlers.\n\nFor full implementation examples, use WebFetch:\n\n- Docs: `https://platform.claude.com/docs/en/agents-and-tools/tool-use/memory-tool.md`\n\n---\n\n## Structured Outputs\n\nStructured outputs constrain Claude's responses to follow a specific JSON schema, guaranteeing valid, parseable output. This is not a separate tool — it enhances the Messages API response format and/or tool parameter validation.\n\nTwo features are available:\n\n- **JSON outputs** (`output_config.format`): Control Claude's response format\n- **Strict tool use** (`strict: true`): Guarantee valid tool parameter schemas\n\n**Supported models:** Claude Opus 4.6, Claude Sonnet 4.6, and Claude Haiku 4.5. Legacy models (Claude Opus 4.5, Claude Opus 4.1) also support structured outputs.\n\n> **Recommended:** Use `client.messages.parse()` which automatically validates responses against your schema. When using `messages.create()` directly, use `output_config: {format: {...}}`. The `output_format` convenience parameter is also accepted by some SDK methods (e.g., `.parse()`), but `output_config.format` is the canonical API-level parameter.\n\n### JSON Schema Limitations\n\n**Supported:**\n\n- Basic types: object, array, string, integer, number, boolean, null\n- `enum`, `const`, `anyOf`, `allOf`, `$ref`/`$def`\n- String formats: `date-time`, `time`, `date`, `duration`, `email`, `hostname`, `uri`, `ipv4`, `ipv6`, `uuid`\n- `additionalProperties: false` (required for all objects)\n\n**Not supported:**\n\n- Recursive schemas\n- Numerical constraints (`minimum`, `maximum`, `multipleOf`)\n- String constraints (`minLength`, `maxLength`)\n- Complex array constraints\n- `additionalProperties` set to anything other than `false`\n\nThe Python and TypeScript SDKs automatically handle unsupported constraints by removing them from the schema sent to the API and validating them client-side.\n\n### Important Notes\n\n- **First request latency**: New schemas incur a one-time compilation cost. Subsequent requests with the same schema use a 24-hour cache.\n- **Refusals**: If Claude refuses for safety reasons (`stop_reason: \"refusal\"`), the output may not match your schema.\n- **Token limits**: If `stop_reason: \"max_tokens\"`, output may be incomplete. Increase `max_tokens`.\n- **Incompatible with**: Citations (returns 400 error), message prefilling.\n- **Works with**: Batches API, streaming, token counting, extended thinking.\n\n---\n\n## Tips for Effective Tool Use\n\n1. **Provide detailed descriptions**: Claude relies heavily on descriptions to understand when and how to use tools\n2. **Use specific tool names**: `get_current_weather` is better than `weather`\n3. **Validate inputs**: Always validate tool inputs before execution\n4. **Handle errors gracefully**: Return informative error messages so Claude can adapt\n5. **Limit tool count**: Too many tools can confuse the model — keep the set focused\n6. **Test tool interactions**: Verify Claude uses tools correctly in various scenarios\n\nFor detailed tool use documentation, use WebFetch:\n\n- URL: `https://platform.claude.com/docs/en/agents-and-tools/tool-use/overview`\n"
  },
  {
    "path": "skills/claude-api/typescript/agent-sdk/README.md",
    "content": "# Agent SDK — TypeScript\n\nThe Claude Agent SDK provides a higher-level interface for building AI agents with built-in tools, safety features, and agentic capabilities.\n\n## Installation\n\n```bash\nnpm install @anthropic-ai/claude-agent-sdk\n```\n\n---\n\n## Quick Start\n\n```typescript\nimport { query } from \"@anthropic-ai/claude-agent-sdk\";\n\nfor await (const message of query({\n  prompt: \"Explain this codebase\",\n  options: { allowedTools: [\"Read\", \"Glob\", \"Grep\"] },\n})) {\n  if (\"result\" in message) {\n    console.log(message.result);\n  }\n}\n```\n\n---\n\n## Built-in Tools\n\n| Tool      | Description                          |\n| --------- | ------------------------------------ |\n| Read      | Read files in the workspace          |\n| Write     | Create new files                     |\n| Edit      | Make precise edits to existing files |\n| Bash      | Execute shell commands               |\n| Glob      | Find files by pattern                |\n| Grep      | Search files by content              |\n| WebSearch | Search the web for information       |\n| WebFetch        | Fetch and analyze web pages          |\n| AskUserQuestion | Ask user clarifying questions         |\n| Agent           | Spawn subagents                      |\n\n---\n\n## Permission System\n\n```typescript\nfor await (const message of query({\n  prompt: \"Refactor the authentication module\",\n  options: {\n    allowedTools: [\"Read\", \"Edit\", \"Write\"],\n    permissionMode: \"acceptEdits\",\n  },\n})) {\n  if (\"result\" in message) console.log(message.result);\n}\n```\n\nPermission modes:\n\n- `\"default\"`: Prompt for dangerous operations\n- `\"plan\"`: Planning only, no execution\n- `\"acceptEdits\"`: Auto-accept file edits\n- `\"dontAsk\"`: Don't prompt (useful for CI/CD)\n- `\"bypassPermissions\"`: Skip all prompts (requires `allowDangerouslySkipPermissions: true` in options)\n\n---\n\n## MCP (Model Context Protocol) Support\n\n```typescript\nfor await (const message of query({\n  prompt: \"Open example.com and describe what you see\",\n  options: {\n    mcpServers: {\n      playwright: { command: \"npx\", args: [\"@playwright/mcp@latest\"] },\n    },\n  },\n})) {\n  if (\"result\" in message) console.log(message.result);\n}\n```\n\n### In-Process MCP Tools\n\nYou can define custom tools that run in-process using `tool()` and `createSdkMcpServer`:\n\n```typescript\nimport { query, tool, createSdkMcpServer } from \"@anthropic-ai/claude-agent-sdk\";\nimport { z } from \"zod\";\n\nconst myTool = tool(\"my-tool\", \"Description\", { input: z.string() }, async (args) => {\n  return { content: [{ type: \"text\", text: \"result\" }] };\n});\n\nconst server = createSdkMcpServer({ name: \"my-server\", tools: [myTool] });\n\n// Pass to query\nfor await (const message of query({\n  prompt: \"Use my-tool to do something\",\n  options: { mcpServers: { myServer: server } },\n})) {\n  if (\"result\" in message) console.log(message.result);\n}\n```\n\n---\n\n## Hooks\n\n```typescript\nimport { query, HookCallback } from \"@anthropic-ai/claude-agent-sdk\";\nimport { appendFileSync } from \"fs\";\n\nconst logFileChange: HookCallback = async (input) => {\n  const filePath = (input as any).tool_input?.file_path ?? \"unknown\";\n  appendFileSync(\n    \"./audit.log\",\n    `${new Date().toISOString()}: modified ${filePath}\\n`,\n  );\n  return {};\n};\n\nfor await (const message of query({\n  prompt: \"Refactor utils.py to improve readability\",\n  options: {\n    allowedTools: [\"Read\", \"Edit\", \"Write\"],\n    permissionMode: \"acceptEdits\",\n    hooks: {\n      PostToolUse: [{ matcher: \"Edit|Write\", hooks: [logFileChange] }],\n    },\n  },\n})) {\n  if (\"result\" in message) console.log(message.result);\n}\n```\n\nAvailable hook events: `PreToolUse`, `PostToolUse`, `PostToolUseFailure`, `Notification`, `UserPromptSubmit`, `SessionStart`, `SessionEnd`, `Stop`, `SubagentStart`, `SubagentStop`, `PreCompact`, `PermissionRequest`, `Setup`, `TeammateIdle`, `TaskCompleted`, `ConfigChange`\n\n---\n\n## Common Options\n\n`query()` takes a top-level `prompt` (string) and an `options` object:\n\n```typescript\nquery({ prompt: \"...\", options: { ... } })\n```\n\n| Option                              | Type   | Description                                                                |\n| ----------------------------------- | ------ | -------------------------------------------------------------------------- |\n| `cwd`                               | string | Working directory for file operations                                      |\n| `allowedTools`                      | array  | Tools the agent can use (e.g., `[\"Read\", \"Edit\", \"Bash\"]`)                |\n| `tools`                             | array  | Built-in tools to make available (restricts the default set)               |\n| `disallowedTools`                   | array  | Tools to explicitly disallow                                               |\n| `permissionMode`                    | string | How to handle permission prompts                                           |\n| `allowDangerouslySkipPermissions`   | bool   | Must be `true` to use `permissionMode: \"bypassPermissions\"`                |\n| `mcpServers`                        | object | MCP servers to connect to                                                  |\n| `hooks`                             | object | Hooks for customizing behavior                                             |\n| `systemPrompt`                      | string | Custom system prompt                                                       |\n| `maxTurns`                          | number | Maximum agent turns before stopping                                        |\n| `maxBudgetUsd`                      | number | Maximum budget in USD for the query                                        |\n| `model`                             | string | Model ID (default: determined by CLI)                                      |\n| `agents`                            | object | Subagent definitions (`Record<string, AgentDefinition>`)                   |\n| `outputFormat`                      | object | Structured output schema                                                   |\n| `thinking`                          | object | Thinking/reasoning control                                                 |\n| `betas`                             | array  | Beta features to enable (e.g., `[\"context-1m-2025-08-07\"]`)               |\n| `settingSources`                    | array  | Settings to load (e.g., `[\"project\"]`). Default: none (no CLAUDE.md files) |\n| `env`                               | object | Environment variables to set for the session                               |\n\n---\n\n## Subagents\n\n```typescript\nfor await (const message of query({\n  prompt: \"Use the code-reviewer agent to review this codebase\",\n  options: {\n    allowedTools: [\"Read\", \"Glob\", \"Grep\", \"Agent\"],\n    agents: {\n      \"code-reviewer\": {\n        description: \"Expert code reviewer for quality and security reviews.\",\n        prompt: \"Analyze code quality and suggest improvements.\",\n        tools: [\"Read\", \"Glob\", \"Grep\"],\n      },\n    },\n  },\n})) {\n  if (\"result\" in message) console.log(message.result);\n}\n```\n\n---\n\n## Message Types\n\n```typescript\nfor await (const message of query({\n  prompt: \"Find TODO comments\",\n  options: { allowedTools: [\"Read\", \"Glob\", \"Grep\"] },\n})) {\n  if (\"result\" in message) {\n    console.log(message.result);\n  } else if (message.type === \"system\" && message.subtype === \"init\") {\n    const sessionId = message.session_id; // Capture for resuming later\n  }\n}\n```\n\n---\n\n## Best Practices\n\n1. **Always specify allowedTools** — Explicitly list which tools the agent can use\n2. **Set working directory** — Always specify `cwd` for file operations\n3. **Use appropriate permission modes** — Start with `\"default\"` and only escalate when needed\n4. **Handle all message types** — Check for `result` property to get agent output\n5. **Limit maxTurns** — Prevent runaway agents with reasonable limits\n"
  },
  {
    "path": "skills/claude-api/typescript/agent-sdk/patterns.md",
    "content": "# Agent SDK Patterns — TypeScript\n\n## Basic Agent\n\n```typescript\nimport { query } from \"@anthropic-ai/claude-agent-sdk\";\n\nasync function main() {\n  for await (const message of query({\n    prompt: \"Explain what this repository does\",\n    options: {\n      cwd: \"/path/to/project\",\n      allowedTools: [\"Read\", \"Glob\", \"Grep\"],\n    },\n  })) {\n    if (\"result\" in message) {\n      console.log(message.result);\n    }\n  }\n}\n\nmain();\n```\n\n---\n\n## Hooks\n\n### After Tool Use Hook\n\n```typescript\nimport { query, HookCallback } from \"@anthropic-ai/claude-agent-sdk\";\nimport { appendFileSync } from \"fs\";\n\nconst logFileChange: HookCallback = async (input) => {\n  const filePath = (input as any).tool_input?.file_path ?? \"unknown\";\n  appendFileSync(\n    \"./audit.log\",\n    `${new Date().toISOString()}: modified ${filePath}\\n`,\n  );\n  return {};\n};\n\nfor await (const message of query({\n  prompt: \"Refactor utils.py to improve readability\",\n  options: {\n    allowedTools: [\"Read\", \"Edit\", \"Write\"],\n    permissionMode: \"acceptEdits\",\n    hooks: {\n      PostToolUse: [{ matcher: \"Edit|Write\", hooks: [logFileChange] }],\n    },\n  },\n})) {\n  if (\"result\" in message) console.log(message.result);\n}\n```\n\n---\n\n## Subagents\n\n```typescript\nimport { query } from \"@anthropic-ai/claude-agent-sdk\";\n\nfor await (const message of query({\n  prompt: \"Use the code-reviewer agent to review this codebase\",\n  options: {\n    allowedTools: [\"Read\", \"Glob\", \"Grep\", \"Agent\"],\n    agents: {\n      \"code-reviewer\": {\n        description: \"Expert code reviewer for quality and security reviews.\",\n        prompt: \"Analyze code quality and suggest improvements.\",\n        tools: [\"Read\", \"Glob\", \"Grep\"],\n      },\n    },\n  },\n})) {\n  if (\"result\" in message) console.log(message.result);\n}\n```\n\n---\n\n## MCP Server Integration\n\n### Browser Automation (Playwright)\n\n```typescript\nfor await (const message of query({\n  prompt: \"Open example.com and describe what you see\",\n  options: {\n    mcpServers: {\n      playwright: { command: \"npx\", args: [\"@playwright/mcp@latest\"] },\n    },\n  },\n})) {\n  if (\"result\" in message) console.log(message.result);\n}\n```\n\n---\n\n## Session Resumption\n\n```typescript\nimport { query } from \"@anthropic-ai/claude-agent-sdk\";\n\nlet sessionId: string | undefined;\n\n// First query: capture the session ID\nfor await (const message of query({\n  prompt: \"Read the authentication module\",\n  options: { allowedTools: [\"Read\", \"Glob\"] },\n})) {\n  if (message.type === \"system\" && message.subtype === \"init\") {\n    sessionId = message.session_id;\n  }\n}\n\n// Resume with full context from the first query\nfor await (const message of query({\n  prompt: \"Now find all places that call it\",\n  options: { resume: sessionId },\n})) {\n  if (\"result\" in message) console.log(message.result);\n}\n```\n\n---\n\n## Custom System Prompt\n\n```typescript\nimport { query } from \"@anthropic-ai/claude-agent-sdk\";\n\nfor await (const message of query({\n  prompt: \"Review this code\",\n  options: {\n    allowedTools: [\"Read\", \"Glob\", \"Grep\"],\n    systemPrompt: `You are a senior code reviewer focused on:\n1. Security vulnerabilities\n2. Performance issues\n3. Code maintainability\n\nAlways provide specific line numbers and suggestions for improvement.`,\n  },\n})) {\n  if (\"result\" in message) console.log(message.result);\n}\n```\n"
  },
  {
    "path": "skills/claude-api/typescript/claude-api/README.md",
    "content": "# Claude API — TypeScript\n\n## Installation\n\n```bash\nnpm install @anthropic-ai/sdk\n```\n\n## Client Initialization\n\n```typescript\nimport Anthropic from \"@anthropic-ai/sdk\";\n\n// Default (uses ANTHROPIC_API_KEY env var)\nconst client = new Anthropic();\n\n// Explicit API key\nconst client = new Anthropic({ apiKey: \"your-api-key\" });\n```\n\n---\n\n## Basic Message Request\n\n```typescript\nconst response = await client.messages.create({\n  model: \"claude-opus-4-6\",\n  max_tokens: 1024,\n  messages: [{ role: \"user\", content: \"What is the capital of France?\" }],\n});\nconsole.log(response.content[0].text);\n```\n\n---\n\n## System Prompts\n\n```typescript\nconst response = await client.messages.create({\n  model: \"claude-opus-4-6\",\n  max_tokens: 1024,\n  system:\n    \"You are a helpful coding assistant. Always provide examples in Python.\",\n  messages: [{ role: \"user\", content: \"How do I read a JSON file?\" }],\n});\n```\n\n---\n\n## Vision (Images)\n\n### URL\n\n```typescript\nconst response = await client.messages.create({\n  model: \"claude-opus-4-6\",\n  max_tokens: 1024,\n  messages: [\n    {\n      role: \"user\",\n      content: [\n        {\n          type: \"image\",\n          source: { type: \"url\", url: \"https://example.com/image.png\" },\n        },\n        { type: \"text\", text: \"Describe this image\" },\n      ],\n    },\n  ],\n});\n```\n\n### Base64\n\n```typescript\nimport fs from \"fs\";\n\nconst imageData = fs.readFileSync(\"image.png\").toString(\"base64\");\n\nconst response = await client.messages.create({\n  model: \"claude-opus-4-6\",\n  max_tokens: 1024,\n  messages: [\n    {\n      role: \"user\",\n      content: [\n        {\n          type: \"image\",\n          source: { type: \"base64\", media_type: \"image/png\", data: imageData },\n        },\n        { type: \"text\", text: \"What's in this image?\" },\n      ],\n    },\n  ],\n});\n```\n\n---\n\n## Prompt Caching\n\n### Automatic Caching (Recommended)\n\nUse top-level `cache_control` to automatically cache the last cacheable block in the request:\n\n```typescript\nconst response = await client.messages.create({\n  model: \"claude-opus-4-6\",\n  max_tokens: 1024,\n  cache_control: { type: \"ephemeral\" }, // auto-caches the last cacheable block\n  system: \"You are an expert on this large document...\",\n  messages: [{ role: \"user\", content: \"Summarize the key points\" }],\n});\n```\n\n### Manual Cache Control\n\nFor fine-grained control, add `cache_control` to specific content blocks:\n\n```typescript\nconst response = await client.messages.create({\n  model: \"claude-opus-4-6\",\n  max_tokens: 1024,\n  system: [\n    {\n      type: \"text\",\n      text: \"You are an expert on this large document...\",\n      cache_control: { type: \"ephemeral\" }, // default TTL is 5 minutes\n    },\n  ],\n  messages: [{ role: \"user\", content: \"Summarize the key points\" }],\n});\n\n// With explicit TTL (time-to-live)\nconst response2 = await client.messages.create({\n  model: \"claude-opus-4-6\",\n  max_tokens: 1024,\n  system: [\n    {\n      type: \"text\",\n      text: \"You are an expert on this large document...\",\n      cache_control: { type: \"ephemeral\", ttl: \"1h\" }, // 1 hour TTL\n    },\n  ],\n  messages: [{ role: \"user\", content: \"Summarize the key points\" }],\n});\n```\n\n---\n\n## Extended Thinking\n\n> **Opus 4.6 and Sonnet 4.6:** Use adaptive thinking. `budget_tokens` is deprecated on both Opus 4.6 and Sonnet 4.6.\n> **Older models:** Use `thinking: {type: \"enabled\", budget_tokens: N}` (must be < `max_tokens`, min 1024).\n\n```typescript\n// Opus 4.6: adaptive thinking (recommended)\nconst response = await client.messages.create({\n  model: \"claude-opus-4-6\",\n  max_tokens: 16000,\n  thinking: { type: \"adaptive\" },\n  output_config: { effort: \"high\" }, // low | medium | high | max\n  messages: [\n    { role: \"user\", content: \"Solve this math problem step by step...\" },\n  ],\n});\n\nfor (const block of response.content) {\n  if (block.type === \"thinking\") {\n    console.log(\"Thinking:\", block.thinking);\n  } else if (block.type === \"text\") {\n    console.log(\"Response:\", block.text);\n  }\n}\n```\n\n---\n\n## Error Handling\n\nUse the SDK's typed exception classes — never check error messages with string matching:\n\n```typescript\nimport Anthropic from \"@anthropic-ai/sdk\";\n\ntry {\n  const response = await client.messages.create({...});\n} catch (error) {\n  if (error instanceof Anthropic.BadRequestError) {\n    console.error(\"Bad request:\", error.message);\n  } else if (error instanceof Anthropic.AuthenticationError) {\n    console.error(\"Invalid API key\");\n  } else if (error instanceof Anthropic.RateLimitError) {\n    console.error(\"Rate limited - retry later\");\n  } else if (error instanceof Anthropic.APIError) {\n    console.error(`API error ${error.status}:`, error.message);\n  }\n}\n```\n\nAll classes extend `Anthropic.APIError` with a typed `status` field. Check from most specific to least specific. See [shared/error-codes.md](../../shared/error-codes.md) for the full error code reference.\n\n---\n\n## Multi-Turn Conversations\n\nThe API is stateless — send the full conversation history each time. Use `Anthropic.MessageParam[]` to type the messages array:\n\n```typescript\nconst messages: Anthropic.MessageParam[] = [\n  { role: \"user\", content: \"My name is Alice.\" },\n  { role: \"assistant\", content: \"Hello Alice! Nice to meet you.\" },\n  { role: \"user\", content: \"What's my name?\" },\n];\n\nconst response = await client.messages.create({\n  model: \"claude-opus-4-6\",\n  max_tokens: 1024,\n  messages: messages,\n});\n```\n\n**Rules:**\n\n- Messages must alternate between `user` and `assistant`\n- First message must be `user`\n- Use SDK types (`Anthropic.MessageParam`, `Anthropic.Message`, `Anthropic.Tool`, etc.) for all API data structures — don't redefine equivalent interfaces\n\n---\n\n### Compaction (long conversations)\n\n> **Beta, Opus 4.6 only.** When conversations approach the 200K context window, compaction automatically summarizes earlier context server-side. The API returns a `compaction` block; you must pass it back on subsequent requests — append `response.content`, not just the text.\n\n```typescript\nimport Anthropic from \"@anthropic-ai/sdk\";\n\nconst client = new Anthropic();\nconst messages: Anthropic.Beta.BetaMessageParam[] = [];\n\nasync function chat(userMessage: string): Promise<string> {\n  messages.push({ role: \"user\", content: userMessage });\n\n  const response = await client.beta.messages.create({\n    betas: [\"compact-2026-01-12\"],\n    model: \"claude-opus-4-6\",\n    max_tokens: 4096,\n    messages,\n    context_management: {\n      edits: [{ type: \"compact_20260112\" }],\n    },\n  });\n\n  // Append full content — compaction blocks must be preserved\n  messages.push({ role: \"assistant\", content: response.content });\n\n  const textBlock = response.content.find((block) => block.type === \"text\");\n  return textBlock?.text ?? \"\";\n}\n\n// Compaction triggers automatically when context grows large\nconsole.log(await chat(\"Help me build a Python web scraper\"));\nconsole.log(await chat(\"Add support for JavaScript-rendered pages\"));\nconsole.log(await chat(\"Now add rate limiting and error handling\"));\n```\n\n---\n\n## Stop Reasons\n\nThe `stop_reason` field in the response indicates why the model stopped generating:\n\n| Value           | Meaning                                                         |\n| --------------- | --------------------------------------------------------------- |\n| `end_turn`      | Claude finished its response naturally                          |\n| `max_tokens`    | Hit the `max_tokens` limit — increase it or use streaming       |\n| `stop_sequence` | Hit a custom stop sequence                                      |\n| `tool_use`      | Claude wants to call a tool — execute it and continue           |\n| `pause_turn`    | Model paused and can be resumed (agentic flows)                 |\n| `refusal`       | Claude refused for safety reasons — output may not match schema |\n\n---\n\n## Cost Optimization Strategies\n\n### 1. Use Prompt Caching for Repeated Context\n\n```typescript\n// Automatic caching (simplest — caches the last cacheable block)\nconst response = await client.messages.create({\n  model: \"claude-opus-4-6\",\n  max_tokens: 1024,\n  cache_control: { type: \"ephemeral\" },\n  system: largeDocumentText, // e.g., 50KB of context\n  messages: [{ role: \"user\", content: \"Summarize the key points\" }],\n});\n\n// First request: full cost\n// Subsequent requests: ~90% cheaper for cached portion\n```\n\n### 2. Use Token Counting Before Requests\n\n```typescript\nconst countResponse = await client.messages.countTokens({\n  model: \"claude-opus-4-6\",\n  messages: messages,\n  system: system,\n});\n\nconst estimatedInputCost = countResponse.input_tokens * 0.000005; // $5/1M tokens\nconsole.log(`Estimated input cost: $${estimatedInputCost.toFixed(4)}`);\n```\n"
  },
  {
    "path": "skills/claude-api/typescript/claude-api/batches.md",
    "content": "# Message Batches API — TypeScript\n\nThe Batches API (`POST /v1/messages/batches`) processes Messages API requests asynchronously at 50% of standard prices.\n\n## Key Facts\n\n- Up to 100,000 requests or 256 MB per batch\n- Most batches complete within 1 hour; maximum 24 hours\n- Results available for 29 days after creation\n- 50% cost reduction on all token usage\n- All Messages API features supported (vision, tools, caching, etc.)\n\n---\n\n## Create a Batch\n\n```typescript\nimport Anthropic from \"@anthropic-ai/sdk\";\n\nconst client = new Anthropic();\n\nconst messageBatch = await client.messages.batches.create({\n  requests: [\n    {\n      custom_id: \"request-1\",\n      params: {\n        model: \"claude-opus-4-6\",\n        max_tokens: 1024,\n        messages: [\n          { role: \"user\", content: \"Summarize climate change impacts\" },\n        ],\n      },\n    },\n    {\n      custom_id: \"request-2\",\n      params: {\n        model: \"claude-opus-4-6\",\n        max_tokens: 1024,\n        messages: [\n          { role: \"user\", content: \"Explain quantum computing basics\" },\n        ],\n      },\n    },\n  ],\n});\n\nconsole.log(`Batch ID: ${messageBatch.id}`);\nconsole.log(`Status: ${messageBatch.processing_status}`);\n```\n\n---\n\n## Poll for Completion\n\n```typescript\nlet batch;\nwhile (true) {\n  batch = await client.messages.batches.retrieve(messageBatch.id);\n  if (batch.processing_status === \"ended\") break;\n  console.log(\n    `Status: ${batch.processing_status}, processing: ${batch.request_counts.processing}`,\n  );\n  await new Promise((resolve) => setTimeout(resolve, 60_000));\n}\n\nconsole.log(\"Batch complete!\");\nconsole.log(`Succeeded: ${batch.request_counts.succeeded}`);\nconsole.log(`Errored: ${batch.request_counts.errored}`);\n```\n\n---\n\n## Retrieve Results\n\n```typescript\nfor await (const result of await client.messages.batches.results(\n  messageBatch.id,\n)) {\n  switch (result.result.type) {\n    case \"succeeded\":\n      console.log(\n        `[${result.custom_id}] ${result.result.message.content[0].text.slice(0, 100)}`,\n      );\n      break;\n    case \"errored\":\n      if (result.result.error.type === \"invalid_request\") {\n        console.log(`[${result.custom_id}] Validation error - fix and retry`);\n      } else {\n        console.log(`[${result.custom_id}] Server error - safe to retry`);\n      }\n      break;\n    case \"expired\":\n      console.log(`[${result.custom_id}] Expired - resubmit`);\n      break;\n  }\n}\n```\n\n---\n\n## Cancel a Batch\n\n```typescript\nconst cancelled = await client.messages.batches.cancel(messageBatch.id);\nconsole.log(`Status: ${cancelled.processing_status}`); // \"canceling\"\n```\n"
  },
  {
    "path": "skills/claude-api/typescript/claude-api/files-api.md",
    "content": "# Files API — TypeScript\n\nThe Files API uploads files for use in Messages API requests. Reference files via `file_id` in content blocks, avoiding re-uploads across multiple API calls.\n\n**Beta:** Pass `betas: [\"files-api-2025-04-14\"]` in your API calls (the SDK sets the required header automatically).\n\n## Key Facts\n\n- Maximum file size: 500 MB\n- Total storage: 100 GB per organization\n- Files persist until deleted\n- File operations (upload, list, delete) are free; content used in messages is billed as input tokens\n- Not available on Amazon Bedrock or Google Vertex AI\n\n---\n\n## Upload a File\n\n```typescript\nimport Anthropic, { toFile } from \"@anthropic-ai/sdk\";\nimport fs from \"fs\";\n\nconst client = new Anthropic();\n\nconst uploaded = await client.beta.files.upload({\n  file: await toFile(fs.createReadStream(\"report.pdf\"), undefined, {\n    type: \"application/pdf\",\n  }),\n  betas: [\"files-api-2025-04-14\"],\n});\n\nconsole.log(`File ID: ${uploaded.id}`);\nconsole.log(`Size: ${uploaded.size_bytes} bytes`);\n```\n\n---\n\n## Use a File in Messages\n\n### PDF / Text Document\n\n```typescript\nconst response = await client.beta.messages.create({\n  model: \"claude-opus-4-6\",\n  max_tokens: 1024,\n  messages: [\n    {\n      role: \"user\",\n      content: [\n        { type: \"text\", text: \"Summarize the key findings in this report.\" },\n        {\n          type: \"document\",\n          source: { type: \"file\", file_id: uploaded.id },\n          title: \"Q4 Report\",\n          citations: { enabled: true },\n        },\n      ],\n    },\n  ],\n  betas: [\"files-api-2025-04-14\"],\n});\n\nconsole.log(response.content[0].text);\n```\n\n---\n\n## Manage Files\n\n### List Files\n\n```typescript\nconst files = await client.beta.files.list({\n  betas: [\"files-api-2025-04-14\"],\n});\nfor (const f of files.data) {\n  console.log(`${f.id}: ${f.filename} (${f.size_bytes} bytes)`);\n}\n```\n\n### Delete a File\n\n```typescript\nawait client.beta.files.delete(\"file_011CNha8iCJcU1wXNR6q4V8w\", {\n  betas: [\"files-api-2025-04-14\"],\n});\n```\n\n### Download a File\n\n```typescript\nconst response = await client.beta.files.download(\n  \"file_011CNha8iCJcU1wXNR6q4V8w\",\n  { betas: [\"files-api-2025-04-14\"] },\n);\nconst content = Buffer.from(await response.arrayBuffer());\nawait fs.promises.writeFile(\"output.txt\", content);\n```\n"
  },
  {
    "path": "skills/claude-api/typescript/claude-api/streaming.md",
    "content": "# Streaming — TypeScript\n\n## Quick Start\n\n```typescript\nconst stream = client.messages.stream({\n  model: \"claude-opus-4-6\",\n  max_tokens: 1024,\n  messages: [{ role: \"user\", content: \"Write a story\" }],\n});\n\nfor await (const event of stream) {\n  if (\n    event.type === \"content_block_delta\" &&\n    event.delta.type === \"text_delta\"\n  ) {\n    process.stdout.write(event.delta.text);\n  }\n}\n```\n\n---\n\n## Handling Different Content Types\n\n> **Opus 4.6:** Use `thinking: {type: \"adaptive\"}`. On older models, use `thinking: {type: \"enabled\", budget_tokens: N}` instead.\n\n```typescript\nconst stream = client.messages.stream({\n  model: \"claude-opus-4-6\",\n  max_tokens: 16000,\n  thinking: { type: \"adaptive\" },\n  messages: [{ role: \"user\", content: \"Analyze this problem\" }],\n});\n\nfor await (const event of stream) {\n  switch (event.type) {\n    case \"content_block_start\":\n      switch (event.content_block.type) {\n        case \"thinking\":\n          console.log(\"\\n[Thinking...]\");\n          break;\n        case \"text\":\n          console.log(\"\\n[Response:]\");\n          break;\n      }\n      break;\n    case \"content_block_delta\":\n      switch (event.delta.type) {\n        case \"thinking_delta\":\n          process.stdout.write(event.delta.thinking);\n          break;\n        case \"text_delta\":\n          process.stdout.write(event.delta.text);\n          break;\n      }\n      break;\n  }\n}\n```\n\n---\n\n## Streaming with Tool Use (Tool Runner)\n\nUse the tool runner with `stream: true`. The outer loop iterates over tool runner iterations (messages), the inner loop processes stream events:\n\n```typescript\nimport Anthropic from \"@anthropic-ai/sdk\";\nimport { betaZodTool } from \"@anthropic-ai/sdk/helpers/beta/zod\";\nimport { z } from \"zod\";\n\nconst client = new Anthropic();\n\nconst getWeather = betaZodTool({\n  name: \"get_weather\",\n  description: \"Get current weather for a location\",\n  inputSchema: z.object({\n    location: z.string().describe(\"City and state, e.g., San Francisco, CA\"),\n  }),\n  run: async ({ location }) => `72°F and sunny in ${location}`,\n});\n\nconst runner = client.beta.messages.toolRunner({\n  model: \"claude-opus-4-6\",\n  max_tokens: 4096,\n  tools: [getWeather],\n  messages: [\n    { role: \"user\", content: \"What's the weather in Paris and London?\" },\n  ],\n  stream: true,\n});\n\n// Outer loop: each tool runner iteration\nfor await (const messageStream of runner) {\n  // Inner loop: stream events for this iteration\n  for await (const event of messageStream) {\n    switch (event.type) {\n      case \"content_block_delta\":\n        switch (event.delta.type) {\n          case \"text_delta\":\n            process.stdout.write(event.delta.text);\n            break;\n          case \"input_json_delta\":\n            // Tool input being streamed\n            break;\n        }\n        break;\n    }\n  }\n}\n```\n\n---\n\n## Getting the Final Message\n\n```typescript\nconst stream = client.messages.stream({\n  model: \"claude-opus-4-6\",\n  max_tokens: 1024,\n  messages: [{ role: \"user\", content: \"Hello\" }],\n});\n\nfor await (const event of stream) {\n  // Process events...\n}\n\nconst finalMessage = await stream.finalMessage();\nconsole.log(`Tokens used: ${finalMessage.usage.output_tokens}`);\n```\n\n---\n\n## Stream Event Types\n\n| Event Type            | Description                 | When it fires                     |\n| --------------------- | --------------------------- | --------------------------------- |\n| `message_start`       | Contains message metadata   | Once at the beginning             |\n| `content_block_start` | New content block beginning | When a text/tool_use block starts |\n| `content_block_delta` | Incremental content update  | For each token/chunk              |\n| `content_block_stop`  | Content block complete      | When a block finishes             |\n| `message_delta`       | Message-level updates       | Contains `stop_reason`, usage     |\n| `message_stop`        | Message complete            | Once at the end                   |\n\n## Best Practices\n\n1. **Always flush output** — Use `process.stdout.write()` for immediate display\n2. **Handle partial responses** — If the stream is interrupted, you may have incomplete content\n3. **Track token usage** — The `message_delta` event contains usage information\n4. **Use `finalMessage()`** — Get the complete `Anthropic.Message` object even when streaming. Don't wrap `.on()` events in `new Promise()` — `finalMessage()` handles all completion/error/abort states internally\n5. **Buffer for web UIs** — Consider buffering a few tokens before rendering to avoid excessive DOM updates\n6. **Use `stream.on(\"text\", ...)` for deltas** — The `text` event provides just the delta string, simpler than manually filtering `content_block_delta` events\n7. **For agentic loops with streaming** — See the [Streaming Manual Loop](./tool-use.md#streaming-manual-loop) section in tool-use.md for combining `stream()` + `finalMessage()` with a tool-use loop\n\n## Raw SSE Format\n\nIf using raw HTTP (not SDKs), the stream returns Server-Sent Events:\n\n```\nevent: message_start\ndata: {\"type\":\"message_start\",\"message\":{\"id\":\"msg_...\",\"type\":\"message\",...}}\n\nevent: content_block_start\ndata: {\"type\":\"content_block_start\",\"index\":0,\"content_block\":{\"type\":\"text\",\"text\":\"\"}}\n\nevent: content_block_delta\ndata: {\"type\":\"content_block_delta\",\"index\":0,\"delta\":{\"type\":\"text_delta\",\"text\":\"Hello\"}}\n\nevent: content_block_stop\ndata: {\"type\":\"content_block_stop\",\"index\":0}\n\nevent: message_delta\ndata: {\"type\":\"message_delta\",\"delta\":{\"stop_reason\":\"end_turn\"},\"usage\":{\"output_tokens\":12}}\n\nevent: message_stop\ndata: {\"type\":\"message_stop\"}\n```\n"
  },
  {
    "path": "skills/claude-api/typescript/claude-api/tool-use.md",
    "content": "# Tool Use — TypeScript\n\nFor conceptual overview (tool definitions, tool choice, tips), see [shared/tool-use-concepts.md](../../shared/tool-use-concepts.md).\n\n## Tool Runner (Recommended)\n\n**Beta:** The tool runner is in beta in the TypeScript SDK.\n\nUse `betaZodTool` with Zod schemas to define tools with a `run` function, then pass them to `client.beta.messages.toolRunner()`:\n\n```typescript\nimport Anthropic from \"@anthropic-ai/sdk\";\nimport { betaZodTool } from \"@anthropic-ai/sdk/helpers/beta/zod\";\nimport { z } from \"zod\";\n\nconst client = new Anthropic();\n\nconst getWeather = betaZodTool({\n  name: \"get_weather\",\n  description: \"Get current weather for a location\",\n  inputSchema: z.object({\n    location: z.string().describe(\"City and state, e.g., San Francisco, CA\"),\n    unit: z.enum([\"celsius\", \"fahrenheit\"]).optional(),\n  }),\n  run: async (input) => {\n    // Your implementation here\n    return `72°F and sunny in ${input.location}`;\n  },\n});\n\n// The tool runner handles the agentic loop and returns the final message\nconst finalMessage = await client.beta.messages.toolRunner({\n  model: \"claude-opus-4-6\",\n  max_tokens: 4096,\n  tools: [getWeather],\n  messages: [{ role: \"user\", content: \"What's the weather in Paris?\" }],\n});\n\nconsole.log(finalMessage.content);\n```\n\n**Key benefits of the tool runner:**\n\n- No manual loop — the SDK handles calling tools and feeding results back\n- Type-safe tool inputs via Zod schemas\n- Tool schemas are generated automatically from Zod definitions\n- Iteration stops automatically when Claude has no more tool calls\n\n---\n\n## Manual Agentic Loop\n\nUse this when you need fine-grained control (custom logging, conditional tool execution, streaming individual iterations, human-in-the-loop approval):\n\n```typescript\nimport Anthropic from \"@anthropic-ai/sdk\";\n\nconst client = new Anthropic();\nconst tools: Anthropic.Tool[] = [...]; // Your tool definitions\nlet messages: Anthropic.MessageParam[] = [{ role: \"user\", content: userInput }];\n\nwhile (true) {\n  const response = await client.messages.create({\n    model: \"claude-opus-4-6\",\n    max_tokens: 4096,\n    tools: tools,\n    messages: messages,\n  });\n\n  if (response.stop_reason === \"end_turn\") break;\n\n  // Server-side tool hit iteration limit; re-send to continue\n  if (response.stop_reason === \"pause_turn\") {\n    messages = [\n      { role: \"user\", content: userInput },\n      { role: \"assistant\", content: response.content },\n    ];\n    continue;\n  }\n\n  const toolUseBlocks = response.content.filter(\n    (b): b is Anthropic.ToolUseBlock => b.type === \"tool_use\",\n  );\n\n  messages.push({ role: \"assistant\", content: response.content });\n\n  const toolResults: Anthropic.ToolResultBlockParam[] = [];\n  for (const tool of toolUseBlocks) {\n    const result = await executeTool(tool.name, tool.input);\n    toolResults.push({\n      type: \"tool_result\",\n      tool_use_id: tool.id,\n      content: result,\n    });\n  }\n\n  messages.push({ role: \"user\", content: toolResults });\n}\n```\n\n### Streaming Manual Loop\n\nUse `client.messages.stream()` + `finalMessage()` instead of `.create()` when you need streaming within a manual loop. Text deltas are streamed on each iteration; `finalMessage()` collects the complete `Message` so you can inspect `stop_reason` and extract tool-use blocks:\n\n```typescript\nimport Anthropic from \"@anthropic-ai/sdk\";\n\nconst client = new Anthropic();\nconst tools: Anthropic.Tool[] = [...];\nlet messages: Anthropic.MessageParam[] = [{ role: \"user\", content: userInput }];\n\nwhile (true) {\n  const stream = client.messages.stream({\n    model: \"claude-opus-4-6\",\n    max_tokens: 4096,\n    tools,\n    messages,\n  });\n\n  // Stream text deltas on each iteration\n  stream.on(\"text\", (delta) => {\n    process.stdout.write(delta);\n  });\n\n  // finalMessage() resolves with the complete Message — no need to\n  // manually wire up .on(\"message\") / .on(\"error\") / .on(\"abort\")\n  const message = await stream.finalMessage();\n\n  if (message.stop_reason === \"end_turn\") break;\n\n  // Server-side tool hit iteration limit; re-send to continue\n  if (message.stop_reason === \"pause_turn\") {\n    messages = [\n      { role: \"user\", content: userInput },\n      { role: \"assistant\", content: message.content },\n    ];\n    continue;\n  }\n\n  const toolUseBlocks = message.content.filter(\n    (b): b is Anthropic.ToolUseBlock => b.type === \"tool_use\",\n  );\n\n  messages.push({ role: \"assistant\", content: message.content });\n\n  const toolResults: Anthropic.ToolResultBlockParam[] = [];\n  for (const tool of toolUseBlocks) {\n    const result = await executeTool(tool.name, tool.input);\n    toolResults.push({\n      type: \"tool_result\",\n      tool_use_id: tool.id,\n      content: result,\n    });\n  }\n\n  messages.push({ role: \"user\", content: toolResults });\n}\n```\n\n> **Important:** Don't wrap `.on()` events in `new Promise()` to collect the final message — use `stream.finalMessage()` instead. The SDK handles all error/abort/completion states internally.\n\n> **Error handling in the loop:** Use the SDK's typed exceptions (e.g., `Anthropic.RateLimitError`, `Anthropic.APIError`) — see [Error Handling](./README.md#error-handling) for examples. Don't check error messages with string matching.\n\n> **SDK types:** Use `Anthropic.MessageParam`, `Anthropic.Tool`, `Anthropic.ToolUseBlock`, `Anthropic.ToolResultBlockParam`, `Anthropic.Message`, etc. for all API-related data structures. Don't redefine equivalent interfaces.\n\n---\n\n## Handling Tool Results\n\n```typescript\nconst response = await client.messages.create({\n  model: \"claude-opus-4-6\",\n  max_tokens: 1024,\n  tools: tools,\n  messages: [{ role: \"user\", content: \"What's the weather in Paris?\" }],\n});\n\nfor (const block of response.content) {\n  if (block.type === \"tool_use\") {\n    const result = await executeTool(block.name, block.input);\n\n    const followup = await client.messages.create({\n      model: \"claude-opus-4-6\",\n      max_tokens: 1024,\n      tools: tools,\n      messages: [\n        { role: \"user\", content: \"What's the weather in Paris?\" },\n        { role: \"assistant\", content: response.content },\n        {\n          role: \"user\",\n          content: [\n            { type: \"tool_result\", tool_use_id: block.id, content: result },\n          ],\n        },\n      ],\n    });\n  }\n}\n```\n\n---\n\n## Tool Choice\n\n```typescript\nconst response = await client.messages.create({\n  model: \"claude-opus-4-6\",\n  max_tokens: 1024,\n  tools: tools,\n  tool_choice: { type: \"tool\", name: \"get_weather\" },\n  messages: [{ role: \"user\", content: \"What's the weather in Paris?\" }],\n});\n```\n\n---\n\n## Code Execution\n\n### Basic Usage\n\n```typescript\nimport Anthropic from \"@anthropic-ai/sdk\";\n\nconst client = new Anthropic();\n\nconst response = await client.messages.create({\n  model: \"claude-opus-4-6\",\n  max_tokens: 4096,\n  messages: [\n    {\n      role: \"user\",\n      content:\n        \"Calculate the mean and standard deviation of [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]\",\n    },\n  ],\n  tools: [{ type: \"code_execution_20260120\", name: \"code_execution\" }],\n});\n```\n\n### Upload Files for Analysis\n\n```typescript\nimport Anthropic, { toFile } from \"@anthropic-ai/sdk\";\nimport { createReadStream } from \"fs\";\n\nconst client = new Anthropic();\n\n// 1. Upload a file\nconst uploaded = await client.beta.files.upload({\n  file: await toFile(createReadStream(\"sales_data.csv\"), undefined, {\n    type: \"text/csv\",\n  }),\n  betas: [\"files-api-2025-04-14\"],\n});\n\n// 2. Pass to code execution\n// Code execution is GA; Files API is still beta (pass via RequestOptions)\nconst response = await client.messages.create(\n  {\n    model: \"claude-opus-4-6\",\n    max_tokens: 4096,\n    messages: [\n      {\n        role: \"user\",\n        content: [\n          {\n            type: \"text\",\n            text: \"Analyze this sales data. Show trends and create a visualization.\",\n          },\n          { type: \"container_upload\", file_id: uploaded.id },\n        ],\n      },\n    ],\n    tools: [{ type: \"code_execution_20260120\", name: \"code_execution\" }],\n  },\n  { headers: { \"anthropic-beta\": \"files-api-2025-04-14\" } },\n);\n```\n\n### Retrieve Generated Files\n\n```typescript\nimport path from \"path\";\nimport fs from \"fs\";\n\nconst OUTPUT_DIR = \"./claude_outputs\";\nawait fs.promises.mkdir(OUTPUT_DIR, { recursive: true });\n\nfor (const block of response.content) {\n  if (block.type === \"bash_code_execution_tool_result\") {\n    const result = block.content;\n    if (result.type === \"bash_code_execution_result\" && result.content) {\n      for (const fileRef of result.content) {\n        if (fileRef.type === \"bash_code_execution_output\") {\n          const metadata = await client.beta.files.retrieveMetadata(\n            fileRef.file_id,\n          );\n          const response = await client.beta.files.download(fileRef.file_id);\n          const fileBytes = Buffer.from(await response.arrayBuffer());\n          const safeName = path.basename(metadata.filename);\n          if (!safeName || safeName === \".\" || safeName === \"..\") {\n            console.warn(`Skipping invalid filename: ${metadata.filename}`);\n            continue;\n          }\n          const outputPath = path.join(OUTPUT_DIR, safeName);\n          await fs.promises.writeFile(outputPath, fileBytes);\n          console.log(`Saved: ${outputPath}`);\n        }\n      }\n    }\n  }\n}\n```\n\n### Container Reuse\n\n```typescript\n// First request: set up environment\nconst response1 = await client.messages.create({\n  model: \"claude-opus-4-6\",\n  max_tokens: 4096,\n  messages: [\n    {\n      role: \"user\",\n      content: \"Install tabulate and create data.json with sample user data\",\n    },\n  ],\n  tools: [{ type: \"code_execution_20260120\", name: \"code_execution\" }],\n});\n\n// Reuse container\nconst containerId = response1.container.id;\n\nconst response2 = await client.messages.create({\n  container: containerId,\n  model: \"claude-opus-4-6\",\n  max_tokens: 4096,\n  messages: [\n    {\n      role: \"user\",\n      content: \"Read data.json and display as a formatted table\",\n    },\n  ],\n  tools: [{ type: \"code_execution_20260120\", name: \"code_execution\" }],\n});\n```\n\n---\n\n## Memory Tool\n\n### Basic Usage\n\n```typescript\nconst response = await client.messages.create({\n  model: \"claude-opus-4-6\",\n  max_tokens: 2048,\n  messages: [\n    {\n      role: \"user\",\n      content: \"Remember that my preferred language is TypeScript.\",\n    },\n  ],\n  tools: [{ type: \"memory_20250818\", name: \"memory\" }],\n});\n```\n\n### SDK Memory Helper\n\nUse `betaMemoryTool` with a `MemoryToolHandlers` implementation:\n\n```typescript\nimport {\n  betaMemoryTool,\n  type MemoryToolHandlers,\n} from \"@anthropic-ai/sdk/helpers/beta/memory\";\n\nconst handlers: MemoryToolHandlers = {\n  async view(command) { ... },\n  async create(command) { ... },\n  async str_replace(command) { ... },\n  async insert(command) { ... },\n  async delete(command) { ... },\n  async rename(command) { ... },\n};\n\nconst memory = betaMemoryTool(handlers);\n\nconst runner = client.beta.messages.toolRunner({\n  model: \"claude-opus-4-6\",\n  max_tokens: 2048,\n  tools: [memory],\n  messages: [{ role: \"user\", content: \"Remember my preferences\" }],\n});\n\nfor await (const message of runner) {\n  console.log(message);\n}\n```\n\nFor full implementation examples, use WebFetch:\n\n- `https://github.com/anthropics/anthropic-sdk-typescript/blob/main/examples/tools-helpers-memory.ts`\n\n---\n\n## Structured Outputs\n\n### JSON Outputs (Zod — Recommended)\n\n```typescript\nimport Anthropic from \"@anthropic-ai/sdk\";\nimport { z } from \"zod\";\nimport { zodOutputFormat } from \"@anthropic-ai/sdk/helpers/zod\";\n\nconst ContactInfoSchema = z.object({\n  name: z.string(),\n  email: z.string(),\n  plan: z.string(),\n  interests: z.array(z.string()),\n  demo_requested: z.boolean(),\n});\n\nconst client = new Anthropic();\n\nconst response = await client.messages.parse({\n  model: \"claude-opus-4-6\",\n  max_tokens: 1024,\n  messages: [\n    {\n      role: \"user\",\n      content:\n        \"Extract: Jane Doe (jane@co.com) wants Enterprise, interested in API and SDKs, wants a demo.\",\n    },\n  ],\n  output_config: {\n    format: zodOutputFormat(ContactInfoSchema),\n  },\n});\n\nconsole.log(response.parsed_output.name); // \"Jane Doe\"\n```\n\n### Strict Tool Use\n\n```typescript\nconst response = await client.messages.create({\n  model: \"claude-opus-4-6\",\n  max_tokens: 1024,\n  messages: [\n    {\n      role: \"user\",\n      content: \"Book a flight to Tokyo for 2 passengers on March 15\",\n    },\n  ],\n  tools: [\n    {\n      name: \"book_flight\",\n      description: \"Book a flight to a destination\",\n      strict: true,\n      input_schema: {\n        type: \"object\",\n        properties: {\n          destination: { type: \"string\" },\n          date: { type: \"string\", format: \"date\" },\n          passengers: {\n            type: \"integer\",\n            enum: [1, 2, 3, 4, 5, 6, 7, 8],\n          },\n        },\n        required: [\"destination\", \"date\", \"passengers\"],\n        additionalProperties: false,\n      },\n    },\n  ],\n});\n```\n"
  },
  {
    "path": "skills/doc-coauthoring/SKILL.md",
    "content": "---\nname: doc-coauthoring\ndescription: Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.\n---\n\n# Doc Co-Authoring Workflow\n\nThis skill provides a structured workflow for guiding users through collaborative document creation. Act as an active guide, walking users through three stages: Context Gathering, Refinement & Structure, and Reader Testing.\n\n## When to Offer This Workflow\n\n**Trigger conditions:**\n- User mentions writing documentation: \"write a doc\", \"draft a proposal\", \"create a spec\", \"write up\"\n- User mentions specific doc types: \"PRD\", \"design doc\", \"decision doc\", \"RFC\"\n- User seems to be starting a substantial writing task\n\n**Initial offer:**\nOffer the user a structured workflow for co-authoring the document. Explain the three stages:\n\n1. **Context Gathering**: User provides all relevant context while Claude asks clarifying questions\n2. **Refinement & Structure**: Iteratively build each section through brainstorming and editing\n3. **Reader Testing**: Test the doc with a fresh Claude (no context) to catch blind spots before others read it\n\nExplain that this approach helps ensure the doc works well when others read it (including when they paste it into Claude). Ask if they want to try this workflow or prefer to work freeform.\n\nIf user declines, work freeform. If user accepts, proceed to Stage 1.\n\n## Stage 1: Context Gathering\n\n**Goal:** Close the gap between what the user knows and what Claude knows, enabling smart guidance later.\n\n### Initial Questions\n\nStart by asking the user for meta-context about the document:\n\n1. What type of document is this? (e.g., technical spec, decision doc, proposal)\n2. Who's the primary audience?\n3. What's the desired impact when someone reads this?\n4. Is there a template or specific format to follow?\n5. Any other constraints or context to know?\n\nInform them they can answer in shorthand or dump information however works best for them.\n\n**If user provides a template or mentions a doc type:**\n- Ask if they have a template document to share\n- If they provide a link to a shared document, use the appropriate integration to fetch it\n- If they provide a file, read it\n\n**If user mentions editing an existing shared document:**\n- Use the appropriate integration to read the current state\n- Check for images without alt-text\n- If images exist without alt-text, explain that when others use Claude to understand the doc, Claude won't be able to see them. Ask if they want alt-text generated. If so, request they paste each image into chat for descriptive alt-text generation.\n\n### Info Dumping\n\nOnce initial questions are answered, encourage the user to dump all the context they have. Request information such as:\n- Background on the project/problem\n- Related team discussions or shared documents\n- Why alternative solutions aren't being used\n- Organizational context (team dynamics, past incidents, politics)\n- Timeline pressures or constraints\n- Technical architecture or dependencies\n- Stakeholder concerns\n\nAdvise them not to worry about organizing it - just get it all out. Offer multiple ways to provide context:\n- Info dump stream-of-consciousness\n- Point to team channels or threads to read\n- Link to shared documents\n\n**If integrations are available** (e.g., Slack, Teams, Google Drive, SharePoint, or other MCP servers), mention that these can be used to pull in context directly.\n\n**If no integrations are detected and in Claude.ai or Claude app:** Suggest they can enable connectors in their Claude settings to allow pulling context from messaging apps and document storage directly.\n\nInform them clarifying questions will be asked once they've done their initial dump.\n\n**During context gathering:**\n\n- If user mentions team channels or shared documents:\n  - If integrations available: Inform them the content will be read now, then use the appropriate integration\n  - If integrations not available: Explain lack of access. Suggest they enable connectors in Claude settings, or paste the relevant content directly.\n\n- If user mentions entities/projects that are unknown:\n  - Ask if connected tools should be searched to learn more\n  - Wait for user confirmation before searching\n\n- As user provides context, track what's being learned and what's still unclear\n\n**Asking clarifying questions:**\n\nWhen user signals they've done their initial dump (or after substantial context provided), ask clarifying questions to ensure understanding:\n\nGenerate 5-10 numbered questions based on gaps in the context.\n\nInform them they can use shorthand to answer (e.g., \"1: yes, 2: see #channel, 3: no because backwards compat\"), link to more docs, point to channels to read, or just keep info-dumping. Whatever's most efficient for them.\n\n**Exit condition:**\nSufficient context has been gathered when questions show understanding - when edge cases and trade-offs can be asked about without needing basics explained.\n\n**Transition:**\nAsk if there's any more context they want to provide at this stage, or if it's time to move on to drafting the document.\n\nIf user wants to add more, let them. When ready, proceed to Stage 2.\n\n## Stage 2: Refinement & Structure\n\n**Goal:** Build the document section by section through brainstorming, curation, and iterative refinement.\n\n**Instructions to user:**\nExplain that the document will be built section by section. For each section:\n1. Clarifying questions will be asked about what to include\n2. 5-20 options will be brainstormed\n3. User will indicate what to keep/remove/combine\n4. The section will be drafted\n5. It will be refined through surgical edits\n\nStart with whichever section has the most unknowns (usually the core decision/proposal), then work through the rest.\n\n**Section ordering:**\n\nIf the document structure is clear:\nAsk which section they'd like to start with.\n\nSuggest starting with whichever section has the most unknowns. For decision docs, that's usually the core proposal. For specs, it's typically the technical approach. Summary sections are best left for last.\n\nIf user doesn't know what sections they need:\nBased on the type of document and template, suggest 3-5 sections appropriate for the doc type.\n\nAsk if this structure works, or if they want to adjust it.\n\n**Once structure is agreed:**\n\nCreate the initial document structure with placeholder text for all sections.\n\n**If access to artifacts is available:**\nUse `create_file` to create an artifact. This gives both Claude and the user a scaffold to work from.\n\nInform them that the initial structure with placeholders for all sections will be created.\n\nCreate artifact with all section headers and brief placeholder text like \"[To be written]\" or \"[Content here]\".\n\nProvide the scaffold link and indicate it's time to fill in each section.\n\n**If no access to artifacts:**\nCreate a markdown file in the working directory. Name it appropriately (e.g., `decision-doc.md`, `technical-spec.md`).\n\nInform them that the initial structure with placeholders for all sections will be created.\n\nCreate file with all section headers and placeholder text.\n\nConfirm the filename has been created and indicate it's time to fill in each section.\n\n**For each section:**\n\n### Step 1: Clarifying Questions\n\nAnnounce work will begin on the [SECTION NAME] section. Ask 5-10 clarifying questions about what should be included:\n\nGenerate 5-10 specific questions based on context and section purpose.\n\nInform them they can answer in shorthand or just indicate what's important to cover.\n\n### Step 2: Brainstorming\n\nFor the [SECTION NAME] section, brainstorm [5-20] things that might be included, depending on the section's complexity. Look for:\n- Context shared that might have been forgotten\n- Angles or considerations not yet mentioned\n\nGenerate 5-20 numbered options based on section complexity. At the end, offer to brainstorm more if they want additional options.\n\n### Step 3: Curation\n\nAsk which points should be kept, removed, or combined. Request brief justifications to help learn priorities for the next sections.\n\nProvide examples:\n- \"Keep 1,4,7,9\"\n- \"Remove 3 (duplicates 1)\"\n- \"Remove 6 (audience already knows this)\"\n- \"Combine 11 and 12\"\n\n**If user gives freeform feedback** (e.g., \"looks good\" or \"I like most of it but...\") instead of numbered selections, extract their preferences and proceed. Parse what they want kept/removed/changed and apply it.\n\n### Step 4: Gap Check\n\nBased on what they've selected, ask if there's anything important missing for the [SECTION NAME] section.\n\n### Step 5: Drafting\n\nUse `str_replace` to replace the placeholder text for this section with the actual drafted content.\n\nAnnounce the [SECTION NAME] section will be drafted now based on what they've selected.\n\n**If using artifacts:**\nAfter drafting, provide a link to the artifact.\n\nAsk them to read through it and indicate what to change. Note that being specific helps learning for the next sections.\n\n**If using a file (no artifacts):**\nAfter drafting, confirm completion.\n\nInform them the [SECTION NAME] section has been drafted in [filename]. Ask them to read through it and indicate what to change. Note that being specific helps learning for the next sections.\n\n**Key instruction for user (include when drafting the first section):**\nProvide a note: Instead of editing the doc directly, ask them to indicate what to change. This helps learning of their style for future sections. For example: \"Remove the X bullet - already covered by Y\" or \"Make the third paragraph more concise\".\n\n### Step 6: Iterative Refinement\n\nAs user provides feedback:\n- Use `str_replace` to make edits (never reprint the whole doc)\n- **If using artifacts:** Provide link to artifact after each edit\n- **If using files:** Just confirm edits are complete\n- If user edits doc directly and asks to read it: mentally note the changes they made and keep them in mind for future sections (this shows their preferences)\n\n**Continue iterating** until user is satisfied with the section.\n\n### Quality Checking\n\nAfter 3 consecutive iterations with no substantial changes, ask if anything can be removed without losing important information.\n\nWhen section is done, confirm [SECTION NAME] is complete. Ask if ready to move to the next section.\n\n**Repeat for all sections.**\n\n### Near Completion\n\nAs approaching completion (80%+ of sections done), announce intention to re-read the entire document and check for:\n- Flow and consistency across sections\n- Redundancy or contradictions\n- Anything that feels like \"slop\" or generic filler\n- Whether every sentence carries weight\n\nRead entire document and provide feedback.\n\n**When all sections are drafted and refined:**\nAnnounce all sections are drafted. Indicate intention to review the complete document one more time.\n\nReview for overall coherence, flow, completeness.\n\nProvide any final suggestions.\n\nAsk if ready to move to Reader Testing, or if they want to refine anything else.\n\n## Stage 3: Reader Testing\n\n**Goal:** Test the document with a fresh Claude (no context bleed) to verify it works for readers.\n\n**Instructions to user:**\nExplain that testing will now occur to see if the document actually works for readers. This catches blind spots - things that make sense to the authors but might confuse others.\n\n### Testing Approach\n\n**If access to sub-agents is available (e.g., in Claude Code):**\n\nPerform the testing directly without user involvement.\n\n### Step 1: Predict Reader Questions\n\nAnnounce intention to predict what questions readers might ask when trying to discover this document.\n\nGenerate 5-10 questions that readers would realistically ask.\n\n### Step 2: Test with Sub-Agent\n\nAnnounce that these questions will be tested with a fresh Claude instance (no context from this conversation).\n\nFor each question, invoke a sub-agent with just the document content and the question.\n\nSummarize what Reader Claude got right/wrong for each question.\n\n### Step 3: Run Additional Checks\n\nAnnounce additional checks will be performed.\n\nInvoke sub-agent to check for ambiguity, false assumptions, contradictions.\n\nSummarize any issues found.\n\n### Step 4: Report and Fix\n\nIf issues found:\nReport that Reader Claude struggled with specific issues.\n\nList the specific issues.\n\nIndicate intention to fix these gaps.\n\nLoop back to refinement for problematic sections.\n\n---\n\n**If no access to sub-agents (e.g., claude.ai web interface):**\n\nThe user will need to do the testing manually.\n\n### Step 1: Predict Reader Questions\n\nAsk what questions people might ask when trying to discover this document. What would they type into Claude.ai?\n\nGenerate 5-10 questions that readers would realistically ask.\n\n### Step 2: Setup Testing\n\nProvide testing instructions:\n1. Open a fresh Claude conversation: https://claude.ai\n2. Paste or share the document content (if using a shared doc platform with connectors enabled, provide the link)\n3. Ask Reader Claude the generated questions\n\nFor each question, instruct Reader Claude to provide:\n- The answer\n- Whether anything was ambiguous or unclear\n- What knowledge/context the doc assumes is already known\n\nCheck if Reader Claude gives correct answers or misinterprets anything.\n\n### Step 3: Additional Checks\n\nAlso ask Reader Claude:\n- \"What in this doc might be ambiguous or unclear to readers?\"\n- \"What knowledge or context does this doc assume readers already have?\"\n- \"Are there any internal contradictions or inconsistencies?\"\n\n### Step 4: Iterate Based on Results\n\nAsk what Reader Claude got wrong or struggled with. Indicate intention to fix those gaps.\n\nLoop back to refinement for any problematic sections.\n\n---\n\n### Exit Condition (Both Approaches)\n\nWhen Reader Claude consistently answers questions correctly and doesn't surface new gaps or ambiguities, the doc is ready.\n\n## Final Review\n\nWhen Reader Testing passes:\nAnnounce the doc has passed Reader Claude testing. Before completion:\n\n1. Recommend they do a final read-through themselves - they own this document and are responsible for its quality\n2. Suggest double-checking any facts, links, or technical details\n3. Ask them to verify it achieves the impact they wanted\n\nAsk if they want one more review, or if the work is done.\n\n**If user wants final review, provide it. Otherwise:**\nAnnounce document completion. Provide a few final tips:\n- Consider linking this conversation in an appendix so readers can see how the doc was developed\n- Use appendices to provide depth without bloating the main doc\n- Update the doc as feedback is received from real readers\n\n## Tips for Effective Guidance\n\n**Tone:**\n- Be direct and procedural\n- Explain rationale briefly when it affects user behavior\n- Don't try to \"sell\" the approach - just execute it\n\n**Handling Deviations:**\n- If user wants to skip a stage: Ask if they want to skip this and write freeform\n- If user seems frustrated: Acknowledge this is taking longer than expected. Suggest ways to move faster\n- Always give user agency to adjust the process\n\n**Context Management:**\n- Throughout, if context is missing on something mentioned, proactively ask\n- Don't let gaps accumulate - address them as they come up\n\n**Artifact Management:**\n- Use `create_file` for drafting full sections\n- Use `str_replace` for all edits\n- Provide artifact link after every change\n- Never use artifacts for brainstorming lists - that's just conversation\n\n**Quality over Speed:**\n- Don't rush through stages\n- Each iteration should make meaningful improvements\n- The goal is a document that actually works for readers\n"
  },
  {
    "path": "skills/docx/LICENSE.txt",
    "content": "© 2025 Anthropic, PBC. All rights reserved.\n\nLICENSE: Use of these materials (including all code, prompts, assets, files,\nand other components of this Skill) is governed by your agreement with\nAnthropic regarding use of Anthropic's services. If no separate agreement\nexists, use is governed by Anthropic's Consumer Terms of Service or\nCommercial Terms of Service, as applicable:\nhttps://www.anthropic.com/legal/consumer-terms\nhttps://www.anthropic.com/legal/commercial-terms\nYour applicable agreement is referred to as the \"Agreement.\" \"Services\" are\nas defined in the Agreement.\n\nADDITIONAL RESTRICTIONS: Notwithstanding anything in the Agreement to the\ncontrary, users may not:\n\n- Extract these materials from the Services or retain copies of these\n  materials outside the Services\n- Reproduce or copy these materials, except for temporary copies created\n  automatically during authorized use of the Services\n- Create derivative works based on these materials\n- Distribute, sublicense, or transfer these materials to any third party\n- Make, offer to sell, sell, or import any inventions embodied in these\n  materials\n- Reverse engineer, decompile, or disassemble these materials\n\nThe receipt, viewing, or possession of these materials does not convey or\nimply any license or right beyond those expressly granted above.\n\nAnthropic retains all right, title, and interest in these materials,\nincluding all copyrights, patents, and other intellectual property rights.\n"
  },
  {
    "path": "skills/docx/SKILL.md",
    "content": "---\nname: docx\ndescription: \"Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.\"\nlicense: Proprietary. LICENSE.txt has complete terms\n---\n\n# DOCX creation, editing, and analysis\n\n## Overview\n\nA .docx file is a ZIP archive containing XML files.\n\n## Quick Reference\n\n| Task | Approach |\n|------|----------|\n| Read/analyze content | `pandoc` or unpack for raw XML |\n| Create new document | Use `docx-js` - see Creating New Documents below |\n| Edit existing document | Unpack → edit XML → repack - see Editing Existing Documents below |\n\n### Converting .doc to .docx\n\nLegacy `.doc` files must be converted before editing:\n\n```bash\npython scripts/office/soffice.py --headless --convert-to docx document.doc\n```\n\n### Reading Content\n\n```bash\n# Text extraction with tracked changes\npandoc --track-changes=all document.docx -o output.md\n\n# Raw XML access\npython scripts/office/unpack.py document.docx unpacked/\n```\n\n### Converting to Images\n\n```bash\npython scripts/office/soffice.py --headless --convert-to pdf document.docx\npdftoppm -jpeg -r 150 document.pdf page\n```\n\n### Accepting Tracked Changes\n\nTo produce a clean document with all tracked changes accepted (requires LibreOffice):\n\n```bash\npython scripts/accept_changes.py input.docx output.docx\n```\n\n---\n\n## Creating New Documents\n\nGenerate .docx files with JavaScript, then validate. Install: `npm install -g docx`\n\n### Setup\n```javascript\nconst { Document, Packer, Paragraph, TextRun, Table, TableRow, TableCell, ImageRun,\n        Header, Footer, AlignmentType, PageOrientation, LevelFormat, ExternalHyperlink,\n        InternalHyperlink, Bookmark, FootnoteReferenceRun, PositionalTab,\n        PositionalTabAlignment, PositionalTabRelativeTo, PositionalTabLeader,\n        TabStopType, TabStopPosition, Column, SectionType,\n        TableOfContents, HeadingLevel, BorderStyle, WidthType, ShadingType,\n        VerticalAlign, PageNumber, PageBreak } = require('docx');\n\nconst doc = new Document({ sections: [{ children: [/* content */] }] });\nPacker.toBuffer(doc).then(buffer => fs.writeFileSync(\"doc.docx\", buffer));\n```\n\n### Validation\nAfter creating the file, validate it. If validation fails, unpack, fix the XML, and repack.\n```bash\npython scripts/office/validate.py doc.docx\n```\n\n### Page Size\n\n```javascript\n// CRITICAL: docx-js defaults to A4, not US Letter\n// Always set page size explicitly for consistent results\nsections: [{\n  properties: {\n    page: {\n      size: {\n        width: 12240,   // 8.5 inches in DXA\n        height: 15840   // 11 inches in DXA\n      },\n      margin: { top: 1440, right: 1440, bottom: 1440, left: 1440 } // 1 inch margins\n    }\n  },\n  children: [/* content */]\n}]\n```\n\n**Common page sizes (DXA units, 1440 DXA = 1 inch):**\n\n| Paper | Width | Height | Content Width (1\" margins) |\n|-------|-------|--------|---------------------------|\n| US Letter | 12,240 | 15,840 | 9,360 |\n| A4 (default) | 11,906 | 16,838 | 9,026 |\n\n**Landscape orientation:** docx-js swaps width/height internally, so pass portrait dimensions and let it handle the swap:\n```javascript\nsize: {\n  width: 12240,   // Pass SHORT edge as width\n  height: 15840,  // Pass LONG edge as height\n  orientation: PageOrientation.LANDSCAPE  // docx-js swaps them in the XML\n},\n// Content width = 15840 - left margin - right margin (uses the long edge)\n```\n\n### Styles (Override Built-in Headings)\n\nUse Arial as the default font (universally supported). Keep titles black for readability.\n\n```javascript\nconst doc = new Document({\n  styles: {\n    default: { document: { run: { font: \"Arial\", size: 24 } } }, // 12pt default\n    paragraphStyles: [\n      // IMPORTANT: Use exact IDs to override built-in styles\n      { id: \"Heading1\", name: \"Heading 1\", basedOn: \"Normal\", next: \"Normal\", quickFormat: true,\n        run: { size: 32, bold: true, font: \"Arial\" },\n        paragraph: { spacing: { before: 240, after: 240 }, outlineLevel: 0 } }, // outlineLevel required for TOC\n      { id: \"Heading2\", name: \"Heading 2\", basedOn: \"Normal\", next: \"Normal\", quickFormat: true,\n        run: { size: 28, bold: true, font: \"Arial\" },\n        paragraph: { spacing: { before: 180, after: 180 }, outlineLevel: 1 } },\n    ]\n  },\n  sections: [{\n    children: [\n      new Paragraph({ heading: HeadingLevel.HEADING_1, children: [new TextRun(\"Title\")] }),\n    ]\n  }]\n});\n```\n\n### Lists (NEVER use unicode bullets)\n\n```javascript\n// ❌ WRONG - never manually insert bullet characters\nnew Paragraph({ children: [new TextRun(\"• Item\")] })  // BAD\nnew Paragraph({ children: [new TextRun(\"\\u2022 Item\")] })  // BAD\n\n// ✅ CORRECT - use numbering config with LevelFormat.BULLET\nconst doc = new Document({\n  numbering: {\n    config: [\n      { reference: \"bullets\",\n        levels: [{ level: 0, format: LevelFormat.BULLET, text: \"•\", alignment: AlignmentType.LEFT,\n          style: { paragraph: { indent: { left: 720, hanging: 360 } } } }] },\n      { reference: \"numbers\",\n        levels: [{ level: 0, format: LevelFormat.DECIMAL, text: \"%1.\", alignment: AlignmentType.LEFT,\n          style: { paragraph: { indent: { left: 720, hanging: 360 } } } }] },\n    ]\n  },\n  sections: [{\n    children: [\n      new Paragraph({ numbering: { reference: \"bullets\", level: 0 },\n        children: [new TextRun(\"Bullet item\")] }),\n      new Paragraph({ numbering: { reference: \"numbers\", level: 0 },\n        children: [new TextRun(\"Numbered item\")] }),\n    ]\n  }]\n});\n\n// ⚠️ Each reference creates INDEPENDENT numbering\n// Same reference = continues (1,2,3 then 4,5,6)\n// Different reference = restarts (1,2,3 then 1,2,3)\n```\n\n### Tables\n\n**CRITICAL: Tables need dual widths** - set both `columnWidths` on the table AND `width` on each cell. Without both, tables render incorrectly on some platforms.\n\n```javascript\n// CRITICAL: Always set table width for consistent rendering\n// CRITICAL: Use ShadingType.CLEAR (not SOLID) to prevent black backgrounds\nconst border = { style: BorderStyle.SINGLE, size: 1, color: \"CCCCCC\" };\nconst borders = { top: border, bottom: border, left: border, right: border };\n\nnew Table({\n  width: { size: 9360, type: WidthType.DXA }, // Always use DXA (percentages break in Google Docs)\n  columnWidths: [4680, 4680], // Must sum to table width (DXA: 1440 = 1 inch)\n  rows: [\n    new TableRow({\n      children: [\n        new TableCell({\n          borders,\n          width: { size: 4680, type: WidthType.DXA }, // Also set on each cell\n          shading: { fill: \"D5E8F0\", type: ShadingType.CLEAR }, // CLEAR not SOLID\n          margins: { top: 80, bottom: 80, left: 120, right: 120 }, // Cell padding (internal, not added to width)\n          children: [new Paragraph({ children: [new TextRun(\"Cell\")] })]\n        })\n      ]\n    })\n  ]\n})\n```\n\n**Table width calculation:**\n\nAlways use `WidthType.DXA` — `WidthType.PERCENTAGE` breaks in Google Docs.\n\n```javascript\n// Table width = sum of columnWidths = content width\n// US Letter with 1\" margins: 12240 - 2880 = 9360 DXA\nwidth: { size: 9360, type: WidthType.DXA },\ncolumnWidths: [7000, 2360]  // Must sum to table width\n```\n\n**Width rules:**\n- **Always use `WidthType.DXA`** — never `WidthType.PERCENTAGE` (incompatible with Google Docs)\n- Table width must equal the sum of `columnWidths`\n- Cell `width` must match corresponding `columnWidth`\n- Cell `margins` are internal padding - they reduce content area, not add to cell width\n- For full-width tables: use content width (page width minus left and right margins)\n\n### Images\n\n```javascript\n// CRITICAL: type parameter is REQUIRED\nnew Paragraph({\n  children: [new ImageRun({\n    type: \"png\", // Required: png, jpg, jpeg, gif, bmp, svg\n    data: fs.readFileSync(\"image.png\"),\n    transformation: { width: 200, height: 150 },\n    altText: { title: \"Title\", description: \"Desc\", name: \"Name\" } // All three required\n  })]\n})\n```\n\n### Page Breaks\n\n```javascript\n// CRITICAL: PageBreak must be inside a Paragraph\nnew Paragraph({ children: [new PageBreak()] })\n\n// Or use pageBreakBefore\nnew Paragraph({ pageBreakBefore: true, children: [new TextRun(\"New page\")] })\n```\n\n### Hyperlinks\n\n```javascript\n// External link\nnew Paragraph({\n  children: [new ExternalHyperlink({\n    children: [new TextRun({ text: \"Click here\", style: \"Hyperlink\" })],\n    link: \"https://example.com\",\n  })]\n})\n\n// Internal link (bookmark + reference)\n// 1. Create bookmark at destination\nnew Paragraph({ heading: HeadingLevel.HEADING_1, children: [\n  new Bookmark({ id: \"chapter1\", children: [new TextRun(\"Chapter 1\")] }),\n]})\n// 2. Link to it\nnew Paragraph({ children: [new InternalHyperlink({\n  children: [new TextRun({ text: \"See Chapter 1\", style: \"Hyperlink\" })],\n  anchor: \"chapter1\",\n})]})\n```\n\n### Footnotes\n\n```javascript\nconst doc = new Document({\n  footnotes: {\n    1: { children: [new Paragraph(\"Source: Annual Report 2024\")] },\n    2: { children: [new Paragraph(\"See appendix for methodology\")] },\n  },\n  sections: [{\n    children: [new Paragraph({\n      children: [\n        new TextRun(\"Revenue grew 15%\"),\n        new FootnoteReferenceRun(1),\n        new TextRun(\" using adjusted metrics\"),\n        new FootnoteReferenceRun(2),\n      ],\n    })]\n  }]\n});\n```\n\n### Tab Stops\n\n```javascript\n// Right-align text on same line (e.g., date opposite a title)\nnew Paragraph({\n  children: [\n    new TextRun(\"Company Name\"),\n    new TextRun(\"\\tJanuary 2025\"),\n  ],\n  tabStops: [{ type: TabStopType.RIGHT, position: TabStopPosition.MAX }],\n})\n\n// Dot leader (e.g., TOC-style)\nnew Paragraph({\n  children: [\n    new TextRun(\"Introduction\"),\n    new TextRun({ children: [\n      new PositionalTab({\n        alignment: PositionalTabAlignment.RIGHT,\n        relativeTo: PositionalTabRelativeTo.MARGIN,\n        leader: PositionalTabLeader.DOT,\n      }),\n      \"3\",\n    ]}),\n  ],\n})\n```\n\n### Multi-Column Layouts\n\n```javascript\n// Equal-width columns\nsections: [{\n  properties: {\n    column: {\n      count: 2,          // number of columns\n      space: 720,        // gap between columns in DXA (720 = 0.5 inch)\n      equalWidth: true,\n      separate: true,    // vertical line between columns\n    },\n  },\n  children: [/* content flows naturally across columns */]\n}]\n\n// Custom-width columns (equalWidth must be false)\nsections: [{\n  properties: {\n    column: {\n      equalWidth: false,\n      children: [\n        new Column({ width: 5400, space: 720 }),\n        new Column({ width: 3240 }),\n      ],\n    },\n  },\n  children: [/* content */]\n}]\n```\n\nForce a column break with a new section using `type: SectionType.NEXT_COLUMN`.\n\n### Table of Contents\n\n```javascript\n// CRITICAL: Headings must use HeadingLevel ONLY - no custom styles\nnew TableOfContents(\"Table of Contents\", { hyperlink: true, headingStyleRange: \"1-3\" })\n```\n\n### Headers/Footers\n\n```javascript\nsections: [{\n  properties: {\n    page: { margin: { top: 1440, right: 1440, bottom: 1440, left: 1440 } } // 1440 = 1 inch\n  },\n  headers: {\n    default: new Header({ children: [new Paragraph({ children: [new TextRun(\"Header\")] })] })\n  },\n  footers: {\n    default: new Footer({ children: [new Paragraph({\n      children: [new TextRun(\"Page \"), new TextRun({ children: [PageNumber.CURRENT] })]\n    })] })\n  },\n  children: [/* content */]\n}]\n```\n\n### Critical Rules for docx-js\n\n- **Set page size explicitly** - docx-js defaults to A4; use US Letter (12240 x 15840 DXA) for US documents\n- **Landscape: pass portrait dimensions** - docx-js swaps width/height internally; pass short edge as `width`, long edge as `height`, and set `orientation: PageOrientation.LANDSCAPE`\n- **Never use `\\n`** - use separate Paragraph elements\n- **Never use unicode bullets** - use `LevelFormat.BULLET` with numbering config\n- **PageBreak must be in Paragraph** - standalone creates invalid XML\n- **ImageRun requires `type`** - always specify png/jpg/etc\n- **Always set table `width` with DXA** - never use `WidthType.PERCENTAGE` (breaks in Google Docs)\n- **Tables need dual widths** - `columnWidths` array AND cell `width`, both must match\n- **Table width = sum of columnWidths** - for DXA, ensure they add up exactly\n- **Always add cell margins** - use `margins: { top: 80, bottom: 80, left: 120, right: 120 }` for readable padding\n- **Use `ShadingType.CLEAR`** - never SOLID for table shading\n- **Never use tables as dividers/rules** - cells have minimum height and render as empty boxes (including in headers/footers); use `border: { bottom: { style: BorderStyle.SINGLE, size: 6, color: \"2E75B6\", space: 1 } }` on a Paragraph instead. For two-column footers, use tab stops (see Tab Stops section), not tables\n- **TOC requires HeadingLevel only** - no custom styles on heading paragraphs\n- **Override built-in styles** - use exact IDs: \"Heading1\", \"Heading2\", etc.\n- **Include `outlineLevel`** - required for TOC (0 for H1, 1 for H2, etc.)\n\n---\n\n## Editing Existing Documents\n\n**Follow all 3 steps in order.**\n\n### Step 1: Unpack\n```bash\npython scripts/office/unpack.py document.docx unpacked/\n```\nExtracts XML, pretty-prints, merges adjacent runs, and converts smart quotes to XML entities (`&#x201C;` etc.) so they survive editing. Use `--merge-runs false` to skip run merging.\n\n### Step 2: Edit XML\n\nEdit files in `unpacked/word/`. See XML Reference below for patterns.\n\n**Use \"Claude\" as the author** for tracked changes and comments, unless the user explicitly requests use of a different name.\n\n**Use the Edit tool directly for string replacement. Do not write Python scripts.** Scripts introduce unnecessary complexity. The Edit tool shows exactly what is being replaced.\n\n**CRITICAL: Use smart quotes for new content.** When adding text with apostrophes or quotes, use XML entities to produce smart quotes:\n```xml\n<!-- Use these entities for professional typography -->\n<w:t>Here&#x2019;s a quote: &#x201C;Hello&#x201D;</w:t>\n```\n| Entity | Character |\n|--------|-----------|\n| `&#x2018;` | ‘ (left single) |\n| `&#x2019;` | ’ (right single / apostrophe) |\n| `&#x201C;` | “ (left double) |\n| `&#x201D;` | ” (right double) |\n\n**Adding comments:** Use `comment.py` to handle boilerplate across multiple XML files (text must be pre-escaped XML):\n```bash\npython scripts/comment.py unpacked/ 0 \"Comment text with &amp; and &#x2019;\"\npython scripts/comment.py unpacked/ 1 \"Reply text\" --parent 0  # reply to comment 0\npython scripts/comment.py unpacked/ 0 \"Text\" --author \"Custom Author\"  # custom author name\n```\nThen add markers to document.xml (see Comments in XML Reference).\n\n### Step 3: Pack\n```bash\npython scripts/office/pack.py unpacked/ output.docx --original document.docx\n```\nValidates with auto-repair, condenses XML, and creates DOCX. Use `--validate false` to skip.\n\n**Auto-repair will fix:**\n- `durableId` >= 0x7FFFFFFF (regenerates valid ID)\n- Missing `xml:space=\"preserve\"` on `<w:t>` with whitespace\n\n**Auto-repair won't fix:**\n- Malformed XML, invalid element nesting, missing relationships, schema violations\n\n### Common Pitfalls\n\n- **Replace entire `<w:r>` elements**: When adding tracked changes, replace the whole `<w:r>...</w:r>` block with `<w:del>...<w:ins>...` as siblings. Don't inject tracked change tags inside a run.\n- **Preserve `<w:rPr>` formatting**: Copy the original run's `<w:rPr>` block into your tracked change runs to maintain bold, font size, etc.\n\n---\n\n## XML Reference\n\n### Schema Compliance\n\n- **Element order in `<w:pPr>`**: `<w:pStyle>`, `<w:numPr>`, `<w:spacing>`, `<w:ind>`, `<w:jc>`, `<w:rPr>` last\n- **Whitespace**: Add `xml:space=\"preserve\"` to `<w:t>` with leading/trailing spaces\n- **RSIDs**: Must be 8-digit hex (e.g., `00AB1234`)\n\n### Tracked Changes\n\n**Insertion:**\n```xml\n<w:ins w:id=\"1\" w:author=\"Claude\" w:date=\"2025-01-01T00:00:00Z\">\n  <w:r><w:t>inserted text</w:t></w:r>\n</w:ins>\n```\n\n**Deletion:**\n```xml\n<w:del w:id=\"2\" w:author=\"Claude\" w:date=\"2025-01-01T00:00:00Z\">\n  <w:r><w:delText>deleted text</w:delText></w:r>\n</w:del>\n```\n\n**Inside `<w:del>`**: Use `<w:delText>` instead of `<w:t>`, and `<w:delInstrText>` instead of `<w:instrText>`.\n\n**Minimal edits** - only mark what changes:\n```xml\n<!-- Change \"30 days\" to \"60 days\" -->\n<w:r><w:t>The term is </w:t></w:r>\n<w:del w:id=\"1\" w:author=\"Claude\" w:date=\"...\">\n  <w:r><w:delText>30</w:delText></w:r>\n</w:del>\n<w:ins w:id=\"2\" w:author=\"Claude\" w:date=\"...\">\n  <w:r><w:t>60</w:t></w:r>\n</w:ins>\n<w:r><w:t> days.</w:t></w:r>\n```\n\n**Deleting entire paragraphs/list items** - when removing ALL content from a paragraph, also mark the paragraph mark as deleted so it merges with the next paragraph. Add `<w:del/>` inside `<w:pPr><w:rPr>`:\n```xml\n<w:p>\n  <w:pPr>\n    <w:numPr>...</w:numPr>  <!-- list numbering if present -->\n    <w:rPr>\n      <w:del w:id=\"1\" w:author=\"Claude\" w:date=\"2025-01-01T00:00:00Z\"/>\n    </w:rPr>\n  </w:pPr>\n  <w:del w:id=\"2\" w:author=\"Claude\" w:date=\"2025-01-01T00:00:00Z\">\n    <w:r><w:delText>Entire paragraph content being deleted...</w:delText></w:r>\n  </w:del>\n</w:p>\n```\nWithout the `<w:del/>` in `<w:pPr><w:rPr>`, accepting changes leaves an empty paragraph/list item.\n\n**Rejecting another author's insertion** - nest deletion inside their insertion:\n```xml\n<w:ins w:author=\"Jane\" w:id=\"5\">\n  <w:del w:author=\"Claude\" w:id=\"10\">\n    <w:r><w:delText>their inserted text</w:delText></w:r>\n  </w:del>\n</w:ins>\n```\n\n**Restoring another author's deletion** - add insertion after (don't modify their deletion):\n```xml\n<w:del w:author=\"Jane\" w:id=\"5\">\n  <w:r><w:delText>deleted text</w:delText></w:r>\n</w:del>\n<w:ins w:author=\"Claude\" w:id=\"10\">\n  <w:r><w:t>deleted text</w:t></w:r>\n</w:ins>\n```\n\n### Comments\n\nAfter running `comment.py` (see Step 2), add markers to document.xml. For replies, use `--parent` flag and nest markers inside the parent's.\n\n**CRITICAL: `<w:commentRangeStart>` and `<w:commentRangeEnd>` are siblings of `<w:r>`, never inside `<w:r>`.**\n\n```xml\n<!-- Comment markers are direct children of w:p, never inside w:r -->\n<w:commentRangeStart w:id=\"0\"/>\n<w:del w:id=\"1\" w:author=\"Claude\" w:date=\"2025-01-01T00:00:00Z\">\n  <w:r><w:delText>deleted</w:delText></w:r>\n</w:del>\n<w:r><w:t> more text</w:t></w:r>\n<w:commentRangeEnd w:id=\"0\"/>\n<w:r><w:rPr><w:rStyle w:val=\"CommentReference\"/></w:rPr><w:commentReference w:id=\"0\"/></w:r>\n\n<!-- Comment 0 with reply 1 nested inside -->\n<w:commentRangeStart w:id=\"0\"/>\n  <w:commentRangeStart w:id=\"1\"/>\n  <w:r><w:t>text</w:t></w:r>\n  <w:commentRangeEnd w:id=\"1\"/>\n<w:commentRangeEnd w:id=\"0\"/>\n<w:r><w:rPr><w:rStyle w:val=\"CommentReference\"/></w:rPr><w:commentReference w:id=\"0\"/></w:r>\n<w:r><w:rPr><w:rStyle w:val=\"CommentReference\"/></w:rPr><w:commentReference w:id=\"1\"/></w:r>\n```\n\n### Images\n\n1. Add image file to `word/media/`\n2. Add relationship to `word/_rels/document.xml.rels`:\n```xml\n<Relationship Id=\"rId5\" Type=\".../image\" Target=\"media/image1.png\"/>\n```\n3. Add content type to `[Content_Types].xml`:\n```xml\n<Default Extension=\"png\" ContentType=\"image/png\"/>\n```\n4. Reference in document.xml:\n```xml\n<w:drawing>\n  <wp:inline>\n    <wp:extent cx=\"914400\" cy=\"914400\"/>  <!-- EMUs: 914400 = 1 inch -->\n    <a:graphic>\n      <a:graphicData uri=\".../picture\">\n        <pic:pic>\n          <pic:blipFill><a:blip r:embed=\"rId5\"/></pic:blipFill>\n        </pic:pic>\n      </a:graphicData>\n    </a:graphic>\n  </wp:inline>\n</w:drawing>\n```\n\n---\n\n## Dependencies\n\n- **pandoc**: Text extraction\n- **docx**: `npm install -g docx` (new documents)\n- **LibreOffice**: PDF conversion (auto-configured for sandboxed environments via `scripts/office/soffice.py`)\n- **Poppler**: `pdftoppm` for images\n"
  },
  {
    "path": "skills/docx/scripts/__init__.py",
    "content": "\n"
  },
  {
    "path": "skills/docx/scripts/accept_changes.py",
    "content": "\"\"\"Accept all tracked changes in a DOCX file using LibreOffice.\n\nRequires LibreOffice (soffice) to be installed.\n\"\"\"\n\nimport argparse\nimport logging\nimport shutil\nimport subprocess\nfrom pathlib import Path\n\nfrom office.soffice import get_soffice_env\n\nlogger = logging.getLogger(__name__)\n\nLIBREOFFICE_PROFILE = \"/tmp/libreoffice_docx_profile\"\nMACRO_DIR = f\"{LIBREOFFICE_PROFILE}/user/basic/Standard\"\n\nACCEPT_CHANGES_MACRO = \"\"\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE script:module PUBLIC \"-//OpenOffice.org//DTD OfficeDocument 1.0//EN\" \"module.dtd\">\n<script:module xmlns:script=\"http://openoffice.org/2000/script\" script:name=\"Module1\" script:language=\"StarBasic\">\n    Sub AcceptAllTrackedChanges()\n        Dim document As Object\n        Dim dispatcher As Object\n\n        document = ThisComponent.CurrentController.Frame\n        dispatcher = createUnoService(\"com.sun.star.frame.DispatchHelper\")\n\n        dispatcher.executeDispatch(document, \".uno:AcceptAllTrackedChanges\", \"\", 0, Array())\n        ThisComponent.store()\n        ThisComponent.close(True)\n    End Sub\n</script:module>\"\"\"\n\n\ndef accept_changes(\n    input_file: str,\n    output_file: str,\n) -> tuple[None, str]:\n    input_path = Path(input_file)\n    output_path = Path(output_file)\n\n    if not input_path.exists():\n        return None, f\"Error: Input file not found: {input_file}\"\n\n    if not input_path.suffix.lower() == \".docx\":\n        return None, f\"Error: Input file is not a DOCX file: {input_file}\"\n\n    try:\n        output_path.parent.mkdir(parents=True, exist_ok=True)\n        shutil.copy2(input_path, output_path)\n    except Exception as e:\n        return None, f\"Error: Failed to copy input file to output location: {e}\"\n\n    if not _setup_libreoffice_macro():\n        return None, \"Error: Failed to setup LibreOffice macro\"\n\n    cmd = [\n        \"soffice\",\n        \"--headless\",\n        f\"-env:UserInstallation=file://{LIBREOFFICE_PROFILE}\",\n        \"--norestore\",\n        \"vnd.sun.star.script:Standard.Module1.AcceptAllTrackedChanges?language=Basic&location=application\",\n        str(output_path.absolute()),\n    ]\n\n    try:\n        result = subprocess.run(\n            cmd,\n            capture_output=True,\n            text=True,\n            timeout=30,\n            check=False,\n            env=get_soffice_env(),\n        )\n    except subprocess.TimeoutExpired:\n        return (\n            None,\n            f\"Successfully accepted all tracked changes: {input_file} -> {output_file}\",\n        )\n\n    if result.returncode != 0:\n        return None, f\"Error: LibreOffice failed: {result.stderr}\"\n\n    return (\n        None,\n        f\"Successfully accepted all tracked changes: {input_file} -> {output_file}\",\n    )\n\n\ndef _setup_libreoffice_macro() -> bool:\n    macro_dir = Path(MACRO_DIR)\n    macro_file = macro_dir / \"Module1.xba\"\n\n    if macro_file.exists() and \"AcceptAllTrackedChanges\" in macro_file.read_text():\n        return True\n\n    if not macro_dir.exists():\n        subprocess.run(\n            [\n                \"soffice\",\n                \"--headless\",\n                f\"-env:UserInstallation=file://{LIBREOFFICE_PROFILE}\",\n                \"--terminate_after_init\",\n            ],\n            capture_output=True,\n            timeout=10,\n            check=False,\n            env=get_soffice_env(),\n        )\n        macro_dir.mkdir(parents=True, exist_ok=True)\n\n    try:\n        macro_file.write_text(ACCEPT_CHANGES_MACRO)\n        return True\n    except Exception as e:\n        logger.warning(f\"Failed to setup LibreOffice macro: {e}\")\n        return False\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser(\n        description=\"Accept all tracked changes in a DOCX file\"\n    )\n    parser.add_argument(\"input_file\", help=\"Input DOCX file with tracked changes\")\n    parser.add_argument(\n        \"output_file\", help=\"Output DOCX file (clean, no tracked changes)\"\n    )\n    args = parser.parse_args()\n\n    _, message = accept_changes(args.input_file, args.output_file)\n    print(message)\n\n    if \"Error\" in message:\n        raise SystemExit(1)\n"
  },
  {
    "path": "skills/docx/scripts/comment.py",
    "content": "\"\"\"Add comments to DOCX documents.\n\nUsage:\n    python comment.py unpacked/ 0 \"Comment text\"\n    python comment.py unpacked/ 1 \"Reply text\" --parent 0\n\nText should be pre-escaped XML (e.g., &amp; for &, &#x2019; for smart quotes).\n\nAfter running, add markers to document.xml:\n  <w:commentRangeStart w:id=\"0\"/>\n  ... commented content ...\n  <w:commentRangeEnd w:id=\"0\"/>\n  <w:r><w:rPr><w:rStyle w:val=\"CommentReference\"/></w:rPr><w:commentReference w:id=\"0\"/></w:r>\n\"\"\"\n\nimport argparse\nimport random\nimport shutil\nimport sys\nfrom datetime import datetime, timezone\nfrom pathlib import Path\n\nimport defusedxml.minidom\n\nTEMPLATE_DIR = Path(__file__).parent / \"templates\"\nNS = {\n    \"w\": \"http://schemas.openxmlformats.org/wordprocessingml/2006/main\",\n    \"w14\": \"http://schemas.microsoft.com/office/word/2010/wordml\",\n    \"w15\": \"http://schemas.microsoft.com/office/word/2012/wordml\",\n    \"w16cid\": \"http://schemas.microsoft.com/office/word/2016/wordml/cid\",\n    \"w16cex\": \"http://schemas.microsoft.com/office/word/2018/wordml/cex\",\n}\n\nCOMMENT_XML = \"\"\"\\\n<w:comment w:id=\"{id}\" w:author=\"{author}\" w:date=\"{date}\" w:initials=\"{initials}\">\n  <w:p w14:paraId=\"{para_id}\" w14:textId=\"77777777\">\n    <w:r>\n      <w:rPr><w:rStyle w:val=\"CommentReference\"/></w:rPr>\n      <w:annotationRef/>\n    </w:r>\n    <w:r>\n      <w:rPr>\n        <w:color w:val=\"000000\"/>\n        <w:sz w:val=\"20\"/>\n        <w:szCs w:val=\"20\"/>\n      </w:rPr>\n      <w:t>{text}</w:t>\n    </w:r>\n  </w:p>\n</w:comment>\"\"\"\n\nCOMMENT_MARKER_TEMPLATE = \"\"\"\nAdd to document.xml (markers must be direct children of w:p, never inside w:r):\n  <w:commentRangeStart w:id=\"{cid}\"/>\n  <w:r>...</w:r>\n  <w:commentRangeEnd w:id=\"{cid}\"/>\n  <w:r><w:rPr><w:rStyle w:val=\"CommentReference\"/></w:rPr><w:commentReference w:id=\"{cid}\"/></w:r>\"\"\"\n\nREPLY_MARKER_TEMPLATE = \"\"\"\nNest markers inside parent {pid}'s markers (markers must be direct children of w:p, never inside w:r):\n  <w:commentRangeStart w:id=\"{pid}\"/><w:commentRangeStart w:id=\"{cid}\"/>\n  <w:r>...</w:r>\n  <w:commentRangeEnd w:id=\"{cid}\"/><w:commentRangeEnd w:id=\"{pid}\"/>\n  <w:r><w:rPr><w:rStyle w:val=\"CommentReference\"/></w:rPr><w:commentReference w:id=\"{pid}\"/></w:r>\n  <w:r><w:rPr><w:rStyle w:val=\"CommentReference\"/></w:rPr><w:commentReference w:id=\"{cid}\"/></w:r>\"\"\"\n\n\ndef _generate_hex_id() -> str:\n    return f\"{random.randint(0, 0x7FFFFFFE):08X}\"\n\n\nSMART_QUOTE_ENTITIES = {\n    \"\\u201c\": \"&#x201C;\",  \n    \"\\u201d\": \"&#x201D;\",  \n    \"\\u2018\": \"&#x2018;\",  \n    \"\\u2019\": \"&#x2019;\",  \n}\n\n\ndef _encode_smart_quotes(text: str) -> str:\n    for char, entity in SMART_QUOTE_ENTITIES.items():\n        text = text.replace(char, entity)\n    return text\n\n\ndef _append_xml(xml_path: Path, root_tag: str, content: str) -> None:\n    dom = defusedxml.minidom.parseString(xml_path.read_text(encoding=\"utf-8\"))\n    root = dom.getElementsByTagName(root_tag)[0]\n    ns_attrs = \" \".join(f'xmlns:{k}=\"{v}\"' for k, v in NS.items())\n    wrapper_dom = defusedxml.minidom.parseString(f\"<root {ns_attrs}>{content}</root>\")\n    for child in wrapper_dom.documentElement.childNodes:  \n        if child.nodeType == child.ELEMENT_NODE:\n            root.appendChild(dom.importNode(child, True))\n    output = _encode_smart_quotes(dom.toxml(encoding=\"UTF-8\").decode(\"utf-8\"))\n    xml_path.write_text(output, encoding=\"utf-8\")\n\n\ndef _find_para_id(comments_path: Path, comment_id: int) -> str | None:\n    dom = defusedxml.minidom.parseString(comments_path.read_text(encoding=\"utf-8\"))\n    for c in dom.getElementsByTagName(\"w:comment\"):\n        if c.getAttribute(\"w:id\") == str(comment_id):\n            for p in c.getElementsByTagName(\"w:p\"):\n                if pid := p.getAttribute(\"w14:paraId\"):\n                    return pid\n    return None\n\n\ndef _get_next_rid(rels_path: Path) -> int:\n    dom = defusedxml.minidom.parseString(rels_path.read_text(encoding=\"utf-8\"))\n    max_rid = 0\n    for rel in dom.getElementsByTagName(\"Relationship\"):\n        rid = rel.getAttribute(\"Id\")\n        if rid and rid.startswith(\"rId\"):\n            try:\n                max_rid = max(max_rid, int(rid[3:]))\n            except ValueError:\n                pass\n    return max_rid + 1\n\n\ndef _has_relationship(rels_path: Path, target: str) -> bool:\n    dom = defusedxml.minidom.parseString(rels_path.read_text(encoding=\"utf-8\"))\n    for rel in dom.getElementsByTagName(\"Relationship\"):\n        if rel.getAttribute(\"Target\") == target:\n            return True\n    return False\n\n\ndef _has_content_type(ct_path: Path, part_name: str) -> bool:\n    dom = defusedxml.minidom.parseString(ct_path.read_text(encoding=\"utf-8\"))\n    for override in dom.getElementsByTagName(\"Override\"):\n        if override.getAttribute(\"PartName\") == part_name:\n            return True\n    return False\n\n\ndef _ensure_comment_relationships(unpacked_dir: Path) -> None:\n    rels_path = unpacked_dir / \"word\" / \"_rels\" / \"document.xml.rels\"\n    if not rels_path.exists():\n        return\n\n    if _has_relationship(rels_path, \"comments.xml\"):\n        return  \n\n    dom = defusedxml.minidom.parseString(rels_path.read_text(encoding=\"utf-8\"))\n    root = dom.documentElement\n    next_rid = _get_next_rid(rels_path)\n\n    rels = [\n        (\n            \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments\",\n            \"comments.xml\",\n        ),\n        (\n            \"http://schemas.microsoft.com/office/2011/relationships/commentsExtended\",\n            \"commentsExtended.xml\",\n        ),\n        (\n            \"http://schemas.microsoft.com/office/2016/09/relationships/commentsIds\",\n            \"commentsIds.xml\",\n        ),\n        (\n            \"http://schemas.microsoft.com/office/2018/08/relationships/commentsExtensible\",\n            \"commentsExtensible.xml\",\n        ),\n    ]\n\n    for rel_type, target in rels:\n        rel = dom.createElement(\"Relationship\")\n        rel.setAttribute(\"Id\", f\"rId{next_rid}\")\n        rel.setAttribute(\"Type\", rel_type)\n        rel.setAttribute(\"Target\", target)\n        root.appendChild(rel)  \n        next_rid += 1\n\n    rels_path.write_bytes(dom.toxml(encoding=\"UTF-8\"))\n\n\ndef _ensure_comment_content_types(unpacked_dir: Path) -> None:\n    ct_path = unpacked_dir / \"[Content_Types].xml\"\n    if not ct_path.exists():\n        return\n\n    if _has_content_type(ct_path, \"/word/comments.xml\"):\n        return  \n\n    dom = defusedxml.minidom.parseString(ct_path.read_text(encoding=\"utf-8\"))\n    root = dom.documentElement\n\n    overrides = [\n        (\n            \"/word/comments.xml\",\n            \"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\",\n        ),\n        (\n            \"/word/commentsExtended.xml\",\n            \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml\",\n        ),\n        (\n            \"/word/commentsIds.xml\",\n            \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsIds+xml\",\n        ),\n        (\n            \"/word/commentsExtensible.xml\",\n            \"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtensible+xml\",\n        ),\n    ]\n\n    for part_name, content_type in overrides:\n        override = dom.createElement(\"Override\")\n        override.setAttribute(\"PartName\", part_name)\n        override.setAttribute(\"ContentType\", content_type)\n        root.appendChild(override)  \n\n    ct_path.write_bytes(dom.toxml(encoding=\"UTF-8\"))\n\n\ndef add_comment(\n    unpacked_dir: str,\n    comment_id: int,\n    text: str,\n    author: str = \"Claude\",\n    initials: str = \"C\",\n    parent_id: int | None = None,\n) -> tuple[str, str]:\n    word = Path(unpacked_dir) / \"word\"\n    if not word.exists():\n        return \"\", f\"Error: {word} not found\"\n\n    para_id, durable_id = _generate_hex_id(), _generate_hex_id()\n    ts = datetime.now(timezone.utc).strftime(\"%Y-%m-%dT%H:%M:%SZ\")\n\n    comments = word / \"comments.xml\"\n    first_comment = not comments.exists()\n    if first_comment:\n        shutil.copy(TEMPLATE_DIR / \"comments.xml\", comments)\n        _ensure_comment_relationships(Path(unpacked_dir))\n        _ensure_comment_content_types(Path(unpacked_dir))\n    _append_xml(\n        comments,\n        \"w:comments\",\n        COMMENT_XML.format(\n            id=comment_id,\n            author=author,\n            date=ts,\n            initials=initials,\n            para_id=para_id,\n            text=text,  \n        ),\n    )\n\n    ext = word / \"commentsExtended.xml\"\n    if not ext.exists():\n        shutil.copy(TEMPLATE_DIR / \"commentsExtended.xml\", ext)\n    if parent_id is not None:\n        parent_para = _find_para_id(comments, parent_id)\n        if not parent_para:\n            return \"\", f\"Error: Parent comment {parent_id} not found\"\n        _append_xml(\n            ext,\n            \"w15:commentsEx\",\n            f'<w15:commentEx w15:paraId=\"{para_id}\" w15:paraIdParent=\"{parent_para}\" w15:done=\"0\"/>',\n        )\n    else:\n        _append_xml(\n            ext,\n            \"w15:commentsEx\",\n            f'<w15:commentEx w15:paraId=\"{para_id}\" w15:done=\"0\"/>',\n        )\n\n    ids = word / \"commentsIds.xml\"\n    if not ids.exists():\n        shutil.copy(TEMPLATE_DIR / \"commentsIds.xml\", ids)\n    _append_xml(\n        ids,\n        \"w16cid:commentsIds\",\n        f'<w16cid:commentId w16cid:paraId=\"{para_id}\" w16cid:durableId=\"{durable_id}\"/>',\n    )\n\n    extensible = word / \"commentsExtensible.xml\"\n    if not extensible.exists():\n        shutil.copy(TEMPLATE_DIR / \"commentsExtensible.xml\", extensible)\n    _append_xml(\n        extensible,\n        \"w16cex:commentsExtensible\",\n        f'<w16cex:commentExtensible w16cex:durableId=\"{durable_id}\" w16cex:dateUtc=\"{ts}\"/>',\n    )\n\n    action = \"reply\" if parent_id is not None else \"comment\"\n    return para_id, f\"Added {action} {comment_id} (para_id={para_id})\"\n\n\nif __name__ == \"__main__\":\n    p = argparse.ArgumentParser(description=\"Add comments to DOCX documents\")\n    p.add_argument(\"unpacked_dir\", help=\"Unpacked DOCX directory\")\n    p.add_argument(\"comment_id\", type=int, help=\"Comment ID (must be unique)\")\n    p.add_argument(\"text\", help=\"Comment text\")\n    p.add_argument(\"--author\", default=\"Claude\", help=\"Author name\")\n    p.add_argument(\"--initials\", default=\"C\", help=\"Author initials\")\n    p.add_argument(\"--parent\", type=int, help=\"Parent comment ID (for replies)\")\n    args = p.parse_args()\n\n    para_id, msg = add_comment(\n        args.unpacked_dir,\n        args.comment_id,\n        args.text,\n        args.author,\n        args.initials,\n        args.parent,\n    )\n    print(msg)\n    if \"Error\" in msg:\n        sys.exit(1)\n    cid = args.comment_id\n    if args.parent is not None:\n        print(REPLY_MARKER_TEMPLATE.format(pid=args.parent, cid=cid))\n    else:\n        print(COMMENT_MARKER_TEMPLATE.format(cid=cid))\n"
  },
  {
    "path": "skills/docx/scripts/office/helpers/__init__.py",
    "content": ""
  },
  {
    "path": "skills/docx/scripts/office/helpers/merge_runs.py",
    "content": "\"\"\"Merge adjacent runs with identical formatting in DOCX.\n\nMerges adjacent <w:r> elements that have identical <w:rPr> properties.\nWorks on runs in paragraphs and inside tracked changes (<w:ins>, <w:del>).\n\nAlso:\n- Removes rsid attributes from runs (revision metadata that doesn't affect rendering)\n- Removes proofErr elements (spell/grammar markers that block merging)\n\"\"\"\n\nfrom pathlib import Path\n\nimport defusedxml.minidom\n\n\ndef merge_runs(input_dir: str) -> tuple[int, str]:\n    doc_xml = Path(input_dir) / \"word\" / \"document.xml\"\n\n    if not doc_xml.exists():\n        return 0, f\"Error: {doc_xml} not found\"\n\n    try:\n        dom = defusedxml.minidom.parseString(doc_xml.read_text(encoding=\"utf-8\"))\n        root = dom.documentElement\n\n        _remove_elements(root, \"proofErr\")\n        _strip_run_rsid_attrs(root)\n\n        containers = {run.parentNode for run in _find_elements(root, \"r\")}\n\n        merge_count = 0\n        for container in containers:\n            merge_count += _merge_runs_in(container)\n\n        doc_xml.write_bytes(dom.toxml(encoding=\"UTF-8\"))\n        return merge_count, f\"Merged {merge_count} runs\"\n\n    except Exception as e:\n        return 0, f\"Error: {e}\"\n\n\n\n\ndef _find_elements(root, tag: str) -> list:\n    results = []\n\n    def traverse(node):\n        if node.nodeType == node.ELEMENT_NODE:\n            name = node.localName or node.tagName\n            if name == tag or name.endswith(f\":{tag}\"):\n                results.append(node)\n            for child in node.childNodes:\n                traverse(child)\n\n    traverse(root)\n    return results\n\n\ndef _get_child(parent, tag: str):\n    for child in parent.childNodes:\n        if child.nodeType == child.ELEMENT_NODE:\n            name = child.localName or child.tagName\n            if name == tag or name.endswith(f\":{tag}\"):\n                return child\n    return None\n\n\ndef _get_children(parent, tag: str) -> list:\n    results = []\n    for child in parent.childNodes:\n        if child.nodeType == child.ELEMENT_NODE:\n            name = child.localName or child.tagName\n            if name == tag or name.endswith(f\":{tag}\"):\n                results.append(child)\n    return results\n\n\ndef _is_adjacent(elem1, elem2) -> bool:\n    node = elem1.nextSibling\n    while node:\n        if node == elem2:\n            return True\n        if node.nodeType == node.ELEMENT_NODE:\n            return False\n        if node.nodeType == node.TEXT_NODE and node.data.strip():\n            return False\n        node = node.nextSibling\n    return False\n\n\n\n\ndef _remove_elements(root, tag: str):\n    for elem in _find_elements(root, tag):\n        if elem.parentNode:\n            elem.parentNode.removeChild(elem)\n\n\ndef _strip_run_rsid_attrs(root):\n    for run in _find_elements(root, \"r\"):\n        for attr in list(run.attributes.values()):\n            if \"rsid\" in attr.name.lower():\n                run.removeAttribute(attr.name)\n\n\n\n\ndef _merge_runs_in(container) -> int:\n    merge_count = 0\n    run = _first_child_run(container)\n\n    while run:\n        while True:\n            next_elem = _next_element_sibling(run)\n            if next_elem and _is_run(next_elem) and _can_merge(run, next_elem):\n                _merge_run_content(run, next_elem)\n                container.removeChild(next_elem)\n                merge_count += 1\n            else:\n                break\n\n        _consolidate_text(run)\n        run = _next_sibling_run(run)\n\n    return merge_count\n\n\ndef _first_child_run(container):\n    for child in container.childNodes:\n        if child.nodeType == child.ELEMENT_NODE and _is_run(child):\n            return child\n    return None\n\n\ndef _next_element_sibling(node):\n    sibling = node.nextSibling\n    while sibling:\n        if sibling.nodeType == sibling.ELEMENT_NODE:\n            return sibling\n        sibling = sibling.nextSibling\n    return None\n\n\ndef _next_sibling_run(node):\n    sibling = node.nextSibling\n    while sibling:\n        if sibling.nodeType == sibling.ELEMENT_NODE:\n            if _is_run(sibling):\n                return sibling\n        sibling = sibling.nextSibling\n    return None\n\n\ndef _is_run(node) -> bool:\n    name = node.localName or node.tagName\n    return name == \"r\" or name.endswith(\":r\")\n\n\ndef _can_merge(run1, run2) -> bool:\n    rpr1 = _get_child(run1, \"rPr\")\n    rpr2 = _get_child(run2, \"rPr\")\n\n    if (rpr1 is None) != (rpr2 is None):\n        return False\n    if rpr1 is None:\n        return True\n    return rpr1.toxml() == rpr2.toxml()  \n\n\ndef _merge_run_content(target, source):\n    for child in list(source.childNodes):\n        if child.nodeType == child.ELEMENT_NODE:\n            name = child.localName or child.tagName\n            if name != \"rPr\" and not name.endswith(\":rPr\"):\n                target.appendChild(child)\n\n\ndef _consolidate_text(run):\n    t_elements = _get_children(run, \"t\")\n\n    for i in range(len(t_elements) - 1, 0, -1):\n        curr, prev = t_elements[i], t_elements[i - 1]\n\n        if _is_adjacent(prev, curr):\n            prev_text = prev.firstChild.data if prev.firstChild else \"\"\n            curr_text = curr.firstChild.data if curr.firstChild else \"\"\n            merged = prev_text + curr_text\n\n            if prev.firstChild:\n                prev.firstChild.data = merged\n            else:\n                prev.appendChild(run.ownerDocument.createTextNode(merged))\n\n            if merged.startswith(\" \") or merged.endswith(\" \"):\n                prev.setAttribute(\"xml:space\", \"preserve\")\n            elif prev.hasAttribute(\"xml:space\"):\n                prev.removeAttribute(\"xml:space\")\n\n            run.removeChild(curr)\n"
  },
  {
    "path": "skills/docx/scripts/office/helpers/simplify_redlines.py",
    "content": "\"\"\"Simplify tracked changes by merging adjacent w:ins or w:del elements.\n\nMerges adjacent <w:ins> elements from the same author into a single element.\nSame for <w:del> elements. This makes heavily-redlined documents easier to\nwork with by reducing the number of tracked change wrappers.\n\nRules:\n- Only merges w:ins with w:ins, w:del with w:del (same element type)\n- Only merges if same author (ignores timestamp differences)\n- Only merges if truly adjacent (only whitespace between them)\n\"\"\"\n\nimport xml.etree.ElementTree as ET\nimport zipfile\nfrom pathlib import Path\n\nimport defusedxml.minidom\n\nWORD_NS = \"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n\n\ndef simplify_redlines(input_dir: str) -> tuple[int, str]:\n    doc_xml = Path(input_dir) / \"word\" / \"document.xml\"\n\n    if not doc_xml.exists():\n        return 0, f\"Error: {doc_xml} not found\"\n\n    try:\n        dom = defusedxml.minidom.parseString(doc_xml.read_text(encoding=\"utf-8\"))\n        root = dom.documentElement\n\n        merge_count = 0\n\n        containers = _find_elements(root, \"p\") + _find_elements(root, \"tc\")\n\n        for container in containers:\n            merge_count += _merge_tracked_changes_in(container, \"ins\")\n            merge_count += _merge_tracked_changes_in(container, \"del\")\n\n        doc_xml.write_bytes(dom.toxml(encoding=\"UTF-8\"))\n        return merge_count, f\"Simplified {merge_count} tracked changes\"\n\n    except Exception as e:\n        return 0, f\"Error: {e}\"\n\n\ndef _merge_tracked_changes_in(container, tag: str) -> int:\n    merge_count = 0\n\n    tracked = [\n        child\n        for child in container.childNodes\n        if child.nodeType == child.ELEMENT_NODE and _is_element(child, tag)\n    ]\n\n    if len(tracked) < 2:\n        return 0\n\n    i = 0\n    while i < len(tracked) - 1:\n        curr = tracked[i]\n        next_elem = tracked[i + 1]\n\n        if _can_merge_tracked(curr, next_elem):\n            _merge_tracked_content(curr, next_elem)\n            container.removeChild(next_elem)\n            tracked.pop(i + 1)\n            merge_count += 1\n        else:\n            i += 1\n\n    return merge_count\n\n\ndef _is_element(node, tag: str) -> bool:\n    name = node.localName or node.tagName\n    return name == tag or name.endswith(f\":{tag}\")\n\n\ndef _get_author(elem) -> str:\n    author = elem.getAttribute(\"w:author\")\n    if not author:\n        for attr in elem.attributes.values():\n            if attr.localName == \"author\" or attr.name.endswith(\":author\"):\n                return attr.value\n    return author\n\n\ndef _can_merge_tracked(elem1, elem2) -> bool:\n    if _get_author(elem1) != _get_author(elem2):\n        return False\n\n    node = elem1.nextSibling\n    while node and node != elem2:\n        if node.nodeType == node.ELEMENT_NODE:\n            return False\n        if node.nodeType == node.TEXT_NODE and node.data.strip():\n            return False\n        node = node.nextSibling\n\n    return True\n\n\ndef _merge_tracked_content(target, source):\n    while source.firstChild:\n        child = source.firstChild\n        source.removeChild(child)\n        target.appendChild(child)\n\n\ndef _find_elements(root, tag: str) -> list:\n    results = []\n\n    def traverse(node):\n        if node.nodeType == node.ELEMENT_NODE:\n            name = node.localName or node.tagName\n            if name == tag or name.endswith(f\":{tag}\"):\n                results.append(node)\n            for child in node.childNodes:\n                traverse(child)\n\n    traverse(root)\n    return results\n\n\ndef get_tracked_change_authors(doc_xml_path: Path) -> dict[str, int]:\n    if not doc_xml_path.exists():\n        return {}\n\n    try:\n        tree = ET.parse(doc_xml_path)\n        root = tree.getroot()\n    except ET.ParseError:\n        return {}\n\n    namespaces = {\"w\": WORD_NS}\n    author_attr = f\"{{{WORD_NS}}}author\"\n\n    authors: dict[str, int] = {}\n    for tag in [\"ins\", \"del\"]:\n        for elem in root.findall(f\".//w:{tag}\", namespaces):\n            author = elem.get(author_attr)\n            if author:\n                authors[author] = authors.get(author, 0) + 1\n\n    return authors\n\n\ndef _get_authors_from_docx(docx_path: Path) -> dict[str, int]:\n    try:\n        with zipfile.ZipFile(docx_path, \"r\") as zf:\n            if \"word/document.xml\" not in zf.namelist():\n                return {}\n            with zf.open(\"word/document.xml\") as f:\n                tree = ET.parse(f)\n                root = tree.getroot()\n\n                namespaces = {\"w\": WORD_NS}\n                author_attr = f\"{{{WORD_NS}}}author\"\n\n                authors: dict[str, int] = {}\n                for tag in [\"ins\", \"del\"]:\n                    for elem in root.findall(f\".//w:{tag}\", namespaces):\n                        author = elem.get(author_attr)\n                        if author:\n                            authors[author] = authors.get(author, 0) + 1\n                return authors\n    except (zipfile.BadZipFile, ET.ParseError):\n        return {}\n\n\ndef infer_author(modified_dir: Path, original_docx: Path, default: str = \"Claude\") -> str:\n    modified_xml = modified_dir / \"word\" / \"document.xml\"\n    modified_authors = get_tracked_change_authors(modified_xml)\n\n    if not modified_authors:\n        return default\n\n    original_authors = _get_authors_from_docx(original_docx)\n\n    new_changes: dict[str, int] = {}\n    for author, count in modified_authors.items():\n        original_count = original_authors.get(author, 0)\n        diff = count - original_count\n        if diff > 0:\n            new_changes[author] = diff\n\n    if not new_changes:\n        return default\n\n    if len(new_changes) == 1:\n        return next(iter(new_changes))\n\n    raise ValueError(\n        f\"Multiple authors added new changes: {new_changes}. \"\n        \"Cannot infer which author to validate.\"\n    )\n"
  },
  {
    "path": "skills/docx/scripts/office/pack.py",
    "content": "\"\"\"Pack a directory into a DOCX, PPTX, or XLSX file.\n\nValidates with auto-repair, condenses XML formatting, and creates the Office file.\n\nUsage:\n    python pack.py <input_directory> <output_file> [--original <file>] [--validate true|false]\n\nExamples:\n    python pack.py unpacked/ output.docx --original input.docx\n    python pack.py unpacked/ output.pptx --validate false\n\"\"\"\n\nimport argparse\nimport sys\nimport shutil\nimport tempfile\nimport zipfile\nfrom pathlib import Path\n\nimport defusedxml.minidom\n\nfrom validators import DOCXSchemaValidator, PPTXSchemaValidator, RedliningValidator\n\ndef pack(\n    input_directory: str,\n    output_file: str,\n    original_file: str | None = None,\n    validate: bool = True,\n    infer_author_func=None,\n) -> tuple[None, str]:\n    input_dir = Path(input_directory)\n    output_path = Path(output_file)\n    suffix = output_path.suffix.lower()\n\n    if not input_dir.is_dir():\n        return None, f\"Error: {input_dir} is not a directory\"\n\n    if suffix not in {\".docx\", \".pptx\", \".xlsx\"}:\n        return None, f\"Error: {output_file} must be a .docx, .pptx, or .xlsx file\"\n\n    if validate and original_file:\n        original_path = Path(original_file)\n        if original_path.exists():\n            success, output = _run_validation(\n                input_dir, original_path, suffix, infer_author_func\n            )\n            if output:\n                print(output)\n            if not success:\n                return None, f\"Error: Validation failed for {input_dir}\"\n\n    with tempfile.TemporaryDirectory() as temp_dir:\n        temp_content_dir = Path(temp_dir) / \"content\"\n        shutil.copytree(input_dir, temp_content_dir)\n\n        for pattern in [\"*.xml\", \"*.rels\"]:\n            for xml_file in temp_content_dir.rglob(pattern):\n                _condense_xml(xml_file)\n\n        output_path.parent.mkdir(parents=True, exist_ok=True)\n        with zipfile.ZipFile(output_path, \"w\", zipfile.ZIP_DEFLATED) as zf:\n            for f in temp_content_dir.rglob(\"*\"):\n                if f.is_file():\n                    zf.write(f, f.relative_to(temp_content_dir))\n\n    return None, f\"Successfully packed {input_dir} to {output_file}\"\n\n\ndef _run_validation(\n    unpacked_dir: Path,\n    original_file: Path,\n    suffix: str,\n    infer_author_func=None,\n) -> tuple[bool, str | None]:\n    output_lines = []\n    validators = []\n\n    if suffix == \".docx\":\n        author = \"Claude\"\n        if infer_author_func:\n            try:\n                author = infer_author_func(unpacked_dir, original_file)\n            except ValueError as e:\n                print(f\"Warning: {e} Using default author 'Claude'.\", file=sys.stderr)\n\n        validators = [\n            DOCXSchemaValidator(unpacked_dir, original_file),\n            RedliningValidator(unpacked_dir, original_file, author=author),\n        ]\n    elif suffix == \".pptx\":\n        validators = [PPTXSchemaValidator(unpacked_dir, original_file)]\n\n    if not validators:\n        return True, None\n\n    total_repairs = sum(v.repair() for v in validators)\n    if total_repairs:\n        output_lines.append(f\"Auto-repaired {total_repairs} issue(s)\")\n\n    success = all(v.validate() for v in validators)\n\n    if success:\n        output_lines.append(\"All validations PASSED!\")\n\n    return success, \"\\n\".join(output_lines) if output_lines else None\n\n\ndef _condense_xml(xml_file: Path) -> None:\n    try:\n        with open(xml_file, encoding=\"utf-8\") as f:\n            dom = defusedxml.minidom.parse(f)\n\n        for element in dom.getElementsByTagName(\"*\"):\n            if element.tagName.endswith(\":t\"):\n                continue\n\n            for child in list(element.childNodes):\n                if (\n                    child.nodeType == child.TEXT_NODE\n                    and child.nodeValue\n                    and child.nodeValue.strip() == \"\"\n                ) or child.nodeType == child.COMMENT_NODE:\n                    element.removeChild(child)\n\n        xml_file.write_bytes(dom.toxml(encoding=\"UTF-8\"))\n    except Exception as e:\n        print(f\"ERROR: Failed to parse {xml_file.name}: {e}\", file=sys.stderr)\n        raise\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser(\n        description=\"Pack a directory into a DOCX, PPTX, or XLSX file\"\n    )\n    parser.add_argument(\"input_directory\", help=\"Unpacked Office document directory\")\n    parser.add_argument(\"output_file\", help=\"Output Office file (.docx/.pptx/.xlsx)\")\n    parser.add_argument(\n        \"--original\",\n        help=\"Original file for validation comparison\",\n    )\n    parser.add_argument(\n        \"--validate\",\n        type=lambda x: x.lower() == \"true\",\n        default=True,\n        metavar=\"true|false\",\n        help=\"Run validation with auto-repair (default: true)\",\n    )\n    args = parser.parse_args()\n\n    _, message = pack(\n        args.input_directory,\n        args.output_file,\n        original_file=args.original,\n        validate=args.validate,\n    )\n    print(message)\n\n    if \"Error\" in message:\n        sys.exit(1)\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/chart\"\n  xmlns:cdr=\"http://schemas.openxmlformats.org/drawingml/2006/chartDrawing\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/chart\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"unqualified\" blockDefault=\"#all\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/chartDrawing\"\n    schemaLocation=\"dml-chartDrawing.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:complexType name=\"CT_Boolean\">\n    <xsd:attribute name=\"val\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Double\">\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_UnsignedInt\">\n    <xsd:attribute name=\"val\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RelId\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Extension\">\n    <xsd:sequence>\n      <xsd:any processContents=\"lax\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"xsd:token\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExtensionList\">\n    <xsd:sequence>\n      <xsd:element name=\"ext\" type=\"CT_Extension\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumVal\">\n    <xsd:sequence>\n      <xsd:element name=\"v\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"idx\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"formatCode\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumData\">\n    <xsd:sequence>\n      <xsd:element name=\"formatCode\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ptCount\" type=\"CT_UnsignedInt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pt\" type=\"CT_NumVal\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumRef\">\n    <xsd:sequence>\n      <xsd:element name=\"f\" type=\"xsd:string\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"numCache\" type=\"CT_NumData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumDataSource\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"numRef\" type=\"CT_NumRef\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"numLit\" type=\"CT_NumData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StrVal\">\n    <xsd:sequence>\n      <xsd:element name=\"v\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"idx\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StrData\">\n    <xsd:sequence>\n      <xsd:element name=\"ptCount\" type=\"CT_UnsignedInt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pt\" type=\"CT_StrVal\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StrRef\">\n    <xsd:sequence>\n      <xsd:element name=\"f\" type=\"xsd:string\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"strCache\" type=\"CT_StrData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Tx\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"strRef\" type=\"CT_StrRef\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"rich\" type=\"a:CT_TextBody\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextLanguageID\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Lang\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Lvl\">\n    <xsd:sequence>\n      <xsd:element name=\"pt\" type=\"CT_StrVal\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MultiLvlStrData\">\n    <xsd:sequence>\n      <xsd:element name=\"ptCount\" type=\"CT_UnsignedInt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl\" type=\"CT_Lvl\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MultiLvlStrRef\">\n    <xsd:sequence>\n      <xsd:element name=\"f\" type=\"xsd:string\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"multiLvlStrCache\" type=\"CT_MultiLvlStrData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AxDataSource\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"multiLvlStrRef\" type=\"CT_MultiLvlStrRef\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"numRef\" type=\"CT_NumRef\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"numLit\" type=\"CT_NumData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"strRef\" type=\"CT_StrRef\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"strLit\" type=\"CT_StrData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SerTx\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"strRef\" type=\"CT_StrRef\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"v\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LayoutTarget\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"inner\"/>\n      <xsd:enumeration value=\"outer\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LayoutTarget\">\n    <xsd:attribute name=\"val\" type=\"ST_LayoutTarget\" default=\"outer\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LayoutMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"edge\"/>\n      <xsd:enumeration value=\"factor\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LayoutMode\">\n    <xsd:attribute name=\"val\" type=\"ST_LayoutMode\" default=\"factor\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ManualLayout\">\n    <xsd:sequence>\n      <xsd:element name=\"layoutTarget\" type=\"CT_LayoutTarget\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"xMode\" type=\"CT_LayoutMode\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"yMode\" type=\"CT_LayoutMode\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"wMode\" type=\"CT_LayoutMode\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hMode\" type=\"CT_LayoutMode\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"x\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"y\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"w\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"h\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Layout\">\n    <xsd:sequence>\n      <xsd:element name=\"manualLayout\" type=\"CT_ManualLayout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Title\">\n    <xsd:sequence>\n      <xsd:element name=\"tx\" type=\"CT_Tx\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"layout\" type=\"CT_Layout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"overlay\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RotX\">\n    <xsd:restriction base=\"xsd:byte\">\n      <xsd:minInclusive value=\"-90\"/>\n      <xsd:maxInclusive value=\"90\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_RotX\">\n    <xsd:attribute name=\"val\" type=\"ST_RotX\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HPercent\">\n    <xsd:union memberTypes=\"ST_HPercentWithSymbol ST_HPercentUShort\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HPercentWithSymbol\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(([5-9])|([1-9][0-9])|([1-4][0-9][0-9])|500)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HPercentUShort\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"5\"/>\n      <xsd:maxInclusive value=\"500\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_HPercent\">\n    <xsd:attribute name=\"val\" type=\"ST_HPercent\" default=\"100%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RotY\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"360\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_RotY\">\n    <xsd:attribute name=\"val\" type=\"ST_RotY\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DepthPercent\">\n    <xsd:union memberTypes=\"ST_DepthPercentWithSymbol ST_DepthPercentUShort\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DepthPercentWithSymbol\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(([2-9][0-9])|([1-9][0-9][0-9])|(1[0-9][0-9][0-9])|2000)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DepthPercentUShort\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"20\"/>\n      <xsd:maxInclusive value=\"2000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DepthPercent\">\n    <xsd:attribute name=\"val\" type=\"ST_DepthPercent\" default=\"100%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Perspective\">\n    <xsd:restriction base=\"xsd:unsignedByte\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"240\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Perspective\">\n    <xsd:attribute name=\"val\" type=\"ST_Perspective\" default=\"30\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_View3D\">\n    <xsd:sequence>\n      <xsd:element name=\"rotX\" type=\"CT_RotX\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hPercent\" type=\"CT_HPercent\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rotY\" type=\"CT_RotY\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"depthPercent\" type=\"CT_DepthPercent\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rAngAx\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"perspective\" type=\"CT_Perspective\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Surface\">\n    <xsd:sequence>\n      <xsd:element name=\"thickness\" type=\"CT_Thickness\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pictureOptions\" type=\"CT_PictureOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Thickness\">\n    <xsd:union memberTypes=\"ST_ThicknessPercent xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ThicknessPercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"([0-9]+)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Thickness\">\n    <xsd:attribute name=\"val\" type=\"ST_Thickness\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DTable\">\n    <xsd:sequence>\n      <xsd:element name=\"showHorzBorder\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showVertBorder\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showOutline\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showKeys\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_GapAmount\">\n    <xsd:union memberTypes=\"ST_GapAmountPercent ST_GapAmountUShort\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_GapAmountPercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(([0-9])|([1-9][0-9])|([1-4][0-9][0-9])|500)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_GapAmountUShort\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"500\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_GapAmount\">\n    <xsd:attribute name=\"val\" type=\"ST_GapAmount\" default=\"150%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Overlap\">\n    <xsd:union memberTypes=\"ST_OverlapPercent ST_OverlapByte\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OverlapPercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"(-?0*(([0-9])|([1-9][0-9])|100))%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OverlapByte\">\n    <xsd:restriction base=\"xsd:byte\">\n      <xsd:minInclusive value=\"-100\"/>\n      <xsd:maxInclusive value=\"100\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Overlap\">\n    <xsd:attribute name=\"val\" type=\"ST_Overlap\" default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BubbleScale\">\n    <xsd:union memberTypes=\"ST_BubbleScalePercent ST_BubbleScaleUInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BubbleScalePercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(([0-9])|([1-9][0-9])|([1-2][0-9][0-9])|300)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BubbleScaleUInt\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"300\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BubbleScale\">\n    <xsd:attribute name=\"val\" type=\"ST_BubbleScale\" default=\"100%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SizeRepresents\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"area\"/>\n      <xsd:enumeration value=\"w\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SizeRepresents\">\n    <xsd:attribute name=\"val\" type=\"ST_SizeRepresents\" default=\"area\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FirstSliceAng\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"360\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FirstSliceAng\">\n    <xsd:attribute name=\"val\" type=\"ST_FirstSliceAng\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HoleSize\">\n    <xsd:union memberTypes=\"ST_HoleSizePercent ST_HoleSizeUByte\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HoleSizePercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*([1-9]|([1-8][0-9])|90)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HoleSizeUByte\">\n    <xsd:restriction base=\"xsd:unsignedByte\">\n      <xsd:minInclusive value=\"1\"/>\n      <xsd:maxInclusive value=\"90\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_HoleSize\">\n    <xsd:attribute name=\"val\" type=\"ST_HoleSize\" default=\"10%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SplitType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"cust\"/>\n      <xsd:enumeration value=\"percent\"/>\n      <xsd:enumeration value=\"pos\"/>\n      <xsd:enumeration value=\"val\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SplitType\">\n    <xsd:attribute name=\"val\" type=\"ST_SplitType\" default=\"auto\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustSplit\">\n    <xsd:sequence>\n      <xsd:element name=\"secondPiePt\" type=\"CT_UnsignedInt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SecondPieSize\">\n    <xsd:union memberTypes=\"ST_SecondPieSizePercent ST_SecondPieSizeUShort\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_SecondPieSizePercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(([5-9])|([1-9][0-9])|(1[0-9][0-9])|200)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_SecondPieSizeUShort\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"5\"/>\n      <xsd:maxInclusive value=\"200\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SecondPieSize\">\n    <xsd:attribute name=\"val\" type=\"ST_SecondPieSize\" default=\"75%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumFmt\">\n    <xsd:attribute name=\"formatCode\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"sourceLinked\" type=\"xsd:boolean\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LblAlgn\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LblAlgn\">\n    <xsd:attribute name=\"val\" type=\"ST_LblAlgn\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DLblPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"bestFit\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"inBase\"/>\n      <xsd:enumeration value=\"inEnd\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"outEnd\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"t\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DLblPos\">\n    <xsd:attribute name=\"val\" type=\"ST_DLblPos\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_DLblShared\">\n    <xsd:sequence>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dLblPos\" type=\"CT_DLblPos\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showLegendKey\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showVal\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showCatName\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showSerName\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showPercent\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showBubbleSize\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"separator\" type=\"xsd:string\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:group name=\"Group_DLbl\">\n    <xsd:sequence>\n      <xsd:element name=\"layout\" type=\"CT_Layout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tx\" type=\"CT_Tx\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_DLblShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_DLbl\">\n    <xsd:sequence>\n      <xsd:element name=\"idx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice>\n        <xsd:element name=\"delete\" type=\"CT_Boolean\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:group ref=\"Group_DLbl\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"Group_DLbls\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_DLblShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showLeaderLines\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"leaderLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_DLbls\">\n    <xsd:sequence>\n      <xsd:element name=\"dLbl\" type=\"CT_DLbl\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:choice>\n        <xsd:element name=\"delete\" type=\"CT_Boolean\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:group ref=\"Group_DLbls\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MarkerStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"circle\"/>\n      <xsd:enumeration value=\"dash\"/>\n      <xsd:enumeration value=\"diamond\"/>\n      <xsd:enumeration value=\"dot\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"picture\"/>\n      <xsd:enumeration value=\"plus\"/>\n      <xsd:enumeration value=\"square\"/>\n      <xsd:enumeration value=\"star\"/>\n      <xsd:enumeration value=\"triangle\"/>\n      <xsd:enumeration value=\"x\"/>\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MarkerStyle\">\n    <xsd:attribute name=\"val\" type=\"ST_MarkerStyle\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MarkerSize\">\n    <xsd:restriction base=\"xsd:unsignedByte\">\n      <xsd:minInclusive value=\"2\"/>\n      <xsd:maxInclusive value=\"72\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MarkerSize\">\n    <xsd:attribute name=\"val\" type=\"ST_MarkerSize\" default=\"5\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Marker\">\n    <xsd:sequence>\n      <xsd:element name=\"symbol\" type=\"CT_MarkerStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"size\" type=\"CT_MarkerSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DPt\">\n    <xsd:sequence>\n      <xsd:element name=\"idx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"invertIfNegative\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"marker\" type=\"CT_Marker\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bubble3D\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"explosion\" type=\"CT_UnsignedInt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pictureOptions\" type=\"CT_PictureOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TrendlineType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"exp\"/>\n      <xsd:enumeration value=\"linear\"/>\n      <xsd:enumeration value=\"log\"/>\n      <xsd:enumeration value=\"movingAvg\"/>\n      <xsd:enumeration value=\"poly\"/>\n      <xsd:enumeration value=\"power\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TrendlineType\">\n    <xsd:attribute name=\"val\" type=\"ST_TrendlineType\" default=\"linear\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Order\">\n    <xsd:restriction base=\"xsd:unsignedByte\">\n      <xsd:minInclusive value=\"2\"/>\n      <xsd:maxInclusive value=\"6\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Order\">\n    <xsd:attribute name=\"val\" type=\"ST_Order\" default=\"2\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Period\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"2\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Period\">\n    <xsd:attribute name=\"val\" type=\"ST_Period\" default=\"2\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrendlineLbl\">\n    <xsd:sequence>\n      <xsd:element name=\"layout\" type=\"CT_Layout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tx\" type=\"CT_Tx\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Trendline\">\n    <xsd:sequence>\n      <xsd:element name=\"name\" type=\"xsd:string\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendlineType\" type=\"CT_TrendlineType\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"order\" type=\"CT_Order\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"period\" type=\"CT_Period\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"forward\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"backward\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"intercept\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dispRSqr\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dispEq\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendlineLbl\" type=\"CT_TrendlineLbl\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ErrDir\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"x\"/>\n      <xsd:enumeration value=\"y\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ErrDir\">\n    <xsd:attribute name=\"val\" type=\"ST_ErrDir\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ErrBarType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"both\"/>\n      <xsd:enumeration value=\"minus\"/>\n      <xsd:enumeration value=\"plus\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ErrBarType\">\n    <xsd:attribute name=\"val\" type=\"ST_ErrBarType\" default=\"both\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ErrValType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"cust\"/>\n      <xsd:enumeration value=\"fixedVal\"/>\n      <xsd:enumeration value=\"percentage\"/>\n      <xsd:enumeration value=\"stdDev\"/>\n      <xsd:enumeration value=\"stdErr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ErrValType\">\n    <xsd:attribute name=\"val\" type=\"ST_ErrValType\" default=\"fixedVal\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ErrBars\">\n    <xsd:sequence>\n      <xsd:element name=\"errDir\" type=\"CT_ErrDir\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"errBarType\" type=\"CT_ErrBarType\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"errValType\" type=\"CT_ErrValType\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"noEndCap\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"plus\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minus\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_UpDownBar\">\n    <xsd:sequence>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_UpDownBars\">\n    <xsd:sequence>\n      <xsd:element name=\"gapWidth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"upBars\" type=\"CT_UpDownBar\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"downBars\" type=\"CT_UpDownBar\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_SerShared\">\n    <xsd:sequence>\n      <xsd:element name=\"idx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"order\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tx\" type=\"CT_SerTx\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_LineSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"marker\" type=\"CT_Marker\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendline\" type=\"CT_Trendline\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"errBars\" type=\"CT_ErrBars\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cat\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smooth\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ScatterSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"marker\" type=\"CT_Marker\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendline\" type=\"CT_Trendline\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"errBars\" type=\"CT_ErrBars\" minOccurs=\"0\" maxOccurs=\"2\"/>\n      <xsd:element name=\"xVal\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"yVal\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smooth\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RadarSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"marker\" type=\"CT_Marker\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cat\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BarSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"invertIfNegative\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pictureOptions\" type=\"CT_PictureOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendline\" type=\"CT_Trendline\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"errBars\" type=\"CT_ErrBars\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cat\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shape\" type=\"CT_Shape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AreaSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pictureOptions\" type=\"CT_PictureOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendline\" type=\"CT_Trendline\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"errBars\" type=\"CT_ErrBars\" minOccurs=\"0\" maxOccurs=\"2\"/>\n      <xsd:element name=\"cat\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PieSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"explosion\" type=\"CT_UnsignedInt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cat\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BubbleSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"invertIfNegative\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendline\" type=\"CT_Trendline\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"errBars\" type=\"CT_ErrBars\" minOccurs=\"0\" maxOccurs=\"2\"/>\n      <xsd:element name=\"xVal\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"yVal\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bubbleSize\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bubble3D\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SurfaceSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cat\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Grouping\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"percentStacked\"/>\n      <xsd:enumeration value=\"standard\"/>\n      <xsd:enumeration value=\"stacked\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Grouping\">\n    <xsd:attribute name=\"val\" type=\"ST_Grouping\" default=\"standard\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartLines\">\n    <xsd:sequence>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_LineChartShared\">\n    <xsd:sequence>\n      <xsd:element name=\"grouping\" type=\"CT_Grouping\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_LineSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dropLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_LineChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_LineChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hiLowLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"upDownBars\" type=\"CT_UpDownBars\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"marker\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smooth\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Line3DChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_LineChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gapDepth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"3\" maxOccurs=\"3\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StockChart\">\n    <xsd:sequence>\n      <xsd:element name=\"ser\" type=\"CT_LineSer\" minOccurs=\"3\" maxOccurs=\"4\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dropLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hiLowLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"upDownBars\" type=\"CT_UpDownBars\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ScatterStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"line\"/>\n      <xsd:enumeration value=\"lineMarker\"/>\n      <xsd:enumeration value=\"marker\"/>\n      <xsd:enumeration value=\"smooth\"/>\n      <xsd:enumeration value=\"smoothMarker\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ScatterStyle\">\n    <xsd:attribute name=\"val\" type=\"ST_ScatterStyle\" default=\"marker\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ScatterChart\">\n    <xsd:sequence>\n      <xsd:element name=\"scatterStyle\" type=\"CT_ScatterStyle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_ScatterSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RadarStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"standard\"/>\n      <xsd:enumeration value=\"marker\"/>\n      <xsd:enumeration value=\"filled\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_RadarStyle\">\n    <xsd:attribute name=\"val\" type=\"ST_RadarStyle\" default=\"standard\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RadarChart\">\n    <xsd:sequence>\n      <xsd:element name=\"radarStyle\" type=\"CT_RadarStyle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_RadarSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BarGrouping\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"percentStacked\"/>\n      <xsd:enumeration value=\"clustered\"/>\n      <xsd:enumeration value=\"standard\"/>\n      <xsd:enumeration value=\"stacked\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BarGrouping\">\n    <xsd:attribute name=\"val\" type=\"ST_BarGrouping\" default=\"clustered\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BarDir\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"bar\"/>\n      <xsd:enumeration value=\"col\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BarDir\">\n    <xsd:attribute name=\"val\" type=\"ST_BarDir\" default=\"col\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Shape\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"cone\"/>\n      <xsd:enumeration value=\"coneToMax\"/>\n      <xsd:enumeration value=\"box\"/>\n      <xsd:enumeration value=\"cylinder\"/>\n      <xsd:enumeration value=\"pyramid\"/>\n      <xsd:enumeration value=\"pyramidToMax\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Shape\">\n    <xsd:attribute name=\"val\" type=\"ST_Shape\" default=\"box\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_BarChartShared\">\n    <xsd:sequence>\n      <xsd:element name=\"barDir\" type=\"CT_BarDir\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grouping\" type=\"CT_BarGrouping\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_BarSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_BarChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_BarChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gapWidth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"overlap\" type=\"CT_Overlap\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"serLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Bar3DChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_BarChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gapWidth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gapDepth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shape\" type=\"CT_Shape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"3\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_AreaChartShared\">\n    <xsd:sequence>\n      <xsd:element name=\"grouping\" type=\"CT_Grouping\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_AreaSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dropLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_AreaChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_AreaChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Area3DChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_AreaChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gapDepth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"3\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_PieChartShared\">\n    <xsd:sequence>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_PieSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_PieChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_PieChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstSliceAng\" type=\"CT_FirstSliceAng\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Pie3DChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_PieChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DoughnutChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_PieChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstSliceAng\" type=\"CT_FirstSliceAng\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"holeSize\" type=\"CT_HoleSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_OfPieType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"pie\"/>\n      <xsd:enumeration value=\"bar\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_OfPieType\">\n    <xsd:attribute name=\"val\" type=\"ST_OfPieType\" default=\"pie\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OfPieChart\">\n    <xsd:sequence>\n      <xsd:element name=\"ofPieType\" type=\"CT_OfPieType\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_PieChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gapWidth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"splitType\" type=\"CT_SplitType\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"splitPos\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custSplit\" type=\"CT_CustSplit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"secondPieSize\" type=\"CT_SecondPieSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"serLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BubbleChart\">\n    <xsd:sequence>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_BubbleSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bubble3D\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bubbleScale\" type=\"CT_BubbleScale\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showNegBubbles\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sizeRepresents\" type=\"CT_SizeRepresents\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BandFmt\">\n    <xsd:sequence>\n      <xsd:element name=\"idx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BandFmts\">\n    <xsd:sequence>\n      <xsd:element name=\"bandFmt\" type=\"CT_BandFmt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_SurfaceChartShared\">\n    <xsd:sequence>\n      <xsd:element name=\"wireframe\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_SurfaceSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"bandFmts\" type=\"CT_BandFmts\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_SurfaceChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SurfaceChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"3\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Surface3DChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SurfaceChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"3\" maxOccurs=\"3\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AxPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"t\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_AxPos\">\n    <xsd:attribute name=\"val\" type=\"ST_AxPos\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Crosses\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"autoZero\"/>\n      <xsd:enumeration value=\"max\"/>\n      <xsd:enumeration value=\"min\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Crosses\">\n    <xsd:attribute name=\"val\" type=\"ST_Crosses\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CrossBetween\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"between\"/>\n      <xsd:enumeration value=\"midCat\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_CrossBetween\">\n    <xsd:attribute name=\"val\" type=\"ST_CrossBetween\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TickMark\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"cross\"/>\n      <xsd:enumeration value=\"in\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"out\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TickMark\">\n    <xsd:attribute name=\"val\" type=\"ST_TickMark\" default=\"cross\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TickLblPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"high\"/>\n      <xsd:enumeration value=\"low\"/>\n      <xsd:enumeration value=\"nextTo\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TickLblPos\">\n    <xsd:attribute name=\"val\" type=\"ST_TickLblPos\" default=\"nextTo\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Skip\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"1\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Skip\">\n    <xsd:attribute name=\"val\" type=\"ST_Skip\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TimeUnit\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"days\"/>\n      <xsd:enumeration value=\"months\"/>\n      <xsd:enumeration value=\"years\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TimeUnit\">\n    <xsd:attribute name=\"val\" type=\"ST_TimeUnit\" default=\"days\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AxisUnit\">\n    <xsd:restriction base=\"xsd:double\">\n      <xsd:minExclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_AxisUnit\">\n    <xsd:attribute name=\"val\" type=\"ST_AxisUnit\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BuiltInUnit\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"hundreds\"/>\n      <xsd:enumeration value=\"thousands\"/>\n      <xsd:enumeration value=\"tenThousands\"/>\n      <xsd:enumeration value=\"hundredThousands\"/>\n      <xsd:enumeration value=\"millions\"/>\n      <xsd:enumeration value=\"tenMillions\"/>\n      <xsd:enumeration value=\"hundredMillions\"/>\n      <xsd:enumeration value=\"billions\"/>\n      <xsd:enumeration value=\"trillions\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BuiltInUnit\">\n    <xsd:attribute name=\"val\" type=\"ST_BuiltInUnit\" default=\"thousands\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PictureFormat\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"stretch\"/>\n      <xsd:enumeration value=\"stack\"/>\n      <xsd:enumeration value=\"stackScale\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PictureFormat\">\n    <xsd:attribute name=\"val\" type=\"ST_PictureFormat\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PictureStackUnit\">\n    <xsd:restriction base=\"xsd:double\">\n      <xsd:minExclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PictureStackUnit\">\n    <xsd:attribute name=\"val\" type=\"ST_PictureStackUnit\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PictureOptions\">\n    <xsd:sequence>\n      <xsd:element name=\"applyToFront\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"applyToSides\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"applyToEnd\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pictureFormat\" type=\"CT_PictureFormat\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pictureStackUnit\" type=\"CT_PictureStackUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DispUnitsLbl\">\n    <xsd:sequence>\n      <xsd:element name=\"layout\" type=\"CT_Layout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tx\" type=\"CT_Tx\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DispUnits\">\n    <xsd:sequence>\n      <xsd:choice>\n        <xsd:element name=\"custUnit\" type=\"CT_Double\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"builtInUnit\" type=\"CT_BuiltInUnit\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"dispUnitsLbl\" type=\"CT_DispUnitsLbl\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Orientation\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"maxMin\"/>\n      <xsd:enumeration value=\"minMax\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Orientation\">\n    <xsd:attribute name=\"val\" type=\"ST_Orientation\" default=\"minMax\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LogBase\">\n    <xsd:restriction base=\"xsd:double\">\n      <xsd:minInclusive value=\"2\"/>\n      <xsd:maxInclusive value=\"1000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LogBase\">\n    <xsd:attribute name=\"val\" type=\"ST_LogBase\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Scaling\">\n    <xsd:sequence>\n      <xsd:element name=\"logBase\" type=\"CT_LogBase\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"orientation\" type=\"CT_Orientation\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"max\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"min\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LblOffset\">\n    <xsd:union memberTypes=\"ST_LblOffsetPercent ST_LblOffsetUShort\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LblOffsetPercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(([0-9])|([1-9][0-9])|([1-9][0-9][0-9])|1000)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LblOffsetUShort\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"1000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LblOffset\">\n    <xsd:attribute name=\"val\" type=\"ST_LblOffset\" default=\"100%\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_AxShared\">\n    <xsd:sequence>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scaling\" type=\"CT_Scaling\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"delete\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axPos\" type=\"CT_AxPos\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"majorGridlines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minorGridlines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"title\" type=\"CT_Title\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"majorTickMark\" type=\"CT_TickMark\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minorTickMark\" type=\"CT_TickMark\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tickLblPos\" type=\"CT_TickLblPos\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"crossAx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n        <xsd:element name=\"crosses\" type=\"CT_Crosses\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"crossesAt\" type=\"CT_Double\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_CatAx\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_AxShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"auto\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lblAlgn\" type=\"CT_LblAlgn\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lblOffset\" type=\"CT_LblOffset\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tickLblSkip\" type=\"CT_Skip\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tickMarkSkip\" type=\"CT_Skip\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"noMultiLvlLbl\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DateAx\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_AxShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"auto\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lblOffset\" type=\"CT_LblOffset\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"baseTimeUnit\" type=\"CT_TimeUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"majorUnit\" type=\"CT_AxisUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"majorTimeUnit\" type=\"CT_TimeUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minorUnit\" type=\"CT_AxisUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minorTimeUnit\" type=\"CT_TimeUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SerAx\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_AxShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tickLblSkip\" type=\"CT_Skip\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tickMarkSkip\" type=\"CT_Skip\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ValAx\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_AxShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"crossBetween\" type=\"CT_CrossBetween\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"majorUnit\" type=\"CT_AxisUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minorUnit\" type=\"CT_AxisUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dispUnits\" type=\"CT_DispUnits\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PlotArea\">\n    <xsd:sequence>\n      <xsd:element name=\"layout\" type=\"CT_Layout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"areaChart\" type=\"CT_AreaChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"area3DChart\" type=\"CT_Area3DChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"lineChart\" type=\"CT_LineChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"line3DChart\" type=\"CT_Line3DChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"stockChart\" type=\"CT_StockChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"radarChart\" type=\"CT_RadarChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"scatterChart\" type=\"CT_ScatterChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"pieChart\" type=\"CT_PieChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"pie3DChart\" type=\"CT_Pie3DChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"doughnutChart\" type=\"CT_DoughnutChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"barChart\" type=\"CT_BarChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"bar3DChart\" type=\"CT_Bar3DChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"ofPieChart\" type=\"CT_OfPieChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"surfaceChart\" type=\"CT_SurfaceChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"surface3DChart\" type=\"CT_Surface3DChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"bubbleChart\" type=\"CT_BubbleChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"valAx\" type=\"CT_ValAx\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"catAx\" type=\"CT_CatAx\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"dateAx\" type=\"CT_DateAx\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"serAx\" type=\"CT_SerAx\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"dTable\" type=\"CT_DTable\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotFmt\">\n    <xsd:sequence>\n      <xsd:element name=\"idx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"marker\" type=\"CT_Marker\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dLbl\" type=\"CT_DLbl\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotFmts\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotFmt\" type=\"CT_PivotFmt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LegendPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"tr\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"t\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LegendPos\">\n    <xsd:attribute name=\"val\" type=\"ST_LegendPos\" default=\"r\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_LegendEntryData\">\n    <xsd:sequence>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_LegendEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"idx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice>\n        <xsd:element name=\"delete\" type=\"CT_Boolean\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:group ref=\"EG_LegendEntryData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Legend\">\n    <xsd:sequence>\n      <xsd:element name=\"legendPos\" type=\"CT_LegendPos\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legendEntry\" type=\"CT_LegendEntry\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"layout\" type=\"CT_Layout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"overlay\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DispBlanksAs\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"span\"/>\n      <xsd:enumeration value=\"gap\"/>\n      <xsd:enumeration value=\"zero\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DispBlanksAs\">\n    <xsd:attribute name=\"val\" type=\"ST_DispBlanksAs\" default=\"zero\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Chart\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_Title\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"autoTitleDeleted\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pivotFmts\" type=\"CT_PivotFmts\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"view3D\" type=\"CT_View3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"floor\" type=\"CT_Surface\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sideWall\" type=\"CT_Surface\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"backWall\" type=\"CT_Surface\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"plotArea\" type=\"CT_PlotArea\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legend\" type=\"CT_Legend\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"plotVisOnly\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dispBlanksAs\" type=\"CT_DispBlanksAs\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showDLblsOverMax\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Style\">\n    <xsd:restriction base=\"xsd:unsignedByte\">\n      <xsd:minInclusive value=\"1\"/>\n      <xsd:maxInclusive value=\"48\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Style\">\n    <xsd:attribute name=\"val\" type=\"ST_Style\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotSource\">\n    <xsd:sequence>\n      <xsd:element name=\"name\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fmtId\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Protection\">\n    <xsd:sequence>\n      <xsd:element name=\"chartObject\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"data\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"formatting\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"selection\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"userInterface\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HeaderFooter\">\n    <xsd:sequence>\n      <xsd:element name=\"oddHeader\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oddFooter\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"evenHeader\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"evenFooter\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstHeader\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstFooter\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"alignWithMargins\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"differentOddEven\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"differentFirst\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageMargins\">\n    <xsd:attribute name=\"l\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"r\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"t\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"header\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"footer\" type=\"xsd:double\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PageSetupOrientation\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"portrait\"/>\n      <xsd:enumeration value=\"landscape\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ExternalData\">\n    <xsd:sequence>\n      <xsd:element name=\"autoUpdate\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageSetup\">\n    <xsd:attribute name=\"paperSize\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"paperHeight\" type=\"s:ST_PositiveUniversalMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"paperWidth\" type=\"s:ST_PositiveUniversalMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"firstPageNumber\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"orientation\" type=\"ST_PageSetupOrientation\" use=\"optional\"\n      default=\"default\"/>\n    <xsd:attribute name=\"blackAndWhite\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"draft\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"useFirstPageNumber\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"horizontalDpi\" type=\"xsd:int\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"verticalDpi\" type=\"xsd:int\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"copies\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PrintSettings\">\n    <xsd:sequence>\n      <xsd:element name=\"headerFooter\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageMargins\" type=\"CT_PageMargins\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageSetup\" type=\"CT_PageSetup\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawingHF\" type=\"CT_RelId\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartSpace\">\n    <xsd:sequence>\n      <xsd:element name=\"date1904\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lang\" type=\"CT_TextLanguageID\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"roundedCorners\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_Style\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrMapOvr\" type=\"a:CT_ColorMapping\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pivotSource\" type=\"CT_PivotSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"protection\" type=\"CT_Protection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"chart\" type=\"CT_Chart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"externalData\" type=\"CT_ExternalData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"printSettings\" type=\"CT_PrintSettings\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"userShapes\" type=\"CT_RelId\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"chartSpace\" type=\"CT_ChartSpace\"/>\n  <xsd:element name=\"userShapes\" type=\"cdr:CT_Drawing\"/>\n  <xsd:element name=\"chart\" type=\"CT_RelId\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/chartDrawing\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/chartDrawing\"\n  elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:complexType name=\"CT_ShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvSpPr\" type=\"a:CT_NonVisualDrawingShapeProps\" minOccurs=\"1\" maxOccurs=\"1\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Shape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvSpPr\" type=\"CT_ShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txBody\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"textlink\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fLocksText\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConnectorNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvCxnSpPr\" type=\"a:CT_NonVisualConnectorProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Connector\">\n    <xsd:sequence>\n      <xsd:element name=\"nvCxnSpPr\" type=\"CT_ConnectorNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PictureNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvPicPr\" type=\"a:CT_NonVisualPictureProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Picture\">\n    <xsd:sequence>\n      <xsd:element name=\"nvPicPr\" type=\"CT_PictureNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blipFill\" type=\"a:CT_BlipFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicFrameNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGraphicFramePr\" type=\"a:CT_NonVisualGraphicFrameProperties\"\n        minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicFrame\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGraphicFramePr\" type=\"CT_GraphicFrameNonVisual\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"a:CT_Transform2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"a:graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGrpSpPr\" type=\"a:CT_NonVisualGroupDrawingShapeProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGrpSpPr\" type=\"CT_GroupShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grpSpPr\" type=\"a:CT_GroupShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"sp\" type=\"CT_Shape\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_GroupShape\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicFrame\"/>\n        <xsd:element name=\"cxnSp\" type=\"CT_Connector\"/>\n        <xsd:element name=\"pic\" type=\"CT_Picture\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ObjectChoices\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"sp\" type=\"CT_Shape\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_GroupShape\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicFrame\"/>\n        <xsd:element name=\"cxnSp\" type=\"CT_Connector\"/>\n        <xsd:element name=\"pic\" type=\"CT_Picture\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_MarkerCoordinate\">\n    <xsd:restriction base=\"xsd:double\">\n      <xsd:minInclusive value=\"0.0\"/>\n      <xsd:maxInclusive value=\"1.0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Marker\">\n    <xsd:sequence>\n      <xsd:element name=\"x\" type=\"ST_MarkerCoordinate\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"y\" type=\"ST_MarkerCoordinate\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RelSizeAnchor\">\n    <xsd:sequence>\n      <xsd:element name=\"from\" type=\"CT_Marker\"/>\n      <xsd:element name=\"to\" type=\"CT_Marker\"/>\n      <xsd:group ref=\"EG_ObjectChoices\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AbsSizeAnchor\">\n    <xsd:sequence>\n      <xsd:element name=\"from\" type=\"CT_Marker\"/>\n      <xsd:element name=\"ext\" type=\"a:CT_PositiveSize2D\"/>\n      <xsd:group ref=\"EG_ObjectChoices\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Anchor\">\n    <xsd:choice>\n      <xsd:element name=\"relSizeAnchor\" type=\"CT_RelSizeAnchor\"/>\n      <xsd:element name=\"absSizeAnchor\" type=\"CT_AbsSizeAnchor\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_Drawing\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_Anchor\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/diagram\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/diagram\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"unqualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:complexType name=\"CT_CTName\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CTDescription\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CTCategory\">\n    <xsd:attribute name=\"type\" type=\"xsd:anyURI\" use=\"required\"/>\n    <xsd:attribute name=\"pri\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CTCategories\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"cat\" type=\"CT_CTCategory\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ClrAppMethod\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"span\"/>\n      <xsd:enumeration value=\"cycle\"/>\n      <xsd:enumeration value=\"repeat\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HueDir\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"cw\"/>\n      <xsd:enumeration value=\"ccw\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Colors\">\n    <xsd:sequence>\n      <xsd:group ref=\"a:EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"meth\" type=\"ST_ClrAppMethod\" use=\"optional\" default=\"span\"/>\n    <xsd:attribute name=\"hueDir\" type=\"ST_HueDir\" use=\"optional\" default=\"cw\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CTStyleLabel\">\n    <xsd:sequence>\n      <xsd:element name=\"fillClrLst\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"linClrLst\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"effectClrLst\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txLinClrLst\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txFillClrLst\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txEffectClrLst\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorTransform\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_CTName\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"desc\" type=\"CT_CTDescription\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"catLst\" type=\"CT_CTCategories\" minOccurs=\"0\"/>\n      <xsd:element name=\"styleLbl\" type=\"CT_CTStyleLabel\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueId\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"minVer\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:element name=\"colorsDef\" type=\"CT_ColorTransform\"/>\n  <xsd:complexType name=\"CT_ColorTransformHeader\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_CTName\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"desc\" type=\"CT_CTDescription\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"catLst\" type=\"CT_CTCategories\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueId\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"minVer\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"resId\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:element name=\"colorsDefHdr\" type=\"CT_ColorTransformHeader\"/>\n  <xsd:complexType name=\"CT_ColorTransformHeaderLst\">\n    <xsd:sequence>\n      <xsd:element name=\"colorsDefHdr\" type=\"CT_ColorTransformHeader\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"colorsDefHdrLst\" type=\"CT_ColorTransformHeaderLst\"/>\n  <xsd:simpleType name=\"ST_PtType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"node\"/>\n      <xsd:enumeration value=\"asst\"/>\n      <xsd:enumeration value=\"doc\"/>\n      <xsd:enumeration value=\"pres\"/>\n      <xsd:enumeration value=\"parTrans\"/>\n      <xsd:enumeration value=\"sibTrans\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Pt\">\n    <xsd:sequence>\n      <xsd:element name=\"prSet\" type=\"CT_ElemPropSet\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"t\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"modelId\" type=\"ST_ModelId\" use=\"required\"/>\n    <xsd:attribute name=\"type\" type=\"ST_PtType\" use=\"optional\" default=\"node\"/>\n    <xsd:attribute name=\"cxnId\" type=\"ST_ModelId\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PtList\">\n    <xsd:sequence>\n      <xsd:element name=\"pt\" type=\"CT_Pt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CxnType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"parOf\"/>\n      <xsd:enumeration value=\"presOf\"/>\n      <xsd:enumeration value=\"presParOf\"/>\n      <xsd:enumeration value=\"unknownRelationship\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Cxn\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"modelId\" type=\"ST_ModelId\" use=\"required\"/>\n    <xsd:attribute name=\"type\" type=\"ST_CxnType\" use=\"optional\" default=\"parOf\"/>\n    <xsd:attribute name=\"srcId\" type=\"ST_ModelId\" use=\"required\"/>\n    <xsd:attribute name=\"destId\" type=\"ST_ModelId\" use=\"required\"/>\n    <xsd:attribute name=\"srcOrd\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"destOrd\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"parTransId\" type=\"ST_ModelId\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"sibTransId\" type=\"ST_ModelId\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"presId\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CxnList\">\n    <xsd:sequence>\n      <xsd:element name=\"cxn\" type=\"CT_Cxn\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataModel\">\n    <xsd:sequence>\n      <xsd:element name=\"ptLst\" type=\"CT_PtList\"/>\n      <xsd:element name=\"cxnLst\" type=\"CT_CxnList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bg\" type=\"a:CT_BackgroundFormatting\" minOccurs=\"0\"/>\n      <xsd:element name=\"whole\" type=\"a:CT_WholeE2oFormatting\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"dataModel\" type=\"CT_DataModel\"/>\n  <xsd:attributeGroup name=\"AG_IteratorAttributes\">\n    <xsd:attribute name=\"axis\" type=\"ST_AxisTypes\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"ptType\" type=\"ST_ElementTypes\" use=\"optional\" default=\"all\"/>\n    <xsd:attribute name=\"hideLastTrans\" type=\"ST_Booleans\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"st\" type=\"ST_Ints\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"cnt\" type=\"ST_UnsignedInts\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"step\" type=\"ST_Ints\" use=\"optional\" default=\"1\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_ConstraintAttributes\">\n    <xsd:attribute name=\"type\" type=\"ST_ConstraintType\" use=\"required\"/>\n    <xsd:attribute name=\"for\" type=\"ST_ConstraintRelationship\" use=\"optional\" default=\"self\"/>\n    <xsd:attribute name=\"forName\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"ptType\" type=\"ST_ElementType\" use=\"optional\" default=\"all\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_ConstraintRefAttributes\">\n    <xsd:attribute name=\"refType\" type=\"ST_ConstraintType\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"refFor\" type=\"ST_ConstraintRelationship\" use=\"optional\" default=\"self\"/>\n    <xsd:attribute name=\"refForName\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"refPtType\" type=\"ST_ElementType\" use=\"optional\" default=\"all\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_Constraint\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_ConstraintAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_ConstraintRefAttributes\"/>\n    <xsd:attribute name=\"op\" type=\"ST_BoolOperator\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"fact\" type=\"xsd:double\" use=\"optional\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Constraints\">\n    <xsd:sequence>\n      <xsd:element name=\"constr\" type=\"CT_Constraint\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumericRule\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_ConstraintAttributes\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"optional\" default=\"NaN\"/>\n    <xsd:attribute name=\"fact\" type=\"xsd:double\" use=\"optional\" default=\"NaN\"/>\n    <xsd:attribute name=\"max\" type=\"xsd:double\" use=\"optional\" default=\"NaN\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rules\">\n    <xsd:sequence>\n      <xsd:element name=\"rule\" type=\"CT_NumericRule\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PresentationOf\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_IteratorAttributes\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LayoutShapeType\" final=\"restriction\">\n    <xsd:union memberTypes=\"a:ST_ShapeType ST_OutputShapeType\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Index1\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"1\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Adj\">\n    <xsd:attribute name=\"idx\" type=\"ST_Index1\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AdjLst\">\n    <xsd:sequence>\n      <xsd:element name=\"adj\" type=\"CT_Adj\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Shape\">\n    <xsd:sequence>\n      <xsd:element name=\"adjLst\" type=\"CT_AdjLst\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rot\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"type\" type=\"ST_LayoutShapeType\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute ref=\"r:blip\" use=\"optional\"/>\n    <xsd:attribute name=\"zOrderOff\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"hideGeom\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"lkTxEntry\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"blipPhldr\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Parameter\">\n    <xsd:attribute name=\"type\" type=\"ST_ParameterId\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"ST_ParameterVal\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Algorithm\">\n    <xsd:sequence>\n      <xsd:element name=\"param\" type=\"CT_Parameter\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_AlgorithmType\" use=\"required\"/>\n    <xsd:attribute name=\"rev\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LayoutNode\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"alg\" type=\"CT_Algorithm\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shape\" type=\"CT_Shape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"presOf\" type=\"CT_PresentationOf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"constrLst\" type=\"CT_Constraints\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ruleLst\" type=\"CT_Rules\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"varLst\" type=\"CT_LayoutVariablePropertySet\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"forEach\" type=\"CT_ForEach\"/>\n      <xsd:element name=\"layoutNode\" type=\"CT_LayoutNode\"/>\n      <xsd:element name=\"choose\" type=\"CT_Choose\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"styleLbl\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"chOrder\" type=\"ST_ChildOrderType\" use=\"optional\" default=\"b\"/>\n    <xsd:attribute name=\"moveWith\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ForEach\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"alg\" type=\"CT_Algorithm\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shape\" type=\"CT_Shape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"presOf\" type=\"CT_PresentationOf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"constrLst\" type=\"CT_Constraints\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ruleLst\" type=\"CT_Rules\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"forEach\" type=\"CT_ForEach\"/>\n      <xsd:element name=\"layoutNode\" type=\"CT_LayoutNode\"/>\n      <xsd:element name=\"choose\" type=\"CT_Choose\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"ref\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attributeGroup ref=\"AG_IteratorAttributes\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_When\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"alg\" type=\"CT_Algorithm\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shape\" type=\"CT_Shape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"presOf\" type=\"CT_PresentationOf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"constrLst\" type=\"CT_Constraints\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ruleLst\" type=\"CT_Rules\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"forEach\" type=\"CT_ForEach\"/>\n      <xsd:element name=\"layoutNode\" type=\"CT_LayoutNode\"/>\n      <xsd:element name=\"choose\" type=\"CT_Choose\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attributeGroup ref=\"AG_IteratorAttributes\"/>\n    <xsd:attribute name=\"func\" type=\"ST_FunctionType\" use=\"required\"/>\n    <xsd:attribute name=\"arg\" type=\"ST_FunctionArgument\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"op\" type=\"ST_FunctionOperator\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"ST_FunctionValue\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Otherwise\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"alg\" type=\"CT_Algorithm\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shape\" type=\"CT_Shape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"presOf\" type=\"CT_PresentationOf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"constrLst\" type=\"CT_Constraints\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ruleLst\" type=\"CT_Rules\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"forEach\" type=\"CT_ForEach\"/>\n      <xsd:element name=\"layoutNode\" type=\"CT_LayoutNode\"/>\n      <xsd:element name=\"choose\" type=\"CT_Choose\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Choose\">\n    <xsd:sequence>\n      <xsd:element name=\"if\" type=\"CT_When\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"else\" type=\"CT_Otherwise\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SampleData\">\n    <xsd:sequence>\n      <xsd:element name=\"dataModel\" type=\"CT_DataModel\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"useDef\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Category\">\n    <xsd:attribute name=\"type\" type=\"xsd:anyURI\" use=\"required\"/>\n    <xsd:attribute name=\"pri\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Categories\">\n    <xsd:sequence>\n      <xsd:element name=\"cat\" type=\"CT_Category\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Name\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Description\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DiagramDefinition\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_Name\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"desc\" type=\"CT_Description\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"catLst\" type=\"CT_Categories\" minOccurs=\"0\"/>\n      <xsd:element name=\"sampData\" type=\"CT_SampleData\" minOccurs=\"0\"/>\n      <xsd:element name=\"styleData\" type=\"CT_SampleData\" minOccurs=\"0\"/>\n      <xsd:element name=\"clrData\" type=\"CT_SampleData\" minOccurs=\"0\"/>\n      <xsd:element name=\"layoutNode\" type=\"CT_LayoutNode\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueId\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"minVer\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"defStyle\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:element name=\"layoutDef\" type=\"CT_DiagramDefinition\"/>\n  <xsd:complexType name=\"CT_DiagramDefinitionHeader\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_Name\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"desc\" type=\"CT_Description\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"catLst\" type=\"CT_Categories\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueId\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"minVer\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"defStyle\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"resId\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:element name=\"layoutDefHdr\" type=\"CT_DiagramDefinitionHeader\"/>\n  <xsd:complexType name=\"CT_DiagramDefinitionHeaderLst\">\n    <xsd:sequence>\n      <xsd:element name=\"layoutDefHdr\" type=\"CT_DiagramDefinitionHeader\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"layoutDefHdrLst\" type=\"CT_DiagramDefinitionHeaderLst\"/>\n  <xsd:complexType name=\"CT_RelIds\">\n    <xsd:attribute ref=\"r:dm\" use=\"required\"/>\n    <xsd:attribute ref=\"r:lo\" use=\"required\"/>\n    <xsd:attribute ref=\"r:qs\" use=\"required\"/>\n    <xsd:attribute ref=\"r:cs\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"relIds\" type=\"CT_RelIds\"/>\n  <xsd:simpleType name=\"ST_ParameterVal\">\n    <xsd:union\n      memberTypes=\"ST_DiagramHorizontalAlignment ST_VerticalAlignment ST_ChildDirection ST_ChildAlignment ST_SecondaryChildAlignment ST_LinearDirection ST_SecondaryLinearDirection ST_StartingElement ST_BendPoint ST_ConnectorRouting ST_ArrowheadStyle ST_ConnectorDimension ST_RotationPath ST_CenterShapeMapping ST_NodeHorizontalAlignment ST_NodeVerticalAlignment ST_FallbackDimension ST_TextDirection ST_PyramidAccentPosition ST_PyramidAccentTextMargin ST_TextBlockDirection ST_TextAnchorHorizontal ST_TextAnchorVertical ST_DiagramTextAlignment ST_AutoTextRotation ST_GrowDirection ST_FlowDirection ST_ContinueDirection ST_Breakpoint ST_Offset ST_HierarchyAlignment xsd:int xsd:double xsd:boolean xsd:string ST_ConnectorPoint\"\n    />\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ModelId\">\n    <xsd:union memberTypes=\"xsd:int s:ST_Guid\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PrSetCustVal\">\n    <xsd:union memberTypes=\"s:ST_Percentage xsd:int\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ElemPropSet\">\n    <xsd:sequence>\n      <xsd:element name=\"presLayoutVars\" type=\"CT_LayoutVariablePropertySet\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"presAssocID\" type=\"ST_ModelId\" use=\"optional\"/>\n    <xsd:attribute name=\"presName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"presStyleLbl\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"presStyleIdx\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"presStyleCnt\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"loTypeId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"loCatId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"qsTypeId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"qsCatId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"csTypeId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"csCatId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"coherent3DOff\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"phldrT\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"phldr\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"custAng\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"custFlipVert\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"custFlipHor\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"custSzX\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"custSzY\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"custScaleX\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custScaleY\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custT\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"custLinFactX\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custLinFactY\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custLinFactNeighborX\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custLinFactNeighborY\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custRadScaleRad\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custRadScaleInc\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Direction\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"norm\"/>\n      <xsd:enumeration value=\"rev\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HierBranchStyle\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"hang\"/>\n      <xsd:enumeration value=\"std\"/>\n      <xsd:enumeration value=\"init\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AnimOneStr\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"one\"/>\n      <xsd:enumeration value=\"branch\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AnimLvlStr\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"lvl\"/>\n      <xsd:enumeration value=\"ctr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_OrgChart\">\n    <xsd:attribute name=\"val\" type=\"xsd:boolean\" default=\"false\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_NodeCount\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"-1\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ChildMax\">\n    <xsd:attribute name=\"val\" type=\"ST_NodeCount\" default=\"-1\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChildPref\">\n    <xsd:attribute name=\"val\" type=\"ST_NodeCount\" default=\"-1\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BulletEnabled\">\n    <xsd:attribute name=\"val\" type=\"xsd:boolean\" default=\"false\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Direction\">\n    <xsd:attribute name=\"val\" type=\"ST_Direction\" default=\"norm\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HierBranchStyle\">\n    <xsd:attribute name=\"val\" type=\"ST_HierBranchStyle\" default=\"std\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AnimOne\">\n    <xsd:attribute name=\"val\" type=\"ST_AnimOneStr\" default=\"one\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AnimLvl\">\n    <xsd:attribute name=\"val\" type=\"ST_AnimLvlStr\" default=\"none\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ResizeHandlesStr\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"exact\"/>\n      <xsd:enumeration value=\"rel\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ResizeHandles\">\n    <xsd:attribute name=\"val\" type=\"ST_ResizeHandlesStr\" default=\"rel\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LayoutVariablePropertySet\">\n    <xsd:sequence>\n      <xsd:element name=\"orgChart\" type=\"CT_OrgChart\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"chMax\" type=\"CT_ChildMax\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"chPref\" type=\"CT_ChildPref\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bulletEnabled\" type=\"CT_BulletEnabled\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dir\" type=\"CT_Direction\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hierBranch\" type=\"CT_HierBranchStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"animOne\" type=\"CT_AnimOne\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"animLvl\" type=\"CT_AnimLvl\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"resizeHandles\" type=\"CT_ResizeHandles\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SDName\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SDDescription\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SDCategory\">\n    <xsd:attribute name=\"type\" type=\"xsd:anyURI\" use=\"required\"/>\n    <xsd:attribute name=\"pri\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SDCategories\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"cat\" type=\"CT_SDCategory\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextProps\">\n    <xsd:sequence>\n      <xsd:group ref=\"a:EG_Text3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StyleLabel\">\n    <xsd:sequence>\n      <xsd:element name=\"scene3d\" type=\"a:CT_Scene3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sp3d\" type=\"a:CT_Shape3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"CT_TextProps\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StyleDefinition\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_SDName\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"desc\" type=\"CT_SDDescription\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"catLst\" type=\"CT_SDCategories\" minOccurs=\"0\"/>\n      <xsd:element name=\"scene3d\" type=\"a:CT_Scene3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"styleLbl\" type=\"CT_StyleLabel\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueId\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"minVer\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:element name=\"styleDef\" type=\"CT_StyleDefinition\"/>\n  <xsd:complexType name=\"CT_StyleDefinitionHeader\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_SDName\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"desc\" type=\"CT_SDDescription\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"catLst\" type=\"CT_SDCategories\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueId\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"minVer\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"resId\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:element name=\"styleDefHdr\" type=\"CT_StyleDefinitionHeader\"/>\n  <xsd:complexType name=\"CT_StyleDefinitionHeaderLst\">\n    <xsd:sequence>\n      <xsd:element name=\"styleDefHdr\" type=\"CT_StyleDefinitionHeader\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"styleDefHdrLst\" type=\"CT_StyleDefinitionHeaderLst\"/>\n  <xsd:simpleType name=\"ST_AlgorithmType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"composite\"/>\n      <xsd:enumeration value=\"conn\"/>\n      <xsd:enumeration value=\"cycle\"/>\n      <xsd:enumeration value=\"hierChild\"/>\n      <xsd:enumeration value=\"hierRoot\"/>\n      <xsd:enumeration value=\"pyra\"/>\n      <xsd:enumeration value=\"lin\"/>\n      <xsd:enumeration value=\"sp\"/>\n      <xsd:enumeration value=\"tx\"/>\n      <xsd:enumeration value=\"snake\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AxisType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"self\"/>\n      <xsd:enumeration value=\"ch\"/>\n      <xsd:enumeration value=\"des\"/>\n      <xsd:enumeration value=\"desOrSelf\"/>\n      <xsd:enumeration value=\"par\"/>\n      <xsd:enumeration value=\"ancst\"/>\n      <xsd:enumeration value=\"ancstOrSelf\"/>\n      <xsd:enumeration value=\"followSib\"/>\n      <xsd:enumeration value=\"precedSib\"/>\n      <xsd:enumeration value=\"follow\"/>\n      <xsd:enumeration value=\"preced\"/>\n      <xsd:enumeration value=\"root\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AxisTypes\">\n    <xsd:list itemType=\"ST_AxisType\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BoolOperator\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"equ\"/>\n      <xsd:enumeration value=\"gte\"/>\n      <xsd:enumeration value=\"lte\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ChildOrderType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"t\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConstraintType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"alignOff\"/>\n      <xsd:enumeration value=\"begMarg\"/>\n      <xsd:enumeration value=\"bendDist\"/>\n      <xsd:enumeration value=\"begPad\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"bMarg\"/>\n      <xsd:enumeration value=\"bOff\"/>\n      <xsd:enumeration value=\"ctrX\"/>\n      <xsd:enumeration value=\"ctrXOff\"/>\n      <xsd:enumeration value=\"ctrY\"/>\n      <xsd:enumeration value=\"ctrYOff\"/>\n      <xsd:enumeration value=\"connDist\"/>\n      <xsd:enumeration value=\"diam\"/>\n      <xsd:enumeration value=\"endMarg\"/>\n      <xsd:enumeration value=\"endPad\"/>\n      <xsd:enumeration value=\"h\"/>\n      <xsd:enumeration value=\"hArH\"/>\n      <xsd:enumeration value=\"hOff\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"lMarg\"/>\n      <xsd:enumeration value=\"lOff\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"rMarg\"/>\n      <xsd:enumeration value=\"rOff\"/>\n      <xsd:enumeration value=\"primFontSz\"/>\n      <xsd:enumeration value=\"pyraAcctRatio\"/>\n      <xsd:enumeration value=\"secFontSz\"/>\n      <xsd:enumeration value=\"sibSp\"/>\n      <xsd:enumeration value=\"secSibSp\"/>\n      <xsd:enumeration value=\"sp\"/>\n      <xsd:enumeration value=\"stemThick\"/>\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"tMarg\"/>\n      <xsd:enumeration value=\"tOff\"/>\n      <xsd:enumeration value=\"userA\"/>\n      <xsd:enumeration value=\"userB\"/>\n      <xsd:enumeration value=\"userC\"/>\n      <xsd:enumeration value=\"userD\"/>\n      <xsd:enumeration value=\"userE\"/>\n      <xsd:enumeration value=\"userF\"/>\n      <xsd:enumeration value=\"userG\"/>\n      <xsd:enumeration value=\"userH\"/>\n      <xsd:enumeration value=\"userI\"/>\n      <xsd:enumeration value=\"userJ\"/>\n      <xsd:enumeration value=\"userK\"/>\n      <xsd:enumeration value=\"userL\"/>\n      <xsd:enumeration value=\"userM\"/>\n      <xsd:enumeration value=\"userN\"/>\n      <xsd:enumeration value=\"userO\"/>\n      <xsd:enumeration value=\"userP\"/>\n      <xsd:enumeration value=\"userQ\"/>\n      <xsd:enumeration value=\"userR\"/>\n      <xsd:enumeration value=\"userS\"/>\n      <xsd:enumeration value=\"userT\"/>\n      <xsd:enumeration value=\"userU\"/>\n      <xsd:enumeration value=\"userV\"/>\n      <xsd:enumeration value=\"userW\"/>\n      <xsd:enumeration value=\"userX\"/>\n      <xsd:enumeration value=\"userY\"/>\n      <xsd:enumeration value=\"userZ\"/>\n      <xsd:enumeration value=\"w\"/>\n      <xsd:enumeration value=\"wArH\"/>\n      <xsd:enumeration value=\"wOff\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConstraintRelationship\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"self\"/>\n      <xsd:enumeration value=\"ch\"/>\n      <xsd:enumeration value=\"des\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ElementType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"all\"/>\n      <xsd:enumeration value=\"doc\"/>\n      <xsd:enumeration value=\"node\"/>\n      <xsd:enumeration value=\"norm\"/>\n      <xsd:enumeration value=\"nonNorm\"/>\n      <xsd:enumeration value=\"asst\"/>\n      <xsd:enumeration value=\"nonAsst\"/>\n      <xsd:enumeration value=\"parTrans\"/>\n      <xsd:enumeration value=\"pres\"/>\n      <xsd:enumeration value=\"sibTrans\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ElementTypes\">\n    <xsd:list itemType=\"ST_ElementType\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ParameterId\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"horzAlign\"/>\n      <xsd:enumeration value=\"vertAlign\"/>\n      <xsd:enumeration value=\"chDir\"/>\n      <xsd:enumeration value=\"chAlign\"/>\n      <xsd:enumeration value=\"secChAlign\"/>\n      <xsd:enumeration value=\"linDir\"/>\n      <xsd:enumeration value=\"secLinDir\"/>\n      <xsd:enumeration value=\"stElem\"/>\n      <xsd:enumeration value=\"bendPt\"/>\n      <xsd:enumeration value=\"connRout\"/>\n      <xsd:enumeration value=\"begSty\"/>\n      <xsd:enumeration value=\"endSty\"/>\n      <xsd:enumeration value=\"dim\"/>\n      <xsd:enumeration value=\"rotPath\"/>\n      <xsd:enumeration value=\"ctrShpMap\"/>\n      <xsd:enumeration value=\"nodeHorzAlign\"/>\n      <xsd:enumeration value=\"nodeVertAlign\"/>\n      <xsd:enumeration value=\"fallback\"/>\n      <xsd:enumeration value=\"txDir\"/>\n      <xsd:enumeration value=\"pyraAcctPos\"/>\n      <xsd:enumeration value=\"pyraAcctTxMar\"/>\n      <xsd:enumeration value=\"txBlDir\"/>\n      <xsd:enumeration value=\"txAnchorHorz\"/>\n      <xsd:enumeration value=\"txAnchorVert\"/>\n      <xsd:enumeration value=\"txAnchorHorzCh\"/>\n      <xsd:enumeration value=\"txAnchorVertCh\"/>\n      <xsd:enumeration value=\"parTxLTRAlign\"/>\n      <xsd:enumeration value=\"parTxRTLAlign\"/>\n      <xsd:enumeration value=\"shpTxLTRAlignCh\"/>\n      <xsd:enumeration value=\"shpTxRTLAlignCh\"/>\n      <xsd:enumeration value=\"autoTxRot\"/>\n      <xsd:enumeration value=\"grDir\"/>\n      <xsd:enumeration value=\"flowDir\"/>\n      <xsd:enumeration value=\"contDir\"/>\n      <xsd:enumeration value=\"bkpt\"/>\n      <xsd:enumeration value=\"off\"/>\n      <xsd:enumeration value=\"hierAlign\"/>\n      <xsd:enumeration value=\"bkPtFixedVal\"/>\n      <xsd:enumeration value=\"stBulletLvl\"/>\n      <xsd:enumeration value=\"stAng\"/>\n      <xsd:enumeration value=\"spanAng\"/>\n      <xsd:enumeration value=\"ar\"/>\n      <xsd:enumeration value=\"lnSpPar\"/>\n      <xsd:enumeration value=\"lnSpAfParP\"/>\n      <xsd:enumeration value=\"lnSpCh\"/>\n      <xsd:enumeration value=\"lnSpAfChP\"/>\n      <xsd:enumeration value=\"rtShortDist\"/>\n      <xsd:enumeration value=\"alignTx\"/>\n      <xsd:enumeration value=\"pyraLvlNode\"/>\n      <xsd:enumeration value=\"pyraAcctBkgdNode\"/>\n      <xsd:enumeration value=\"pyraAcctTxNode\"/>\n      <xsd:enumeration value=\"srcNode\"/>\n      <xsd:enumeration value=\"dstNode\"/>\n      <xsd:enumeration value=\"begPts\"/>\n      <xsd:enumeration value=\"endPts\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Ints\">\n    <xsd:list itemType=\"xsd:int\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UnsignedInts\">\n    <xsd:list itemType=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Booleans\">\n    <xsd:list itemType=\"xsd:boolean\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FunctionType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"cnt\"/>\n      <xsd:enumeration value=\"pos\"/>\n      <xsd:enumeration value=\"revPos\"/>\n      <xsd:enumeration value=\"posEven\"/>\n      <xsd:enumeration value=\"posOdd\"/>\n      <xsd:enumeration value=\"var\"/>\n      <xsd:enumeration value=\"depth\"/>\n      <xsd:enumeration value=\"maxDepth\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FunctionOperator\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"equ\"/>\n      <xsd:enumeration value=\"neq\"/>\n      <xsd:enumeration value=\"gt\"/>\n      <xsd:enumeration value=\"lt\"/>\n      <xsd:enumeration value=\"gte\"/>\n      <xsd:enumeration value=\"lte\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DiagramHorizontalAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VerticalAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"mid\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ChildDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"horz\"/>\n      <xsd:enumeration value=\"vert\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ChildAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_SecondaryChildAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LinearDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"fromL\"/>\n      <xsd:enumeration value=\"fromR\"/>\n      <xsd:enumeration value=\"fromT\"/>\n      <xsd:enumeration value=\"fromB\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_SecondaryLinearDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"fromL\"/>\n      <xsd:enumeration value=\"fromR\"/>\n      <xsd:enumeration value=\"fromT\"/>\n      <xsd:enumeration value=\"fromB\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StartingElement\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"node\"/>\n      <xsd:enumeration value=\"trans\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RotationPath\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"alongPath\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CenterShapeMapping\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"fNode\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BendPoint\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"beg\"/>\n      <xsd:enumeration value=\"def\"/>\n      <xsd:enumeration value=\"end\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConnectorRouting\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"stra\"/>\n      <xsd:enumeration value=\"bend\"/>\n      <xsd:enumeration value=\"curve\"/>\n      <xsd:enumeration value=\"longCurve\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ArrowheadStyle\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"arr\"/>\n      <xsd:enumeration value=\"noArr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConnectorDimension\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"1D\"/>\n      <xsd:enumeration value=\"2D\"/>\n      <xsd:enumeration value=\"cust\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConnectorPoint\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"bCtr\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"midL\"/>\n      <xsd:enumeration value=\"midR\"/>\n      <xsd:enumeration value=\"tCtr\"/>\n      <xsd:enumeration value=\"bL\"/>\n      <xsd:enumeration value=\"bR\"/>\n      <xsd:enumeration value=\"tL\"/>\n      <xsd:enumeration value=\"tR\"/>\n      <xsd:enumeration value=\"radial\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_NodeHorizontalAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"r\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_NodeVerticalAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"mid\"/>\n      <xsd:enumeration value=\"b\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FallbackDimension\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"1D\"/>\n      <xsd:enumeration value=\"2D\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"fromT\"/>\n      <xsd:enumeration value=\"fromB\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PyramidAccentPosition\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"bef\"/>\n      <xsd:enumeration value=\"aft\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PyramidAccentTextMargin\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"step\"/>\n      <xsd:enumeration value=\"stack\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextBlockDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"horz\"/>\n      <xsd:enumeration value=\"vert\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextAnchorHorizontal\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"ctr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextAnchorVertical\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"mid\"/>\n      <xsd:enumeration value=\"b\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DiagramTextAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"r\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AutoTextRotation\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"upr\"/>\n      <xsd:enumeration value=\"grav\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_GrowDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"tL\"/>\n      <xsd:enumeration value=\"tR\"/>\n      <xsd:enumeration value=\"bL\"/>\n      <xsd:enumeration value=\"bR\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FlowDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"row\"/>\n      <xsd:enumeration value=\"col\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ContinueDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"revDir\"/>\n      <xsd:enumeration value=\"sameDir\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Breakpoint\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"endCnv\"/>\n      <xsd:enumeration value=\"bal\"/>\n      <xsd:enumeration value=\"fixed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Offset\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"off\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HierarchyAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"tL\"/>\n      <xsd:enumeration value=\"tR\"/>\n      <xsd:enumeration value=\"tCtrCh\"/>\n      <xsd:enumeration value=\"tCtrDes\"/>\n      <xsd:enumeration value=\"bL\"/>\n      <xsd:enumeration value=\"bR\"/>\n      <xsd:enumeration value=\"bCtrCh\"/>\n      <xsd:enumeration value=\"bCtrDes\"/>\n      <xsd:enumeration value=\"lT\"/>\n      <xsd:enumeration value=\"lB\"/>\n      <xsd:enumeration value=\"lCtrCh\"/>\n      <xsd:enumeration value=\"lCtrDes\"/>\n      <xsd:enumeration value=\"rT\"/>\n      <xsd:enumeration value=\"rB\"/>\n      <xsd:enumeration value=\"rCtrCh\"/>\n      <xsd:enumeration value=\"rCtrDes\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FunctionValue\" final=\"restriction\">\n    <xsd:union\n      memberTypes=\"xsd:int xsd:boolean ST_Direction ST_HierBranchStyle ST_AnimOneStr ST_AnimLvlStr ST_ResizeHandlesStr\"\n    />\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VariableType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"orgChart\"/>\n      <xsd:enumeration value=\"chMax\"/>\n      <xsd:enumeration value=\"chPref\"/>\n      <xsd:enumeration value=\"bulEnabled\"/>\n      <xsd:enumeration value=\"dir\"/>\n      <xsd:enumeration value=\"hierBranch\"/>\n      <xsd:enumeration value=\"animOne\"/>\n      <xsd:enumeration value=\"animLvl\"/>\n      <xsd:enumeration value=\"resizeHandles\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FunctionArgument\" final=\"restriction\">\n    <xsd:union memberTypes=\"ST_VariableType\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OutputShapeType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"conn\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/lockedCanvas\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  elementFormDefault=\"qualified\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/lockedCanvas\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:element name=\"lockedCanvas\" type=\"a:CT_GvmlGroupShape\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/diagram\"\n    schemaLocation=\"dml-diagram.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/chart\"\n    schemaLocation=\"dml-chart.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/picture\"\n    schemaLocation=\"dml-picture.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/lockedCanvas\"\n    schemaLocation=\"dml-lockedCanvas.xsd\"/>\n  <xsd:complexType name=\"CT_AudioFile\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:link\" use=\"required\"/>\n    <xsd:attribute name=\"contentType\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VideoFile\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:link\" use=\"required\"/>\n    <xsd:attribute name=\"contentType\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_QuickTimeFile\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:link\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AudioCDTime\">\n    <xsd:attribute name=\"track\" type=\"xsd:unsignedByte\" use=\"required\"/>\n    <xsd:attribute name=\"time\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AudioCD\">\n    <xsd:sequence>\n      <xsd:element name=\"st\" type=\"CT_AudioCDTime\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"end\" type=\"CT_AudioCDTime\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Media\">\n    <xsd:choice>\n      <xsd:element name=\"audioCd\" type=\"CT_AudioCD\"/>\n      <xsd:element name=\"wavAudioFile\" type=\"CT_EmbeddedWAVAudioFile\"/>\n      <xsd:element name=\"audioFile\" type=\"CT_AudioFile\"/>\n      <xsd:element name=\"videoFile\" type=\"CT_VideoFile\"/>\n      <xsd:element name=\"quickTimeFile\" type=\"CT_QuickTimeFile\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:element name=\"videoFile\" type=\"CT_VideoFile\"/>\n  <xsd:simpleType name=\"ST_StyleMatrixColumnIndex\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FontCollectionIndex\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"major\"/>\n      <xsd:enumeration value=\"minor\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ColorSchemeIndex\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"dk1\"/>\n      <xsd:enumeration value=\"lt1\"/>\n      <xsd:enumeration value=\"dk2\"/>\n      <xsd:enumeration value=\"lt2\"/>\n      <xsd:enumeration value=\"accent1\"/>\n      <xsd:enumeration value=\"accent2\"/>\n      <xsd:enumeration value=\"accent3\"/>\n      <xsd:enumeration value=\"accent4\"/>\n      <xsd:enumeration value=\"accent5\"/>\n      <xsd:enumeration value=\"accent6\"/>\n      <xsd:enumeration value=\"hlink\"/>\n      <xsd:enumeration value=\"folHlink\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ColorScheme\">\n    <xsd:sequence>\n      <xsd:element name=\"dk1\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lt1\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dk2\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lt2\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"accent1\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"accent2\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"accent3\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"accent4\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"accent5\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"accent6\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hlink\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"folHlink\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SupplementalFont\">\n    <xsd:attribute name=\"script\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"typeface\" type=\"ST_TextTypeface\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomColorList\">\n    <xsd:sequence>\n      <xsd:element name=\"custClr\" type=\"CT_CustomColor\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontCollection\">\n    <xsd:sequence>\n      <xsd:element name=\"latin\" type=\"CT_TextFont\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ea\" type=\"CT_TextFont\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cs\" type=\"CT_TextFont\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"font\" type=\"CT_SupplementalFont\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EffectStyleItem\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scene3d\" type=\"CT_Scene3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sp3d\" type=\"CT_Shape3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontScheme\">\n    <xsd:sequence>\n      <xsd:element name=\"majorFont\" type=\"CT_FontCollection\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minorFont\" type=\"CT_FontCollection\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FillStyleList\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"3\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LineStyleList\">\n    <xsd:sequence>\n      <xsd:element name=\"ln\" type=\"CT_LineProperties\" minOccurs=\"3\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EffectStyleList\">\n    <xsd:sequence>\n      <xsd:element name=\"effectStyle\" type=\"CT_EffectStyleItem\" minOccurs=\"3\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BackgroundFillStyleList\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"3\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StyleMatrix\">\n    <xsd:sequence>\n      <xsd:element name=\"fillStyleLst\" type=\"CT_FillStyleList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnStyleLst\" type=\"CT_LineStyleList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"effectStyleLst\" type=\"CT_EffectStyleList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bgFillStyleLst\" type=\"CT_BackgroundFillStyleList\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BaseStyles\">\n    <xsd:sequence>\n      <xsd:element name=\"clrScheme\" type=\"CT_ColorScheme\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fontScheme\" type=\"CT_FontScheme\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fmtScheme\" type=\"CT_StyleMatrix\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OfficeArtExtension\">\n    <xsd:sequence>\n      <xsd:any processContents=\"lax\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"xsd:token\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Coordinate\">\n    <xsd:union memberTypes=\"ST_CoordinateUnqualified s:ST_UniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CoordinateUnqualified\">\n    <xsd:restriction base=\"xsd:long\">\n      <xsd:minInclusive value=\"-27273042329600\"/>\n      <xsd:maxInclusive value=\"27273042316900\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Coordinate32\">\n    <xsd:union memberTypes=\"ST_Coordinate32Unqualified s:ST_UniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Coordinate32Unqualified\">\n    <xsd:restriction base=\"xsd:int\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositiveCoordinate\">\n    <xsd:restriction base=\"xsd:long\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"27273042316900\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositiveCoordinate32\">\n    <xsd:restriction base=\"ST_Coordinate32Unqualified\">\n      <xsd:minInclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Angle\">\n    <xsd:restriction base=\"xsd:int\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Angle\">\n    <xsd:attribute name=\"val\" type=\"ST_Angle\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FixedAngle\">\n    <xsd:restriction base=\"ST_Angle\">\n      <xsd:minExclusive value=\"-5400000\"/>\n      <xsd:maxExclusive value=\"5400000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositiveFixedAngle\">\n    <xsd:restriction base=\"ST_Angle\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxExclusive value=\"21600000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PositiveFixedAngle\">\n    <xsd:attribute name=\"val\" type=\"ST_PositiveFixedAngle\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Percentage\">\n    <xsd:union memberTypes=\"ST_PercentageDecimal s:ST_Percentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PercentageDecimal\">\n    <xsd:restriction base=\"xsd:int\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Percentage\">\n    <xsd:attribute name=\"val\" type=\"ST_Percentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PositivePercentage\">\n    <xsd:union memberTypes=\"ST_PositivePercentageDecimal s:ST_PositivePercentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositivePercentageDecimal\">\n    <xsd:restriction base=\"ST_PercentageDecimal\">\n      <xsd:minInclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PositivePercentage\">\n    <xsd:attribute name=\"val\" type=\"ST_PositivePercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FixedPercentage\">\n    <xsd:union memberTypes=\"ST_FixedPercentageDecimal s:ST_FixedPercentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FixedPercentageDecimal\">\n    <xsd:restriction base=\"ST_PercentageDecimal\">\n      <xsd:minInclusive value=\"-100000\"/>\n      <xsd:maxInclusive value=\"100000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FixedPercentage\">\n    <xsd:attribute name=\"val\" type=\"ST_FixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PositiveFixedPercentage\">\n    <xsd:union memberTypes=\"ST_PositiveFixedPercentageDecimal s:ST_PositiveFixedPercentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositiveFixedPercentageDecimal\">\n    <xsd:restriction base=\"ST_PercentageDecimal\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"100000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PositiveFixedPercentage\">\n    <xsd:attribute name=\"val\" type=\"ST_PositiveFixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Ratio\">\n    <xsd:attribute name=\"n\" type=\"xsd:long\" use=\"required\"/>\n    <xsd:attribute name=\"d\" type=\"xsd:long\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Point2D\">\n    <xsd:attribute name=\"x\" type=\"ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"y\" type=\"ST_Coordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PositiveSize2D\">\n    <xsd:attribute name=\"cx\" type=\"ST_PositiveCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"cy\" type=\"ST_PositiveCoordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ComplementTransform\"/>\n  <xsd:complexType name=\"CT_InverseTransform\"/>\n  <xsd:complexType name=\"CT_GrayscaleTransform\"/>\n  <xsd:complexType name=\"CT_GammaTransform\"/>\n  <xsd:complexType name=\"CT_InverseGammaTransform\"/>\n  <xsd:group name=\"EG_ColorTransform\">\n    <xsd:choice>\n      <xsd:element name=\"tint\" type=\"CT_PositiveFixedPercentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shade\" type=\"CT_PositiveFixedPercentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"comp\" type=\"CT_ComplementTransform\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"inv\" type=\"CT_InverseTransform\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gray\" type=\"CT_GrayscaleTransform\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alpha\" type=\"CT_PositiveFixedPercentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaOff\" type=\"CT_FixedPercentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaMod\" type=\"CT_PositivePercentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hue\" type=\"CT_PositiveFixedAngle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hueOff\" type=\"CT_Angle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hueMod\" type=\"CT_PositivePercentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sat\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"satOff\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"satMod\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lum\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lumOff\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lumMod\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"red\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"redOff\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"redMod\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"green\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"greenOff\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"greenMod\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blue\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blueOff\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blueMod\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gamma\" type=\"CT_GammaTransform\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"invGamma\" type=\"CT_InverseGammaTransform\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_ScRgbColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"r\" type=\"ST_Percentage\" use=\"required\"/>\n    <xsd:attribute name=\"g\" type=\"ST_Percentage\" use=\"required\"/>\n    <xsd:attribute name=\"b\" type=\"ST_Percentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SRgbColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"val\" type=\"s:ST_HexColorRGB\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HslColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"hue\" type=\"ST_PositiveFixedAngle\" use=\"required\"/>\n    <xsd:attribute name=\"sat\" type=\"ST_Percentage\" use=\"required\"/>\n    <xsd:attribute name=\"lum\" type=\"ST_Percentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SystemColorVal\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"scrollBar\"/>\n      <xsd:enumeration value=\"background\"/>\n      <xsd:enumeration value=\"activeCaption\"/>\n      <xsd:enumeration value=\"inactiveCaption\"/>\n      <xsd:enumeration value=\"menu\"/>\n      <xsd:enumeration value=\"window\"/>\n      <xsd:enumeration value=\"windowFrame\"/>\n      <xsd:enumeration value=\"menuText\"/>\n      <xsd:enumeration value=\"windowText\"/>\n      <xsd:enumeration value=\"captionText\"/>\n      <xsd:enumeration value=\"activeBorder\"/>\n      <xsd:enumeration value=\"inactiveBorder\"/>\n      <xsd:enumeration value=\"appWorkspace\"/>\n      <xsd:enumeration value=\"highlight\"/>\n      <xsd:enumeration value=\"highlightText\"/>\n      <xsd:enumeration value=\"btnFace\"/>\n      <xsd:enumeration value=\"btnShadow\"/>\n      <xsd:enumeration value=\"grayText\"/>\n      <xsd:enumeration value=\"btnText\"/>\n      <xsd:enumeration value=\"inactiveCaptionText\"/>\n      <xsd:enumeration value=\"btnHighlight\"/>\n      <xsd:enumeration value=\"3dDkShadow\"/>\n      <xsd:enumeration value=\"3dLight\"/>\n      <xsd:enumeration value=\"infoText\"/>\n      <xsd:enumeration value=\"infoBk\"/>\n      <xsd:enumeration value=\"hotLight\"/>\n      <xsd:enumeration value=\"gradientActiveCaption\"/>\n      <xsd:enumeration value=\"gradientInactiveCaption\"/>\n      <xsd:enumeration value=\"menuHighlight\"/>\n      <xsd:enumeration value=\"menuBar\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SystemColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"val\" type=\"ST_SystemColorVal\" use=\"required\"/>\n    <xsd:attribute name=\"lastClr\" type=\"s:ST_HexColorRGB\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SchemeColorVal\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"bg1\"/>\n      <xsd:enumeration value=\"tx1\"/>\n      <xsd:enumeration value=\"bg2\"/>\n      <xsd:enumeration value=\"tx2\"/>\n      <xsd:enumeration value=\"accent1\"/>\n      <xsd:enumeration value=\"accent2\"/>\n      <xsd:enumeration value=\"accent3\"/>\n      <xsd:enumeration value=\"accent4\"/>\n      <xsd:enumeration value=\"accent5\"/>\n      <xsd:enumeration value=\"accent6\"/>\n      <xsd:enumeration value=\"hlink\"/>\n      <xsd:enumeration value=\"folHlink\"/>\n      <xsd:enumeration value=\"phClr\"/>\n      <xsd:enumeration value=\"dk1\"/>\n      <xsd:enumeration value=\"lt1\"/>\n      <xsd:enumeration value=\"dk2\"/>\n      <xsd:enumeration value=\"lt2\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SchemeColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"val\" type=\"ST_SchemeColorVal\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PresetColorVal\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"aliceBlue\"/>\n      <xsd:enumeration value=\"antiqueWhite\"/>\n      <xsd:enumeration value=\"aqua\"/>\n      <xsd:enumeration value=\"aquamarine\"/>\n      <xsd:enumeration value=\"azure\"/>\n      <xsd:enumeration value=\"beige\"/>\n      <xsd:enumeration value=\"bisque\"/>\n      <xsd:enumeration value=\"black\"/>\n      <xsd:enumeration value=\"blanchedAlmond\"/>\n      <xsd:enumeration value=\"blue\"/>\n      <xsd:enumeration value=\"blueViolet\"/>\n      <xsd:enumeration value=\"brown\"/>\n      <xsd:enumeration value=\"burlyWood\"/>\n      <xsd:enumeration value=\"cadetBlue\"/>\n      <xsd:enumeration value=\"chartreuse\"/>\n      <xsd:enumeration value=\"chocolate\"/>\n      <xsd:enumeration value=\"coral\"/>\n      <xsd:enumeration value=\"cornflowerBlue\"/>\n      <xsd:enumeration value=\"cornsilk\"/>\n      <xsd:enumeration value=\"crimson\"/>\n      <xsd:enumeration value=\"cyan\"/>\n      <xsd:enumeration value=\"darkBlue\"/>\n      <xsd:enumeration value=\"darkCyan\"/>\n      <xsd:enumeration value=\"darkGoldenrod\"/>\n      <xsd:enumeration value=\"darkGray\"/>\n      <xsd:enumeration value=\"darkGrey\"/>\n      <xsd:enumeration value=\"darkGreen\"/>\n      <xsd:enumeration value=\"darkKhaki\"/>\n      <xsd:enumeration value=\"darkMagenta\"/>\n      <xsd:enumeration value=\"darkOliveGreen\"/>\n      <xsd:enumeration value=\"darkOrange\"/>\n      <xsd:enumeration value=\"darkOrchid\"/>\n      <xsd:enumeration value=\"darkRed\"/>\n      <xsd:enumeration value=\"darkSalmon\"/>\n      <xsd:enumeration value=\"darkSeaGreen\"/>\n      <xsd:enumeration value=\"darkSlateBlue\"/>\n      <xsd:enumeration value=\"darkSlateGray\"/>\n      <xsd:enumeration value=\"darkSlateGrey\"/>\n      <xsd:enumeration value=\"darkTurquoise\"/>\n      <xsd:enumeration value=\"darkViolet\"/>\n      <xsd:enumeration value=\"dkBlue\"/>\n      <xsd:enumeration value=\"dkCyan\"/>\n      <xsd:enumeration value=\"dkGoldenrod\"/>\n      <xsd:enumeration value=\"dkGray\"/>\n      <xsd:enumeration value=\"dkGrey\"/>\n      <xsd:enumeration value=\"dkGreen\"/>\n      <xsd:enumeration value=\"dkKhaki\"/>\n      <xsd:enumeration value=\"dkMagenta\"/>\n      <xsd:enumeration value=\"dkOliveGreen\"/>\n      <xsd:enumeration value=\"dkOrange\"/>\n      <xsd:enumeration value=\"dkOrchid\"/>\n      <xsd:enumeration value=\"dkRed\"/>\n      <xsd:enumeration value=\"dkSalmon\"/>\n      <xsd:enumeration value=\"dkSeaGreen\"/>\n      <xsd:enumeration value=\"dkSlateBlue\"/>\n      <xsd:enumeration value=\"dkSlateGray\"/>\n      <xsd:enumeration value=\"dkSlateGrey\"/>\n      <xsd:enumeration value=\"dkTurquoise\"/>\n      <xsd:enumeration value=\"dkViolet\"/>\n      <xsd:enumeration value=\"deepPink\"/>\n      <xsd:enumeration value=\"deepSkyBlue\"/>\n      <xsd:enumeration value=\"dimGray\"/>\n      <xsd:enumeration value=\"dimGrey\"/>\n      <xsd:enumeration value=\"dodgerBlue\"/>\n      <xsd:enumeration value=\"firebrick\"/>\n      <xsd:enumeration value=\"floralWhite\"/>\n      <xsd:enumeration value=\"forestGreen\"/>\n      <xsd:enumeration value=\"fuchsia\"/>\n      <xsd:enumeration value=\"gainsboro\"/>\n      <xsd:enumeration value=\"ghostWhite\"/>\n      <xsd:enumeration value=\"gold\"/>\n      <xsd:enumeration value=\"goldenrod\"/>\n      <xsd:enumeration value=\"gray\"/>\n      <xsd:enumeration value=\"grey\"/>\n      <xsd:enumeration value=\"green\"/>\n      <xsd:enumeration value=\"greenYellow\"/>\n      <xsd:enumeration value=\"honeydew\"/>\n      <xsd:enumeration value=\"hotPink\"/>\n      <xsd:enumeration value=\"indianRed\"/>\n      <xsd:enumeration value=\"indigo\"/>\n      <xsd:enumeration value=\"ivory\"/>\n      <xsd:enumeration value=\"khaki\"/>\n      <xsd:enumeration value=\"lavender\"/>\n      <xsd:enumeration value=\"lavenderBlush\"/>\n      <xsd:enumeration value=\"lawnGreen\"/>\n      <xsd:enumeration value=\"lemonChiffon\"/>\n      <xsd:enumeration value=\"lightBlue\"/>\n      <xsd:enumeration value=\"lightCoral\"/>\n      <xsd:enumeration value=\"lightCyan\"/>\n      <xsd:enumeration value=\"lightGoldenrodYellow\"/>\n      <xsd:enumeration value=\"lightGray\"/>\n      <xsd:enumeration value=\"lightGrey\"/>\n      <xsd:enumeration value=\"lightGreen\"/>\n      <xsd:enumeration value=\"lightPink\"/>\n      <xsd:enumeration value=\"lightSalmon\"/>\n      <xsd:enumeration value=\"lightSeaGreen\"/>\n      <xsd:enumeration value=\"lightSkyBlue\"/>\n      <xsd:enumeration value=\"lightSlateGray\"/>\n      <xsd:enumeration value=\"lightSlateGrey\"/>\n      <xsd:enumeration value=\"lightSteelBlue\"/>\n      <xsd:enumeration value=\"lightYellow\"/>\n      <xsd:enumeration value=\"ltBlue\"/>\n      <xsd:enumeration value=\"ltCoral\"/>\n      <xsd:enumeration value=\"ltCyan\"/>\n      <xsd:enumeration value=\"ltGoldenrodYellow\"/>\n      <xsd:enumeration value=\"ltGray\"/>\n      <xsd:enumeration value=\"ltGrey\"/>\n      <xsd:enumeration value=\"ltGreen\"/>\n      <xsd:enumeration value=\"ltPink\"/>\n      <xsd:enumeration value=\"ltSalmon\"/>\n      <xsd:enumeration value=\"ltSeaGreen\"/>\n      <xsd:enumeration value=\"ltSkyBlue\"/>\n      <xsd:enumeration value=\"ltSlateGray\"/>\n      <xsd:enumeration value=\"ltSlateGrey\"/>\n      <xsd:enumeration value=\"ltSteelBlue\"/>\n      <xsd:enumeration value=\"ltYellow\"/>\n      <xsd:enumeration value=\"lime\"/>\n      <xsd:enumeration value=\"limeGreen\"/>\n      <xsd:enumeration value=\"linen\"/>\n      <xsd:enumeration value=\"magenta\"/>\n      <xsd:enumeration value=\"maroon\"/>\n      <xsd:enumeration value=\"medAquamarine\"/>\n      <xsd:enumeration value=\"medBlue\"/>\n      <xsd:enumeration value=\"medOrchid\"/>\n      <xsd:enumeration value=\"medPurple\"/>\n      <xsd:enumeration value=\"medSeaGreen\"/>\n      <xsd:enumeration value=\"medSlateBlue\"/>\n      <xsd:enumeration value=\"medSpringGreen\"/>\n      <xsd:enumeration value=\"medTurquoise\"/>\n      <xsd:enumeration value=\"medVioletRed\"/>\n      <xsd:enumeration value=\"mediumAquamarine\"/>\n      <xsd:enumeration value=\"mediumBlue\"/>\n      <xsd:enumeration value=\"mediumOrchid\"/>\n      <xsd:enumeration value=\"mediumPurple\"/>\n      <xsd:enumeration value=\"mediumSeaGreen\"/>\n      <xsd:enumeration value=\"mediumSlateBlue\"/>\n      <xsd:enumeration value=\"mediumSpringGreen\"/>\n      <xsd:enumeration value=\"mediumTurquoise\"/>\n      <xsd:enumeration value=\"mediumVioletRed\"/>\n      <xsd:enumeration value=\"midnightBlue\"/>\n      <xsd:enumeration value=\"mintCream\"/>\n      <xsd:enumeration value=\"mistyRose\"/>\n      <xsd:enumeration value=\"moccasin\"/>\n      <xsd:enumeration value=\"navajoWhite\"/>\n      <xsd:enumeration value=\"navy\"/>\n      <xsd:enumeration value=\"oldLace\"/>\n      <xsd:enumeration value=\"olive\"/>\n      <xsd:enumeration value=\"oliveDrab\"/>\n      <xsd:enumeration value=\"orange\"/>\n      <xsd:enumeration value=\"orangeRed\"/>\n      <xsd:enumeration value=\"orchid\"/>\n      <xsd:enumeration value=\"paleGoldenrod\"/>\n      <xsd:enumeration value=\"paleGreen\"/>\n      <xsd:enumeration value=\"paleTurquoise\"/>\n      <xsd:enumeration value=\"paleVioletRed\"/>\n      <xsd:enumeration value=\"papayaWhip\"/>\n      <xsd:enumeration value=\"peachPuff\"/>\n      <xsd:enumeration value=\"peru\"/>\n      <xsd:enumeration value=\"pink\"/>\n      <xsd:enumeration value=\"plum\"/>\n      <xsd:enumeration value=\"powderBlue\"/>\n      <xsd:enumeration value=\"purple\"/>\n      <xsd:enumeration value=\"red\"/>\n      <xsd:enumeration value=\"rosyBrown\"/>\n      <xsd:enumeration value=\"royalBlue\"/>\n      <xsd:enumeration value=\"saddleBrown\"/>\n      <xsd:enumeration value=\"salmon\"/>\n      <xsd:enumeration value=\"sandyBrown\"/>\n      <xsd:enumeration value=\"seaGreen\"/>\n      <xsd:enumeration value=\"seaShell\"/>\n      <xsd:enumeration value=\"sienna\"/>\n      <xsd:enumeration value=\"silver\"/>\n      <xsd:enumeration value=\"skyBlue\"/>\n      <xsd:enumeration value=\"slateBlue\"/>\n      <xsd:enumeration value=\"slateGray\"/>\n      <xsd:enumeration value=\"slateGrey\"/>\n      <xsd:enumeration value=\"snow\"/>\n      <xsd:enumeration value=\"springGreen\"/>\n      <xsd:enumeration value=\"steelBlue\"/>\n      <xsd:enumeration value=\"tan\"/>\n      <xsd:enumeration value=\"teal\"/>\n      <xsd:enumeration value=\"thistle\"/>\n      <xsd:enumeration value=\"tomato\"/>\n      <xsd:enumeration value=\"turquoise\"/>\n      <xsd:enumeration value=\"violet\"/>\n      <xsd:enumeration value=\"wheat\"/>\n      <xsd:enumeration value=\"white\"/>\n      <xsd:enumeration value=\"whiteSmoke\"/>\n      <xsd:enumeration value=\"yellow\"/>\n      <xsd:enumeration value=\"yellowGreen\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PresetColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"val\" type=\"ST_PresetColorVal\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_OfficeArtExtensionList\">\n    <xsd:sequence>\n      <xsd:element name=\"ext\" type=\"CT_OfficeArtExtension\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_OfficeArtExtensionList\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_OfficeArtExtensionList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Scale2D\">\n    <xsd:sequence>\n      <xsd:element name=\"sx\" type=\"CT_Ratio\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sy\" type=\"CT_Ratio\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Transform2D\">\n    <xsd:sequence>\n      <xsd:element name=\"off\" type=\"CT_Point2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ext\" type=\"CT_PositiveSize2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rot\" type=\"ST_Angle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"flipH\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"flipV\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupTransform2D\">\n    <xsd:sequence>\n      <xsd:element name=\"off\" type=\"CT_Point2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ext\" type=\"CT_PositiveSize2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"chOff\" type=\"CT_Point2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"chExt\" type=\"CT_PositiveSize2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rot\" type=\"ST_Angle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"flipH\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"flipV\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Point3D\">\n    <xsd:attribute name=\"x\" type=\"ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"y\" type=\"ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"z\" type=\"ST_Coordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Vector3D\">\n    <xsd:attribute name=\"dx\" type=\"ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"dy\" type=\"ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"dz\" type=\"ST_Coordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SphereCoords\">\n    <xsd:attribute name=\"lat\" type=\"ST_PositiveFixedAngle\" use=\"required\"/>\n    <xsd:attribute name=\"lon\" type=\"ST_PositiveFixedAngle\" use=\"required\"/>\n    <xsd:attribute name=\"rev\" type=\"ST_PositiveFixedAngle\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RelativeRect\">\n    <xsd:attribute name=\"l\" type=\"ST_Percentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"t\" type=\"ST_Percentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"r\" type=\"ST_Percentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"b\" type=\"ST_Percentage\" use=\"optional\" default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RectAlignment\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"tl\"/>\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"tr\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"bl\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"br\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:group name=\"EG_ColorChoice\">\n    <xsd:choice>\n      <xsd:element name=\"scrgbClr\" type=\"CT_ScRgbColor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"srgbClr\" type=\"CT_SRgbColor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hslClr\" type=\"CT_HslColor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sysClr\" type=\"CT_SystemColor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"schemeClr\" type=\"CT_SchemeColor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prstClr\" type=\"CT_PresetColor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_Color\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorMRU\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BlackWhiteMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"clr\"/>\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"gray\"/>\n      <xsd:enumeration value=\"ltGray\"/>\n      <xsd:enumeration value=\"invGray\"/>\n      <xsd:enumeration value=\"grayWhite\"/>\n      <xsd:enumeration value=\"blackGray\"/>\n      <xsd:enumeration value=\"blackWhite\"/>\n      <xsd:enumeration value=\"black\"/>\n      <xsd:enumeration value=\"white\"/>\n      <xsd:enumeration value=\"hidden\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:attributeGroup name=\"AG_Blob\">\n    <xsd:attribute ref=\"r:embed\" use=\"optional\" default=\"\"/>\n    <xsd:attribute ref=\"r:link\" use=\"optional\" default=\"\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_EmbeddedWAVAudioFile\">\n    <xsd:attribute ref=\"r:embed\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Hyperlink\">\n    <xsd:sequence>\n      <xsd:element name=\"snd\" type=\"CT_EmbeddedWAVAudioFile\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"invalidUrl\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"action\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"tgtFrame\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"tooltip\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"history\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"highlightClick\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"endSnd\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DrawingElementId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:attributeGroup name=\"AG_Locking\">\n    <xsd:attribute name=\"noGrp\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noSelect\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noRot\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noChangeAspect\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noMove\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noResize\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noEditPoints\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noAdjustHandles\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noChangeArrowheads\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noChangeShapeType\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_ConnectorLocking\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Locking\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShapeLocking\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Locking\"/>\n    <xsd:attribute name=\"noTextEdit\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PictureLocking\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Locking\"/>\n    <xsd:attribute name=\"noCrop\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupLocking\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"noGrp\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noUngrp\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noSelect\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noRot\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noChangeAspect\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noMove\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noResize\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObjectFrameLocking\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"noGrp\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noDrilldown\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noSelect\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noChangeAspect\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noMove\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noResize\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ContentPartLocking\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Locking\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualDrawingProps\">\n    <xsd:sequence>\n      <xsd:element name=\"hlinkClick\" type=\"CT_Hyperlink\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hlinkHover\" type=\"CT_Hyperlink\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"ST_DrawingElementId\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"descr\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"title\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualDrawingShapeProps\">\n    <xsd:sequence>\n      <xsd:element name=\"spLocks\" type=\"CT_ShapeLocking\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"txBox\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualConnectorProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"cxnSpLocks\" type=\"CT_ConnectorLocking\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"stCxn\" type=\"CT_Connection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"endCxn\" type=\"CT_Connection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualPictureProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"picLocks\" type=\"CT_PictureLocking\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"preferRelativeResize\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualGroupDrawingShapeProps\">\n    <xsd:sequence>\n      <xsd:element name=\"grpSpLocks\" type=\"CT_GroupLocking\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualGraphicFrameProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"graphicFrameLocks\" type=\"CT_GraphicalObjectFrameLocking\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualContentPartProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"cpLocks\" type=\"CT_ContentPartLocking\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"isComment\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObjectData\">\n    <xsd:sequence>\n      <xsd:any minOccurs=\"0\" maxOccurs=\"unbounded\" processContents=\"strict\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"xsd:token\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObject\">\n    <xsd:sequence>\n      <xsd:element name=\"graphicData\" type=\"CT_GraphicalObjectData\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"graphic\" type=\"CT_GraphicalObject\"/>\n  <xsd:simpleType name=\"ST_ChartBuildStep\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"category\"/>\n      <xsd:enumeration value=\"ptInCategory\"/>\n      <xsd:enumeration value=\"series\"/>\n      <xsd:enumeration value=\"ptInSeries\"/>\n      <xsd:enumeration value=\"allPts\"/>\n      <xsd:enumeration value=\"gridLegend\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DgmBuildStep\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sp\"/>\n      <xsd:enumeration value=\"bg\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_AnimationDgmElement\">\n    <xsd:attribute name=\"id\" type=\"s:ST_Guid\" use=\"optional\"\n      default=\"{00000000-0000-0000-0000-000000000000}\"/>\n    <xsd:attribute name=\"bldStep\" type=\"ST_DgmBuildStep\" use=\"optional\" default=\"sp\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AnimationChartElement\">\n    <xsd:attribute name=\"seriesIdx\" type=\"xsd:int\" use=\"optional\" default=\"-1\"/>\n    <xsd:attribute name=\"categoryIdx\" type=\"xsd:int\" use=\"optional\" default=\"-1\"/>\n    <xsd:attribute name=\"bldStep\" type=\"ST_ChartBuildStep\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AnimationElementChoice\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"dgm\" type=\"CT_AnimationDgmElement\"/>\n      <xsd:element name=\"chart\" type=\"CT_AnimationChartElement\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AnimationBuildType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"allAtOnce\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AnimationDgmOnlyBuildType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"one\"/>\n      <xsd:enumeration value=\"lvlOne\"/>\n      <xsd:enumeration value=\"lvlAtOnce\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AnimationDgmBuildType\">\n    <xsd:union memberTypes=\"ST_AnimationBuildType ST_AnimationDgmOnlyBuildType\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_AnimationDgmBuildProperties\">\n    <xsd:attribute name=\"bld\" type=\"ST_AnimationDgmBuildType\" use=\"optional\" default=\"allAtOnce\"/>\n    <xsd:attribute name=\"rev\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AnimationChartOnlyBuildType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"series\"/>\n      <xsd:enumeration value=\"category\"/>\n      <xsd:enumeration value=\"seriesEl\"/>\n      <xsd:enumeration value=\"categoryEl\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AnimationChartBuildType\">\n    <xsd:union memberTypes=\"ST_AnimationBuildType ST_AnimationChartOnlyBuildType\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_AnimationChartBuildProperties\">\n    <xsd:attribute name=\"bld\" type=\"ST_AnimationChartBuildType\" use=\"optional\" default=\"allAtOnce\"/>\n    <xsd:attribute name=\"animBg\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AnimationGraphicalObjectBuildProperties\">\n    <xsd:choice>\n      <xsd:element name=\"bldDgm\" type=\"CT_AnimationDgmBuildProperties\"/>\n      <xsd:element name=\"bldChart\" type=\"CT_AnimationChartBuildProperties\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BackgroundFormatting\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WholeE2oFormatting\">\n    <xsd:sequence>\n      <xsd:element name=\"ln\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlUseShapeRectangle\"/>\n  <xsd:complexType name=\"CT_GvmlTextShape\">\n    <xsd:sequence>\n      <xsd:element name=\"txBody\" type=\"CT_TextBody\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice>\n        <xsd:element name=\"useSpRect\" type=\"CT_GvmlUseShapeRectangle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"xfrm\" type=\"CT_Transform2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvSpPr\" type=\"CT_NonVisualDrawingShapeProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlShape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvSpPr\" type=\"CT_GvmlShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txSp\" type=\"CT_GvmlTextShape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlConnectorNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvCxnSpPr\" type=\"CT_NonVisualConnectorProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlConnector\">\n    <xsd:sequence>\n      <xsd:element name=\"nvCxnSpPr\" type=\"CT_GvmlConnectorNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlPictureNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvPicPr\" type=\"CT_NonVisualPictureProperties\" minOccurs=\"1\" maxOccurs=\"1\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlPicture\">\n    <xsd:sequence>\n      <xsd:element name=\"nvPicPr\" type=\"CT_GvmlPictureNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blipFill\" type=\"CT_BlipFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlGraphicFrameNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGraphicFramePr\" type=\"CT_NonVisualGraphicFrameProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlGraphicalObjectFrame\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGraphicFramePr\" type=\"CT_GvmlGraphicFrameNonVisual\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element ref=\"graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"CT_Transform2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlGroupShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGrpSpPr\" type=\"CT_NonVisualGroupDrawingShapeProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlGroupShape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGrpSpPr\" type=\"CT_GvmlGroupShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grpSpPr\" type=\"CT_GroupShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"txSp\" type=\"CT_GvmlTextShape\"/>\n        <xsd:element name=\"sp\" type=\"CT_GvmlShape\"/>\n        <xsd:element name=\"cxnSp\" type=\"CT_GvmlConnector\"/>\n        <xsd:element name=\"pic\" type=\"CT_GvmlPicture\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GvmlGraphicalObjectFrame\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_GvmlGroupShape\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PresetCameraType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"legacyObliqueTopLeft\"/>\n      <xsd:enumeration value=\"legacyObliqueTop\"/>\n      <xsd:enumeration value=\"legacyObliqueTopRight\"/>\n      <xsd:enumeration value=\"legacyObliqueLeft\"/>\n      <xsd:enumeration value=\"legacyObliqueFront\"/>\n      <xsd:enumeration value=\"legacyObliqueRight\"/>\n      <xsd:enumeration value=\"legacyObliqueBottomLeft\"/>\n      <xsd:enumeration value=\"legacyObliqueBottom\"/>\n      <xsd:enumeration value=\"legacyObliqueBottomRight\"/>\n      <xsd:enumeration value=\"legacyPerspectiveTopLeft\"/>\n      <xsd:enumeration value=\"legacyPerspectiveTop\"/>\n      <xsd:enumeration value=\"legacyPerspectiveTopRight\"/>\n      <xsd:enumeration value=\"legacyPerspectiveLeft\"/>\n      <xsd:enumeration value=\"legacyPerspectiveFront\"/>\n      <xsd:enumeration value=\"legacyPerspectiveRight\"/>\n      <xsd:enumeration value=\"legacyPerspectiveBottomLeft\"/>\n      <xsd:enumeration value=\"legacyPerspectiveBottom\"/>\n      <xsd:enumeration value=\"legacyPerspectiveBottomRight\"/>\n      <xsd:enumeration value=\"orthographicFront\"/>\n      <xsd:enumeration value=\"isometricTopUp\"/>\n      <xsd:enumeration value=\"isometricTopDown\"/>\n      <xsd:enumeration value=\"isometricBottomUp\"/>\n      <xsd:enumeration value=\"isometricBottomDown\"/>\n      <xsd:enumeration value=\"isometricLeftUp\"/>\n      <xsd:enumeration value=\"isometricLeftDown\"/>\n      <xsd:enumeration value=\"isometricRightUp\"/>\n      <xsd:enumeration value=\"isometricRightDown\"/>\n      <xsd:enumeration value=\"isometricOffAxis1Left\"/>\n      <xsd:enumeration value=\"isometricOffAxis1Right\"/>\n      <xsd:enumeration value=\"isometricOffAxis1Top\"/>\n      <xsd:enumeration value=\"isometricOffAxis2Left\"/>\n      <xsd:enumeration value=\"isometricOffAxis2Right\"/>\n      <xsd:enumeration value=\"isometricOffAxis2Top\"/>\n      <xsd:enumeration value=\"isometricOffAxis3Left\"/>\n      <xsd:enumeration value=\"isometricOffAxis3Right\"/>\n      <xsd:enumeration value=\"isometricOffAxis3Bottom\"/>\n      <xsd:enumeration value=\"isometricOffAxis4Left\"/>\n      <xsd:enumeration value=\"isometricOffAxis4Right\"/>\n      <xsd:enumeration value=\"isometricOffAxis4Bottom\"/>\n      <xsd:enumeration value=\"obliqueTopLeft\"/>\n      <xsd:enumeration value=\"obliqueTop\"/>\n      <xsd:enumeration value=\"obliqueTopRight\"/>\n      <xsd:enumeration value=\"obliqueLeft\"/>\n      <xsd:enumeration value=\"obliqueRight\"/>\n      <xsd:enumeration value=\"obliqueBottomLeft\"/>\n      <xsd:enumeration value=\"obliqueBottom\"/>\n      <xsd:enumeration value=\"obliqueBottomRight\"/>\n      <xsd:enumeration value=\"perspectiveFront\"/>\n      <xsd:enumeration value=\"perspectiveLeft\"/>\n      <xsd:enumeration value=\"perspectiveRight\"/>\n      <xsd:enumeration value=\"perspectiveAbove\"/>\n      <xsd:enumeration value=\"perspectiveBelow\"/>\n      <xsd:enumeration value=\"perspectiveAboveLeftFacing\"/>\n      <xsd:enumeration value=\"perspectiveAboveRightFacing\"/>\n      <xsd:enumeration value=\"perspectiveContrastingLeftFacing\"/>\n      <xsd:enumeration value=\"perspectiveContrastingRightFacing\"/>\n      <xsd:enumeration value=\"perspectiveHeroicLeftFacing\"/>\n      <xsd:enumeration value=\"perspectiveHeroicRightFacing\"/>\n      <xsd:enumeration value=\"perspectiveHeroicExtremeLeftFacing\"/>\n      <xsd:enumeration value=\"perspectiveHeroicExtremeRightFacing\"/>\n      <xsd:enumeration value=\"perspectiveRelaxed\"/>\n      <xsd:enumeration value=\"perspectiveRelaxedModerately\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FOVAngle\">\n    <xsd:restriction base=\"ST_Angle\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"10800000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Camera\">\n    <xsd:sequence>\n      <xsd:element name=\"rot\" type=\"CT_SphereCoords\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prst\" type=\"ST_PresetCameraType\" use=\"required\"/>\n    <xsd:attribute name=\"fov\" type=\"ST_FOVAngle\" use=\"optional\"/>\n    <xsd:attribute name=\"zoom\" type=\"ST_PositivePercentage\" use=\"optional\" default=\"100%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LightRigDirection\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"tl\"/>\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"tr\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"bl\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"br\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LightRigType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"legacyFlat1\"/>\n      <xsd:enumeration value=\"legacyFlat2\"/>\n      <xsd:enumeration value=\"legacyFlat3\"/>\n      <xsd:enumeration value=\"legacyFlat4\"/>\n      <xsd:enumeration value=\"legacyNormal1\"/>\n      <xsd:enumeration value=\"legacyNormal2\"/>\n      <xsd:enumeration value=\"legacyNormal3\"/>\n      <xsd:enumeration value=\"legacyNormal4\"/>\n      <xsd:enumeration value=\"legacyHarsh1\"/>\n      <xsd:enumeration value=\"legacyHarsh2\"/>\n      <xsd:enumeration value=\"legacyHarsh3\"/>\n      <xsd:enumeration value=\"legacyHarsh4\"/>\n      <xsd:enumeration value=\"threePt\"/>\n      <xsd:enumeration value=\"balanced\"/>\n      <xsd:enumeration value=\"soft\"/>\n      <xsd:enumeration value=\"harsh\"/>\n      <xsd:enumeration value=\"flood\"/>\n      <xsd:enumeration value=\"contrasting\"/>\n      <xsd:enumeration value=\"morning\"/>\n      <xsd:enumeration value=\"sunrise\"/>\n      <xsd:enumeration value=\"sunset\"/>\n      <xsd:enumeration value=\"chilly\"/>\n      <xsd:enumeration value=\"freezing\"/>\n      <xsd:enumeration value=\"flat\"/>\n      <xsd:enumeration value=\"twoPt\"/>\n      <xsd:enumeration value=\"glow\"/>\n      <xsd:enumeration value=\"brightRoom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LightRig\">\n    <xsd:sequence>\n      <xsd:element name=\"rot\" type=\"CT_SphereCoords\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rig\" type=\"ST_LightRigType\" use=\"required\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_LightRigDirection\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Scene3D\">\n    <xsd:sequence>\n      <xsd:element name=\"camera\" type=\"CT_Camera\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lightRig\" type=\"CT_LightRig\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"backdrop\" type=\"CT_Backdrop\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Backdrop\">\n    <xsd:sequence>\n      <xsd:element name=\"anchor\" type=\"CT_Point3D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"norm\" type=\"CT_Vector3D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"up\" type=\"CT_Vector3D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BevelPresetType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"relaxedInset\"/>\n      <xsd:enumeration value=\"circle\"/>\n      <xsd:enumeration value=\"slope\"/>\n      <xsd:enumeration value=\"cross\"/>\n      <xsd:enumeration value=\"angle\"/>\n      <xsd:enumeration value=\"softRound\"/>\n      <xsd:enumeration value=\"convex\"/>\n      <xsd:enumeration value=\"coolSlant\"/>\n      <xsd:enumeration value=\"divot\"/>\n      <xsd:enumeration value=\"riblet\"/>\n      <xsd:enumeration value=\"hardEdge\"/>\n      <xsd:enumeration value=\"artDeco\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Bevel\">\n    <xsd:attribute name=\"w\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"76200\"/>\n    <xsd:attribute name=\"h\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"76200\"/>\n    <xsd:attribute name=\"prst\" type=\"ST_BevelPresetType\" use=\"optional\" default=\"circle\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PresetMaterialType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"legacyMatte\"/>\n      <xsd:enumeration value=\"legacyPlastic\"/>\n      <xsd:enumeration value=\"legacyMetal\"/>\n      <xsd:enumeration value=\"legacyWireframe\"/>\n      <xsd:enumeration value=\"matte\"/>\n      <xsd:enumeration value=\"plastic\"/>\n      <xsd:enumeration value=\"metal\"/>\n      <xsd:enumeration value=\"warmMatte\"/>\n      <xsd:enumeration value=\"translucentPowder\"/>\n      <xsd:enumeration value=\"powder\"/>\n      <xsd:enumeration value=\"dkEdge\"/>\n      <xsd:enumeration value=\"softEdge\"/>\n      <xsd:enumeration value=\"clear\"/>\n      <xsd:enumeration value=\"flat\"/>\n      <xsd:enumeration value=\"softmetal\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Shape3D\">\n    <xsd:sequence>\n      <xsd:element name=\"bevelT\" type=\"CT_Bevel\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bevelB\" type=\"CT_Bevel\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extrusionClr\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"contourClr\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"z\" type=\"ST_Coordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"extrusionH\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"contourW\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"prstMaterial\" type=\"ST_PresetMaterialType\" use=\"optional\"\n      default=\"warmMatte\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FlatText\">\n    <xsd:attribute name=\"z\" type=\"ST_Coordinate\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Text3D\">\n    <xsd:choice>\n      <xsd:element name=\"sp3d\" type=\"CT_Shape3D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"flatTx\" type=\"CT_FlatText\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_AlphaBiLevelEffect\">\n    <xsd:attribute name=\"thresh\" type=\"ST_PositiveFixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AlphaCeilingEffect\"/>\n  <xsd:complexType name=\"CT_AlphaFloorEffect\"/>\n  <xsd:complexType name=\"CT_AlphaInverseEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AlphaModulateFixedEffect\">\n    <xsd:attribute name=\"amt\" type=\"ST_PositivePercentage\" use=\"optional\" default=\"100%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AlphaOutsetEffect\">\n    <xsd:attribute name=\"rad\" type=\"ST_Coordinate\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AlphaReplaceEffect\">\n    <xsd:attribute name=\"a\" type=\"ST_PositiveFixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BiLevelEffect\">\n    <xsd:attribute name=\"thresh\" type=\"ST_PositiveFixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BlurEffect\">\n    <xsd:attribute name=\"rad\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"grow\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorChangeEffect\">\n    <xsd:sequence>\n      <xsd:element name=\"clrFrom\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrTo\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"useA\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorReplaceEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DuotoneEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"2\" maxOccurs=\"2\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GlowEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rad\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GrayscaleEffect\"/>\n  <xsd:complexType name=\"CT_HSLEffect\">\n    <xsd:attribute name=\"hue\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"sat\" type=\"ST_FixedPercentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"lum\" type=\"ST_FixedPercentage\" use=\"optional\" default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_InnerShadowEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"blurRad\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"dist\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LuminanceEffect\">\n    <xsd:attribute name=\"bright\" type=\"ST_FixedPercentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"contrast\" type=\"ST_FixedPercentage\" use=\"optional\" default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OuterShadowEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"blurRad\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"dist\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"sx\" type=\"ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"sy\" type=\"ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"kx\" type=\"ST_FixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ky\" type=\"ST_FixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"algn\" type=\"ST_RectAlignment\" use=\"optional\" default=\"b\"/>\n    <xsd:attribute name=\"rotWithShape\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PresetShadowVal\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"shdw1\"/>\n      <xsd:enumeration value=\"shdw2\"/>\n      <xsd:enumeration value=\"shdw3\"/>\n      <xsd:enumeration value=\"shdw4\"/>\n      <xsd:enumeration value=\"shdw5\"/>\n      <xsd:enumeration value=\"shdw6\"/>\n      <xsd:enumeration value=\"shdw7\"/>\n      <xsd:enumeration value=\"shdw8\"/>\n      <xsd:enumeration value=\"shdw9\"/>\n      <xsd:enumeration value=\"shdw10\"/>\n      <xsd:enumeration value=\"shdw11\"/>\n      <xsd:enumeration value=\"shdw12\"/>\n      <xsd:enumeration value=\"shdw13\"/>\n      <xsd:enumeration value=\"shdw14\"/>\n      <xsd:enumeration value=\"shdw15\"/>\n      <xsd:enumeration value=\"shdw16\"/>\n      <xsd:enumeration value=\"shdw17\"/>\n      <xsd:enumeration value=\"shdw18\"/>\n      <xsd:enumeration value=\"shdw19\"/>\n      <xsd:enumeration value=\"shdw20\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PresetShadowEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prst\" type=\"ST_PresetShadowVal\" use=\"required\"/>\n    <xsd:attribute name=\"dist\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ReflectionEffect\">\n    <xsd:attribute name=\"blurRad\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"stA\" type=\"ST_PositiveFixedPercentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"stPos\" type=\"ST_PositiveFixedPercentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"endA\" type=\"ST_PositiveFixedPercentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"endPos\" type=\"ST_PositiveFixedPercentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"dist\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"fadeDir\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"5400000\"/>\n    <xsd:attribute name=\"sx\" type=\"ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"sy\" type=\"ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"kx\" type=\"ST_FixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ky\" type=\"ST_FixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"algn\" type=\"ST_RectAlignment\" use=\"optional\" default=\"b\"/>\n    <xsd:attribute name=\"rotWithShape\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RelativeOffsetEffect\">\n    <xsd:attribute name=\"tx\" type=\"ST_Percentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"ty\" type=\"ST_Percentage\" use=\"optional\" default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SoftEdgesEffect\">\n    <xsd:attribute name=\"rad\" type=\"ST_PositiveCoordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TintEffect\">\n    <xsd:attribute name=\"hue\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"amt\" type=\"ST_FixedPercentage\" use=\"optional\" default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TransformEffect\">\n    <xsd:attribute name=\"sx\" type=\"ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"sy\" type=\"ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"kx\" type=\"ST_FixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ky\" type=\"ST_FixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"tx\" type=\"ST_Coordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ty\" type=\"ST_Coordinate\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NoFillProperties\"/>\n  <xsd:complexType name=\"CT_SolidColorFillProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LinearShadeProperties\">\n    <xsd:attribute name=\"ang\" type=\"ST_PositiveFixedAngle\" use=\"optional\"/>\n    <xsd:attribute name=\"scaled\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PathShadeType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"shape\"/>\n      <xsd:enumeration value=\"circle\"/>\n      <xsd:enumeration value=\"rect\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PathShadeProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"fillToRect\" type=\"CT_RelativeRect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"path\" type=\"ST_PathShadeType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ShadeProperties\">\n    <xsd:choice>\n      <xsd:element name=\"lin\" type=\"CT_LinearShadeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"path\" type=\"CT_PathShadeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_TileFlipMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"x\"/>\n      <xsd:enumeration value=\"y\"/>\n      <xsd:enumeration value=\"xy\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_GradientStop\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"pos\" type=\"ST_PositiveFixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GradientStopList\">\n    <xsd:sequence>\n      <xsd:element name=\"gs\" type=\"CT_GradientStop\" minOccurs=\"2\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GradientFillProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"gsLst\" type=\"CT_GradientStopList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ShadeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tileRect\" type=\"CT_RelativeRect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"flip\" type=\"ST_TileFlipMode\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"rotWithShape\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TileInfoProperties\">\n    <xsd:attribute name=\"tx\" type=\"ST_Coordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"ty\" type=\"ST_Coordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"sx\" type=\"ST_Percentage\" use=\"optional\"/>\n    <xsd:attribute name=\"sy\" type=\"ST_Percentage\" use=\"optional\"/>\n    <xsd:attribute name=\"flip\" type=\"ST_TileFlipMode\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"algn\" type=\"ST_RectAlignment\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StretchInfoProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"fillRect\" type=\"CT_RelativeRect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_FillModeProperties\">\n    <xsd:choice>\n      <xsd:element name=\"tile\" type=\"CT_TileInfoProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"stretch\" type=\"CT_StretchInfoProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_BlipCompression\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"email\"/>\n      <xsd:enumeration value=\"screen\"/>\n      <xsd:enumeration value=\"print\"/>\n      <xsd:enumeration value=\"hqprint\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Blip\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"alphaBiLevel\" type=\"CT_AlphaBiLevelEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"alphaCeiling\" type=\"CT_AlphaCeilingEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"alphaFloor\" type=\"CT_AlphaFloorEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"alphaInv\" type=\"CT_AlphaInverseEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"alphaMod\" type=\"CT_AlphaModulateEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"alphaModFix\" type=\"CT_AlphaModulateFixedEffect\" minOccurs=\"1\"\n          maxOccurs=\"1\"/>\n        <xsd:element name=\"alphaRepl\" type=\"CT_AlphaReplaceEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"biLevel\" type=\"CT_BiLevelEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"blur\" type=\"CT_BlurEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"clrChange\" type=\"CT_ColorChangeEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"clrRepl\" type=\"CT_ColorReplaceEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"duotone\" type=\"CT_DuotoneEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"fillOverlay\" type=\"CT_FillOverlayEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"grayscl\" type=\"CT_GrayscaleEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"hsl\" type=\"CT_HSLEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"lum\" type=\"CT_LuminanceEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"tint\" type=\"CT_TintEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Blob\"/>\n    <xsd:attribute name=\"cstate\" type=\"ST_BlipCompression\" use=\"optional\" default=\"none\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BlipFillProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"blip\" type=\"CT_Blip\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"srcRect\" type=\"CT_RelativeRect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_FillModeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"dpi\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rotWithShape\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PresetPatternVal\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"pct5\"/>\n      <xsd:enumeration value=\"pct10\"/>\n      <xsd:enumeration value=\"pct20\"/>\n      <xsd:enumeration value=\"pct25\"/>\n      <xsd:enumeration value=\"pct30\"/>\n      <xsd:enumeration value=\"pct40\"/>\n      <xsd:enumeration value=\"pct50\"/>\n      <xsd:enumeration value=\"pct60\"/>\n      <xsd:enumeration value=\"pct70\"/>\n      <xsd:enumeration value=\"pct75\"/>\n      <xsd:enumeration value=\"pct80\"/>\n      <xsd:enumeration value=\"pct90\"/>\n      <xsd:enumeration value=\"horz\"/>\n      <xsd:enumeration value=\"vert\"/>\n      <xsd:enumeration value=\"ltHorz\"/>\n      <xsd:enumeration value=\"ltVert\"/>\n      <xsd:enumeration value=\"dkHorz\"/>\n      <xsd:enumeration value=\"dkVert\"/>\n      <xsd:enumeration value=\"narHorz\"/>\n      <xsd:enumeration value=\"narVert\"/>\n      <xsd:enumeration value=\"dashHorz\"/>\n      <xsd:enumeration value=\"dashVert\"/>\n      <xsd:enumeration value=\"cross\"/>\n      <xsd:enumeration value=\"dnDiag\"/>\n      <xsd:enumeration value=\"upDiag\"/>\n      <xsd:enumeration value=\"ltDnDiag\"/>\n      <xsd:enumeration value=\"ltUpDiag\"/>\n      <xsd:enumeration value=\"dkDnDiag\"/>\n      <xsd:enumeration value=\"dkUpDiag\"/>\n      <xsd:enumeration value=\"wdDnDiag\"/>\n      <xsd:enumeration value=\"wdUpDiag\"/>\n      <xsd:enumeration value=\"dashDnDiag\"/>\n      <xsd:enumeration value=\"dashUpDiag\"/>\n      <xsd:enumeration value=\"diagCross\"/>\n      <xsd:enumeration value=\"smCheck\"/>\n      <xsd:enumeration value=\"lgCheck\"/>\n      <xsd:enumeration value=\"smGrid\"/>\n      <xsd:enumeration value=\"lgGrid\"/>\n      <xsd:enumeration value=\"dotGrid\"/>\n      <xsd:enumeration value=\"smConfetti\"/>\n      <xsd:enumeration value=\"lgConfetti\"/>\n      <xsd:enumeration value=\"horzBrick\"/>\n      <xsd:enumeration value=\"diagBrick\"/>\n      <xsd:enumeration value=\"solidDmnd\"/>\n      <xsd:enumeration value=\"openDmnd\"/>\n      <xsd:enumeration value=\"dotDmnd\"/>\n      <xsd:enumeration value=\"plaid\"/>\n      <xsd:enumeration value=\"sphere\"/>\n      <xsd:enumeration value=\"weave\"/>\n      <xsd:enumeration value=\"divot\"/>\n      <xsd:enumeration value=\"shingle\"/>\n      <xsd:enumeration value=\"wave\"/>\n      <xsd:enumeration value=\"trellis\"/>\n      <xsd:enumeration value=\"zigZag\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PatternFillProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"fgClr\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bgClr\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prst\" type=\"ST_PresetPatternVal\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupFillProperties\"/>\n  <xsd:group name=\"EG_FillProperties\">\n    <xsd:choice>\n      <xsd:element name=\"noFill\" type=\"CT_NoFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"solidFill\" type=\"CT_SolidColorFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gradFill\" type=\"CT_GradientFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blipFill\" type=\"CT_BlipFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pattFill\" type=\"CT_PatternFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grpFill\" type=\"CT_GroupFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_FillProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FillEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BlendMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"over\"/>\n      <xsd:enumeration value=\"mult\"/>\n      <xsd:enumeration value=\"screen\"/>\n      <xsd:enumeration value=\"darken\"/>\n      <xsd:enumeration value=\"lighten\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FillOverlayEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"blend\" type=\"ST_BlendMode\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EffectReference\">\n    <xsd:attribute name=\"ref\" type=\"xsd:token\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Effect\">\n    <xsd:choice>\n      <xsd:element name=\"cont\" type=\"CT_EffectContainer\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"effect\" type=\"CT_EffectReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaBiLevel\" type=\"CT_AlphaBiLevelEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaCeiling\" type=\"CT_AlphaCeilingEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaFloor\" type=\"CT_AlphaFloorEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaInv\" type=\"CT_AlphaInverseEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaMod\" type=\"CT_AlphaModulateEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaModFix\" type=\"CT_AlphaModulateFixedEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaOutset\" type=\"CT_AlphaOutsetEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaRepl\" type=\"CT_AlphaReplaceEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"biLevel\" type=\"CT_BiLevelEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blend\" type=\"CT_BlendEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blur\" type=\"CT_BlurEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrChange\" type=\"CT_ColorChangeEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrRepl\" type=\"CT_ColorReplaceEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"duotone\" type=\"CT_DuotoneEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fill\" type=\"CT_FillEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fillOverlay\" type=\"CT_FillOverlayEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"glow\" type=\"CT_GlowEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grayscl\" type=\"CT_GrayscaleEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hsl\" type=\"CT_HSLEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"innerShdw\" type=\"CT_InnerShadowEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lum\" type=\"CT_LuminanceEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"outerShdw\" type=\"CT_OuterShadowEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prstShdw\" type=\"CT_PresetShadowEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"reflection\" type=\"CT_ReflectionEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"relOff\" type=\"CT_RelativeOffsetEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"softEdge\" type=\"CT_SoftEdgesEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tint\" type=\"CT_TintEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"CT_TransformEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_EffectContainerType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sib\"/>\n      <xsd:enumeration value=\"tree\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_EffectContainer\">\n    <xsd:group ref=\"EG_Effect\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    <xsd:attribute name=\"type\" type=\"ST_EffectContainerType\" use=\"optional\" default=\"sib\"/>\n    <xsd:attribute name=\"name\" type=\"xsd:token\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AlphaModulateEffect\">\n    <xsd:sequence>\n      <xsd:element name=\"cont\" type=\"CT_EffectContainer\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BlendEffect\">\n    <xsd:sequence>\n      <xsd:element name=\"cont\" type=\"CT_EffectContainer\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"blend\" type=\"ST_BlendMode\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EffectList\">\n    <xsd:sequence>\n      <xsd:element name=\"blur\" type=\"CT_BlurEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fillOverlay\" type=\"CT_FillOverlayEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"glow\" type=\"CT_GlowEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"innerShdw\" type=\"CT_InnerShadowEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"outerShdw\" type=\"CT_OuterShadowEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prstShdw\" type=\"CT_PresetShadowEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"reflection\" type=\"CT_ReflectionEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"softEdge\" type=\"CT_SoftEdgesEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_EffectProperties\">\n    <xsd:choice>\n      <xsd:element name=\"effectLst\" type=\"CT_EffectList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"effectDag\" type=\"CT_EffectContainer\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_EffectProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"blip\" type=\"CT_Blip\"/>\n  <xsd:simpleType name=\"ST_ShapeType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"line\"/>\n      <xsd:enumeration value=\"lineInv\"/>\n      <xsd:enumeration value=\"triangle\"/>\n      <xsd:enumeration value=\"rtTriangle\"/>\n      <xsd:enumeration value=\"rect\"/>\n      <xsd:enumeration value=\"diamond\"/>\n      <xsd:enumeration value=\"parallelogram\"/>\n      <xsd:enumeration value=\"trapezoid\"/>\n      <xsd:enumeration value=\"nonIsoscelesTrapezoid\"/>\n      <xsd:enumeration value=\"pentagon\"/>\n      <xsd:enumeration value=\"hexagon\"/>\n      <xsd:enumeration value=\"heptagon\"/>\n      <xsd:enumeration value=\"octagon\"/>\n      <xsd:enumeration value=\"decagon\"/>\n      <xsd:enumeration value=\"dodecagon\"/>\n      <xsd:enumeration value=\"star4\"/>\n      <xsd:enumeration value=\"star5\"/>\n      <xsd:enumeration value=\"star6\"/>\n      <xsd:enumeration value=\"star7\"/>\n      <xsd:enumeration value=\"star8\"/>\n      <xsd:enumeration value=\"star10\"/>\n      <xsd:enumeration value=\"star12\"/>\n      <xsd:enumeration value=\"star16\"/>\n      <xsd:enumeration value=\"star24\"/>\n      <xsd:enumeration value=\"star32\"/>\n      <xsd:enumeration value=\"roundRect\"/>\n      <xsd:enumeration value=\"round1Rect\"/>\n      <xsd:enumeration value=\"round2SameRect\"/>\n      <xsd:enumeration value=\"round2DiagRect\"/>\n      <xsd:enumeration value=\"snipRoundRect\"/>\n      <xsd:enumeration value=\"snip1Rect\"/>\n      <xsd:enumeration value=\"snip2SameRect\"/>\n      <xsd:enumeration value=\"snip2DiagRect\"/>\n      <xsd:enumeration value=\"plaque\"/>\n      <xsd:enumeration value=\"ellipse\"/>\n      <xsd:enumeration value=\"teardrop\"/>\n      <xsd:enumeration value=\"homePlate\"/>\n      <xsd:enumeration value=\"chevron\"/>\n      <xsd:enumeration value=\"pieWedge\"/>\n      <xsd:enumeration value=\"pie\"/>\n      <xsd:enumeration value=\"blockArc\"/>\n      <xsd:enumeration value=\"donut\"/>\n      <xsd:enumeration value=\"noSmoking\"/>\n      <xsd:enumeration value=\"rightArrow\"/>\n      <xsd:enumeration value=\"leftArrow\"/>\n      <xsd:enumeration value=\"upArrow\"/>\n      <xsd:enumeration value=\"downArrow\"/>\n      <xsd:enumeration value=\"stripedRightArrow\"/>\n      <xsd:enumeration value=\"notchedRightArrow\"/>\n      <xsd:enumeration value=\"bentUpArrow\"/>\n      <xsd:enumeration value=\"leftRightArrow\"/>\n      <xsd:enumeration value=\"upDownArrow\"/>\n      <xsd:enumeration value=\"leftUpArrow\"/>\n      <xsd:enumeration value=\"leftRightUpArrow\"/>\n      <xsd:enumeration value=\"quadArrow\"/>\n      <xsd:enumeration value=\"leftArrowCallout\"/>\n      <xsd:enumeration value=\"rightArrowCallout\"/>\n      <xsd:enumeration value=\"upArrowCallout\"/>\n      <xsd:enumeration value=\"downArrowCallout\"/>\n      <xsd:enumeration value=\"leftRightArrowCallout\"/>\n      <xsd:enumeration value=\"upDownArrowCallout\"/>\n      <xsd:enumeration value=\"quadArrowCallout\"/>\n      <xsd:enumeration value=\"bentArrow\"/>\n      <xsd:enumeration value=\"uturnArrow\"/>\n      <xsd:enumeration value=\"circularArrow\"/>\n      <xsd:enumeration value=\"leftCircularArrow\"/>\n      <xsd:enumeration value=\"leftRightCircularArrow\"/>\n      <xsd:enumeration value=\"curvedRightArrow\"/>\n      <xsd:enumeration value=\"curvedLeftArrow\"/>\n      <xsd:enumeration value=\"curvedUpArrow\"/>\n      <xsd:enumeration value=\"curvedDownArrow\"/>\n      <xsd:enumeration value=\"swooshArrow\"/>\n      <xsd:enumeration value=\"cube\"/>\n      <xsd:enumeration value=\"can\"/>\n      <xsd:enumeration value=\"lightningBolt\"/>\n      <xsd:enumeration value=\"heart\"/>\n      <xsd:enumeration value=\"sun\"/>\n      <xsd:enumeration value=\"moon\"/>\n      <xsd:enumeration value=\"smileyFace\"/>\n      <xsd:enumeration value=\"irregularSeal1\"/>\n      <xsd:enumeration value=\"irregularSeal2\"/>\n      <xsd:enumeration value=\"foldedCorner\"/>\n      <xsd:enumeration value=\"bevel\"/>\n      <xsd:enumeration value=\"frame\"/>\n      <xsd:enumeration value=\"halfFrame\"/>\n      <xsd:enumeration value=\"corner\"/>\n      <xsd:enumeration value=\"diagStripe\"/>\n      <xsd:enumeration value=\"chord\"/>\n      <xsd:enumeration value=\"arc\"/>\n      <xsd:enumeration value=\"leftBracket\"/>\n      <xsd:enumeration value=\"rightBracket\"/>\n      <xsd:enumeration value=\"leftBrace\"/>\n      <xsd:enumeration value=\"rightBrace\"/>\n      <xsd:enumeration value=\"bracketPair\"/>\n      <xsd:enumeration value=\"bracePair\"/>\n      <xsd:enumeration value=\"straightConnector1\"/>\n      <xsd:enumeration value=\"bentConnector2\"/>\n      <xsd:enumeration value=\"bentConnector3\"/>\n      <xsd:enumeration value=\"bentConnector4\"/>\n      <xsd:enumeration value=\"bentConnector5\"/>\n      <xsd:enumeration value=\"curvedConnector2\"/>\n      <xsd:enumeration value=\"curvedConnector3\"/>\n      <xsd:enumeration value=\"curvedConnector4\"/>\n      <xsd:enumeration value=\"curvedConnector5\"/>\n      <xsd:enumeration value=\"callout1\"/>\n      <xsd:enumeration value=\"callout2\"/>\n      <xsd:enumeration value=\"callout3\"/>\n      <xsd:enumeration value=\"accentCallout1\"/>\n      <xsd:enumeration value=\"accentCallout2\"/>\n      <xsd:enumeration value=\"accentCallout3\"/>\n      <xsd:enumeration value=\"borderCallout1\"/>\n      <xsd:enumeration value=\"borderCallout2\"/>\n      <xsd:enumeration value=\"borderCallout3\"/>\n      <xsd:enumeration value=\"accentBorderCallout1\"/>\n      <xsd:enumeration value=\"accentBorderCallout2\"/>\n      <xsd:enumeration value=\"accentBorderCallout3\"/>\n      <xsd:enumeration value=\"wedgeRectCallout\"/>\n      <xsd:enumeration value=\"wedgeRoundRectCallout\"/>\n      <xsd:enumeration value=\"wedgeEllipseCallout\"/>\n      <xsd:enumeration value=\"cloudCallout\"/>\n      <xsd:enumeration value=\"cloud\"/>\n      <xsd:enumeration value=\"ribbon\"/>\n      <xsd:enumeration value=\"ribbon2\"/>\n      <xsd:enumeration value=\"ellipseRibbon\"/>\n      <xsd:enumeration value=\"ellipseRibbon2\"/>\n      <xsd:enumeration value=\"leftRightRibbon\"/>\n      <xsd:enumeration value=\"verticalScroll\"/>\n      <xsd:enumeration value=\"horizontalScroll\"/>\n      <xsd:enumeration value=\"wave\"/>\n      <xsd:enumeration value=\"doubleWave\"/>\n      <xsd:enumeration value=\"plus\"/>\n      <xsd:enumeration value=\"flowChartProcess\"/>\n      <xsd:enumeration value=\"flowChartDecision\"/>\n      <xsd:enumeration value=\"flowChartInputOutput\"/>\n      <xsd:enumeration value=\"flowChartPredefinedProcess\"/>\n      <xsd:enumeration value=\"flowChartInternalStorage\"/>\n      <xsd:enumeration value=\"flowChartDocument\"/>\n      <xsd:enumeration value=\"flowChartMultidocument\"/>\n      <xsd:enumeration value=\"flowChartTerminator\"/>\n      <xsd:enumeration value=\"flowChartPreparation\"/>\n      <xsd:enumeration value=\"flowChartManualInput\"/>\n      <xsd:enumeration value=\"flowChartManualOperation\"/>\n      <xsd:enumeration value=\"flowChartConnector\"/>\n      <xsd:enumeration value=\"flowChartPunchedCard\"/>\n      <xsd:enumeration value=\"flowChartPunchedTape\"/>\n      <xsd:enumeration value=\"flowChartSummingJunction\"/>\n      <xsd:enumeration value=\"flowChartOr\"/>\n      <xsd:enumeration value=\"flowChartCollate\"/>\n      <xsd:enumeration value=\"flowChartSort\"/>\n      <xsd:enumeration value=\"flowChartExtract\"/>\n      <xsd:enumeration value=\"flowChartMerge\"/>\n      <xsd:enumeration value=\"flowChartOfflineStorage\"/>\n      <xsd:enumeration value=\"flowChartOnlineStorage\"/>\n      <xsd:enumeration value=\"flowChartMagneticTape\"/>\n      <xsd:enumeration value=\"flowChartMagneticDisk\"/>\n      <xsd:enumeration value=\"flowChartMagneticDrum\"/>\n      <xsd:enumeration value=\"flowChartDisplay\"/>\n      <xsd:enumeration value=\"flowChartDelay\"/>\n      <xsd:enumeration value=\"flowChartAlternateProcess\"/>\n      <xsd:enumeration value=\"flowChartOffpageConnector\"/>\n      <xsd:enumeration value=\"actionButtonBlank\"/>\n      <xsd:enumeration value=\"actionButtonHome\"/>\n      <xsd:enumeration value=\"actionButtonHelp\"/>\n      <xsd:enumeration value=\"actionButtonInformation\"/>\n      <xsd:enumeration value=\"actionButtonForwardNext\"/>\n      <xsd:enumeration value=\"actionButtonBackPrevious\"/>\n      <xsd:enumeration value=\"actionButtonEnd\"/>\n      <xsd:enumeration value=\"actionButtonBeginning\"/>\n      <xsd:enumeration value=\"actionButtonReturn\"/>\n      <xsd:enumeration value=\"actionButtonDocument\"/>\n      <xsd:enumeration value=\"actionButtonSound\"/>\n      <xsd:enumeration value=\"actionButtonMovie\"/>\n      <xsd:enumeration value=\"gear6\"/>\n      <xsd:enumeration value=\"gear9\"/>\n      <xsd:enumeration value=\"funnel\"/>\n      <xsd:enumeration value=\"mathPlus\"/>\n      <xsd:enumeration value=\"mathMinus\"/>\n      <xsd:enumeration value=\"mathMultiply\"/>\n      <xsd:enumeration value=\"mathDivide\"/>\n      <xsd:enumeration value=\"mathEqual\"/>\n      <xsd:enumeration value=\"mathNotEqual\"/>\n      <xsd:enumeration value=\"cornerTabs\"/>\n      <xsd:enumeration value=\"squareTabs\"/>\n      <xsd:enumeration value=\"plaqueTabs\"/>\n      <xsd:enumeration value=\"chartX\"/>\n      <xsd:enumeration value=\"chartStar\"/>\n      <xsd:enumeration value=\"chartPlus\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextShapeType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"textNoShape\"/>\n      <xsd:enumeration value=\"textPlain\"/>\n      <xsd:enumeration value=\"textStop\"/>\n      <xsd:enumeration value=\"textTriangle\"/>\n      <xsd:enumeration value=\"textTriangleInverted\"/>\n      <xsd:enumeration value=\"textChevron\"/>\n      <xsd:enumeration value=\"textChevronInverted\"/>\n      <xsd:enumeration value=\"textRingInside\"/>\n      <xsd:enumeration value=\"textRingOutside\"/>\n      <xsd:enumeration value=\"textArchUp\"/>\n      <xsd:enumeration value=\"textArchDown\"/>\n      <xsd:enumeration value=\"textCircle\"/>\n      <xsd:enumeration value=\"textButton\"/>\n      <xsd:enumeration value=\"textArchUpPour\"/>\n      <xsd:enumeration value=\"textArchDownPour\"/>\n      <xsd:enumeration value=\"textCirclePour\"/>\n      <xsd:enumeration value=\"textButtonPour\"/>\n      <xsd:enumeration value=\"textCurveUp\"/>\n      <xsd:enumeration value=\"textCurveDown\"/>\n      <xsd:enumeration value=\"textCanUp\"/>\n      <xsd:enumeration value=\"textCanDown\"/>\n      <xsd:enumeration value=\"textWave1\"/>\n      <xsd:enumeration value=\"textWave2\"/>\n      <xsd:enumeration value=\"textDoubleWave1\"/>\n      <xsd:enumeration value=\"textWave4\"/>\n      <xsd:enumeration value=\"textInflate\"/>\n      <xsd:enumeration value=\"textDeflate\"/>\n      <xsd:enumeration value=\"textInflateBottom\"/>\n      <xsd:enumeration value=\"textDeflateBottom\"/>\n      <xsd:enumeration value=\"textInflateTop\"/>\n      <xsd:enumeration value=\"textDeflateTop\"/>\n      <xsd:enumeration value=\"textDeflateInflate\"/>\n      <xsd:enumeration value=\"textDeflateInflateDeflate\"/>\n      <xsd:enumeration value=\"textFadeRight\"/>\n      <xsd:enumeration value=\"textFadeLeft\"/>\n      <xsd:enumeration value=\"textFadeUp\"/>\n      <xsd:enumeration value=\"textFadeDown\"/>\n      <xsd:enumeration value=\"textSlantUp\"/>\n      <xsd:enumeration value=\"textSlantDown\"/>\n      <xsd:enumeration value=\"textCascadeUp\"/>\n      <xsd:enumeration value=\"textCascadeDown\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_GeomGuideName\">\n    <xsd:restriction base=\"xsd:token\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_GeomGuideFormula\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_GeomGuide\">\n    <xsd:attribute name=\"name\" type=\"ST_GeomGuideName\" use=\"required\"/>\n    <xsd:attribute name=\"fmla\" type=\"ST_GeomGuideFormula\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GeomGuideList\">\n    <xsd:sequence>\n      <xsd:element name=\"gd\" type=\"CT_GeomGuide\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AdjCoordinate\">\n    <xsd:union memberTypes=\"ST_Coordinate ST_GeomGuideName\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AdjAngle\">\n    <xsd:union memberTypes=\"ST_Angle ST_GeomGuideName\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_AdjPoint2D\">\n    <xsd:attribute name=\"x\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"y\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GeomRect\">\n    <xsd:attribute name=\"l\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"t\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"r\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"b\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_XYAdjustHandle\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"CT_AdjPoint2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"gdRefX\" type=\"ST_GeomGuideName\" use=\"optional\"/>\n    <xsd:attribute name=\"minX\" type=\"ST_AdjCoordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"maxX\" type=\"ST_AdjCoordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"gdRefY\" type=\"ST_GeomGuideName\" use=\"optional\"/>\n    <xsd:attribute name=\"minY\" type=\"ST_AdjCoordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"maxY\" type=\"ST_AdjCoordinate\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PolarAdjustHandle\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"CT_AdjPoint2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"gdRefR\" type=\"ST_GeomGuideName\" use=\"optional\"/>\n    <xsd:attribute name=\"minR\" type=\"ST_AdjCoordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"maxR\" type=\"ST_AdjCoordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"gdRefAng\" type=\"ST_GeomGuideName\" use=\"optional\"/>\n    <xsd:attribute name=\"minAng\" type=\"ST_AdjAngle\" use=\"optional\"/>\n    <xsd:attribute name=\"maxAng\" type=\"ST_AdjAngle\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConnectionSite\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"CT_AdjPoint2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ang\" type=\"ST_AdjAngle\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AdjustHandleList\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"ahXY\" type=\"CT_XYAdjustHandle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ahPolar\" type=\"CT_PolarAdjustHandle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConnectionSiteList\">\n    <xsd:sequence>\n      <xsd:element name=\"cxn\" type=\"CT_ConnectionSite\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Connection\">\n    <xsd:attribute name=\"id\" type=\"ST_DrawingElementId\" use=\"required\"/>\n    <xsd:attribute name=\"idx\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DMoveTo\">\n    <xsd:sequence>\n      <xsd:element name=\"pt\" type=\"CT_AdjPoint2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DLineTo\">\n    <xsd:sequence>\n      <xsd:element name=\"pt\" type=\"CT_AdjPoint2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DArcTo\">\n    <xsd:attribute name=\"wR\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"hR\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"stAng\" type=\"ST_AdjAngle\" use=\"required\"/>\n    <xsd:attribute name=\"swAng\" type=\"ST_AdjAngle\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DQuadBezierTo\">\n    <xsd:sequence>\n      <xsd:element name=\"pt\" type=\"CT_AdjPoint2D\" minOccurs=\"2\" maxOccurs=\"2\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DCubicBezierTo\">\n    <xsd:sequence>\n      <xsd:element name=\"pt\" type=\"CT_AdjPoint2D\" minOccurs=\"3\" maxOccurs=\"3\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DClose\"/>\n  <xsd:simpleType name=\"ST_PathFillMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"norm\"/>\n      <xsd:enumeration value=\"lighten\"/>\n      <xsd:enumeration value=\"lightenLess\"/>\n      <xsd:enumeration value=\"darken\"/>\n      <xsd:enumeration value=\"darkenLess\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Path2D\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"close\" type=\"CT_Path2DClose\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"moveTo\" type=\"CT_Path2DMoveTo\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnTo\" type=\"CT_Path2DLineTo\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"arcTo\" type=\"CT_Path2DArcTo\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"quadBezTo\" type=\"CT_Path2DQuadBezierTo\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cubicBezTo\" type=\"CT_Path2DCubicBezierTo\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"w\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"h\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"fill\" type=\"ST_PathFillMode\" use=\"optional\" default=\"norm\"/>\n    <xsd:attribute name=\"stroke\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"extrusionOk\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DList\">\n    <xsd:sequence>\n      <xsd:element name=\"path\" type=\"CT_Path2D\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PresetGeometry2D\">\n    <xsd:sequence>\n      <xsd:element name=\"avLst\" type=\"CT_GeomGuideList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prst\" type=\"ST_ShapeType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PresetTextShape\">\n    <xsd:sequence>\n      <xsd:element name=\"avLst\" type=\"CT_GeomGuideList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prst\" type=\"ST_TextShapeType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomGeometry2D\">\n    <xsd:sequence>\n      <xsd:element name=\"avLst\" type=\"CT_GeomGuideList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gdLst\" type=\"CT_GeomGuideList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ahLst\" type=\"CT_AdjustHandleList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cxnLst\" type=\"CT_ConnectionSiteList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rect\" type=\"CT_GeomRect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pathLst\" type=\"CT_Path2DList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Geometry\">\n    <xsd:choice>\n      <xsd:element name=\"custGeom\" type=\"CT_CustomGeometry2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prstGeom\" type=\"CT_PresetGeometry2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_TextGeometry\">\n    <xsd:choice>\n      <xsd:element name=\"custGeom\" type=\"CT_CustomGeometry2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prstTxWarp\" type=\"CT_PresetTextShape\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_LineEndType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"triangle\"/>\n      <xsd:enumeration value=\"stealth\"/>\n      <xsd:enumeration value=\"diamond\"/>\n      <xsd:enumeration value=\"oval\"/>\n      <xsd:enumeration value=\"arrow\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LineEndWidth\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sm\"/>\n      <xsd:enumeration value=\"med\"/>\n      <xsd:enumeration value=\"lg\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LineEndLength\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sm\"/>\n      <xsd:enumeration value=\"med\"/>\n      <xsd:enumeration value=\"lg\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LineEndProperties\">\n    <xsd:attribute name=\"type\" type=\"ST_LineEndType\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"w\" type=\"ST_LineEndWidth\" use=\"optional\"/>\n    <xsd:attribute name=\"len\" type=\"ST_LineEndLength\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_LineFillProperties\">\n    <xsd:choice>\n      <xsd:element name=\"noFill\" type=\"CT_NoFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"solidFill\" type=\"CT_SolidColorFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gradFill\" type=\"CT_GradientFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pattFill\" type=\"CT_PatternFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_LineJoinBevel\"/>\n  <xsd:complexType name=\"CT_LineJoinRound\"/>\n  <xsd:complexType name=\"CT_LineJoinMiterProperties\">\n    <xsd:attribute name=\"lim\" type=\"ST_PositivePercentage\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_LineJoinProperties\">\n    <xsd:choice>\n      <xsd:element name=\"round\" type=\"CT_LineJoinRound\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bevel\" type=\"CT_LineJoinBevel\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"miter\" type=\"CT_LineJoinMiterProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_PresetLineDashVal\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"solid\"/>\n      <xsd:enumeration value=\"dot\"/>\n      <xsd:enumeration value=\"dash\"/>\n      <xsd:enumeration value=\"lgDash\"/>\n      <xsd:enumeration value=\"dashDot\"/>\n      <xsd:enumeration value=\"lgDashDot\"/>\n      <xsd:enumeration value=\"lgDashDotDot\"/>\n      <xsd:enumeration value=\"sysDash\"/>\n      <xsd:enumeration value=\"sysDot\"/>\n      <xsd:enumeration value=\"sysDashDot\"/>\n      <xsd:enumeration value=\"sysDashDotDot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PresetLineDashProperties\">\n    <xsd:attribute name=\"val\" type=\"ST_PresetLineDashVal\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DashStop\">\n    <xsd:attribute name=\"d\" type=\"ST_PositivePercentage\" use=\"required\"/>\n    <xsd:attribute name=\"sp\" type=\"ST_PositivePercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DashStopList\">\n    <xsd:sequence>\n      <xsd:element name=\"ds\" type=\"CT_DashStop\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_LineDashProperties\">\n    <xsd:choice>\n      <xsd:element name=\"prstDash\" type=\"CT_PresetLineDashProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custDash\" type=\"CT_DashStopList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_LineCap\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"rnd\"/>\n      <xsd:enumeration value=\"sq\"/>\n      <xsd:enumeration value=\"flat\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LineWidth\">\n    <xsd:restriction base=\"ST_Coordinate32Unqualified\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"20116800\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PenAlignment\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"in\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CompoundLine\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sng\"/>\n      <xsd:enumeration value=\"dbl\"/>\n      <xsd:enumeration value=\"thickThin\"/>\n      <xsd:enumeration value=\"thinThick\"/>\n      <xsd:enumeration value=\"tri\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LineProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_LineFillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_LineDashProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_LineJoinProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headEnd\" type=\"CT_LineEndProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tailEnd\" type=\"CT_LineEndProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"w\" type=\"ST_LineWidth\" use=\"optional\"/>\n    <xsd:attribute name=\"cap\" type=\"ST_LineCap\" use=\"optional\"/>\n    <xsd:attribute name=\"cmpd\" type=\"ST_CompoundLine\" use=\"optional\"/>\n    <xsd:attribute name=\"algn\" type=\"ST_PenAlignment\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ShapeID\">\n    <xsd:restriction base=\"xsd:token\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ShapeProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"xfrm\" type=\"CT_Transform2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_Geometry\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ln\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scene3d\" type=\"CT_Scene3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sp3d\" type=\"CT_Shape3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bwMode\" type=\"ST_BlackWhiteMode\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShapeProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"xfrm\" type=\"CT_GroupTransform2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scene3d\" type=\"CT_Scene3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bwMode\" type=\"ST_BlackWhiteMode\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StyleMatrixReference\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"idx\" type=\"ST_StyleMatrixColumnIndex\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontReference\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"idx\" type=\"ST_FontCollectionIndex\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShapeStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"lnRef\" type=\"CT_StyleMatrixReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fillRef\" type=\"CT_StyleMatrixReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"effectRef\" type=\"CT_StyleMatrixReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fontRef\" type=\"CT_FontReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DefaultShapeDefinition\">\n    <xsd:sequence>\n      <xsd:element name=\"spPr\" type=\"CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bodyPr\" type=\"CT_TextBodyProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lstStyle\" type=\"CT_TextListStyle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ObjectStyleDefaults\">\n    <xsd:sequence>\n      <xsd:element name=\"spDef\" type=\"CT_DefaultShapeDefinition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnDef\" type=\"CT_DefaultShapeDefinition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txDef\" type=\"CT_DefaultShapeDefinition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EmptyElement\"/>\n  <xsd:complexType name=\"CT_ColorMapping\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bg1\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"tx1\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"bg2\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"tx2\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"accent1\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"accent2\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"accent3\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"accent4\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"accent5\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"accent6\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"hlink\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"folHlink\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorMappingOverride\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"masterClrMapping\" type=\"CT_EmptyElement\"/>\n        <xsd:element name=\"overrideClrMapping\" type=\"CT_ColorMapping\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorSchemeAndMapping\">\n    <xsd:sequence>\n      <xsd:element name=\"clrScheme\" type=\"CT_ColorScheme\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrMap\" type=\"CT_ColorMapping\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorSchemeList\">\n    <xsd:sequence>\n      <xsd:element name=\"extraClrScheme\" type=\"CT_ColorSchemeAndMapping\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OfficeStyleSheet\">\n    <xsd:sequence>\n      <xsd:element name=\"themeElements\" type=\"CT_BaseStyles\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"objectDefaults\" type=\"CT_ObjectStyleDefaults\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extraClrSchemeLst\" type=\"CT_ColorSchemeList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custClrLst\" type=\"CT_CustomColorList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BaseStylesOverride\">\n    <xsd:sequence>\n      <xsd:element name=\"clrScheme\" type=\"CT_ColorScheme\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fontScheme\" type=\"CT_FontScheme\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fmtScheme\" type=\"CT_StyleMatrix\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ClipboardStyleSheet\">\n    <xsd:sequence>\n      <xsd:element name=\"themeElements\" type=\"CT_BaseStyles\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrMap\" type=\"CT_ColorMapping\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"theme\" type=\"CT_OfficeStyleSheet\"/>\n  <xsd:element name=\"themeOverride\" type=\"CT_BaseStylesOverride\"/>\n  <xsd:element name=\"themeManager\" type=\"CT_EmptyElement\"/>\n  <xsd:complexType name=\"CT_TableCellProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"lnL\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnR\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnT\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnB\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnTlToBr\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnBlToTr\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cell3D\" type=\"CT_Cell3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headers\" type=\"CT_Headers\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"marL\" type=\"ST_Coordinate32\" use=\"optional\" default=\"91440\"/>\n    <xsd:attribute name=\"marR\" type=\"ST_Coordinate32\" use=\"optional\" default=\"91440\"/>\n    <xsd:attribute name=\"marT\" type=\"ST_Coordinate32\" use=\"optional\" default=\"45720\"/>\n    <xsd:attribute name=\"marB\" type=\"ST_Coordinate32\" use=\"optional\" default=\"45720\"/>\n    <xsd:attribute name=\"vert\" type=\"ST_TextVerticalType\" use=\"optional\" default=\"horz\"/>\n    <xsd:attribute name=\"anchor\" type=\"ST_TextAnchoringType\" use=\"optional\" default=\"t\"/>\n    <xsd:attribute name=\"anchorCtr\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"horzOverflow\" type=\"ST_TextHorzOverflowType\" use=\"optional\" default=\"clip\"\n    />\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Headers\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"header\" type=\"xsd:string\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableCol\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"w\" type=\"ST_Coordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableGrid\">\n    <xsd:sequence>\n      <xsd:element name=\"gridCol\" type=\"CT_TableCol\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableCell\">\n    <xsd:sequence>\n      <xsd:element name=\"txBody\" type=\"CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tcPr\" type=\"CT_TableCellProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rowSpan\" type=\"xsd:int\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"gridSpan\" type=\"xsd:int\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"hMerge\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"vMerge\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"id\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableRow\">\n    <xsd:sequence>\n      <xsd:element name=\"tc\" type=\"CT_TableCell\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"h\" type=\"ST_Coordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n        <xsd:element name=\"tableStyle\" type=\"CT_TableStyle\"/>\n        <xsd:element name=\"tableStyleId\" type=\"s:ST_Guid\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rtl\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"firstRow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"firstCol\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"lastRow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"lastCol\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"bandRow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"bandCol\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Table\">\n    <xsd:sequence>\n      <xsd:element name=\"tblPr\" type=\"CT_TableProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblGrid\" type=\"CT_TableGrid\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tr\" type=\"CT_TableRow\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"tbl\" type=\"CT_Table\"/>\n  <xsd:complexType name=\"CT_Cell3D\">\n    <xsd:sequence>\n      <xsd:element name=\"bevel\" type=\"CT_Bevel\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lightRig\" type=\"CT_LightRig\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prstMaterial\" type=\"ST_PresetMaterialType\" use=\"optional\" default=\"plastic\"\n    />\n  </xsd:complexType>\n  <xsd:group name=\"EG_ThemeableFillStyle\">\n    <xsd:choice>\n      <xsd:element name=\"fill\" type=\"CT_FillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fillRef\" type=\"CT_StyleMatrixReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_ThemeableLineStyle\">\n    <xsd:choice>\n      <xsd:element name=\"ln\" type=\"CT_LineProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnRef\" type=\"CT_StyleMatrixReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ThemeableEffectStyle\">\n    <xsd:choice>\n      <xsd:element name=\"effect\" type=\"CT_EffectProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"effectRef\" type=\"CT_StyleMatrixReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_ThemeableFontStyles\">\n    <xsd:choice>\n      <xsd:element name=\"font\" type=\"CT_FontCollection\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fontRef\" type=\"CT_FontReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_OnOffStyleType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"on\"/>\n      <xsd:enumeration value=\"off\"/>\n      <xsd:enumeration value=\"def\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TableStyleTextStyle\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ThemeableFontStyles\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"b\" type=\"ST_OnOffStyleType\" use=\"optional\" default=\"def\"/>\n    <xsd:attribute name=\"i\" type=\"ST_OnOffStyleType\" use=\"optional\" default=\"def\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableCellBorderStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"left\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"right\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"top\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bottom\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"insideH\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"insideV\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tl2br\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tr2bl\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableBackgroundStyle\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ThemeableFillStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ThemeableEffectStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableStyleCellStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"tcBdr\" type=\"CT_TableCellBorderStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ThemeableFillStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cell3D\" type=\"CT_Cell3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TablePartStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"tcTxStyle\" type=\"CT_TableStyleTextStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tcStyle\" type=\"CT_TableStyleCellStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"tblBg\" type=\"CT_TableBackgroundStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"wholeTbl\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"band1H\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"band2H\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"band1V\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"band2V\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lastCol\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstCol\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lastRow\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"seCell\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"swCell\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstRow\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"neCell\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"nwCell\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"styleId\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"styleName\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableStyleList\">\n    <xsd:sequence>\n      <xsd:element name=\"tblStyle\" type=\"CT_TableStyle\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"def\" type=\"s:ST_Guid\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"tblStyleLst\" type=\"CT_TableStyleList\"/>\n  <xsd:complexType name=\"CT_TextParagraph\">\n    <xsd:sequence>\n      <xsd:element name=\"pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextRun\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"endParaRPr\" type=\"CT_TextCharacterProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextAnchoringType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"just\"/>\n      <xsd:enumeration value=\"dist\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextVertOverflowType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"overflow\"/>\n      <xsd:enumeration value=\"ellipsis\"/>\n      <xsd:enumeration value=\"clip\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextHorzOverflowType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"overflow\"/>\n      <xsd:enumeration value=\"clip\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextVerticalType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"horz\"/>\n      <xsd:enumeration value=\"vert\"/>\n      <xsd:enumeration value=\"vert270\"/>\n      <xsd:enumeration value=\"wordArtVert\"/>\n      <xsd:enumeration value=\"eaVert\"/>\n      <xsd:enumeration value=\"mongolianVert\"/>\n      <xsd:enumeration value=\"wordArtVertRtl\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextWrappingType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"square\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextColumnCount\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"1\"/>\n      <xsd:maxInclusive value=\"16\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextListStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"defPPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl1pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl2pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl3pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl4pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl5pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl6pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl7pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl8pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl9pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextFontScalePercentOrPercentString\">\n    <xsd:union memberTypes=\"ST_TextFontScalePercent s:ST_Percentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextFontScalePercent\">\n    <xsd:restriction base=\"ST_PercentageDecimal\">\n      <xsd:minInclusive value=\"1000\"/>\n      <xsd:maxInclusive value=\"100000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextNormalAutofit\">\n    <xsd:attribute name=\"fontScale\" type=\"ST_TextFontScalePercentOrPercentString\" use=\"optional\"\n      default=\"100%\"/>\n    <xsd:attribute name=\"lnSpcReduction\" type=\"ST_TextSpacingPercentOrPercentString\" use=\"optional\"\n      default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextShapeAutofit\"/>\n  <xsd:complexType name=\"CT_TextNoAutofit\"/>\n  <xsd:group name=\"EG_TextAutofit\">\n    <xsd:choice>\n      <xsd:element name=\"noAutofit\" type=\"CT_TextNoAutofit\"/>\n      <xsd:element name=\"normAutofit\" type=\"CT_TextNormalAutofit\"/>\n      <xsd:element name=\"spAutoFit\" type=\"CT_TextShapeAutofit\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_TextBodyProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"prstTxWarp\" type=\"CT_PresetTextShape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextAutofit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scene3d\" type=\"CT_Scene3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_Text3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rot\" type=\"ST_Angle\" use=\"optional\"/>\n    <xsd:attribute name=\"spcFirstLastPara\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"vertOverflow\" type=\"ST_TextVertOverflowType\" use=\"optional\"/>\n    <xsd:attribute name=\"horzOverflow\" type=\"ST_TextHorzOverflowType\" use=\"optional\"/>\n    <xsd:attribute name=\"vert\" type=\"ST_TextVerticalType\" use=\"optional\"/>\n    <xsd:attribute name=\"wrap\" type=\"ST_TextWrappingType\" use=\"optional\"/>\n    <xsd:attribute name=\"lIns\" type=\"ST_Coordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"tIns\" type=\"ST_Coordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"rIns\" type=\"ST_Coordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"bIns\" type=\"ST_Coordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"numCol\" type=\"ST_TextColumnCount\" use=\"optional\"/>\n    <xsd:attribute name=\"spcCol\" type=\"ST_PositiveCoordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"rtlCol\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"fromWordArt\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"anchor\" type=\"ST_TextAnchoringType\" use=\"optional\"/>\n    <xsd:attribute name=\"anchorCtr\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"forceAA\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"upright\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"compatLnSpc\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextBody\">\n    <xsd:sequence>\n      <xsd:element name=\"bodyPr\" type=\"CT_TextBodyProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lstStyle\" type=\"CT_TextListStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"p\" type=\"CT_TextParagraph\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextBulletStartAtNum\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"1\"/>\n      <xsd:maxInclusive value=\"32767\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextAutonumberScheme\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"alphaLcParenBoth\"/>\n      <xsd:enumeration value=\"alphaUcParenBoth\"/>\n      <xsd:enumeration value=\"alphaLcParenR\"/>\n      <xsd:enumeration value=\"alphaUcParenR\"/>\n      <xsd:enumeration value=\"alphaLcPeriod\"/>\n      <xsd:enumeration value=\"alphaUcPeriod\"/>\n      <xsd:enumeration value=\"arabicParenBoth\"/>\n      <xsd:enumeration value=\"arabicParenR\"/>\n      <xsd:enumeration value=\"arabicPeriod\"/>\n      <xsd:enumeration value=\"arabicPlain\"/>\n      <xsd:enumeration value=\"romanLcParenBoth\"/>\n      <xsd:enumeration value=\"romanUcParenBoth\"/>\n      <xsd:enumeration value=\"romanLcParenR\"/>\n      <xsd:enumeration value=\"romanUcParenR\"/>\n      <xsd:enumeration value=\"romanLcPeriod\"/>\n      <xsd:enumeration value=\"romanUcPeriod\"/>\n      <xsd:enumeration value=\"circleNumDbPlain\"/>\n      <xsd:enumeration value=\"circleNumWdBlackPlain\"/>\n      <xsd:enumeration value=\"circleNumWdWhitePlain\"/>\n      <xsd:enumeration value=\"arabicDbPeriod\"/>\n      <xsd:enumeration value=\"arabicDbPlain\"/>\n      <xsd:enumeration value=\"ea1ChsPeriod\"/>\n      <xsd:enumeration value=\"ea1ChsPlain\"/>\n      <xsd:enumeration value=\"ea1ChtPeriod\"/>\n      <xsd:enumeration value=\"ea1ChtPlain\"/>\n      <xsd:enumeration value=\"ea1JpnChsDbPeriod\"/>\n      <xsd:enumeration value=\"ea1JpnKorPlain\"/>\n      <xsd:enumeration value=\"ea1JpnKorPeriod\"/>\n      <xsd:enumeration value=\"arabic1Minus\"/>\n      <xsd:enumeration value=\"arabic2Minus\"/>\n      <xsd:enumeration value=\"hebrew2Minus\"/>\n      <xsd:enumeration value=\"thaiAlphaPeriod\"/>\n      <xsd:enumeration value=\"thaiAlphaParenR\"/>\n      <xsd:enumeration value=\"thaiAlphaParenBoth\"/>\n      <xsd:enumeration value=\"thaiNumPeriod\"/>\n      <xsd:enumeration value=\"thaiNumParenR\"/>\n      <xsd:enumeration value=\"thaiNumParenBoth\"/>\n      <xsd:enumeration value=\"hindiAlphaPeriod\"/>\n      <xsd:enumeration value=\"hindiNumPeriod\"/>\n      <xsd:enumeration value=\"hindiNumParenR\"/>\n      <xsd:enumeration value=\"hindiAlpha1Period\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextBulletColorFollowText\"/>\n  <xsd:group name=\"EG_TextBulletColor\">\n    <xsd:choice>\n      <xsd:element name=\"buClrTx\" type=\"CT_TextBulletColorFollowText\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"buClr\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_TextBulletSize\">\n    <xsd:union memberTypes=\"ST_TextBulletSizePercent ST_TextBulletSizeDecimal\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextBulletSizePercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*((2[5-9])|([3-9][0-9])|([1-3][0-9][0-9])|400)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextBulletSizeDecimal\">\n    <xsd:restriction base=\"ST_PercentageDecimal\">\n      <xsd:minInclusive value=\"25000\"/>\n      <xsd:maxInclusive value=\"400000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextBulletSizeFollowText\"/>\n  <xsd:complexType name=\"CT_TextBulletSizePercent\">\n    <xsd:attribute name=\"val\" type=\"ST_TextBulletSizePercent\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextBulletSizePoint\">\n    <xsd:attribute name=\"val\" type=\"ST_TextFontSize\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_TextBulletSize\">\n    <xsd:choice>\n      <xsd:element name=\"buSzTx\" type=\"CT_TextBulletSizeFollowText\"/>\n      <xsd:element name=\"buSzPct\" type=\"CT_TextBulletSizePercent\"/>\n      <xsd:element name=\"buSzPts\" type=\"CT_TextBulletSizePoint\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_TextBulletTypefaceFollowText\"/>\n  <xsd:group name=\"EG_TextBulletTypeface\">\n    <xsd:choice>\n      <xsd:element name=\"buFontTx\" type=\"CT_TextBulletTypefaceFollowText\"/>\n      <xsd:element name=\"buFont\" type=\"CT_TextFont\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_TextAutonumberBullet\">\n    <xsd:attribute name=\"type\" type=\"ST_TextAutonumberScheme\" use=\"required\"/>\n    <xsd:attribute name=\"startAt\" type=\"ST_TextBulletStartAtNum\" use=\"optional\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextCharBullet\">\n    <xsd:attribute name=\"char\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextBlipBullet\">\n    <xsd:sequence>\n      <xsd:element name=\"blip\" type=\"CT_Blip\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextNoBullet\"/>\n  <xsd:group name=\"EG_TextBullet\">\n    <xsd:choice>\n      <xsd:element name=\"buNone\" type=\"CT_TextNoBullet\"/>\n      <xsd:element name=\"buAutoNum\" type=\"CT_TextAutonumberBullet\"/>\n      <xsd:element name=\"buChar\" type=\"CT_TextCharBullet\"/>\n      <xsd:element name=\"buBlip\" type=\"CT_TextBlipBullet\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_TextPoint\">\n    <xsd:union memberTypes=\"ST_TextPointUnqualified s:ST_UniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextPointUnqualified\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"-400000\"/>\n      <xsd:maxInclusive value=\"400000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextNonNegativePoint\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"400000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextFontSize\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"100\"/>\n      <xsd:maxInclusive value=\"400000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextTypeface\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PitchFamily\">\n   <xsd:restriction base=\"xsd:byte\">\n     <xsd:enumeration value=\"00\"/>\n     <xsd:enumeration value=\"01\"/>\n     <xsd:enumeration value=\"02\"/>\n     <xsd:enumeration value=\"16\"/>\n     <xsd:enumeration value=\"17\"/>\n     <xsd:enumeration value=\"18\"/>\n     <xsd:enumeration value=\"32\"/>\n     <xsd:enumeration value=\"33\"/>\n     <xsd:enumeration value=\"34\"/>\n     <xsd:enumeration value=\"48\"/>\n     <xsd:enumeration value=\"49\"/>\n     <xsd:enumeration value=\"50\"/>\n     <xsd:enumeration value=\"64\"/>\n     <xsd:enumeration value=\"65\"/>\n     <xsd:enumeration value=\"66\"/>\n     <xsd:enumeration value=\"80\"/>\n     <xsd:enumeration value=\"81\"/>\n     <xsd:enumeration value=\"82\"/>\n   </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_TextFont\">\n    <xsd:attribute name=\"typeface\" type=\"ST_TextTypeface\" use=\"required\"/>\n    <xsd:attribute name=\"panose\" type=\"s:ST_Panose\" use=\"optional\"/>\n    <xsd:attribute name=\"pitchFamily\" type=\"ST_PitchFamily\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"charset\" type=\"xsd:byte\" use=\"optional\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextUnderlineType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"words\"/>\n      <xsd:enumeration value=\"sng\"/>\n      <xsd:enumeration value=\"dbl\"/>\n      <xsd:enumeration value=\"heavy\"/>\n      <xsd:enumeration value=\"dotted\"/>\n      <xsd:enumeration value=\"dottedHeavy\"/>\n      <xsd:enumeration value=\"dash\"/>\n      <xsd:enumeration value=\"dashHeavy\"/>\n      <xsd:enumeration value=\"dashLong\"/>\n      <xsd:enumeration value=\"dashLongHeavy\"/>\n      <xsd:enumeration value=\"dotDash\"/>\n      <xsd:enumeration value=\"dotDashHeavy\"/>\n      <xsd:enumeration value=\"dotDotDash\"/>\n      <xsd:enumeration value=\"dotDotDashHeavy\"/>\n      <xsd:enumeration value=\"wavy\"/>\n      <xsd:enumeration value=\"wavyHeavy\"/>\n      <xsd:enumeration value=\"wavyDbl\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextUnderlineLineFollowText\"/>\n  <xsd:complexType name=\"CT_TextUnderlineFillFollowText\"/>\n  <xsd:complexType name=\"CT_TextUnderlineFillGroupWrapper\">\n    <xsd:group ref=\"EG_FillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_TextUnderlineLine\">\n    <xsd:choice>\n      <xsd:element name=\"uLnTx\" type=\"CT_TextUnderlineLineFollowText\"/>\n      <xsd:element name=\"uLn\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_TextUnderlineFill\">\n    <xsd:choice>\n      <xsd:element name=\"uFillTx\" type=\"CT_TextUnderlineFillFollowText\"/>\n      <xsd:element name=\"uFill\" type=\"CT_TextUnderlineFillGroupWrapper\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_TextStrikeType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"noStrike\"/>\n      <xsd:enumeration value=\"sngStrike\"/>\n      <xsd:enumeration value=\"dblStrike\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextCapsType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"small\"/>\n      <xsd:enumeration value=\"all\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextCharacterProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"ln\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"highlight\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextUnderlineLine\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextUnderlineFill\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"latin\" type=\"CT_TextFont\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ea\" type=\"CT_TextFont\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cs\" type=\"CT_TextFont\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sym\" type=\"CT_TextFont\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hlinkClick\" type=\"CT_Hyperlink\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hlinkMouseOver\" type=\"CT_Hyperlink\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rtl\" type=\"CT_Boolean\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"kumimoji\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"lang\" type=\"s:ST_Lang\" use=\"optional\"/>\n    <xsd:attribute name=\"altLang\" type=\"s:ST_Lang\" use=\"optional\"/>\n    <xsd:attribute name=\"sz\" type=\"ST_TextFontSize\" use=\"optional\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"u\" type=\"ST_TextUnderlineType\" use=\"optional\"/>\n    <xsd:attribute name=\"strike\" type=\"ST_TextStrikeType\" use=\"optional\"/>\n    <xsd:attribute name=\"kern\" type=\"ST_TextNonNegativePoint\" use=\"optional\"/>\n    <xsd:attribute name=\"cap\" type=\"ST_TextCapsType\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"spc\" type=\"ST_TextPoint\" use=\"optional\"/>\n    <xsd:attribute name=\"normalizeH\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"baseline\" type=\"ST_Percentage\" use=\"optional\"/>\n    <xsd:attribute name=\"noProof\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"dirty\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"err\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"smtClean\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"smtId\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"bmk\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Boolean\">\n    <xsd:attribute name=\"val\" type=\"s:ST_OnOff\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextSpacingPoint\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"158400\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextSpacingPercentOrPercentString\">\n    <xsd:union memberTypes=\"ST_TextSpacingPercent s:ST_Percentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextSpacingPercent\">\n    <xsd:restriction base=\"ST_PercentageDecimal\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"13200000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextSpacingPercent\">\n    <xsd:attribute name=\"val\" type=\"ST_TextSpacingPercentOrPercentString\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextSpacingPoint\">\n    <xsd:attribute name=\"val\" type=\"ST_TextSpacingPoint\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextMargin\">\n    <xsd:restriction base=\"ST_Coordinate32Unqualified\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"51206400\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextIndent\">\n    <xsd:restriction base=\"ST_Coordinate32Unqualified\">\n      <xsd:minInclusive value=\"-51206400\"/>\n      <xsd:maxInclusive value=\"51206400\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextTabAlignType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"dec\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextTabStop\">\n    <xsd:attribute name=\"pos\" type=\"ST_Coordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"algn\" type=\"ST_TextTabAlignType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextTabStopList\">\n    <xsd:sequence>\n      <xsd:element name=\"tab\" type=\"CT_TextTabStop\" minOccurs=\"0\" maxOccurs=\"32\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextLineBreak\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_TextCharacterProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextSpacing\">\n    <xsd:choice>\n      <xsd:element name=\"spcPct\" type=\"CT_TextSpacingPercent\"/>\n      <xsd:element name=\"spcPts\" type=\"CT_TextSpacingPoint\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextAlignType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"just\"/>\n      <xsd:enumeration value=\"justLow\"/>\n      <xsd:enumeration value=\"dist\"/>\n      <xsd:enumeration value=\"thaiDist\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextFontAlignType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"base\"/>\n      <xsd:enumeration value=\"b\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextIndentLevelType\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"8\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextParagraphProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"lnSpc\" type=\"CT_TextSpacing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spcBef\" type=\"CT_TextSpacing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spcAft\" type=\"CT_TextSpacing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextBulletColor\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextBulletSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextBulletTypeface\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextBullet\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tabLst\" type=\"CT_TextTabStopList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"defRPr\" type=\"CT_TextCharacterProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"marL\" type=\"ST_TextMargin\" use=\"optional\"/>\n    <xsd:attribute name=\"marR\" type=\"ST_TextMargin\" use=\"optional\"/>\n    <xsd:attribute name=\"lvl\" type=\"ST_TextIndentLevelType\" use=\"optional\"/>\n    <xsd:attribute name=\"indent\" type=\"ST_TextIndent\" use=\"optional\"/>\n    <xsd:attribute name=\"algn\" type=\"ST_TextAlignType\" use=\"optional\"/>\n    <xsd:attribute name=\"defTabSz\" type=\"ST_Coordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"rtl\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"eaLnBrk\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"fontAlgn\" type=\"ST_TextFontAlignType\" use=\"optional\"/>\n    <xsd:attribute name=\"latinLnBrk\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"hangingPunct\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextField\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_TextCharacterProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"t\" type=\"xsd:string\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"type\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_TextRun\">\n    <xsd:choice>\n      <xsd:element name=\"r\" type=\"CT_RegularTextRun\"/>\n      <xsd:element name=\"br\" type=\"CT_TextLineBreak\"/>\n      <xsd:element name=\"fld\" type=\"CT_TextField\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_RegularTextRun\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_TextCharacterProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"t\" type=\"xsd:string\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/picture\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\" elementFormDefault=\"qualified\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/picture\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:complexType name=\"CT_PictureNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvPicPr\" type=\"a:CT_NonVisualPictureProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Picture\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"nvPicPr\" type=\"CT_PictureNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blipFill\" type=\"a:CT_BlipFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"pic\" type=\"CT_Picture\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing\"\n  elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:import schemaLocation=\"shared-relationshipReference.xsd\"\n    namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"/>\n  <xsd:element name=\"from\" type=\"CT_Marker\"/>\n  <xsd:element name=\"to\" type=\"CT_Marker\"/>\n  <xsd:complexType name=\"CT_AnchorClientData\">\n    <xsd:attribute name=\"fLocksWithSheet\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"fPrintsWithSheet\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvSpPr\" type=\"a:CT_NonVisualDrawingShapeProps\" minOccurs=\"1\" maxOccurs=\"1\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Shape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvSpPr\" type=\"CT_ShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txBody\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"textlink\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fLocksText\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConnectorNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvCxnSpPr\" type=\"a:CT_NonVisualConnectorProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Connector\">\n    <xsd:sequence>\n      <xsd:element name=\"nvCxnSpPr\" type=\"CT_ConnectorNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PictureNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvPicPr\" type=\"a:CT_NonVisualPictureProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Picture\">\n    <xsd:sequence>\n      <xsd:element name=\"nvPicPr\" type=\"CT_PictureNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blipFill\" type=\"a:CT_BlipFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObjectFrameNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGraphicFramePr\" type=\"a:CT_NonVisualGraphicFrameProperties\"\n        minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObjectFrame\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGraphicFramePr\" type=\"CT_GraphicalObjectFrameNonVisual\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"a:CT_Transform2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"a:graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGrpSpPr\" type=\"a:CT_NonVisualGroupDrawingShapeProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGrpSpPr\" type=\"CT_GroupShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grpSpPr\" type=\"a:CT_GroupShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"sp\" type=\"CT_Shape\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_GroupShape\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicalObjectFrame\"/>\n        <xsd:element name=\"cxnSp\" type=\"CT_Connector\"/>\n        <xsd:element name=\"pic\" type=\"CT_Picture\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ObjectChoices\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"sp\" type=\"CT_Shape\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_GroupShape\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicalObjectFrame\"/>\n        <xsd:element name=\"cxnSp\" type=\"CT_Connector\"/>\n        <xsd:element name=\"pic\" type=\"CT_Picture\"/>\n        <xsd:element name=\"contentPart\" type=\"CT_Rel\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_Rel\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ColID\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RowID\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Marker\">\n    <xsd:sequence>\n      <xsd:element name=\"col\" type=\"ST_ColID\"/>\n      <xsd:element name=\"colOff\" type=\"a:ST_Coordinate\"/>\n      <xsd:element name=\"row\" type=\"ST_RowID\"/>\n      <xsd:element name=\"rowOff\" type=\"a:ST_Coordinate\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_EditAs\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"twoCell\"/>\n      <xsd:enumeration value=\"oneCell\"/>\n      <xsd:enumeration value=\"absolute\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TwoCellAnchor\">\n    <xsd:sequence>\n      <xsd:element name=\"from\" type=\"CT_Marker\"/>\n      <xsd:element name=\"to\" type=\"CT_Marker\"/>\n      <xsd:group ref=\"EG_ObjectChoices\"/>\n      <xsd:element name=\"clientData\" type=\"CT_AnchorClientData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"editAs\" type=\"ST_EditAs\" use=\"optional\" default=\"twoCell\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OneCellAnchor\">\n    <xsd:sequence>\n      <xsd:element name=\"from\" type=\"CT_Marker\"/>\n      <xsd:element name=\"ext\" type=\"a:CT_PositiveSize2D\"/>\n      <xsd:group ref=\"EG_ObjectChoices\"/>\n      <xsd:element name=\"clientData\" type=\"CT_AnchorClientData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AbsoluteAnchor\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"a:CT_Point2D\"/>\n      <xsd:element name=\"ext\" type=\"a:CT_PositiveSize2D\"/>\n      <xsd:group ref=\"EG_ObjectChoices\"/>\n      <xsd:element name=\"clientData\" type=\"CT_AnchorClientData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Anchor\">\n    <xsd:choice>\n      <xsd:element name=\"twoCellAnchor\" type=\"CT_TwoCellAnchor\"/>\n      <xsd:element name=\"oneCellAnchor\" type=\"CT_OneCellAnchor\"/>\n      <xsd:element name=\"absoluteAnchor\" type=\"CT_AbsoluteAnchor\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_Drawing\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_Anchor\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"wsDr\" type=\"CT_Drawing\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n  xmlns:dpct=\"http://schemas.openxmlformats.org/drawingml/2006/picture\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\"\n  elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:import schemaLocation=\"wml.xsd\"\n    namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/picture\"\n    schemaLocation=\"dml-picture.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:complexType name=\"CT_EffectExtent\">\n    <xsd:attribute name=\"l\" type=\"a:ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"t\" type=\"a:ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"r\" type=\"a:ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"b\" type=\"a:ST_Coordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_WrapDistance\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Inline\">\n    <xsd:sequence>\n      <xsd:element name=\"extent\" type=\"a:CT_PositiveSize2D\"/>\n      <xsd:element name=\"effectExtent\" type=\"CT_EffectExtent\" minOccurs=\"0\"/>\n      <xsd:element name=\"docPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGraphicFramePr\" type=\"a:CT_NonVisualGraphicFrameProperties\"\n        minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"a:graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"distT\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distB\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distL\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distR\" type=\"ST_WrapDistance\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_WrapText\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"bothSides\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"largest\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_WrapPath\">\n    <xsd:sequence>\n      <xsd:element name=\"start\" type=\"a:CT_Point2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lineTo\" type=\"a:CT_Point2D\" minOccurs=\"2\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"edited\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WrapNone\"/>\n  <xsd:complexType name=\"CT_WrapSquare\">\n    <xsd:sequence>\n      <xsd:element name=\"effectExtent\" type=\"CT_EffectExtent\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"wrapText\" type=\"ST_WrapText\" use=\"required\"/>\n    <xsd:attribute name=\"distT\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distB\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distL\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distR\" type=\"ST_WrapDistance\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WrapTight\">\n    <xsd:sequence>\n      <xsd:element name=\"wrapPolygon\" type=\"CT_WrapPath\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"wrapText\" type=\"ST_WrapText\" use=\"required\"/>\n    <xsd:attribute name=\"distL\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distR\" type=\"ST_WrapDistance\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WrapThrough\">\n    <xsd:sequence>\n      <xsd:element name=\"wrapPolygon\" type=\"CT_WrapPath\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"wrapText\" type=\"ST_WrapText\" use=\"required\"/>\n    <xsd:attribute name=\"distL\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distR\" type=\"ST_WrapDistance\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WrapTopBottom\">\n    <xsd:sequence>\n      <xsd:element name=\"effectExtent\" type=\"CT_EffectExtent\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"distT\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distB\" type=\"ST_WrapDistance\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_WrapType\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"wrapNone\" type=\"CT_WrapNone\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"wrapSquare\" type=\"CT_WrapSquare\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"wrapTight\" type=\"CT_WrapTight\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"wrapThrough\" type=\"CT_WrapThrough\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"wrapTopAndBottom\" type=\"CT_WrapTopBottom\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_PositionOffset\">\n    <xsd:restriction base=\"xsd:int\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AlignH\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"inside\"/>\n      <xsd:enumeration value=\"outside\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RelFromH\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"page\"/>\n      <xsd:enumeration value=\"column\"/>\n      <xsd:enumeration value=\"character\"/>\n      <xsd:enumeration value=\"leftMargin\"/>\n      <xsd:enumeration value=\"rightMargin\"/>\n      <xsd:enumeration value=\"insideMargin\"/>\n      <xsd:enumeration value=\"outsideMargin\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PosH\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"align\" type=\"ST_AlignH\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"posOffset\" type=\"ST_PositionOffset\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n    <xsd:attribute name=\"relativeFrom\" type=\"ST_RelFromH\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AlignV\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"inside\"/>\n      <xsd:enumeration value=\"outside\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RelFromV\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"page\"/>\n      <xsd:enumeration value=\"paragraph\"/>\n      <xsd:enumeration value=\"line\"/>\n      <xsd:enumeration value=\"topMargin\"/>\n      <xsd:enumeration value=\"bottomMargin\"/>\n      <xsd:enumeration value=\"insideMargin\"/>\n      <xsd:enumeration value=\"outsideMargin\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PosV\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"align\" type=\"ST_AlignV\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"posOffset\" type=\"ST_PositionOffset\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n    <xsd:attribute name=\"relativeFrom\" type=\"ST_RelFromV\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Anchor\">\n    <xsd:sequence>\n      <xsd:element name=\"simplePos\" type=\"a:CT_Point2D\"/>\n      <xsd:element name=\"positionH\" type=\"CT_PosH\"/>\n      <xsd:element name=\"positionV\" type=\"CT_PosV\"/>\n      <xsd:element name=\"extent\" type=\"a:CT_PositiveSize2D\"/>\n      <xsd:element name=\"effectExtent\" type=\"CT_EffectExtent\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_WrapType\"/>\n      <xsd:element name=\"docPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGraphicFramePr\" type=\"a:CT_NonVisualGraphicFrameProperties\"\n        minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"a:graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"distT\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distB\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distL\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distR\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"simplePos\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"relativeHeight\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"behindDoc\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"locked\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"layoutInCell\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"allowOverlap\" type=\"xsd:boolean\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TxbxContent\">\n    <xsd:group ref=\"w:EG_BlockLevelElts\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextboxInfo\">\n    <xsd:sequence>\n      <xsd:element name=\"txbxContent\" type=\"CT_TxbxContent\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedShort\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LinkedTextboxInformation\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedShort\" use=\"required\"/>\n    <xsd:attribute name=\"seq\" type=\"xsd:unsignedShort\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WordprocessingShape\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"cNvSpPr\" type=\"a:CT_NonVisualDrawingShapeProps\" minOccurs=\"1\"\n          maxOccurs=\"1\"/>\n        <xsd:element name=\"cNvCnPr\" type=\"a:CT_NonVisualConnectorProperties\" minOccurs=\"1\"\n          maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n        <xsd:element name=\"txbx\" type=\"CT_TextboxInfo\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"linkedTxbx\" type=\"CT_LinkedTextboxInformation\" minOccurs=\"1\"\n          maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"bodyPr\" type=\"a:CT_TextBodyProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"normalEastAsianFlow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicFrame\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvFrPr\" type=\"a:CT_NonVisualGraphicFrameProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"a:CT_Transform2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"a:graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WordprocessingContentPartNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvContentPartPr\" type=\"a:CT_NonVisualContentPartProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WordprocessingContentPart\">\n    <xsd:sequence>\n      <xsd:element name=\"nvContentPartPr\" type=\"CT_WordprocessingContentPartNonVisual\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"a:CT_Transform2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bwMode\" type=\"a:ST_BlackWhiteMode\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WordprocessingGroup\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGrpSpPr\" type=\"a:CT_NonVisualGroupDrawingShapeProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"grpSpPr\" type=\"a:CT_GroupShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element ref=\"wsp\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_WordprocessingGroup\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicFrame\"/>\n        <xsd:element ref=\"dpct:pic\"/>\n        <xsd:element name=\"contentPart\" type=\"CT_WordprocessingContentPart\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WordprocessingCanvas\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"bg\" type=\"a:CT_BackgroundFormatting\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"whole\" type=\"a:CT_WholeE2oFormatting\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element ref=\"wsp\"/>\n        <xsd:element ref=\"dpct:pic\"/>\n        <xsd:element name=\"contentPart\" type=\"CT_WordprocessingContentPart\"/>\n        <xsd:element ref=\"wgp\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicFrame\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"wpc\" type=\"CT_WordprocessingCanvas\"/>\n  <xsd:element name=\"wgp\" type=\"CT_WordprocessingGroup\"/>\n  <xsd:element name=\"wsp\" type=\"CT_WordprocessingShape\"/>\n  <xsd:element name=\"inline\" type=\"CT_Inline\"/>\n  <xsd:element name=\"anchor\" type=\"CT_Anchor\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/presentationml/2006/main\"\n  xmlns:p=\"http://schemas.openxmlformats.org/presentationml/2006/main\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  elementFormDefault=\"qualified\"\n  targetNamespace=\"http://schemas.openxmlformats.org/presentationml/2006/main\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:simpleType name=\"ST_TransitionSideDirectionType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"u\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"d\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TransitionCornerDirectionType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"lu\"/>\n      <xsd:enumeration value=\"ru\"/>\n      <xsd:enumeration value=\"ld\"/>\n      <xsd:enumeration value=\"rd\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TransitionInOutDirectionType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"out\"/>\n      <xsd:enumeration value=\"in\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SideDirectionTransition\">\n    <xsd:attribute name=\"dir\" type=\"ST_TransitionSideDirectionType\" use=\"optional\" default=\"l\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CornerDirectionTransition\">\n    <xsd:attribute name=\"dir\" type=\"ST_TransitionCornerDirectionType\" use=\"optional\" default=\"lu\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TransitionEightDirectionType\">\n    <xsd:union memberTypes=\"ST_TransitionSideDirectionType ST_TransitionCornerDirectionType\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_EightDirectionTransition\">\n    <xsd:attribute name=\"dir\" type=\"ST_TransitionEightDirectionType\" use=\"optional\" default=\"l\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OrientationTransition\">\n    <xsd:attribute name=\"dir\" type=\"ST_Direction\" use=\"optional\" default=\"horz\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_InOutTransition\">\n    <xsd:attribute name=\"dir\" type=\"ST_TransitionInOutDirectionType\" use=\"optional\" default=\"out\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OptionalBlackTransition\">\n    <xsd:attribute name=\"thruBlk\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SplitTransition\">\n    <xsd:attribute name=\"orient\" type=\"ST_Direction\" use=\"optional\" default=\"horz\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_TransitionInOutDirectionType\" use=\"optional\" default=\"out\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WheelTransition\">\n    <xsd:attribute name=\"spokes\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"4\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TransitionStartSoundAction\">\n    <xsd:sequence>\n      <xsd:element minOccurs=\"1\" maxOccurs=\"1\" name=\"snd\" type=\"a:CT_EmbeddedWAVAudioFile\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"loop\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TransitionSoundAction\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"stSnd\" type=\"CT_TransitionStartSoundAction\"/>\n      <xsd:element name=\"endSnd\" type=\"CT_Empty\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TransitionSpeed\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"slow\"/>\n      <xsd:enumeration value=\"med\"/>\n      <xsd:enumeration value=\"fast\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SlideTransition\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n        <xsd:element name=\"blinds\" type=\"CT_OrientationTransition\"/>\n        <xsd:element name=\"checker\" type=\"CT_OrientationTransition\"/>\n        <xsd:element name=\"circle\" type=\"CT_Empty\"/>\n        <xsd:element name=\"dissolve\" type=\"CT_Empty\"/>\n        <xsd:element name=\"comb\" type=\"CT_OrientationTransition\"/>\n        <xsd:element name=\"cover\" type=\"CT_EightDirectionTransition\"/>\n        <xsd:element name=\"cut\" type=\"CT_OptionalBlackTransition\"/>\n        <xsd:element name=\"diamond\" type=\"CT_Empty\"/>\n        <xsd:element name=\"fade\" type=\"CT_OptionalBlackTransition\"/>\n        <xsd:element name=\"newsflash\" type=\"CT_Empty\"/>\n        <xsd:element name=\"plus\" type=\"CT_Empty\"/>\n        <xsd:element name=\"pull\" type=\"CT_EightDirectionTransition\"/>\n        <xsd:element name=\"push\" type=\"CT_SideDirectionTransition\"/>\n        <xsd:element name=\"random\" type=\"CT_Empty\"/>\n        <xsd:element name=\"randomBar\" type=\"CT_OrientationTransition\"/>\n        <xsd:element name=\"split\" type=\"CT_SplitTransition\"/>\n        <xsd:element name=\"strips\" type=\"CT_CornerDirectionTransition\"/>\n        <xsd:element name=\"wedge\" type=\"CT_Empty\"/>\n        <xsd:element name=\"wheel\" type=\"CT_WheelTransition\"/>\n        <xsd:element name=\"wipe\" type=\"CT_SideDirectionTransition\"/>\n        <xsd:element name=\"zoom\" type=\"CT_InOutTransition\"/>\n      </xsd:choice>\n      <xsd:element name=\"sndAc\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_TransitionSoundAction\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"spd\" type=\"ST_TransitionSpeed\" use=\"optional\" default=\"fast\"/>\n    <xsd:attribute name=\"advClick\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"advTm\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLTimeIndefinite\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"indefinite\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTime\">\n    <xsd:union memberTypes=\"xsd:unsignedInt ST_TLTimeIndefinite\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTimeNodeID\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLIterateIntervalTime\">\n    <xsd:attribute name=\"val\" type=\"ST_TLTime\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLIterateIntervalPercentage\">\n    <xsd:attribute name=\"val\" type=\"a:ST_PositivePercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_IterateType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"el\"/>\n      <xsd:enumeration value=\"wd\"/>\n      <xsd:enumeration value=\"lt\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLIterateData\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"tmAbs\" type=\"CT_TLIterateIntervalTime\"/>\n      <xsd:element name=\"tmPct\" type=\"CT_TLIterateIntervalPercentage\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"type\" type=\"ST_IterateType\" use=\"optional\" default=\"el\"/>\n    <xsd:attribute name=\"backwards\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLSubShapeId\">\n    <xsd:attribute name=\"spid\" type=\"a:ST_ShapeID\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTextTargetElement\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"charRg\" type=\"CT_IndexRange\"/>\n      <xsd:element name=\"pRg\" type=\"CT_IndexRange\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLChartSubelementType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"gridLegend\"/>\n      <xsd:enumeration value=\"series\"/>\n      <xsd:enumeration value=\"category\"/>\n      <xsd:enumeration value=\"ptInSeries\"/>\n      <xsd:enumeration value=\"ptInCategory\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLOleChartTargetElement\">\n    <xsd:attribute name=\"type\" type=\"ST_TLChartSubelementType\" use=\"required\"/>\n    <xsd:attribute name=\"lvl\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLShapeTargetElement\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"bg\" type=\"CT_Empty\"/>\n      <xsd:element name=\"subSp\" type=\"CT_TLSubShapeId\"/>\n      <xsd:element name=\"oleChartEl\" type=\"CT_TLOleChartTargetElement\"/>\n      <xsd:element name=\"txEl\" type=\"CT_TLTextTargetElement\"/>\n      <xsd:element name=\"graphicEl\" type=\"a:CT_AnimationElementChoice\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"spid\" type=\"a:ST_DrawingElementId\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTimeTargetElement\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"sldTgt\" type=\"CT_Empty\"/>\n      <xsd:element name=\"sndTgt\" type=\"a:CT_EmbeddedWAVAudioFile\"/>\n      <xsd:element name=\"spTgt\" type=\"CT_TLShapeTargetElement\"/>\n      <xsd:element name=\"inkTgt\" type=\"CT_TLSubShapeId\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTriggerTimeNodeID\">\n    <xsd:attribute name=\"val\" type=\"ST_TLTimeNodeID\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLTriggerRuntimeNode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"first\"/>\n      <xsd:enumeration value=\"last\"/>\n      <xsd:enumeration value=\"all\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLTriggerRuntimeNode\">\n    <xsd:attribute name=\"val\" type=\"ST_TLTriggerRuntimeNode\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLTriggerEvent\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"onBegin\"/>\n      <xsd:enumeration value=\"onEnd\"/>\n      <xsd:enumeration value=\"begin\"/>\n      <xsd:enumeration value=\"end\"/>\n      <xsd:enumeration value=\"onClick\"/>\n      <xsd:enumeration value=\"onDblClick\"/>\n      <xsd:enumeration value=\"onMouseOver\"/>\n      <xsd:enumeration value=\"onMouseOut\"/>\n      <xsd:enumeration value=\"onNext\"/>\n      <xsd:enumeration value=\"onPrev\"/>\n      <xsd:enumeration value=\"onStopAudio\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLTimeCondition\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"tgtEl\" type=\"CT_TLTimeTargetElement\"/>\n      <xsd:element name=\"tn\" type=\"CT_TLTriggerTimeNodeID\"/>\n      <xsd:element name=\"rtn\" type=\"CT_TLTriggerRuntimeNode\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"evt\" use=\"optional\" type=\"ST_TLTriggerEvent\"/>\n    <xsd:attribute name=\"delay\" type=\"ST_TLTime\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTimeConditionList\">\n    <xsd:sequence>\n      <xsd:element name=\"cond\" type=\"CT_TLTimeCondition\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TimeNodeList\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"par\" type=\"CT_TLTimeNodeParallel\"/>\n      <xsd:element name=\"seq\" type=\"CT_TLTimeNodeSequence\"/>\n      <xsd:element name=\"excl\" type=\"CT_TLTimeNodeExclusive\"/>\n      <xsd:element name=\"anim\" type=\"CT_TLAnimateBehavior\"/>\n      <xsd:element name=\"animClr\" type=\"CT_TLAnimateColorBehavior\"/>\n      <xsd:element name=\"animEffect\" type=\"CT_TLAnimateEffectBehavior\"/>\n      <xsd:element name=\"animMotion\" type=\"CT_TLAnimateMotionBehavior\"/>\n      <xsd:element name=\"animRot\" type=\"CT_TLAnimateRotationBehavior\"/>\n      <xsd:element name=\"animScale\" type=\"CT_TLAnimateScaleBehavior\"/>\n      <xsd:element name=\"cmd\" type=\"CT_TLCommandBehavior\"/>\n      <xsd:element name=\"set\" type=\"CT_TLSetBehavior\"/>\n      <xsd:element name=\"audio\" type=\"CT_TLMediaNodeAudio\"/>\n      <xsd:element name=\"video\" type=\"CT_TLMediaNodeVideo\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLTimeNodePresetClassType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"entr\"/>\n      <xsd:enumeration value=\"exit\"/>\n      <xsd:enumeration value=\"emph\"/>\n      <xsd:enumeration value=\"path\"/>\n      <xsd:enumeration value=\"verb\"/>\n      <xsd:enumeration value=\"mediacall\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTimeNodeRestartType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"always\"/>\n      <xsd:enumeration value=\"whenNotActive\"/>\n      <xsd:enumeration value=\"never\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTimeNodeFillType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"remove\"/>\n      <xsd:enumeration value=\"freeze\"/>\n      <xsd:enumeration value=\"hold\"/>\n      <xsd:enumeration value=\"transition\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTimeNodeSyncType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"canSlip\"/>\n      <xsd:enumeration value=\"locked\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTimeNodeMasterRelation\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sameClick\"/>\n      <xsd:enumeration value=\"lastClick\"/>\n      <xsd:enumeration value=\"nextClick\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTimeNodeType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"clickEffect\"/>\n      <xsd:enumeration value=\"withEffect\"/>\n      <xsd:enumeration value=\"afterEffect\"/>\n      <xsd:enumeration value=\"mainSeq\"/>\n      <xsd:enumeration value=\"interactiveSeq\"/>\n      <xsd:enumeration value=\"clickPar\"/>\n      <xsd:enumeration value=\"withGroup\"/>\n      <xsd:enumeration value=\"afterGroup\"/>\n      <xsd:enumeration value=\"tmRoot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLCommonTimeNodeData\">\n    <xsd:sequence>\n      <xsd:element name=\"stCondLst\" type=\"CT_TLTimeConditionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"endCondLst\" type=\"CT_TLTimeConditionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"endSync\" type=\"CT_TLTimeCondition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"iterate\" type=\"CT_TLIterateData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"childTnLst\" type=\"CT_TimeNodeList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"subTnLst\" type=\"CT_TimeNodeList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"ST_TLTimeNodeID\" use=\"optional\"/>\n    <xsd:attribute name=\"presetID\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"presetClass\" type=\"ST_TLTimeNodePresetClassType\" use=\"optional\"/>\n    <xsd:attribute name=\"presetSubtype\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"dur\" type=\"ST_TLTime\" use=\"optional\"/>\n    <xsd:attribute name=\"repeatCount\" type=\"ST_TLTime\" use=\"optional\" default=\"1000\"/>\n    <xsd:attribute name=\"repeatDur\" type=\"ST_TLTime\" use=\"optional\"/>\n    <xsd:attribute name=\"spd\" type=\"a:ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"accel\" type=\"a:ST_PositiveFixedPercentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"decel\" type=\"a:ST_PositiveFixedPercentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"autoRev\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"restart\" type=\"ST_TLTimeNodeRestartType\" use=\"optional\"/>\n    <xsd:attribute name=\"fill\" type=\"ST_TLTimeNodeFillType\" use=\"optional\"/>\n    <xsd:attribute name=\"syncBehavior\" type=\"ST_TLTimeNodeSyncType\" use=\"optional\"/>\n    <xsd:attribute name=\"tmFilter\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"evtFilter\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"display\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"masterRel\" type=\"ST_TLTimeNodeMasterRelation\" use=\"optional\"/>\n    <xsd:attribute name=\"bldLvl\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"grpId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"afterEffect\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"nodeType\" type=\"ST_TLTimeNodeType\" use=\"optional\"/>\n    <xsd:attribute name=\"nodePh\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTimeNodeParallel\">\n    <xsd:sequence>\n      <xsd:element name=\"cTn\" type=\"CT_TLCommonTimeNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLNextActionType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"seek\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLPreviousActionType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"skipTimed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLTimeNodeSequence\">\n    <xsd:sequence>\n      <xsd:element name=\"cTn\" type=\"CT_TLCommonTimeNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prevCondLst\" type=\"CT_TLTimeConditionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"nextCondLst\" type=\"CT_TLTimeConditionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"concurrent\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"prevAc\" type=\"ST_TLPreviousActionType\" use=\"optional\"/>\n    <xsd:attribute name=\"nextAc\" type=\"ST_TLNextActionType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTimeNodeExclusive\">\n    <xsd:sequence>\n      <xsd:element name=\"cTn\" type=\"CT_TLCommonTimeNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLBehaviorAttributeNameList\">\n    <xsd:sequence>\n      <xsd:element name=\"attrName\" type=\"xsd:string\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLBehaviorAdditiveType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"base\"/>\n      <xsd:enumeration value=\"sum\"/>\n      <xsd:enumeration value=\"repl\"/>\n      <xsd:enumeration value=\"mult\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLBehaviorAccumulateType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"always\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLBehaviorTransformType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"pt\"/>\n      <xsd:enumeration value=\"img\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLBehaviorOverrideType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"childStyle\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLCommonBehaviorData\">\n    <xsd:sequence>\n      <xsd:element name=\"cTn\" type=\"CT_TLCommonTimeNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tgtEl\" type=\"CT_TLTimeTargetElement\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"attrNameLst\" type=\"CT_TLBehaviorAttributeNameList\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"additive\" type=\"ST_TLBehaviorAdditiveType\" use=\"optional\"/>\n    <xsd:attribute name=\"accumulate\" type=\"ST_TLBehaviorAccumulateType\" use=\"optional\"/>\n    <xsd:attribute name=\"xfrmType\" type=\"ST_TLBehaviorTransformType\" use=\"optional\"/>\n    <xsd:attribute name=\"from\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"to\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"by\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"rctx\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"override\" type=\"ST_TLBehaviorOverrideType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimVariantBooleanVal\">\n    <xsd:attribute name=\"val\" type=\"xsd:boolean\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimVariantIntegerVal\">\n    <xsd:attribute name=\"val\" type=\"xsd:int\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimVariantFloatVal\">\n    <xsd:attribute name=\"val\" type=\"xsd:float\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimVariantStringVal\">\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimVariant\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"boolVal\" type=\"CT_TLAnimVariantBooleanVal\"/>\n      <xsd:element name=\"intVal\" type=\"CT_TLAnimVariantIntegerVal\"/>\n      <xsd:element name=\"fltVal\" type=\"CT_TLAnimVariantFloatVal\"/>\n      <xsd:element name=\"strVal\" type=\"CT_TLAnimVariantStringVal\"/>\n      <xsd:element name=\"clrVal\" type=\"a:CT_Color\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLTimeAnimateValueTime\">\n    <xsd:union memberTypes=\"a:ST_PositiveFixedPercentage ST_TLTimeIndefinite\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLTimeAnimateValue\">\n    <xsd:sequence>\n      <xsd:element name=\"val\" type=\"CT_TLAnimVariant\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"tm\" type=\"ST_TLTimeAnimateValueTime\" use=\"optional\" default=\"indefinite\"/>\n    <xsd:attribute name=\"fmla\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTimeAnimateValueList\">\n    <xsd:sequence>\n      <xsd:element name=\"tav\" type=\"CT_TLTimeAnimateValue\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLAnimateBehaviorCalcMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"discrete\"/>\n      <xsd:enumeration value=\"lin\"/>\n      <xsd:enumeration value=\"fmla\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLAnimateBehaviorValueType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"str\"/>\n      <xsd:enumeration value=\"num\"/>\n      <xsd:enumeration value=\"clr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLAnimateBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tavLst\" type=\"CT_TLTimeAnimateValueList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"by\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"from\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"to\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"calcmode\" type=\"ST_TLAnimateBehaviorCalcMode\" use=\"optional\"/>\n    <xsd:attribute name=\"valueType\" type=\"ST_TLAnimateBehaviorValueType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLByRgbColorTransform\">\n    <xsd:attribute name=\"r\" type=\"a:ST_FixedPercentage\" use=\"required\"/>\n    <xsd:attribute name=\"g\" type=\"a:ST_FixedPercentage\" use=\"required\"/>\n    <xsd:attribute name=\"b\" type=\"a:ST_FixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLByHslColorTransform\">\n    <xsd:attribute name=\"h\" type=\"a:ST_Angle\" use=\"required\"/>\n    <xsd:attribute name=\"s\" type=\"a:ST_FixedPercentage\" use=\"required\"/>\n    <xsd:attribute name=\"l\" type=\"a:ST_FixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLByAnimateColorTransform\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"rgb\" type=\"CT_TLByRgbColorTransform\"/>\n      <xsd:element name=\"hsl\" type=\"CT_TLByHslColorTransform\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLAnimateColorSpace\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"rgb\"/>\n      <xsd:enumeration value=\"hsl\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLAnimateColorDirection\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"cw\"/>\n      <xsd:enumeration value=\"ccw\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLAnimateColorBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"by\" type=\"CT_TLByAnimateColorTransform\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"from\" type=\"a:CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"to\" type=\"a:CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"clrSpc\" type=\"ST_TLAnimateColorSpace\" use=\"optional\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_TLAnimateColorDirection\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLAnimateEffectTransition\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"in\"/>\n      <xsd:enumeration value=\"out\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLAnimateEffectBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"progress\" type=\"CT_TLAnimVariant\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"transition\" type=\"ST_TLAnimateEffectTransition\" default=\"in\" use=\"optional\"/>\n    <xsd:attribute name=\"filter\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"prLst\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLAnimateMotionBehaviorOrigin\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"parent\"/>\n      <xsd:enumeration value=\"layout\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLAnimateMotionPathEditMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"relative\"/>\n      <xsd:enumeration value=\"fixed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLPoint\">\n    <xsd:attribute name=\"x\" type=\"a:ST_Percentage\" use=\"required\"/>\n    <xsd:attribute name=\"y\" type=\"a:ST_Percentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimateMotionBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"by\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"from\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"to\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rCtr\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"origin\" type=\"ST_TLAnimateMotionBehaviorOrigin\" use=\"optional\"/>\n    <xsd:attribute name=\"path\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"pathEditMode\" type=\"ST_TLAnimateMotionPathEditMode\" use=\"optional\"/>\n    <xsd:attribute name=\"rAng\" type=\"a:ST_Angle\" use=\"optional\"/>\n    <xsd:attribute name=\"ptsTypes\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimateRotationBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"by\" type=\"a:ST_Angle\" use=\"optional\"/>\n    <xsd:attribute name=\"from\" type=\"a:ST_Angle\" use=\"optional\"/>\n    <xsd:attribute name=\"to\" type=\"a:ST_Angle\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimateScaleBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"by\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"from\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"to\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"zoomContents\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLCommandType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"evt\"/>\n      <xsd:enumeration value=\"call\"/>\n      <xsd:enumeration value=\"verb\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLCommandBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute type=\"ST_TLCommandType\" name=\"type\" use=\"optional\"/>\n    <xsd:attribute name=\"cmd\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLSetBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"to\" type=\"CT_TLAnimVariant\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLCommonMediaNodeData\">\n    <xsd:sequence>\n      <xsd:element name=\"cTn\" type=\"CT_TLCommonTimeNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tgtEl\" type=\"CT_TLTimeTargetElement\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"vol\" type=\"a:ST_PositiveFixedPercentage\" default=\"50%\" use=\"optional\"/>\n    <xsd:attribute name=\"mute\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"numSld\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"showWhenStopped\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLMediaNodeAudio\">\n    <xsd:sequence>\n      <xsd:element name=\"cMediaNode\" type=\"CT_TLCommonMediaNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"isNarration\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLMediaNodeVideo\">\n    <xsd:sequence>\n      <xsd:element name=\"cMediaNode\" type=\"CT_TLCommonMediaNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"fullScrn\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:attributeGroup name=\"AG_TLBuild\">\n    <xsd:attribute name=\"spid\" type=\"a:ST_DrawingElementId\" use=\"required\"/>\n    <xsd:attribute name=\"grpId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"uiExpand\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_TLTemplate\">\n    <xsd:sequence>\n      <xsd:element name=\"tnLst\" type=\"CT_TimeNodeList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"lvl\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTemplateList\">\n    <xsd:sequence>\n      <xsd:element name=\"tmpl\" type=\"CT_TLTemplate\" minOccurs=\"0\" maxOccurs=\"9\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLParaBuildType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"allAtOnce\"/>\n      <xsd:enumeration value=\"p\"/>\n      <xsd:enumeration value=\"cust\"/>\n      <xsd:enumeration value=\"whole\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLBuildParagraph\">\n    <xsd:sequence>\n      <xsd:element name=\"tmplLst\" type=\"CT_TLTemplateList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_TLBuild\"/>\n    <xsd:attribute name=\"build\" type=\"ST_TLParaBuildType\" use=\"optional\" default=\"whole\"/>\n    <xsd:attribute name=\"bldLvl\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"animBg\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoUpdateAnimBg\" type=\"xsd:boolean\" default=\"true\" use=\"optional\"/>\n    <xsd:attribute name=\"rev\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"advAuto\" type=\"ST_TLTime\" use=\"optional\" default=\"indefinite\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLDiagramBuildType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"whole\"/>\n      <xsd:enumeration value=\"depthByNode\"/>\n      <xsd:enumeration value=\"depthByBranch\"/>\n      <xsd:enumeration value=\"breadthByNode\"/>\n      <xsd:enumeration value=\"breadthByLvl\"/>\n      <xsd:enumeration value=\"cw\"/>\n      <xsd:enumeration value=\"cwIn\"/>\n      <xsd:enumeration value=\"cwOut\"/>\n      <xsd:enumeration value=\"ccw\"/>\n      <xsd:enumeration value=\"ccwIn\"/>\n      <xsd:enumeration value=\"ccwOut\"/>\n      <xsd:enumeration value=\"inByRing\"/>\n      <xsd:enumeration value=\"outByRing\"/>\n      <xsd:enumeration value=\"up\"/>\n      <xsd:enumeration value=\"down\"/>\n      <xsd:enumeration value=\"allAtOnce\"/>\n      <xsd:enumeration value=\"cust\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLBuildDiagram\">\n    <xsd:attributeGroup ref=\"AG_TLBuild\"/>\n    <xsd:attribute name=\"bld\" type=\"ST_TLDiagramBuildType\" use=\"optional\" default=\"whole\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLOleChartBuildType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"allAtOnce\"/>\n      <xsd:enumeration value=\"series\"/>\n      <xsd:enumeration value=\"category\"/>\n      <xsd:enumeration value=\"seriesEl\"/>\n      <xsd:enumeration value=\"categoryEl\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLOleBuildChart\">\n    <xsd:attributeGroup ref=\"AG_TLBuild\"/>\n    <xsd:attribute name=\"bld\" type=\"ST_TLOleChartBuildType\" use=\"optional\" default=\"allAtOnce\"/>\n    <xsd:attribute name=\"animBg\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLGraphicalObjectBuild\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"bldAsOne\" type=\"CT_Empty\"/>\n      <xsd:element name=\"bldSub\" type=\"a:CT_AnimationGraphicalObjectBuildProperties\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_TLBuild\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BuildList\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"bldP\" type=\"CT_TLBuildParagraph\"/>\n      <xsd:element name=\"bldDgm\" type=\"CT_TLBuildDiagram\"/>\n      <xsd:element name=\"bldOleChart\" type=\"CT_TLOleBuildChart\"/>\n      <xsd:element name=\"bldGraphic\" type=\"CT_TLGraphicalObjectBuild\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideTiming\">\n    <xsd:sequence>\n      <xsd:element name=\"tnLst\" type=\"CT_TimeNodeList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bldLst\" type=\"CT_BuildList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Empty\"/>\n  <xsd:simpleType name=\"ST_Name\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Direction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"horz\"/>\n      <xsd:enumeration value=\"vert\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Index\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_IndexRange\">\n    <xsd:attribute name=\"st\" type=\"ST_Index\" use=\"required\"/>\n    <xsd:attribute name=\"end\" type=\"ST_Index\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideRelationshipListEntry\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideRelationshipList\">\n    <xsd:sequence>\n      <xsd:element name=\"sld\" type=\"CT_SlideRelationshipListEntry\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomShowId\">\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_SlideListChoice\">\n    <xsd:choice>\n      <xsd:element name=\"sldAll\" type=\"CT_Empty\"/>\n      <xsd:element name=\"sldRg\" type=\"CT_IndexRange\"/>\n      <xsd:element name=\"custShow\" type=\"CT_CustomShowId\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_CustomerData\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TagsData\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomerDataList\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"custData\" type=\"CT_CustomerData\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"tags\" type=\"CT_TagsData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Extension\">\n    <xsd:sequence>\n      <xsd:any processContents=\"lax\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"xsd:token\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ExtensionList\">\n    <xsd:sequence>\n      <xsd:element name=\"ext\" type=\"CT_Extension\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_ExtensionList\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExtensionListModify\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"mod\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommentAuthor\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"ST_Name\" use=\"required\"/>\n    <xsd:attribute name=\"initials\" type=\"ST_Name\" use=\"required\"/>\n    <xsd:attribute name=\"lastIdx\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"clrIdx\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommentAuthorList\">\n    <xsd:sequence>\n      <xsd:element name=\"cmAuthor\" type=\"CT_CommentAuthor\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"cmAuthorLst\" type=\"CT_CommentAuthorList\"/>\n  <xsd:complexType name=\"CT_Comment\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"a:CT_Point2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"text\" type=\"xsd:string\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"authorId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"dt\" type=\"xsd:dateTime\" use=\"optional\"/>\n    <xsd:attribute name=\"idx\" type=\"ST_Index\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommentList\">\n    <xsd:sequence>\n      <xsd:element name=\"cm\" type=\"CT_Comment\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"cmLst\" type=\"CT_CommentList\"/>\n  <xsd:attributeGroup name=\"AG_Ole\">\n    <xsd:attribute name=\"spid\" type=\"a:ST_ShapeID\" use=\"optional\"/>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"showAsIcon\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"imgW\" type=\"a:ST_PositiveCoordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"imgH\" type=\"a:ST_PositiveCoordinate32\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:simpleType name=\"ST_OleObjectFollowColorScheme\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"full\"/>\n      <xsd:enumeration value=\"textAndBackground\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_OleObjectEmbed\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"followColorScheme\" type=\"ST_OleObjectFollowColorScheme\" use=\"optional\"\n      default=\"none\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleObjectLink\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"updateAutomatic\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleObject\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"embed\" type=\"CT_OleObjectEmbed\"/>\n        <xsd:element name=\"link\" type=\"CT_OleObjectLink\"/>\n      </xsd:choice>\n      <xsd:element name=\"pic\" type=\"CT_Picture\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Ole\"/>\n    <xsd:attribute name=\"progId\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:element name=\"oleObj\" type=\"CT_OleObject\"/>\n  <xsd:complexType name=\"CT_Control\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pic\" type=\"CT_Picture\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Ole\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ControlList\">\n    <xsd:sequence>\n      <xsd:element name=\"control\" type=\"CT_Control\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SlideId\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"256\"/>\n      <xsd:maxExclusive value=\"2147483648\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SlideIdListEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"ST_SlideId\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideIdList\">\n    <xsd:sequence>\n      <xsd:element name=\"sldId\" type=\"CT_SlideIdListEntry\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SlideMasterId\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"2147483648\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SlideMasterIdListEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"ST_SlideMasterId\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideMasterIdList\">\n    <xsd:sequence>\n      <xsd:element name=\"sldMasterId\" type=\"CT_SlideMasterIdListEntry\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NotesMasterIdListEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NotesMasterIdList\">\n    <xsd:sequence>\n      <xsd:element name=\"notesMasterId\" type=\"CT_NotesMasterIdListEntry\" minOccurs=\"0\" maxOccurs=\"1\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HandoutMasterIdListEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HandoutMasterIdList\">\n    <xsd:sequence>\n      <xsd:element name=\"handoutMasterId\" type=\"CT_HandoutMasterIdListEntry\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EmbeddedFontDataId\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EmbeddedFontListEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"font\" type=\"a:CT_TextFont\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"regular\" type=\"CT_EmbeddedFontDataId\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bold\" type=\"CT_EmbeddedFontDataId\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"italic\" type=\"CT_EmbeddedFontDataId\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"boldItalic\" type=\"CT_EmbeddedFontDataId\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EmbeddedFontList\">\n    <xsd:sequence>\n      <xsd:element name=\"embeddedFont\" type=\"CT_EmbeddedFontListEntry\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SmartTags\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomShow\">\n    <xsd:sequence>\n      <xsd:element name=\"sldLst\" type=\"CT_SlideRelationshipList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"ST_Name\" use=\"required\"/>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomShowList\">\n    <xsd:sequence>\n      <xsd:element name=\"custShow\" type=\"CT_CustomShow\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PhotoAlbumLayout\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"fitToSlide\"/>\n      <xsd:enumeration value=\"1pic\"/>\n      <xsd:enumeration value=\"2pic\"/>\n      <xsd:enumeration value=\"4pic\"/>\n      <xsd:enumeration value=\"1picTitle\"/>\n      <xsd:enumeration value=\"2picTitle\"/>\n      <xsd:enumeration value=\"4picTitle\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PhotoAlbumFrameShape\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"frameStyle1\"/>\n      <xsd:enumeration value=\"frameStyle2\"/>\n      <xsd:enumeration value=\"frameStyle3\"/>\n      <xsd:enumeration value=\"frameStyle4\"/>\n      <xsd:enumeration value=\"frameStyle5\"/>\n      <xsd:enumeration value=\"frameStyle6\"/>\n      <xsd:enumeration value=\"frameStyle7\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PhotoAlbum\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bw\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showCaptions\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"layout\" type=\"ST_PhotoAlbumLayout\" use=\"optional\" default=\"fitToSlide\"/>\n    <xsd:attribute name=\"frame\" type=\"ST_PhotoAlbumFrameShape\" use=\"optional\" default=\"frameStyle1\"\n    />\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SlideSizeCoordinate\">\n    <xsd:restriction base=\"a:ST_PositiveCoordinate32\">\n      <xsd:minInclusive value=\"914400\"/>\n      <xsd:maxInclusive value=\"51206400\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_SlideSizeType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"screen4x3\"/>\n      <xsd:enumeration value=\"letter\"/>\n      <xsd:enumeration value=\"A4\"/>\n      <xsd:enumeration value=\"35mm\"/>\n      <xsd:enumeration value=\"overhead\"/>\n      <xsd:enumeration value=\"banner\"/>\n      <xsd:enumeration value=\"custom\"/>\n      <xsd:enumeration value=\"ledger\"/>\n      <xsd:enumeration value=\"A3\"/>\n      <xsd:enumeration value=\"B4ISO\"/>\n      <xsd:enumeration value=\"B5ISO\"/>\n      <xsd:enumeration value=\"B4JIS\"/>\n      <xsd:enumeration value=\"B5JIS\"/>\n      <xsd:enumeration value=\"hagakiCard\"/>\n      <xsd:enumeration value=\"screen16x9\"/>\n      <xsd:enumeration value=\"screen16x10\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SlideSize\">\n    <xsd:attribute name=\"cx\" type=\"ST_SlideSizeCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"cy\" type=\"ST_SlideSizeCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"type\" type=\"ST_SlideSizeType\" use=\"optional\" default=\"custom\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Kinsoku\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"invalStChars\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"invalEndChars\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BookmarkIdSeed\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"1\"/>\n      <xsd:maxExclusive value=\"2147483648\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ModifyVerifier\">\n    <xsd:attribute name=\"algorithmName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"hashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"saltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"spinValue\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptProviderType\" type=\"s:ST_CryptProv\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptAlgorithmClass\" type=\"s:ST_AlgClass\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptAlgorithmType\" type=\"s:ST_AlgType\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptAlgorithmSid\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"spinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"saltData\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"hashData\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptProvider\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"algIdExt\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"algIdExtSource\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptProviderTypeExt\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptProviderTypeExtSource\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Presentation\">\n    <xsd:sequence>\n      <xsd:element name=\"sldMasterIdLst\" type=\"CT_SlideMasterIdList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"notesMasterIdLst\" type=\"CT_NotesMasterIdList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"handoutMasterIdLst\" type=\"CT_HandoutMasterIdList\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"sldIdLst\" type=\"CT_SlideIdList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sldSz\" type=\"CT_SlideSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"notesSz\" type=\"a:CT_PositiveSize2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smartTags\" type=\"CT_SmartTags\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"embeddedFontLst\" type=\"CT_EmbeddedFontList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custShowLst\" type=\"CT_CustomShowList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"photoAlbum\" type=\"CT_PhotoAlbum\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custDataLst\" type=\"CT_CustomerDataList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"kinsoku\" type=\"CT_Kinsoku\" minOccurs=\"0\"/>\n      <xsd:element name=\"defaultTextStyle\" type=\"a:CT_TextListStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"modifyVerifier\" type=\"CT_ModifyVerifier\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"serverZoom\" type=\"a:ST_Percentage\" use=\"optional\" default=\"50%\"/>\n    <xsd:attribute name=\"firstSlideNum\" type=\"xsd:int\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"showSpecialPlsOnTitleSld\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"rtl\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"removePersonalInfoOnSave\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"compatMode\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"strictFirstAndLastChars\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"embedTrueTypeFonts\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"saveSubsetFonts\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoCompressPictures\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"bookmarkIdSeed\" type=\"ST_BookmarkIdSeed\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"conformance\" type=\"s:ST_ConformanceClass\"/>\n  </xsd:complexType>\n  <xsd:element name=\"presentation\" type=\"CT_Presentation\"/>\n  <xsd:complexType name=\"CT_HtmlPublishProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SlideListChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"showSpeakerNotes\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"target\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"title\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_WebColorType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"browser\"/>\n      <xsd:enumeration value=\"presentationText\"/>\n      <xsd:enumeration value=\"presentationAccent\"/>\n      <xsd:enumeration value=\"whiteTextOnBlack\"/>\n      <xsd:enumeration value=\"blackTextOnWhite\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_WebScreenSize\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"544x376\"/>\n      <xsd:enumeration value=\"640x480\"/>\n      <xsd:enumeration value=\"720x512\"/>\n      <xsd:enumeration value=\"800x600\"/>\n      <xsd:enumeration value=\"1024x768\"/>\n      <xsd:enumeration value=\"1152x882\"/>\n      <xsd:enumeration value=\"1152x900\"/>\n      <xsd:enumeration value=\"1280x1024\"/>\n      <xsd:enumeration value=\"1600x1200\"/>\n      <xsd:enumeration value=\"1800x1400\"/>\n      <xsd:enumeration value=\"1920x1200\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_WebEncoding\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_WebProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"showAnimation\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"resizeGraphics\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"allowPng\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"relyOnVml\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"organizeInFolders\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"useLongFilenames\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"imgSz\" type=\"ST_WebScreenSize\" use=\"optional\" default=\"800x600\"/>\n    <xsd:attribute name=\"encoding\" type=\"ST_WebEncoding\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"clr\" type=\"ST_WebColorType\" use=\"optional\" default=\"whiteTextOnBlack\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PrintWhat\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"slides\"/>\n      <xsd:enumeration value=\"handouts1\"/>\n      <xsd:enumeration value=\"handouts2\"/>\n      <xsd:enumeration value=\"handouts3\"/>\n      <xsd:enumeration value=\"handouts4\"/>\n      <xsd:enumeration value=\"handouts6\"/>\n      <xsd:enumeration value=\"handouts9\"/>\n      <xsd:enumeration value=\"notes\"/>\n      <xsd:enumeration value=\"outline\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PrintColorMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"bw\"/>\n      <xsd:enumeration value=\"gray\"/>\n      <xsd:enumeration value=\"clr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PrintProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prnWhat\" type=\"ST_PrintWhat\" use=\"optional\" default=\"slides\"/>\n    <xsd:attribute name=\"clrMode\" type=\"ST_PrintColorMode\" use=\"optional\" default=\"clr\"/>\n    <xsd:attribute name=\"hiddenSlides\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"scaleToFitPaper\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"frameSlides\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShowInfoBrowse\">\n    <xsd:attribute name=\"showScrollbar\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShowInfoKiosk\">\n    <xsd:attribute name=\"restart\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"300000\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ShowType\">\n    <xsd:choice>\n      <xsd:element name=\"present\" type=\"CT_Empty\"/>\n      <xsd:element name=\"browse\" type=\"CT_ShowInfoBrowse\"/>\n      <xsd:element name=\"kiosk\" type=\"CT_ShowInfoKiosk\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_ShowProperties\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:group ref=\"EG_ShowType\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_SlideListChoice\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"penClr\" type=\"a:CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"loop\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showNarration\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showAnimation\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"useTimings\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PresentationProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"htmlPubPr\" type=\"CT_HtmlPublishProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"webPr\" type=\"CT_WebProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prnPr\" type=\"CT_PrintProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showPr\" type=\"CT_ShowProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrMru\" type=\"a:CT_ColorMRU\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"presentationPr\" type=\"CT_PresentationProperties\"/>\n  <xsd:complexType name=\"CT_HeaderFooter\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"sldNum\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"hdr\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"ftr\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"dt\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PlaceholderType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"title\"/>\n      <xsd:enumeration value=\"body\"/>\n      <xsd:enumeration value=\"ctrTitle\"/>\n      <xsd:enumeration value=\"subTitle\"/>\n      <xsd:enumeration value=\"dt\"/>\n      <xsd:enumeration value=\"sldNum\"/>\n      <xsd:enumeration value=\"ftr\"/>\n      <xsd:enumeration value=\"hdr\"/>\n      <xsd:enumeration value=\"obj\"/>\n      <xsd:enumeration value=\"chart\"/>\n      <xsd:enumeration value=\"tbl\"/>\n      <xsd:enumeration value=\"clipArt\"/>\n      <xsd:enumeration value=\"dgm\"/>\n      <xsd:enumeration value=\"media\"/>\n      <xsd:enumeration value=\"sldImg\"/>\n      <xsd:enumeration value=\"pic\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PlaceholderSize\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"full\"/>\n      <xsd:enumeration value=\"half\"/>\n      <xsd:enumeration value=\"quarter\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Placeholder\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_PlaceholderType\" use=\"optional\" default=\"obj\"/>\n    <xsd:attribute name=\"orient\" type=\"ST_Direction\" use=\"optional\" default=\"horz\"/>\n    <xsd:attribute name=\"sz\" type=\"ST_PlaceholderSize\" use=\"optional\" default=\"full\"/>\n    <xsd:attribute name=\"idx\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"hasCustomPrompt\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ApplicationNonVisualDrawingProps\">\n    <xsd:sequence>\n      <xsd:element name=\"ph\" type=\"CT_Placeholder\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"a:EG_Media\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custDataLst\" type=\"CT_CustomerDataList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"isPhoto\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"userDrawn\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvSpPr\" type=\"a:CT_NonVisualDrawingShapeProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"nvPr\" type=\"CT_ApplicationNonVisualDrawingProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Shape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvSpPr\" type=\"CT_ShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txBody\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"useBgFill\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConnectorNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvCxnSpPr\" type=\"a:CT_NonVisualConnectorProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"nvPr\" type=\"CT_ApplicationNonVisualDrawingProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Connector\">\n    <xsd:sequence>\n      <xsd:element name=\"nvCxnSpPr\" type=\"CT_ConnectorNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PictureNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvPicPr\" type=\"a:CT_NonVisualPictureProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"nvPr\" type=\"CT_ApplicationNonVisualDrawingProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Picture\">\n    <xsd:sequence>\n      <xsd:element name=\"nvPicPr\" type=\"CT_PictureNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blipFill\" type=\"a:CT_BlipFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObjectFrameNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGraphicFramePr\" type=\"a:CT_NonVisualGraphicFrameProperties\"\n        minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"nvPr\" type=\"CT_ApplicationNonVisualDrawingProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObjectFrame\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGraphicFramePr\" type=\"CT_GraphicalObjectFrameNonVisual\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"a:CT_Transform2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"a:graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bwMode\" type=\"a:ST_BlackWhiteMode\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGrpSpPr\" type=\"a:CT_NonVisualGroupDrawingShapeProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"nvPr\" type=\"CT_ApplicationNonVisualDrawingProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGrpSpPr\" type=\"CT_GroupShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grpSpPr\" type=\"a:CT_GroupShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"sp\" type=\"CT_Shape\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_GroupShape\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicalObjectFrame\"/>\n        <xsd:element name=\"cxnSp\" type=\"CT_Connector\"/>\n        <xsd:element name=\"pic\" type=\"CT_Picture\"/>\n        <xsd:element name=\"contentPart\" type=\"CT_Rel\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rel\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_TopLevelSlide\">\n    <xsd:sequence>\n      <xsd:element name=\"clrMap\" type=\"a:CT_ColorMapping\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:group name=\"EG_ChildSlide\">\n    <xsd:sequence>\n      <xsd:element name=\"clrMapOvr\" type=\"a:CT_ColorMappingOverride\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:attributeGroup name=\"AG_ChildSlide\">\n    <xsd:attribute name=\"showMasterSp\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showMasterPhAnim\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_BackgroundProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"a:EG_FillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"a:EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"shadeToTitle\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Background\">\n    <xsd:choice>\n      <xsd:element name=\"bgPr\" type=\"CT_BackgroundProperties\"/>\n      <xsd:element name=\"bgRef\" type=\"a:CT_StyleMatrixReference\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_Background\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_Background\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bwMode\" type=\"a:ST_BlackWhiteMode\" use=\"optional\" default=\"white\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommonSlideData\">\n    <xsd:sequence>\n      <xsd:element name=\"bg\" type=\"CT_Background\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spTree\" type=\"CT_GroupShape\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custDataLst\" type=\"CT_CustomerDataList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"controls\" type=\"CT_ControlList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Slide\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cSld\" type=\"CT_CommonSlideData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ChildSlide\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"transition\" type=\"CT_SlideTransition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"timing\" type=\"CT_SlideTiming\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_ChildSlide\"/>\n    <xsd:attribute name=\"show\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:element name=\"sld\" type=\"CT_Slide\"/>\n  <xsd:simpleType name=\"ST_SlideLayoutType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"title\"/>\n      <xsd:enumeration value=\"tx\"/>\n      <xsd:enumeration value=\"twoColTx\"/>\n      <xsd:enumeration value=\"tbl\"/>\n      <xsd:enumeration value=\"txAndChart\"/>\n      <xsd:enumeration value=\"chartAndTx\"/>\n      <xsd:enumeration value=\"dgm\"/>\n      <xsd:enumeration value=\"chart\"/>\n      <xsd:enumeration value=\"txAndClipArt\"/>\n      <xsd:enumeration value=\"clipArtAndTx\"/>\n      <xsd:enumeration value=\"titleOnly\"/>\n      <xsd:enumeration value=\"blank\"/>\n      <xsd:enumeration value=\"txAndObj\"/>\n      <xsd:enumeration value=\"objAndTx\"/>\n      <xsd:enumeration value=\"objOnly\"/>\n      <xsd:enumeration value=\"obj\"/>\n      <xsd:enumeration value=\"txAndMedia\"/>\n      <xsd:enumeration value=\"mediaAndTx\"/>\n      <xsd:enumeration value=\"objOverTx\"/>\n      <xsd:enumeration value=\"txOverObj\"/>\n      <xsd:enumeration value=\"txAndTwoObj\"/>\n      <xsd:enumeration value=\"twoObjAndTx\"/>\n      <xsd:enumeration value=\"twoObjOverTx\"/>\n      <xsd:enumeration value=\"fourObj\"/>\n      <xsd:enumeration value=\"vertTx\"/>\n      <xsd:enumeration value=\"clipArtAndVertTx\"/>\n      <xsd:enumeration value=\"vertTitleAndTx\"/>\n      <xsd:enumeration value=\"vertTitleAndTxOverChart\"/>\n      <xsd:enumeration value=\"twoObj\"/>\n      <xsd:enumeration value=\"objAndTwoObj\"/>\n      <xsd:enumeration value=\"twoObjAndObj\"/>\n      <xsd:enumeration value=\"cust\"/>\n      <xsd:enumeration value=\"secHead\"/>\n      <xsd:enumeration value=\"twoTxTwoObj\"/>\n      <xsd:enumeration value=\"objTx\"/>\n      <xsd:enumeration value=\"picTx\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SlideLayout\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cSld\" type=\"CT_CommonSlideData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ChildSlide\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"transition\" type=\"CT_SlideTransition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"timing\" type=\"CT_SlideTiming\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hf\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_ChildSlide\"/>\n    <xsd:attribute name=\"matchingName\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"type\" type=\"ST_SlideLayoutType\" use=\"optional\" default=\"cust\"/>\n    <xsd:attribute name=\"preserve\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"userDrawn\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:element name=\"sldLayout\" type=\"CT_SlideLayout\"/>\n  <xsd:complexType name=\"CT_SlideMasterTextStyles\">\n    <xsd:sequence>\n      <xsd:element name=\"titleStyle\" type=\"a:CT_TextListStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bodyStyle\" type=\"a:CT_TextListStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"otherStyle\" type=\"a:CT_TextListStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SlideLayoutId\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"2147483648\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SlideLayoutIdListEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"ST_SlideLayoutId\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideLayoutIdList\">\n    <xsd:sequence>\n      <xsd:element name=\"sldLayoutId\" type=\"CT_SlideLayoutIdListEntry\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideMaster\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cSld\" type=\"CT_CommonSlideData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TopLevelSlide\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sldLayoutIdLst\" type=\"CT_SlideLayoutIdList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"transition\" type=\"CT_SlideTransition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"timing\" type=\"CT_SlideTiming\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hf\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txStyles\" type=\"CT_SlideMasterTextStyles\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"preserve\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:element name=\"sldMaster\" type=\"CT_SlideMaster\"/>\n  <xsd:complexType name=\"CT_HandoutMaster\">\n    <xsd:sequence>\n      <xsd:element name=\"cSld\" type=\"CT_CommonSlideData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TopLevelSlide\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hf\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"handoutMaster\" type=\"CT_HandoutMaster\"/>\n  <xsd:complexType name=\"CT_NotesMaster\">\n    <xsd:sequence>\n      <xsd:element name=\"cSld\" type=\"CT_CommonSlideData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TopLevelSlide\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hf\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"notesStyle\" type=\"a:CT_TextListStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"notesMaster\" type=\"CT_NotesMaster\"/>\n  <xsd:complexType name=\"CT_NotesSlide\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cSld\" type=\"CT_CommonSlideData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ChildSlide\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_ChildSlide\"/>\n  </xsd:complexType>\n  <xsd:element name=\"notes\" type=\"CT_NotesSlide\"/>\n  <xsd:complexType name=\"CT_SlideSyncProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"serverSldId\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"serverSldModifiedTime\" type=\"xsd:dateTime\" use=\"required\"/>\n    <xsd:attribute name=\"clientInsertedTime\" type=\"xsd:dateTime\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"sldSyncPr\" type=\"CT_SlideSyncProperties\"/>\n  <xsd:complexType name=\"CT_StringTag\">\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TagList\">\n    <xsd:sequence>\n      <xsd:element name=\"tag\" type=\"CT_StringTag\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"tagLst\" type=\"CT_TagList\"/>\n  <xsd:simpleType name=\"ST_SplitterBarState\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"minimized\"/>\n      <xsd:enumeration value=\"restored\"/>\n      <xsd:enumeration value=\"maximized\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ViewType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sldView\"/>\n      <xsd:enumeration value=\"sldMasterView\"/>\n      <xsd:enumeration value=\"notesView\"/>\n      <xsd:enumeration value=\"handoutView\"/>\n      <xsd:enumeration value=\"notesMasterView\"/>\n      <xsd:enumeration value=\"outlineView\"/>\n      <xsd:enumeration value=\"sldSorterView\"/>\n      <xsd:enumeration value=\"sldThumbnailView\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_NormalViewPortion\">\n    <xsd:attribute name=\"sz\" type=\"a:ST_PositiveFixedPercentage\" use=\"required\"/>\n    <xsd:attribute name=\"autoAdjust\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NormalViewProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"restoredLeft\" type=\"CT_NormalViewPortion\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"restoredTop\" type=\"CT_NormalViewPortion\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"showOutlineIcons\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"snapVertSplitter\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"vertBarState\" type=\"ST_SplitterBarState\" use=\"optional\" default=\"restored\"/>\n    <xsd:attribute name=\"horzBarState\" type=\"ST_SplitterBarState\" use=\"optional\" default=\"restored\"/>\n    <xsd:attribute name=\"preferSingleView\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommonViewProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"scale\" type=\"a:CT_Scale2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"origin\" type=\"a:CT_Point2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"varScale\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NotesTextViewProperties\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cViewPr\" type=\"CT_CommonViewProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OutlineViewSlideEntry\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n    <xsd:attribute name=\"collapse\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OutlineViewSlideList\">\n    <xsd:sequence>\n      <xsd:element name=\"sld\" type=\"CT_OutlineViewSlideEntry\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OutlineViewProperties\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cViewPr\" type=\"CT_CommonViewProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sldLst\" type=\"CT_OutlineViewSlideList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideSorterViewProperties\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cViewPr\" type=\"CT_CommonViewProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"showFormatting\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Guide\">\n    <xsd:attribute name=\"orient\" type=\"ST_Direction\" use=\"optional\" default=\"vert\"/>\n    <xsd:attribute name=\"pos\" type=\"a:ST_Coordinate32\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GuideList\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"guide\" type=\"CT_Guide\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommonSlideViewProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"cViewPr\" type=\"CT_CommonViewProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"guideLst\" type=\"CT_GuideList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"snapToGrid\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"snapToObjects\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showGuides\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideViewProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"cSldViewPr\" type=\"CT_CommonSlideViewProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NotesViewProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"cSldViewPr\" type=\"CT_CommonSlideViewProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ViewProperties\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"normalViewPr\" type=\"CT_NormalViewProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"slideViewPr\" type=\"CT_SlideViewProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"outlineViewPr\" type=\"CT_OutlineViewProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"notesTextViewPr\" type=\"CT_NotesTextViewProperties\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"sorterViewPr\" type=\"CT_SlideSorterViewProperties\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"notesViewPr\" type=\"CT_NotesViewProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gridSpacing\" type=\"a:CT_PositiveSize2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"lastView\" type=\"ST_ViewType\" use=\"optional\" default=\"sldView\"/>\n    <xsd:attribute name=\"showComments\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:element name=\"viewPr\" type=\"CT_ViewProperties\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/characteristics\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/characteristics\"\n  elementFormDefault=\"qualified\">\n  <xsd:complexType name=\"CT_AdditionalCharacteristics\">\n    <xsd:sequence>\n      <xsd:element name=\"characteristic\" type=\"CT_Characteristic\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Characteristic\">\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"relation\" type=\"ST_Relation\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"vocabulary\" type=\"xsd:anyURI\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Relation\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"ge\"/>\n      <xsd:enumeration value=\"le\"/>\n      <xsd:enumeration value=\"gt\"/>\n      <xsd:enumeration value=\"lt\"/>\n      <xsd:enumeration value=\"eq\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"additionalCharacteristics\" type=\"CT_AdditionalCharacteristics\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/bibliography\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/bibliography\"\n  elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:simpleType name=\"ST_SourceType\">\n    <xsd:restriction base=\"s:ST_String\">\n      <xsd:enumeration value=\"ArticleInAPeriodical\"/>\n      <xsd:enumeration value=\"Book\"/>\n      <xsd:enumeration value=\"BookSection\"/>\n      <xsd:enumeration value=\"JournalArticle\"/>\n      <xsd:enumeration value=\"ConferenceProceedings\"/>\n      <xsd:enumeration value=\"Report\"/>\n      <xsd:enumeration value=\"SoundRecording\"/>\n      <xsd:enumeration value=\"Performance\"/>\n      <xsd:enumeration value=\"Art\"/>\n      <xsd:enumeration value=\"DocumentFromInternetSite\"/>\n      <xsd:enumeration value=\"InternetSite\"/>\n      <xsd:enumeration value=\"Film\"/>\n      <xsd:enumeration value=\"Interview\"/>\n      <xsd:enumeration value=\"Patent\"/>\n      <xsd:enumeration value=\"ElectronicSource\"/>\n      <xsd:enumeration value=\"Case\"/>\n      <xsd:enumeration value=\"Misc\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_NameListType\">\n    <xsd:sequence>\n      <xsd:element name=\"Person\" type=\"CT_PersonType\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PersonType\">\n    <xsd:sequence>\n      <xsd:element name=\"Last\" type=\"s:ST_String\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"First\" type=\"s:ST_String\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"Middle\" type=\"s:ST_String\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NameType\">\n    <xsd:sequence>\n      <xsd:element name=\"NameList\" type=\"CT_NameListType\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NameOrCorporateType\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n        <xsd:element name=\"NameList\" type=\"CT_NameListType\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"Corporate\" minOccurs=\"1\" maxOccurs=\"1\" type=\"s:ST_String\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AuthorType\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"Artist\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Author\" type=\"CT_NameOrCorporateType\"/>\n        <xsd:element name=\"BookAuthor\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Compiler\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Composer\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Conductor\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Counsel\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Director\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Editor\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Interviewee\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Interviewer\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Inventor\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Performer\" type=\"CT_NameOrCorporateType\"/>\n        <xsd:element name=\"ProducerName\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Translator\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Writer\" type=\"CT_NameType\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SourceType\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"AbbreviatedCaseNumber\" type=\"s:ST_String\"/>\n        <xsd:element name=\"AlbumTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Author\" type=\"CT_AuthorType\"/>\n        <xsd:element name=\"BookTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Broadcaster\" type=\"s:ST_String\"/>\n        <xsd:element name=\"BroadcastTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"CaseNumber\" type=\"s:ST_String\"/>\n        <xsd:element name=\"ChapterNumber\" type=\"s:ST_String\"/>\n        <xsd:element name=\"City\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Comments\" type=\"s:ST_String\"/>\n        <xsd:element name=\"ConferenceName\" type=\"s:ST_String\"/>\n        <xsd:element name=\"CountryRegion\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Court\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Day\" type=\"s:ST_String\"/>\n        <xsd:element name=\"DayAccessed\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Department\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Distributor\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Edition\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Guid\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Institution\" type=\"s:ST_String\"/>\n        <xsd:element name=\"InternetSiteTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Issue\" type=\"s:ST_String\"/>\n        <xsd:element name=\"JournalName\" type=\"s:ST_String\"/>\n        <xsd:element name=\"LCID\" type=\"s:ST_Lang\"/>\n        <xsd:element name=\"Medium\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Month\" type=\"s:ST_String\"/>\n        <xsd:element name=\"MonthAccessed\" type=\"s:ST_String\"/>\n        <xsd:element name=\"NumberVolumes\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Pages\" type=\"s:ST_String\"/>\n        <xsd:element name=\"PatentNumber\" type=\"s:ST_String\"/>\n        <xsd:element name=\"PeriodicalTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"ProductionCompany\" type=\"s:ST_String\"/>\n        <xsd:element name=\"PublicationTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Publisher\" type=\"s:ST_String\"/>\n        <xsd:element name=\"RecordingNumber\" type=\"s:ST_String\"/>\n        <xsd:element name=\"RefOrder\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Reporter\" type=\"s:ST_String\"/>\n        <xsd:element name=\"SourceType\" type=\"ST_SourceType\"/>\n        <xsd:element name=\"ShortTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"StandardNumber\" type=\"s:ST_String\"/>\n        <xsd:element name=\"StateProvince\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Station\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Tag\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Theater\" type=\"s:ST_String\"/>\n        <xsd:element name=\"ThesisType\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Title\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Type\" type=\"s:ST_String\"/>\n        <xsd:element name=\"URL\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Version\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Volume\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Year\" type=\"s:ST_String\"/>\n        <xsd:element name=\"YearAccessed\" type=\"s:ST_String\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"Sources\" type=\"CT_Sources\"/>\n  <xsd:complexType name=\"CT_Sources\">\n    <xsd:sequence>\n      <xsd:element name=\"Source\" type=\"CT_SourceType\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"SelectedStyle\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"StyleName\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"URI\" type=\"s:ST_String\"/>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  elementFormDefault=\"qualified\">\n  <xsd:simpleType name=\"ST_Lang\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HexColorRGB\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"3\" fixed=\"true\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Panose\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"10\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CalendarType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"gregorian\"/>\n      <xsd:enumeration value=\"gregorianUs\"/>\n      <xsd:enumeration value=\"gregorianMeFrench\"/>\n      <xsd:enumeration value=\"gregorianArabic\"/>\n      <xsd:enumeration value=\"hijri\"/>\n      <xsd:enumeration value=\"hebrew\"/>\n      <xsd:enumeration value=\"taiwan\"/>\n      <xsd:enumeration value=\"japan\"/>\n      <xsd:enumeration value=\"thai\"/>\n      <xsd:enumeration value=\"korea\"/>\n      <xsd:enumeration value=\"saka\"/>\n      <xsd:enumeration value=\"gregorianXlitEnglish\"/>\n      <xsd:enumeration value=\"gregorianXlitFrench\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AlgClass\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"hash\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CryptProv\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"rsaAES\"/>\n      <xsd:enumeration value=\"rsaFull\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AlgType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"typeAny\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ColorType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Guid\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:pattern value=\"\\{[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}\\}\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OnOff\">\n    <xsd:union memberTypes=\"xsd:boolean ST_OnOff1\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OnOff1\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"on\"/>\n      <xsd:enumeration value=\"off\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_String\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_XmlName\">\n    <xsd:restriction base=\"xsd:NCName\">\n      <xsd:minLength value=\"1\"/>\n      <xsd:maxLength value=\"255\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TrueFalse\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"f\"/>\n      <xsd:enumeration value=\"true\"/>\n      <xsd:enumeration value=\"false\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TrueFalseBlank\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"f\"/>\n      <xsd:enumeration value=\"true\"/>\n      <xsd:enumeration value=\"false\"/>\n      <xsd:enumeration value=\"\"/>\n      <xsd:enumeration value=\"True\"/>\n      <xsd:enumeration value=\"False\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UnsignedDecimalNumber\">\n    <xsd:restriction base=\"xsd:decimal\">\n      <xsd:minInclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TwipsMeasure\">\n    <xsd:union memberTypes=\"ST_UnsignedDecimalNumber ST_PositiveUniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VerticalAlignRun\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"baseline\"/>\n      <xsd:enumeration value=\"superscript\"/>\n      <xsd:enumeration value=\"subscript\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Xstring\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_XAlign\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"inside\"/>\n      <xsd:enumeration value=\"outside\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_YAlign\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"inline\"/>\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"inside\"/>\n      <xsd:enumeration value=\"outside\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConformanceClass\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"strict\"/>\n      <xsd:enumeration value=\"transitional\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UniversalMeasure\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"-?[0-9]+(\\.[0-9]+)?(mm|cm|in|pt|pc|pi)\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositiveUniversalMeasure\">\n    <xsd:restriction base=\"ST_UniversalMeasure\">\n      <xsd:pattern value=\"[0-9]+(\\.[0-9]+)?(mm|cm|in|pt|pc|pi)\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Percentage\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"-?[0-9]+(\\.[0-9]+)?%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FixedPercentage\">\n    <xsd:restriction base=\"ST_Percentage\">\n      <xsd:pattern value=\"-?((100)|([0-9][0-9]?))(\\.[0-9][0-9]?)?%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositivePercentage\">\n    <xsd:restriction base=\"ST_Percentage\">\n      <xsd:pattern value=\"[0-9]+(\\.[0-9]+)?%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositiveFixedPercentage\">\n    <xsd:restriction base=\"ST_Percentage\">\n      <xsd:pattern value=\"((100)|([0-9][0-9]?))(\\.[0-9][0-9]?)?%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/customXml\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/customXml\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:complexType name=\"CT_DatastoreSchemaRef\">\n    <xsd:attribute name=\"uri\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DatastoreSchemaRefs\">\n    <xsd:sequence>\n      <xsd:element name=\"schemaRef\" type=\"CT_DatastoreSchemaRef\" minOccurs=\"0\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DatastoreItem\">\n    <xsd:sequence>\n      <xsd:element name=\"schemaRefs\" type=\"CT_DatastoreSchemaRefs\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"itemID\" type=\"s:ST_Guid\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"datastoreItem\" type=\"CT_DatastoreItem\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/schemaLibrary/2006/main\"\n  targetNamespace=\"http://schemas.openxmlformats.org/schemaLibrary/2006/main\"\n  attributeFormDefault=\"qualified\" elementFormDefault=\"qualified\">\n  <xsd:complexType name=\"CT_Schema\">\n    <xsd:attribute name=\"uri\" type=\"xsd:string\" default=\"\"/>\n    <xsd:attribute name=\"manifestLocation\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"schemaLocation\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"schemaLanguage\" type=\"xsd:token\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SchemaLibrary\">\n    <xsd:sequence>\n      <xsd:element name=\"schema\" type=\"CT_Schema\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"schemaLibrary\" type=\"CT_SchemaLibrary\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/custom-properties\"\n  xmlns:vt=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/custom-properties\"\n  blockDefault=\"#all\" elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"\n    schemaLocation=\"shared-documentPropertiesVariantTypes.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:element name=\"Properties\" type=\"CT_Properties\"/>\n  <xsd:complexType name=\"CT_Properties\">\n    <xsd:sequence>\n      <xsd:element name=\"property\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Property\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Property\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element ref=\"vt:vector\"/>\n      <xsd:element ref=\"vt:array\"/>\n      <xsd:element ref=\"vt:blob\"/>\n      <xsd:element ref=\"vt:oblob\"/>\n      <xsd:element ref=\"vt:empty\"/>\n      <xsd:element ref=\"vt:null\"/>\n      <xsd:element ref=\"vt:i1\"/>\n      <xsd:element ref=\"vt:i2\"/>\n      <xsd:element ref=\"vt:i4\"/>\n      <xsd:element ref=\"vt:i8\"/>\n      <xsd:element ref=\"vt:int\"/>\n      <xsd:element ref=\"vt:ui1\"/>\n      <xsd:element ref=\"vt:ui2\"/>\n      <xsd:element ref=\"vt:ui4\"/>\n      <xsd:element ref=\"vt:ui8\"/>\n      <xsd:element ref=\"vt:uint\"/>\n      <xsd:element ref=\"vt:r4\"/>\n      <xsd:element ref=\"vt:r8\"/>\n      <xsd:element ref=\"vt:decimal\"/>\n      <xsd:element ref=\"vt:lpstr\"/>\n      <xsd:element ref=\"vt:lpwstr\"/>\n      <xsd:element ref=\"vt:bstr\"/>\n      <xsd:element ref=\"vt:date\"/>\n      <xsd:element ref=\"vt:filetime\"/>\n      <xsd:element ref=\"vt:bool\"/>\n      <xsd:element ref=\"vt:cy\"/>\n      <xsd:element ref=\"vt:error\"/>\n      <xsd:element ref=\"vt:stream\"/>\n      <xsd:element ref=\"vt:ostream\"/>\n      <xsd:element ref=\"vt:storage\"/>\n      <xsd:element ref=\"vt:ostorage\"/>\n      <xsd:element ref=\"vt:vstream\"/>\n      <xsd:element ref=\"vt:clsid\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"fmtid\" use=\"required\" type=\"s:ST_Guid\"/>\n    <xsd:attribute name=\"pid\" use=\"required\" type=\"xsd:int\"/>\n    <xsd:attribute name=\"name\" use=\"optional\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"linkTarget\" use=\"optional\" type=\"xsd:string\"/>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/extended-properties\"\n  xmlns:vt=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/extended-properties\"\n  elementFormDefault=\"qualified\" blockDefault=\"#all\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"\n    schemaLocation=\"shared-documentPropertiesVariantTypes.xsd\"/>\n  <xsd:element name=\"Properties\" type=\"CT_Properties\"/>\n  <xsd:complexType name=\"CT_Properties\">\n    <xsd:all>\n      <xsd:element name=\"Template\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"Manager\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"Company\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"Pages\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"Words\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"Characters\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"PresentationFormat\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"Lines\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"Paragraphs\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"Slides\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"Notes\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"TotalTime\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"HiddenSlides\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"MMClips\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"ScaleCrop\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:boolean\"/>\n      <xsd:element name=\"HeadingPairs\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_VectorVariant\"/>\n      <xsd:element name=\"TitlesOfParts\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_VectorLpstr\"/>\n      <xsd:element name=\"LinksUpToDate\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:boolean\"/>\n      <xsd:element name=\"CharactersWithSpaces\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"SharedDoc\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:boolean\"/>\n      <xsd:element name=\"HyperlinkBase\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"HLinks\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_VectorVariant\"/>\n      <xsd:element name=\"HyperlinksChanged\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:boolean\"/>\n      <xsd:element name=\"DigSig\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_DigSigBlob\"/>\n      <xsd:element name=\"Application\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"AppVersion\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"DocSecurity\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n    </xsd:all>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VectorVariant\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element ref=\"vt:vector\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VectorLpstr\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element ref=\"vt:vector\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DigSigBlob\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element ref=\"vt:blob\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"\n  blockDefault=\"#all\" elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:simpleType name=\"ST_VectorBaseType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"variant\"/>\n      <xsd:enumeration value=\"i1\"/>\n      <xsd:enumeration value=\"i2\"/>\n      <xsd:enumeration value=\"i4\"/>\n      <xsd:enumeration value=\"i8\"/>\n      <xsd:enumeration value=\"ui1\"/>\n      <xsd:enumeration value=\"ui2\"/>\n      <xsd:enumeration value=\"ui4\"/>\n      <xsd:enumeration value=\"ui8\"/>\n      <xsd:enumeration value=\"r4\"/>\n      <xsd:enumeration value=\"r8\"/>\n      <xsd:enumeration value=\"lpstr\"/>\n      <xsd:enumeration value=\"lpwstr\"/>\n      <xsd:enumeration value=\"bstr\"/>\n      <xsd:enumeration value=\"date\"/>\n      <xsd:enumeration value=\"filetime\"/>\n      <xsd:enumeration value=\"bool\"/>\n      <xsd:enumeration value=\"cy\"/>\n      <xsd:enumeration value=\"error\"/>\n      <xsd:enumeration value=\"clsid\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ArrayBaseType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"variant\"/>\n      <xsd:enumeration value=\"i1\"/>\n      <xsd:enumeration value=\"i2\"/>\n      <xsd:enumeration value=\"i4\"/>\n      <xsd:enumeration value=\"int\"/>\n      <xsd:enumeration value=\"ui1\"/>\n      <xsd:enumeration value=\"ui2\"/>\n      <xsd:enumeration value=\"ui4\"/>\n      <xsd:enumeration value=\"uint\"/>\n      <xsd:enumeration value=\"r4\"/>\n      <xsd:enumeration value=\"r8\"/>\n      <xsd:enumeration value=\"decimal\"/>\n      <xsd:enumeration value=\"bstr\"/>\n      <xsd:enumeration value=\"date\"/>\n      <xsd:enumeration value=\"bool\"/>\n      <xsd:enumeration value=\"cy\"/>\n      <xsd:enumeration value=\"error\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Cy\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"\\s*[0-9]*\\.[0-9]{4}\\s*\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Error\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"\\s*0x[0-9A-Za-z]{8}\\s*\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Empty\"/>\n  <xsd:complexType name=\"CT_Null\"/>\n  <xsd:complexType name=\"CT_Vector\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element ref=\"variant\"/>\n      <xsd:element ref=\"i1\"/>\n      <xsd:element ref=\"i2\"/>\n      <xsd:element ref=\"i4\"/>\n      <xsd:element ref=\"i8\"/>\n      <xsd:element ref=\"ui1\"/>\n      <xsd:element ref=\"ui2\"/>\n      <xsd:element ref=\"ui4\"/>\n      <xsd:element ref=\"ui8\"/>\n      <xsd:element ref=\"r4\"/>\n      <xsd:element ref=\"r8\"/>\n      <xsd:element ref=\"lpstr\"/>\n      <xsd:element ref=\"lpwstr\"/>\n      <xsd:element ref=\"bstr\"/>\n      <xsd:element ref=\"date\"/>\n      <xsd:element ref=\"filetime\"/>\n      <xsd:element ref=\"bool\"/>\n      <xsd:element ref=\"cy\"/>\n      <xsd:element ref=\"error\"/>\n      <xsd:element ref=\"clsid\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"baseType\" type=\"ST_VectorBaseType\" use=\"required\"/>\n    <xsd:attribute name=\"size\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Array\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element ref=\"variant\"/>\n      <xsd:element ref=\"i1\"/>\n      <xsd:element ref=\"i2\"/>\n      <xsd:element ref=\"i4\"/>\n      <xsd:element ref=\"int\"/>\n      <xsd:element ref=\"ui1\"/>\n      <xsd:element ref=\"ui2\"/>\n      <xsd:element ref=\"ui4\"/>\n      <xsd:element ref=\"uint\"/>\n      <xsd:element ref=\"r4\"/>\n      <xsd:element ref=\"r8\"/>\n      <xsd:element ref=\"decimal\"/>\n      <xsd:element ref=\"bstr\"/>\n      <xsd:element ref=\"date\"/>\n      <xsd:element ref=\"bool\"/>\n      <xsd:element ref=\"error\"/>\n      <xsd:element ref=\"cy\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"lBounds\" type=\"xsd:int\" use=\"required\"/>\n    <xsd:attribute name=\"uBounds\" type=\"xsd:int\" use=\"required\"/>\n    <xsd:attribute name=\"baseType\" type=\"ST_ArrayBaseType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Variant\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element ref=\"variant\"/>\n      <xsd:element ref=\"vector\"/>\n      <xsd:element ref=\"array\"/>\n      <xsd:element ref=\"blob\"/>\n      <xsd:element ref=\"oblob\"/>\n      <xsd:element ref=\"empty\"/>\n      <xsd:element ref=\"null\"/>\n      <xsd:element ref=\"i1\"/>\n      <xsd:element ref=\"i2\"/>\n      <xsd:element ref=\"i4\"/>\n      <xsd:element ref=\"i8\"/>\n      <xsd:element ref=\"int\"/>\n      <xsd:element ref=\"ui1\"/>\n      <xsd:element ref=\"ui2\"/>\n      <xsd:element ref=\"ui4\"/>\n      <xsd:element ref=\"ui8\"/>\n      <xsd:element ref=\"uint\"/>\n      <xsd:element ref=\"r4\"/>\n      <xsd:element ref=\"r8\"/>\n      <xsd:element ref=\"decimal\"/>\n      <xsd:element ref=\"lpstr\"/>\n      <xsd:element ref=\"lpwstr\"/>\n      <xsd:element ref=\"bstr\"/>\n      <xsd:element ref=\"date\"/>\n      <xsd:element ref=\"filetime\"/>\n      <xsd:element ref=\"bool\"/>\n      <xsd:element ref=\"cy\"/>\n      <xsd:element ref=\"error\"/>\n      <xsd:element ref=\"stream\"/>\n      <xsd:element ref=\"ostream\"/>\n      <xsd:element ref=\"storage\"/>\n      <xsd:element ref=\"ostorage\"/>\n      <xsd:element ref=\"vstream\"/>\n      <xsd:element ref=\"clsid\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Vstream\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"xsd:base64Binary\">\n        <xsd:attribute name=\"version\" type=\"s:ST_Guid\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n  <xsd:element name=\"variant\" type=\"CT_Variant\"/>\n  <xsd:element name=\"vector\" type=\"CT_Vector\"/>\n  <xsd:element name=\"array\" type=\"CT_Array\"/>\n  <xsd:element name=\"blob\" type=\"xsd:base64Binary\"/>\n  <xsd:element name=\"oblob\" type=\"xsd:base64Binary\"/>\n  <xsd:element name=\"empty\" type=\"CT_Empty\"/>\n  <xsd:element name=\"null\" type=\"CT_Null\"/>\n  <xsd:element name=\"i1\" type=\"xsd:byte\"/>\n  <xsd:element name=\"i2\" type=\"xsd:short\"/>\n  <xsd:element name=\"i4\" type=\"xsd:int\"/>\n  <xsd:element name=\"i8\" type=\"xsd:long\"/>\n  <xsd:element name=\"int\" type=\"xsd:int\"/>\n  <xsd:element name=\"ui1\" type=\"xsd:unsignedByte\"/>\n  <xsd:element name=\"ui2\" type=\"xsd:unsignedShort\"/>\n  <xsd:element name=\"ui4\" type=\"xsd:unsignedInt\"/>\n  <xsd:element name=\"ui8\" type=\"xsd:unsignedLong\"/>\n  <xsd:element name=\"uint\" type=\"xsd:unsignedInt\"/>\n  <xsd:element name=\"r4\" type=\"xsd:float\"/>\n  <xsd:element name=\"r8\" type=\"xsd:double\"/>\n  <xsd:element name=\"decimal\" type=\"xsd:decimal\"/>\n  <xsd:element name=\"lpstr\" type=\"xsd:string\"/>\n  <xsd:element name=\"lpwstr\" type=\"xsd:string\"/>\n  <xsd:element name=\"bstr\" type=\"xsd:string\"/>\n  <xsd:element name=\"date\" type=\"xsd:dateTime\"/>\n  <xsd:element name=\"filetime\" type=\"xsd:dateTime\"/>\n  <xsd:element name=\"bool\" type=\"xsd:boolean\"/>\n  <xsd:element name=\"cy\" type=\"ST_Cy\"/>\n  <xsd:element name=\"error\" type=\"ST_Error\"/>\n  <xsd:element name=\"stream\" type=\"xsd:base64Binary\"/>\n  <xsd:element name=\"ostream\" type=\"xsd:base64Binary\"/>\n  <xsd:element name=\"storage\" type=\"xsd:base64Binary\"/>\n  <xsd:element name=\"ostorage\" type=\"xsd:base64Binary\"/>\n  <xsd:element name=\"vstream\" type=\"CT_Vstream\"/>\n  <xsd:element name=\"clsid\" type=\"s:ST_Guid\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/math\"\n  xmlns:m=\"http://schemas.openxmlformats.org/officeDocument/2006/math\"\n  xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/math\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n    schemaLocation=\"wml.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:import namespace=\"http://www.w3.org/XML/1998/namespace\" schemaLocation=\"xml.xsd\"/>\n  <xsd:simpleType name=\"ST_Integer255\">\n    <xsd:restriction base=\"xsd:integer\">\n      <xsd:minInclusive value=\"1\"/>\n      <xsd:maxInclusive value=\"255\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Integer255\">\n    <xsd:attribute name=\"val\" type=\"ST_Integer255\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Integer2\">\n    <xsd:restriction base=\"xsd:integer\">\n      <xsd:minInclusive value=\"-2\"/>\n      <xsd:maxInclusive value=\"2\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Integer2\">\n    <xsd:attribute name=\"val\" type=\"ST_Integer2\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SpacingRule\">\n    <xsd:restriction base=\"xsd:integer\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"4\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SpacingRule\">\n    <xsd:attribute name=\"val\" type=\"ST_SpacingRule\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_UnSignedInteger\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_UnSignedInteger\">\n    <xsd:attribute name=\"val\" type=\"ST_UnSignedInteger\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Char\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:maxLength value=\"1\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Char\">\n    <xsd:attribute name=\"val\" type=\"ST_Char\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OnOff\">\n    <xsd:attribute name=\"val\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_String\">\n    <xsd:attribute name=\"val\" type=\"s:ST_String\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_XAlign\">\n    <xsd:attribute name=\"val\" type=\"s:ST_XAlign\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_YAlign\">\n    <xsd:attribute name=\"val\" type=\"s:ST_YAlign\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Shp\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"centered\"/>\n      <xsd:enumeration value=\"match\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Shp\">\n    <xsd:attribute name=\"val\" type=\"ST_Shp\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"bar\"/>\n      <xsd:enumeration value=\"skw\"/>\n      <xsd:enumeration value=\"lin\"/>\n      <xsd:enumeration value=\"noBar\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FType\">\n    <xsd:attribute name=\"val\" type=\"ST_FType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LimLoc\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"undOvr\"/>\n      <xsd:enumeration value=\"subSup\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LimLoc\">\n    <xsd:attribute name=\"val\" type=\"ST_LimLoc\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TopBot\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"bot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TopBot\">\n    <xsd:attribute name=\"val\" type=\"ST_TopBot\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Script\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"roman\"/>\n      <xsd:enumeration value=\"script\"/>\n      <xsd:enumeration value=\"fraktur\"/>\n      <xsd:enumeration value=\"double-struck\"/>\n      <xsd:enumeration value=\"sans-serif\"/>\n      <xsd:enumeration value=\"monospace\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Script\">\n    <xsd:attribute name=\"val\" type=\"ST_Script\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Style\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"p\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"i\"/>\n      <xsd:enumeration value=\"bi\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Style\">\n    <xsd:attribute name=\"val\" type=\"ST_Style\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ManualBreak\">\n    <xsd:attribute name=\"alnAt\" type=\"ST_Integer255\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ScriptStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"scr\" minOccurs=\"0\" type=\"CT_Script\"/>\n      <xsd:element name=\"sty\" minOccurs=\"0\" type=\"CT_Style\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_RPR\">\n    <xsd:sequence>\n      <xsd:element name=\"lit\" minOccurs=\"0\" type=\"CT_OnOff\"/>\n      <xsd:choice>\n        <xsd:element name=\"nor\" minOccurs=\"0\" type=\"CT_OnOff\"/>\n        <xsd:sequence>\n          <xsd:group ref=\"EG_ScriptStyle\"/>\n        </xsd:sequence>\n      </xsd:choice>\n      <xsd:element name=\"brk\" minOccurs=\"0\" type=\"CT_ManualBreak\"/>\n      <xsd:element name=\"aln\" minOccurs=\"0\" type=\"CT_OnOff\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Text\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"s:ST_String\">\n        <xsd:attribute ref=\"xml:space\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_R\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_RPR\" minOccurs=\"0\"/>\n      <xsd:group ref=\"w:EG_RPr\" minOccurs=\"0\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:group ref=\"w:EG_RunInnerContent\"/>\n        <xsd:element name=\"t\" type=\"CT_Text\" minOccurs=\"0\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CtrlPr\">\n    <xsd:sequence>\n      <xsd:group ref=\"w:EG_RPrMath\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AccPr\">\n    <xsd:sequence>\n      <xsd:element name=\"chr\" type=\"CT_Char\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Acc\">\n    <xsd:sequence>\n      <xsd:element name=\"accPr\" type=\"CT_AccPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BarPr\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"CT_TopBot\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Bar\">\n    <xsd:sequence>\n      <xsd:element name=\"barPr\" type=\"CT_BarPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BoxPr\">\n    <xsd:sequence>\n      <xsd:element name=\"opEmu\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noBreak\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"diff\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"brk\" type=\"CT_ManualBreak\" minOccurs=\"0\"/>\n      <xsd:element name=\"aln\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Box\">\n    <xsd:sequence>\n      <xsd:element name=\"boxPr\" type=\"CT_BoxPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BorderBoxPr\">\n    <xsd:sequence>\n      <xsd:element name=\"hideTop\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hideBot\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hideLeft\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hideRight\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"strikeH\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"strikeV\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"strikeBLTR\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"strikeTLBR\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BorderBox\">\n    <xsd:sequence>\n      <xsd:element name=\"borderBoxPr\" type=\"CT_BorderBoxPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DPr\">\n    <xsd:sequence>\n      <xsd:element name=\"begChr\" type=\"CT_Char\" minOccurs=\"0\"/>\n      <xsd:element name=\"sepChr\" type=\"CT_Char\" minOccurs=\"0\"/>\n      <xsd:element name=\"endChr\" type=\"CT_Char\" minOccurs=\"0\"/>\n      <xsd:element name=\"grow\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"shp\" type=\"CT_Shp\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_D\">\n    <xsd:sequence>\n      <xsd:element name=\"dPr\" type=\"CT_DPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EqArrPr\">\n    <xsd:sequence>\n      <xsd:element name=\"baseJc\" type=\"CT_YAlign\" minOccurs=\"0\"/>\n      <xsd:element name=\"maxDist\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"objDist\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"rSpRule\" type=\"CT_SpacingRule\" minOccurs=\"0\"/>\n      <xsd:element name=\"rSp\" type=\"CT_UnSignedInteger\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EqArr\">\n    <xsd:sequence>\n      <xsd:element name=\"eqArrPr\" type=\"CT_EqArrPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FPr\">\n    <xsd:sequence>\n      <xsd:element name=\"type\" type=\"CT_FType\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_F\">\n    <xsd:sequence>\n      <xsd:element name=\"fPr\" type=\"CT_FPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"num\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"den\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FuncPr\">\n    <xsd:sequence>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Func\">\n    <xsd:sequence>\n      <xsd:element name=\"funcPr\" type=\"CT_FuncPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"fName\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupChrPr\">\n    <xsd:sequence>\n      <xsd:element name=\"chr\" type=\"CT_Char\" minOccurs=\"0\"/>\n      <xsd:element name=\"pos\" type=\"CT_TopBot\" minOccurs=\"0\"/>\n      <xsd:element name=\"vertJc\" type=\"CT_TopBot\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupChr\">\n    <xsd:sequence>\n      <xsd:element name=\"groupChrPr\" type=\"CT_GroupChrPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LimLowPr\">\n    <xsd:sequence>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LimLow\">\n    <xsd:sequence>\n      <xsd:element name=\"limLowPr\" type=\"CT_LimLowPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"lim\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LimUppPr\">\n    <xsd:sequence>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LimUpp\">\n    <xsd:sequence>\n      <xsd:element name=\"limUppPr\" type=\"CT_LimUppPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"lim\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MCPr\">\n    <xsd:sequence>\n      <xsd:element name=\"count\" type=\"CT_Integer255\" minOccurs=\"0\"/>\n      <xsd:element name=\"mcJc\" type=\"CT_XAlign\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MC\">\n    <xsd:sequence>\n      <xsd:element name=\"mcPr\" type=\"CT_MCPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MCS\">\n    <xsd:sequence>\n      <xsd:element name=\"mc\" type=\"CT_MC\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MPr\">\n    <xsd:sequence>\n      <xsd:element name=\"baseJc\" type=\"CT_YAlign\" minOccurs=\"0\"/>\n      <xsd:element name=\"plcHide\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"rSpRule\" type=\"CT_SpacingRule\" minOccurs=\"0\"/>\n      <xsd:element name=\"cGpRule\" type=\"CT_SpacingRule\" minOccurs=\"0\"/>\n      <xsd:element name=\"rSp\" type=\"CT_UnSignedInteger\" minOccurs=\"0\"/>\n      <xsd:element name=\"cSp\" type=\"CT_UnSignedInteger\" minOccurs=\"0\"/>\n      <xsd:element name=\"cGp\" type=\"CT_UnSignedInteger\" minOccurs=\"0\"/>\n      <xsd:element name=\"mcs\" type=\"CT_MCS\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MR\">\n    <xsd:sequence>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_M\">\n    <xsd:sequence>\n      <xsd:element name=\"mPr\" type=\"CT_MPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"mr\" type=\"CT_MR\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NaryPr\">\n    <xsd:sequence>\n      <xsd:element name=\"chr\" type=\"CT_Char\" minOccurs=\"0\"/>\n      <xsd:element name=\"limLoc\" type=\"CT_LimLoc\" minOccurs=\"0\"/>\n      <xsd:element name=\"grow\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"subHide\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"supHide\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Nary\">\n    <xsd:sequence>\n      <xsd:element name=\"naryPr\" type=\"CT_NaryPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"sub\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"sup\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PhantPr\">\n    <xsd:sequence>\n      <xsd:element name=\"show\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"zeroWid\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"zeroAsc\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"zeroDesc\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"transp\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Phant\">\n    <xsd:sequence>\n      <xsd:element name=\"phantPr\" type=\"CT_PhantPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RadPr\">\n    <xsd:sequence>\n      <xsd:element name=\"degHide\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rad\">\n    <xsd:sequence>\n      <xsd:element name=\"radPr\" type=\"CT_RadPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"deg\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SPrePr\">\n    <xsd:sequence>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SPre\">\n    <xsd:sequence>\n      <xsd:element name=\"sPrePr\" type=\"CT_SPrePr\" minOccurs=\"0\"/>\n      <xsd:element name=\"sub\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"sup\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SSubPr\">\n    <xsd:sequence>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SSub\">\n    <xsd:sequence>\n      <xsd:element name=\"sSubPr\" type=\"CT_SSubPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"sub\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SSubSupPr\">\n    <xsd:sequence>\n      <xsd:element name=\"alnScr\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SSubSup\">\n    <xsd:sequence>\n      <xsd:element name=\"sSubSupPr\" type=\"CT_SSubSupPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"sub\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"sup\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SSupPr\">\n    <xsd:sequence>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SSup\">\n    <xsd:sequence>\n      <xsd:element name=\"sSupPr\" type=\"CT_SSupPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"sup\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_OMathMathElements\">\n    <xsd:choice>\n      <xsd:element name=\"acc\" type=\"CT_Acc\"/>\n      <xsd:element name=\"bar\" type=\"CT_Bar\"/>\n      <xsd:element name=\"box\" type=\"CT_Box\"/>\n      <xsd:element name=\"borderBox\" type=\"CT_BorderBox\"/>\n      <xsd:element name=\"d\" type=\"CT_D\"/>\n      <xsd:element name=\"eqArr\" type=\"CT_EqArr\"/>\n      <xsd:element name=\"f\" type=\"CT_F\"/>\n      <xsd:element name=\"func\" type=\"CT_Func\"/>\n      <xsd:element name=\"groupChr\" type=\"CT_GroupChr\"/>\n      <xsd:element name=\"limLow\" type=\"CT_LimLow\"/>\n      <xsd:element name=\"limUpp\" type=\"CT_LimUpp\"/>\n      <xsd:element name=\"m\" type=\"CT_M\"/>\n      <xsd:element name=\"nary\" type=\"CT_Nary\"/>\n      <xsd:element name=\"phant\" type=\"CT_Phant\"/>\n      <xsd:element name=\"rad\" type=\"CT_Rad\"/>\n      <xsd:element name=\"sPre\" type=\"CT_SPre\"/>\n      <xsd:element name=\"sSub\" type=\"CT_SSub\"/>\n      <xsd:element name=\"sSubSup\" type=\"CT_SSubSup\"/>\n      <xsd:element name=\"sSup\" type=\"CT_SSup\"/>\n      <xsd:element name=\"r\" type=\"CT_R\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_OMathElements\">\n    <xsd:choice>\n      <xsd:group ref=\"EG_OMathMathElements\"/>\n      <xsd:group ref=\"w:EG_PContentMath\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_OMathArgPr\">\n    <xsd:sequence>\n      <xsd:element name=\"argSz\" type=\"CT_Integer2\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OMathArg\">\n    <xsd:sequence>\n      <xsd:element name=\"argPr\" type=\"CT_OMathArgPr\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_OMathElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Jc\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"centerGroup\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_OMathJc\">\n    <xsd:attribute name=\"val\" type=\"ST_Jc\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OMathParaPr\">\n    <xsd:sequence>\n      <xsd:element name=\"jc\" type=\"CT_OMathJc\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TwipsMeasure\">\n    <xsd:attribute name=\"val\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BreakBin\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"before\"/>\n      <xsd:enumeration value=\"after\"/>\n      <xsd:enumeration value=\"repeat\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BreakBin\">\n    <xsd:attribute name=\"val\" type=\"ST_BreakBin\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BreakBinSub\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"--\"/>\n      <xsd:enumeration value=\"-+\"/>\n      <xsd:enumeration value=\"+-\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BreakBinSub\">\n    <xsd:attribute name=\"val\" type=\"ST_BreakBinSub\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MathPr\">\n    <xsd:sequence>\n      <xsd:element name=\"mathFont\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"brkBin\" type=\"CT_BreakBin\" minOccurs=\"0\"/>\n      <xsd:element name=\"brkBinSub\" type=\"CT_BreakBinSub\" minOccurs=\"0\"/>\n      <xsd:element name=\"smallFrac\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"dispDef\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"lMargin\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"rMargin\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"defJc\" type=\"CT_OMathJc\" minOccurs=\"0\"/>\n      <xsd:element name=\"preSp\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"postSp\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"interSp\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"intraSp\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:choice minOccurs=\"0\">\n        <xsd:element name=\"wrapIndent\" type=\"CT_TwipsMeasure\"/>\n        <xsd:element name=\"wrapRight\" type=\"CT_OnOff\"/>\n      </xsd:choice>\n      <xsd:element name=\"intLim\" type=\"CT_LimLoc\" minOccurs=\"0\"/>\n      <xsd:element name=\"naryLim\" type=\"CT_LimLoc\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"mathPr\" type=\"CT_MathPr\"/>\n  <xsd:complexType name=\"CT_OMathPara\">\n    <xsd:sequence>\n      <xsd:element name=\"oMathParaPr\" type=\"CT_OMathParaPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"oMath\" type=\"CT_OMath\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OMath\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_OMathElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"oMathPara\" type=\"CT_OMathPara\"/>\n  <xsd:element name=\"oMath\" type=\"CT_OMath\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  elementFormDefault=\"qualified\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  blockDefault=\"#all\">\n  <xsd:simpleType name=\"ST_RelationshipId\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:attribute name=\"id\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"embed\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"link\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"dm\" type=\"ST_RelationshipId\" default=\"\"/>\n  <xsd:attribute name=\"lo\" type=\"ST_RelationshipId\" default=\"\"/>\n  <xsd:attribute name=\"qs\" type=\"ST_RelationshipId\" default=\"\"/>\n  <xsd:attribute name=\"cs\" type=\"ST_RelationshipId\" default=\"\"/>\n  <xsd:attribute name=\"blip\" type=\"ST_RelationshipId\" default=\"\"/>\n  <xsd:attribute name=\"pict\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"href\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"topLeft\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"topRight\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"bottomLeft\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"bottomRight\" type=\"ST_RelationshipId\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:xdr=\"http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\"\n  elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:import \n    namespace=\"http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing\"\n    schemaLocation=\"dml-spreadsheetDrawing.xsd\"/>\n  <xsd:complexType name=\"CT_AutoFilter\">\n    <xsd:sequence>\n      <xsd:element name=\"filterColumn\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_FilterColumn\"/>\n      <xsd:element name=\"sortState\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_SortState\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FilterColumn\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"filters\" type=\"CT_Filters\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"top10\" type=\"CT_Top10\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customFilters\" type=\"CT_CustomFilters\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dynamicFilter\" type=\"CT_DynamicFilter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"colorFilter\" type=\"CT_ColorFilter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"iconFilter\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_IconFilter\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"colId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"hiddenButton\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showButton\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Filters\">\n    <xsd:sequence>\n      <xsd:element name=\"filter\" type=\"CT_Filter\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dateGroupItem\" type=\"CT_DateGroupItem\" minOccurs=\"0\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n    <xsd:attribute name=\"blank\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"calendarType\" type=\"s:ST_CalendarType\" use=\"optional\" default=\"none\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Filter\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomFilters\">\n    <xsd:sequence>\n      <xsd:element name=\"customFilter\" type=\"CT_CustomFilter\" minOccurs=\"1\" maxOccurs=\"2\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"and\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomFilter\">\n    <xsd:attribute name=\"operator\" type=\"ST_FilterOperator\" default=\"equal\" use=\"optional\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Top10\">\n    <xsd:attribute name=\"top\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"percent\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"filterVal\" type=\"xsd:double\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorFilter\">\n    <xsd:attribute name=\"dxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"cellColor\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_IconFilter\">\n    <xsd:attribute name=\"iconSet\" type=\"ST_IconSetType\" use=\"required\"/>\n    <xsd:attribute name=\"iconId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FilterOperator\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"equal\"/>\n      <xsd:enumeration value=\"lessThan\"/>\n      <xsd:enumeration value=\"lessThanOrEqual\"/>\n      <xsd:enumeration value=\"notEqual\"/>\n      <xsd:enumeration value=\"greaterThanOrEqual\"/>\n      <xsd:enumeration value=\"greaterThan\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DynamicFilter\">\n    <xsd:attribute name=\"type\" type=\"ST_DynamicFilterType\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"valIso\" type=\"xsd:dateTime\" use=\"optional\"/>\n    <xsd:attribute name=\"maxVal\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"maxValIso\" type=\"xsd:dateTime\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DynamicFilterType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"null\"/>\n      <xsd:enumeration value=\"aboveAverage\"/>\n      <xsd:enumeration value=\"belowAverage\"/>\n      <xsd:enumeration value=\"tomorrow\"/>\n      <xsd:enumeration value=\"today\"/>\n      <xsd:enumeration value=\"yesterday\"/>\n      <xsd:enumeration value=\"nextWeek\"/>\n      <xsd:enumeration value=\"thisWeek\"/>\n      <xsd:enumeration value=\"lastWeek\"/>\n      <xsd:enumeration value=\"nextMonth\"/>\n      <xsd:enumeration value=\"thisMonth\"/>\n      <xsd:enumeration value=\"lastMonth\"/>\n      <xsd:enumeration value=\"nextQuarter\"/>\n      <xsd:enumeration value=\"thisQuarter\"/>\n      <xsd:enumeration value=\"lastQuarter\"/>\n      <xsd:enumeration value=\"nextYear\"/>\n      <xsd:enumeration value=\"thisYear\"/>\n      <xsd:enumeration value=\"lastYear\"/>\n      <xsd:enumeration value=\"yearToDate\"/>\n      <xsd:enumeration value=\"Q1\"/>\n      <xsd:enumeration value=\"Q2\"/>\n      <xsd:enumeration value=\"Q3\"/>\n      <xsd:enumeration value=\"Q4\"/>\n      <xsd:enumeration value=\"M1\"/>\n      <xsd:enumeration value=\"M2\"/>\n      <xsd:enumeration value=\"M3\"/>\n      <xsd:enumeration value=\"M4\"/>\n      <xsd:enumeration value=\"M5\"/>\n      <xsd:enumeration value=\"M6\"/>\n      <xsd:enumeration value=\"M7\"/>\n      <xsd:enumeration value=\"M8\"/>\n      <xsd:enumeration value=\"M9\"/>\n      <xsd:enumeration value=\"M10\"/>\n      <xsd:enumeration value=\"M11\"/>\n      <xsd:enumeration value=\"M12\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_IconSetType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"3Arrows\"/>\n      <xsd:enumeration value=\"3ArrowsGray\"/>\n      <xsd:enumeration value=\"3Flags\"/>\n      <xsd:enumeration value=\"3TrafficLights1\"/>\n      <xsd:enumeration value=\"3TrafficLights2\"/>\n      <xsd:enumeration value=\"3Signs\"/>\n      <xsd:enumeration value=\"3Symbols\"/>\n      <xsd:enumeration value=\"3Symbols2\"/>\n      <xsd:enumeration value=\"4Arrows\"/>\n      <xsd:enumeration value=\"4ArrowsGray\"/>\n      <xsd:enumeration value=\"4RedToBlack\"/>\n      <xsd:enumeration value=\"4Rating\"/>\n      <xsd:enumeration value=\"4TrafficLights\"/>\n      <xsd:enumeration value=\"5Arrows\"/>\n      <xsd:enumeration value=\"5ArrowsGray\"/>\n      <xsd:enumeration value=\"5Rating\"/>\n      <xsd:enumeration value=\"5Quarters\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SortState\">\n    <xsd:sequence>\n      <xsd:element name=\"sortCondition\" minOccurs=\"0\" maxOccurs=\"64\" type=\"CT_SortCondition\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"columnSort\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"caseSensitive\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"sortMethod\" type=\"ST_SortMethod\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SortCondition\">\n    <xsd:attribute name=\"descending\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"sortBy\" type=\"ST_SortBy\" use=\"optional\" default=\"value\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"customList\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"dxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"iconSet\" type=\"ST_IconSetType\" use=\"optional\" default=\"3Arrows\"/>\n    <xsd:attribute name=\"iconId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SortBy\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"value\"/>\n      <xsd:enumeration value=\"cellColor\"/>\n      <xsd:enumeration value=\"fontColor\"/>\n      <xsd:enumeration value=\"icon\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_SortMethod\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"stroke\"/>\n      <xsd:enumeration value=\"pinYin\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DateGroupItem\">\n    <xsd:attribute name=\"year\" type=\"xsd:unsignedShort\" use=\"required\"/>\n    <xsd:attribute name=\"month\" type=\"xsd:unsignedShort\" use=\"optional\"/>\n    <xsd:attribute name=\"day\" type=\"xsd:unsignedShort\" use=\"optional\"/>\n    <xsd:attribute name=\"hour\" type=\"xsd:unsignedShort\" use=\"optional\"/>\n    <xsd:attribute name=\"minute\" type=\"xsd:unsignedShort\" use=\"optional\"/>\n    <xsd:attribute name=\"second\" type=\"xsd:unsignedShort\" use=\"optional\"/>\n    <xsd:attribute name=\"dateTimeGrouping\" type=\"ST_DateTimeGrouping\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DateTimeGrouping\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"year\"/>\n      <xsd:enumeration value=\"month\"/>\n      <xsd:enumeration value=\"day\"/>\n      <xsd:enumeration value=\"hour\"/>\n      <xsd:enumeration value=\"minute\"/>\n      <xsd:enumeration value=\"second\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CellRef\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Ref\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RefA\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Sqref\">\n    <xsd:list itemType=\"ST_Ref\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Formula\">\n    <xsd:restriction base=\"s:ST_Xstring\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UnsignedIntHex\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"4\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UnsignedShortHex\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"2\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_XStringElement\">\n    <xsd:attribute name=\"v\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Extension\">\n    <xsd:sequence>\n      <xsd:any processContents=\"lax\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"xsd:token\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ObjectAnchor\">\n    <xsd:sequence>\n      <xsd:element ref=\"xdr:from\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"xdr:to\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"moveWithCells\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"sizeWithCells\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ExtensionList\">\n    <xsd:sequence>\n      <xsd:element name=\"ext\" type=\"CT_Extension\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_ExtensionList\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ExtensionList\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"calcChain\" type=\"CT_CalcChain\"/>\n  <xsd:complexType name=\"CT_CalcChain\">\n    <xsd:sequence>\n      <xsd:element name=\"c\" type=\"CT_CalcCell\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalcCell\">\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"l\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"t\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"a\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:element name=\"comments\" type=\"CT_Comments\"/>\n  <xsd:complexType name=\"CT_Comments\">\n    <xsd:sequence>\n      <xsd:element name=\"authors\" type=\"CT_Authors\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"commentList\" type=\"CT_CommentList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Authors\">\n    <xsd:sequence>\n      <xsd:element name=\"author\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommentList\">\n    <xsd:sequence>\n      <xsd:element name=\"comment\" type=\"CT_Comment\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Comment\">\n    <xsd:sequence>\n      <xsd:element name=\"text\" type=\"CT_Rst\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"commentPr\" type=\"CT_CommentPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"authorId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"optional\"/>\n    <xsd:attribute name=\"shapeId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommentPr\">\n    <xsd:sequence>\n      <xsd:element name=\"anchor\" type=\"CT_ObjectAnchor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"locked\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"defaultSize\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"print\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"disabled\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoFill\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"autoLine\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"altText\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"textHAlign\" type=\"ST_TextHAlign\" use=\"optional\" default=\"left\"/>\n    <xsd:attribute name=\"textVAlign\" type=\"ST_TextVAlign\" use=\"optional\" default=\"top\"/>\n    <xsd:attribute name=\"lockText\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"justLastX\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoScale\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextHAlign\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"justify\"/>\n      <xsd:enumeration value=\"distributed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextVAlign\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"justify\"/>\n      <xsd:enumeration value=\"distributed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"MapInfo\" type=\"CT_MapInfo\"/>\n  <xsd:complexType name=\"CT_MapInfo\">\n    <xsd:sequence>\n      <xsd:element name=\"Schema\" type=\"CT_Schema\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"Map\" type=\"CT_Map\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"SelectionNamespaces\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Schema\" mixed=\"true\">\n    <xsd:sequence>\n      <xsd:any/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ID\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"SchemaRef\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"Namespace\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"SchemaLanguage\" type=\"xsd:token\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Map\">\n    <xsd:sequence>\n      <xsd:element name=\"DataBinding\" type=\"CT_DataBinding\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ID\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"Name\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"RootElement\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"SchemaID\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"ShowImportExportValidationErrors\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"AutoFit\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"Append\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"PreserveSortAFLayout\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"PreserveFormat\" type=\"xsd:boolean\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataBinding\">\n    <xsd:sequence>\n      <xsd:any/>\n    </xsd:sequence>\n    <xsd:attribute name=\"DataBindingName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"FileBinding\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"ConnectionID\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"FileBindingName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"DataBindingLoadMode\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"connections\" type=\"CT_Connections\"/>\n  <xsd:complexType name=\"CT_Connections\">\n    <xsd:sequence>\n      <xsd:element name=\"connection\" minOccurs=\"1\" maxOccurs=\"unbounded\" type=\"CT_Connection\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Connection\">\n    <xsd:sequence>\n      <xsd:element name=\"dbPr\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_DbPr\"/>\n      <xsd:element name=\"olapPr\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_OlapPr\"/>\n      <xsd:element name=\"webPr\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_WebPr\"/>\n      <xsd:element name=\"textPr\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_TextPr\"/>\n      <xsd:element name=\"parameters\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_Parameters\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"sourceFile\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"odcFile\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"keepAlive\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"interval\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"name\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"description\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"type\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"reconnectionMethod\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"1\"/>\n    <xsd:attribute name=\"refreshedVersion\" use=\"required\" type=\"xsd:unsignedByte\"/>\n    <xsd:attribute name=\"minRefreshableVersion\" use=\"optional\" type=\"xsd:unsignedByte\" default=\"0\"/>\n    <xsd:attribute name=\"savePassword\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"new\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"deleted\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"onlyUseConnectionFile\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"background\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"refreshOnLoad\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"saveData\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"credentials\" use=\"optional\" type=\"ST_CredMethod\" default=\"integrated\"/>\n    <xsd:attribute name=\"singleSignOnId\" use=\"optional\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CredMethod\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"integrated\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"stored\"/>\n      <xsd:enumeration value=\"prompt\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DbPr\">\n    <xsd:attribute name=\"connection\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"command\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"serverCommand\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"commandType\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"2\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OlapPr\">\n    <xsd:attribute name=\"local\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"localConnection\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"localRefresh\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"sendLocale\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"rowDrillCount\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"serverFill\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"serverNumberFormat\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"serverFont\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"serverFontColor\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WebPr\">\n    <xsd:sequence>\n      <xsd:element name=\"tables\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_Tables\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"xml\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"sourceData\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"parsePre\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"consecutive\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"firstRow\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"xl97\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"textDates\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"xl2000\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"url\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"post\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"htmlTables\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"htmlFormat\" use=\"optional\" type=\"ST_HtmlFmt\" default=\"none\"/>\n    <xsd:attribute name=\"editPage\" use=\"optional\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HtmlFmt\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"rtf\"/>\n      <xsd:enumeration value=\"all\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Parameters\">\n    <xsd:sequence>\n      <xsd:element name=\"parameter\" minOccurs=\"1\" maxOccurs=\"unbounded\" type=\"CT_Parameter\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Parameter\">\n    <xsd:attribute name=\"name\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"sqlType\" use=\"optional\" type=\"xsd:int\" default=\"0\"/>\n    <xsd:attribute name=\"parameterType\" use=\"optional\" type=\"ST_ParameterType\" default=\"prompt\"/>\n    <xsd:attribute name=\"refreshOnChange\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"prompt\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"boolean\" use=\"optional\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"double\" use=\"optional\" type=\"xsd:double\"/>\n    <xsd:attribute name=\"integer\" use=\"optional\" type=\"xsd:int\"/>\n    <xsd:attribute name=\"string\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cell\" use=\"optional\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ParameterType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"prompt\"/>\n      <xsd:enumeration value=\"value\"/>\n      <xsd:enumeration value=\"cell\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Tables\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"m\" type=\"CT_TableMissing\"/>\n      <xsd:element name=\"s\" type=\"CT_XStringElement\"/>\n      <xsd:element name=\"x\" type=\"CT_Index\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"count\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableMissing\"/>\n  <xsd:complexType name=\"CT_TextPr\">\n    <xsd:sequence>\n      <xsd:element name=\"textFields\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_TextFields\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prompt\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"fileType\" use=\"optional\" type=\"ST_FileType\" default=\"win\"/>\n    <xsd:attribute name=\"codePage\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"1252\"/>\n    <xsd:attribute name=\"characterSet\" use=\"optional\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"firstRow\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"1\"/>\n    <xsd:attribute name=\"sourceFile\" use=\"optional\" type=\"s:ST_Xstring\" default=\"\"/>\n    <xsd:attribute name=\"delimited\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"decimal\" use=\"optional\" type=\"s:ST_Xstring\" default=\".\"/>\n    <xsd:attribute name=\"thousands\" use=\"optional\" type=\"s:ST_Xstring\" default=\",\"/>\n    <xsd:attribute name=\"tab\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"space\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"comma\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"semicolon\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"consecutive\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"qualifier\" use=\"optional\" type=\"ST_Qualifier\" default=\"doubleQuote\"/>\n    <xsd:attribute name=\"delimiter\" use=\"optional\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FileType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"mac\"/>\n      <xsd:enumeration value=\"win\"/>\n      <xsd:enumeration value=\"dos\"/>\n      <xsd:enumeration value=\"lin\"/>\n      <xsd:enumeration value=\"other\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Qualifier\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"doubleQuote\"/>\n      <xsd:enumeration value=\"singleQuote\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextFields\">\n    <xsd:sequence>\n      <xsd:element name=\"textField\" minOccurs=\"1\" maxOccurs=\"unbounded\" type=\"CT_TextField\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextField\">\n    <xsd:attribute name=\"type\" use=\"optional\" type=\"ST_ExternalConnectionType\" default=\"general\"/>\n    <xsd:attribute name=\"position\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ExternalConnectionType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"general\"/>\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"MDY\"/>\n      <xsd:enumeration value=\"DMY\"/>\n      <xsd:enumeration value=\"YMD\"/>\n      <xsd:enumeration value=\"MYD\"/>\n      <xsd:enumeration value=\"DYM\"/>\n      <xsd:enumeration value=\"YDM\"/>\n      <xsd:enumeration value=\"skip\"/>\n      <xsd:enumeration value=\"EMD\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"pivotCacheDefinition\" type=\"CT_PivotCacheDefinition\"/>\n  <xsd:element name=\"pivotCacheRecords\" type=\"CT_PivotCacheRecords\"/>\n  <xsd:element name=\"pivotTableDefinition\" type=\"CT_pivotTableDefinition\"/>\n  <xsd:complexType name=\"CT_PivotCacheDefinition\">\n    <xsd:sequence>\n      <xsd:element name=\"cacheSource\" type=\"CT_CacheSource\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cacheFields\" type=\"CT_CacheFields\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cacheHierarchies\" minOccurs=\"0\" type=\"CT_CacheHierarchies\"/>\n      <xsd:element name=\"kpis\" minOccurs=\"0\" type=\"CT_PCDKPIs\"/>\n      <xsd:element name=\"tupleCache\" minOccurs=\"0\" type=\"CT_TupleCache\"/>\n      <xsd:element name=\"calculatedItems\" minOccurs=\"0\" type=\"CT_CalculatedItems\"/>\n      <xsd:element name=\"calculatedMembers\" type=\"CT_CalculatedMembers\" minOccurs=\"0\"/>\n      <xsd:element name=\"dimensions\" type=\"CT_Dimensions\" minOccurs=\"0\"/>\n      <xsd:element name=\"measureGroups\" type=\"CT_MeasureGroups\" minOccurs=\"0\"/>\n      <xsd:element name=\"maps\" type=\"CT_MeasureDimensionMaps\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"invalid\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"saveData\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"refreshOnLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"optimizeMemory\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"enableRefresh\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"refreshedBy\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"refreshedDate\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"refreshedDateIso\" type=\"xsd:dateTime\" use=\"optional\"/>\n    <xsd:attribute name=\"backgroundQuery\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"missingItemsLimit\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"createdVersion\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"refreshedVersion\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"minRefreshableVersion\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"recordCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"upgradeOnRefresh\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"tupleCache\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"supportSubquery\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"supportAdvancedDrill\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CacheFields\">\n    <xsd:sequence>\n      <xsd:element name=\"cacheField\" type=\"CT_CacheField\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CacheField\">\n    <xsd:sequence>\n      <xsd:element name=\"sharedItems\" type=\"CT_SharedItems\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fieldGroup\" minOccurs=\"0\" type=\"CT_FieldGroup\"/>\n      <xsd:element name=\"mpMap\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"caption\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"propertyName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"serverField\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"uniqueList\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"optional\"/>\n    <xsd:attribute name=\"formula\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"sqlType\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"hierarchy\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"level\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"databaseField\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"mappingCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"memberPropertyField\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CacheSource\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"worksheetSource\" type=\"CT_WorksheetSource\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"consolidation\" type=\"CT_Consolidation\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"type\" type=\"ST_SourceType\" use=\"required\"/>\n    <xsd:attribute name=\"connectionId\" type=\"xsd:unsignedInt\" default=\"0\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SourceType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"worksheet\"/>\n      <xsd:enumeration value=\"external\"/>\n      <xsd:enumeration value=\"consolidation\"/>\n      <xsd:enumeration value=\"scenario\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_WorksheetSource\">\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"optional\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"sheet\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Consolidation\">\n    <xsd:sequence>\n      <xsd:element name=\"pages\" type=\"CT_Pages\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rangeSets\" type=\"CT_RangeSets\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"autoPage\" type=\"xsd:boolean\" default=\"true\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Pages\">\n    <xsd:sequence>\n      <xsd:element name=\"page\" type=\"CT_PCDSCPage\" minOccurs=\"1\" maxOccurs=\"4\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PCDSCPage\">\n    <xsd:sequence>\n      <xsd:element name=\"pageItem\" type=\"CT_PageItem\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageItem\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RangeSets\">\n    <xsd:sequence>\n      <xsd:element name=\"rangeSet\" type=\"CT_RangeSet\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RangeSet\">\n    <xsd:attribute name=\"i1\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"i2\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"i3\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"i4\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"optional\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"sheet\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SharedItems\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"m\" type=\"CT_Missing\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"n\" type=\"CT_Number\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"b\" type=\"CT_Boolean\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"e\" type=\"CT_Error\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"s\" type=\"CT_String\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"d\" type=\"CT_DateTime\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"containsSemiMixedTypes\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"containsNonDate\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"containsDate\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"containsString\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"containsBlank\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"containsMixedTypes\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"containsNumber\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"containsInteger\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"minValue\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"maxValue\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"minDate\" type=\"xsd:dateTime\" use=\"optional\"/>\n    <xsd:attribute name=\"maxDate\" type=\"xsd:dateTime\" use=\"optional\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"longText\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Missing\">\n    <xsd:sequence>\n      <xsd:element name=\"tpls\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Tuples\"/>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"c\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cp\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"in\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"bc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"fc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"un\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"st\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Number\">\n    <xsd:sequence>\n      <xsd:element name=\"tpls\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Tuples\"/>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"v\" use=\"required\" type=\"xsd:double\"/>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"c\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cp\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"in\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"bc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"fc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"un\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"st\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Boolean\">\n    <xsd:sequence>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"v\" use=\"required\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"c\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cp\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Error\">\n    <xsd:sequence>\n      <xsd:element name=\"tpls\" minOccurs=\"0\" type=\"CT_Tuples\"/>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"v\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"c\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cp\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"in\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"bc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"fc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"un\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"st\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_String\">\n    <xsd:sequence>\n      <xsd:element name=\"tpls\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Tuples\"/>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"v\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"c\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cp\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"in\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"bc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"fc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"un\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"st\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DateTime\">\n    <xsd:sequence>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"v\" use=\"required\" type=\"xsd:dateTime\"/>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"c\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cp\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FieldGroup\">\n    <xsd:sequence>\n      <xsd:element name=\"rangePr\" minOccurs=\"0\" type=\"CT_RangePr\"/>\n      <xsd:element name=\"discretePr\" minOccurs=\"0\" type=\"CT_DiscretePr\"/>\n      <xsd:element name=\"groupItems\" minOccurs=\"0\" type=\"CT_GroupItems\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"par\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"base\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RangePr\">\n    <xsd:attribute name=\"autoStart\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"autoEnd\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"groupBy\" type=\"ST_GroupBy\" default=\"range\"/>\n    <xsd:attribute name=\"startNum\" type=\"xsd:double\"/>\n    <xsd:attribute name=\"endNum\" type=\"xsd:double\"/>\n    <xsd:attribute name=\"startDate\" type=\"xsd:dateTime\"/>\n    <xsd:attribute name=\"endDate\" type=\"xsd:dateTime\"/>\n    <xsd:attribute name=\"groupInterval\" type=\"xsd:double\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_GroupBy\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"range\"/>\n      <xsd:enumeration value=\"seconds\"/>\n      <xsd:enumeration value=\"minutes\"/>\n      <xsd:enumeration value=\"hours\"/>\n      <xsd:enumeration value=\"days\"/>\n      <xsd:enumeration value=\"months\"/>\n      <xsd:enumeration value=\"quarters\"/>\n      <xsd:enumeration value=\"years\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DiscretePr\">\n    <xsd:sequence>\n      <xsd:element name=\"x\" maxOccurs=\"unbounded\" type=\"CT_Index\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupItems\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"m\" type=\"CT_Missing\"/>\n      <xsd:element name=\"n\" type=\"CT_Number\"/>\n      <xsd:element name=\"b\" type=\"CT_Boolean\"/>\n      <xsd:element name=\"e\" type=\"CT_Error\"/>\n      <xsd:element name=\"s\" type=\"CT_String\"/>\n      <xsd:element name=\"d\" type=\"CT_DateTime\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotCacheRecords\">\n    <xsd:sequence>\n      <xsd:element name=\"r\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Record\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Record\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"m\" type=\"CT_Missing\"/>\n      <xsd:element name=\"n\" type=\"CT_Number\"/>\n      <xsd:element name=\"b\" type=\"CT_Boolean\"/>\n      <xsd:element name=\"e\" type=\"CT_Error\"/>\n      <xsd:element name=\"s\" type=\"CT_String\"/>\n      <xsd:element name=\"d\" type=\"CT_DateTime\"/>\n      <xsd:element name=\"x\" type=\"CT_Index\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PCDKPIs\">\n    <xsd:sequence>\n      <xsd:element name=\"kpi\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_PCDKPI\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PCDKPI\">\n    <xsd:attribute name=\"uniqueName\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"caption\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"displayFolder\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"measureGroup\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"parent\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"value\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"goal\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"status\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"trend\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"weight\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"time\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CacheHierarchies\">\n    <xsd:sequence>\n      <xsd:element name=\"cacheHierarchy\" minOccurs=\"0\" maxOccurs=\"unbounded\"\n        type=\"CT_CacheHierarchy\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CacheHierarchy\">\n    <xsd:sequence>\n      <xsd:element name=\"fieldsUsage\" minOccurs=\"0\" type=\"CT_FieldsUsage\"/>\n      <xsd:element name=\"groupLevels\" minOccurs=\"0\" type=\"CT_GroupLevels\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueName\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"caption\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"measure\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"set\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"parentSet\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"iconSet\" type=\"xsd:int\" default=\"0\"/>\n    <xsd:attribute name=\"attribute\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"time\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"keyAttribute\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"defaultMemberUniqueName\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"allUniqueName\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"allCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"dimensionUniqueName\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"displayFolder\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"measureGroup\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"measures\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"count\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"oneField\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"memberValueDatatype\" use=\"optional\" type=\"xsd:unsignedShort\"/>\n    <xsd:attribute name=\"unbalanced\" use=\"optional\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"unbalancedGroup\" use=\"optional\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FieldsUsage\">\n    <xsd:sequence>\n      <xsd:element name=\"fieldUsage\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_FieldUsage\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FieldUsage\">\n    <xsd:attribute name=\"x\" use=\"required\" type=\"xsd:int\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupLevels\">\n    <xsd:sequence>\n      <xsd:element name=\"groupLevel\" maxOccurs=\"unbounded\" type=\"CT_GroupLevel\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupLevel\">\n    <xsd:sequence>\n      <xsd:element name=\"groups\" minOccurs=\"0\" type=\"CT_Groups\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueName\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"caption\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"user\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"customRollUp\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Groups\">\n    <xsd:sequence>\n      <xsd:element name=\"group\" maxOccurs=\"unbounded\" type=\"CT_LevelGroup\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LevelGroup\">\n    <xsd:sequence>\n      <xsd:element name=\"groupMembers\" type=\"CT_GroupMembers\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"uniqueName\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"caption\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"uniqueParent\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"id\" type=\"xsd:int\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupMembers\">\n    <xsd:sequence>\n      <xsd:element name=\"groupMember\" maxOccurs=\"unbounded\" type=\"CT_GroupMember\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupMember\">\n    <xsd:attribute name=\"uniqueName\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"group\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TupleCache\">\n    <xsd:sequence>\n      <xsd:element name=\"entries\" minOccurs=\"0\" type=\"CT_PCDSDTCEntries\"/>\n      <xsd:element name=\"sets\" minOccurs=\"0\" type=\"CT_Sets\"/>\n      <xsd:element name=\"queryCache\" minOccurs=\"0\" type=\"CT_QueryCache\"/>\n      <xsd:element name=\"serverFormats\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ServerFormats\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ServerFormat\">\n    <xsd:attribute name=\"culture\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"format\" use=\"optional\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ServerFormats\">\n    <xsd:sequence>\n      <xsd:element name=\"serverFormat\" type=\"CT_ServerFormat\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PCDSDTCEntries\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"m\" type=\"CT_Missing\"/>\n      <xsd:element name=\"n\" type=\"CT_Number\"/>\n      <xsd:element name=\"e\" type=\"CT_Error\"/>\n      <xsd:element name=\"s\" type=\"CT_String\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Tuples\">\n    <xsd:sequence>\n      <xsd:element name=\"tpl\" type=\"CT_Tuple\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"c\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Tuple\">\n    <xsd:attribute name=\"fld\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"hier\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"item\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Sets\">\n    <xsd:sequence>\n      <xsd:element name=\"set\" maxOccurs=\"unbounded\" type=\"CT_Set\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Set\">\n    <xsd:sequence>\n      <xsd:element name=\"tpls\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Tuples\"/>\n      <xsd:element name=\"sortByTuple\" minOccurs=\"0\" type=\"CT_Tuples\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"maxRank\" use=\"required\" type=\"xsd:int\"/>\n    <xsd:attribute name=\"setDefinition\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"sortType\" type=\"ST_SortType\" default=\"none\"/>\n    <xsd:attribute name=\"queryFailed\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SortType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"ascending\"/>\n      <xsd:enumeration value=\"descending\"/>\n      <xsd:enumeration value=\"ascendingAlpha\"/>\n      <xsd:enumeration value=\"descendingAlpha\"/>\n      <xsd:enumeration value=\"ascendingNatural\"/>\n      <xsd:enumeration value=\"descendingNatural\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_QueryCache\">\n    <xsd:sequence>\n      <xsd:element name=\"query\" maxOccurs=\"unbounded\" type=\"CT_Query\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Query\">\n    <xsd:sequence>\n      <xsd:element name=\"tpls\" minOccurs=\"0\" type=\"CT_Tuples\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"mdx\" use=\"required\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalculatedItems\">\n    <xsd:sequence>\n      <xsd:element name=\"calculatedItem\" maxOccurs=\"unbounded\" type=\"CT_CalculatedItem\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalculatedItem\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotArea\" type=\"CT_PivotArea\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"field\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"formula\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalculatedMembers\">\n    <xsd:sequence>\n      <xsd:element name=\"calculatedMember\" maxOccurs=\"unbounded\" type=\"CT_CalculatedMember\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalculatedMember\">\n    <xsd:sequence minOccurs=\"0\">\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"mdx\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"memberName\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"hierarchy\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"parent\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"solveOrder\" type=\"xsd:int\" default=\"0\"/>\n    <xsd:attribute name=\"set\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_pivotTableDefinition\">\n    <xsd:sequence>\n      <xsd:element name=\"location\" type=\"CT_Location\"/>\n      <xsd:element name=\"pivotFields\" type=\"CT_PivotFields\" minOccurs=\"0\"/>\n      <xsd:element name=\"rowFields\" type=\"CT_RowFields\" minOccurs=\"0\"/>\n      <xsd:element name=\"rowItems\" type=\"CT_rowItems\" minOccurs=\"0\"/>\n      <xsd:element name=\"colFields\" type=\"CT_ColFields\" minOccurs=\"0\"/>\n      <xsd:element name=\"colItems\" type=\"CT_colItems\" minOccurs=\"0\"/>\n      <xsd:element name=\"pageFields\" type=\"CT_PageFields\" minOccurs=\"0\"/>\n      <xsd:element name=\"dataFields\" type=\"CT_DataFields\" minOccurs=\"0\"/>\n      <xsd:element name=\"formats\" type=\"CT_Formats\" minOccurs=\"0\"/>\n      <xsd:element name=\"conditionalFormats\" type=\"CT_ConditionalFormats\" minOccurs=\"0\"/>\n      <xsd:element name=\"chartFormats\" type=\"CT_ChartFormats\" minOccurs=\"0\"/>\n      <xsd:element name=\"pivotHierarchies\" type=\"CT_PivotHierarchies\" minOccurs=\"0\"/>\n      <xsd:element name=\"pivotTableStyleInfo\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_PivotTableStyle\"/>\n      <xsd:element name=\"filters\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_PivotFilters\"/>\n      <xsd:element name=\"rowHierarchiesUsage\" type=\"CT_RowHierarchiesUsage\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"colHierarchiesUsage\" type=\"CT_ColHierarchiesUsage\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cacheId\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"dataOnRows\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"dataPosition\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attributeGroup ref=\"AG_AutoFormat\"/>\n    <xsd:attribute name=\"dataCaption\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"grandTotalCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"errorCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"showError\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"missingCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"showMissing\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"pageStyle\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"pivotTableStyle\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"vacatedStyle\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"tag\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"updatedVersion\" type=\"xsd:unsignedByte\" default=\"0\"/>\n    <xsd:attribute name=\"minRefreshableVersion\" type=\"xsd:unsignedByte\" default=\"0\"/>\n    <xsd:attribute name=\"asteriskTotals\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showItems\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"editData\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"disableFieldList\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showCalcMbrs\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"visualTotals\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"showMultipleLabel\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"showDataDropDown\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"showDrill\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"printDrill\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showMemberPropertyTips\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"showDataTips\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"enableWizard\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"enableDrill\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"enableFieldProperties\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"preserveFormatting\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"useAutoFormatting\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"pageWrap\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"pageOverThenDown\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"subtotalHiddenItems\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"rowGrandTotals\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"colGrandTotals\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"fieldPrintTitles\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"itemPrintTitles\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"mergeItem\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showDropZones\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"createdVersion\" type=\"xsd:unsignedByte\" default=\"0\"/>\n    <xsd:attribute name=\"indent\" type=\"xsd:unsignedInt\" default=\"1\"/>\n    <xsd:attribute name=\"showEmptyRow\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showEmptyCol\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showHeaders\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"compact\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"outline\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"outlineData\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"compactData\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"published\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"gridDropZones\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"immersive\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"multipleFieldFilters\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"chartFormat\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"rowHeaderCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"colHeaderCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"fieldListSortAscending\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"mdxSubqueries\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"customListSort\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Location\">\n    <xsd:attribute name=\"ref\" use=\"required\" type=\"ST_Ref\"/>\n    <xsd:attribute name=\"firstHeaderRow\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"firstDataRow\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"firstDataCol\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"rowPageCount\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"colPageCount\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotFields\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotField\" maxOccurs=\"unbounded\" type=\"CT_PivotField\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotField\">\n    <xsd:sequence>\n      <xsd:element name=\"items\" minOccurs=\"0\" type=\"CT_Items\"/>\n      <xsd:element name=\"autoSortScope\" minOccurs=\"0\" type=\"CT_AutoSortScope\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"axis\" use=\"optional\" type=\"ST_Axis\"/>\n    <xsd:attribute name=\"dataField\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"subtotalCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"showDropDowns\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"hiddenLevel\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"uniqueMemberProperty\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"compact\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"allDrilled\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"optional\"/>\n    <xsd:attribute name=\"outline\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"subtotalTop\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToRow\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToCol\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"multipleItemSelectionAllowed\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"dragToPage\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToData\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragOff\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"showAll\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"insertBlankRow\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"serverField\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"insertPageBreak\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"autoShow\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"topAutoShow\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"hideNewItems\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"measureFilter\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"includeNewItemsInFilter\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"itemPageCount\" type=\"xsd:unsignedInt\" default=\"10\"/>\n    <xsd:attribute name=\"sortType\" type=\"ST_FieldSortType\" default=\"manual\"/>\n    <xsd:attribute name=\"dataSourceSort\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"nonAutoSortDefault\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"rankBy\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"defaultSubtotal\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"sumSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"countASubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"avgSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"maxSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"minSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"productSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"countSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"stdDevSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"stdDevPSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"varSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"varPSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showPropCell\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showPropTip\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showPropAsCaption\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"defaultAttributeDrillState\" type=\"xsd:boolean\" use=\"optional\"\n      default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AutoSortScope\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotArea\" type=\"CT_PivotArea\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Items\">\n    <xsd:sequence>\n      <xsd:element name=\"item\" maxOccurs=\"unbounded\" type=\"CT_Item\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Item\">\n    <xsd:attribute name=\"n\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"t\" type=\"ST_ItemType\" default=\"data\"/>\n    <xsd:attribute name=\"h\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"sd\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"m\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"c\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"x\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"d\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"e\" type=\"xsd:boolean\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageFields\">\n    <xsd:sequence>\n      <xsd:element name=\"pageField\" maxOccurs=\"unbounded\" type=\"CT_PageField\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageField\">\n    <xsd:sequence minOccurs=\"0\">\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"fld\" use=\"required\" type=\"xsd:int\"/>\n    <xsd:attribute name=\"item\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"hier\" type=\"xsd:int\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cap\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataFields\">\n    <xsd:sequence>\n      <xsd:element name=\"dataField\" maxOccurs=\"unbounded\" type=\"CT_DataField\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataField\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"fld\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"subtotal\" type=\"ST_DataConsolidateFunction\" default=\"sum\"/>\n    <xsd:attribute name=\"showDataAs\" type=\"ST_ShowDataAs\" default=\"normal\"/>\n    <xsd:attribute name=\"baseField\" type=\"xsd:int\" default=\"-1\"/>\n    <xsd:attribute name=\"baseItem\" type=\"xsd:unsignedInt\" default=\"1048832\"/>\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_rowItems\">\n    <xsd:sequence>\n      <xsd:element name=\"i\" maxOccurs=\"unbounded\" type=\"CT_I\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_colItems\">\n    <xsd:sequence>\n      <xsd:element name=\"i\" maxOccurs=\"unbounded\" type=\"CT_I\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_I\">\n    <xsd:sequence>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"t\" type=\"ST_ItemType\" default=\"data\"/>\n    <xsd:attribute name=\"r\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_X\">\n    <xsd:attribute name=\"v\" type=\"xsd:int\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RowFields\">\n    <xsd:sequence>\n      <xsd:element name=\"field\" maxOccurs=\"unbounded\" type=\"CT_Field\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColFields\">\n    <xsd:sequence>\n      <xsd:element name=\"field\" maxOccurs=\"unbounded\" type=\"CT_Field\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Field\">\n    <xsd:attribute name=\"x\" type=\"xsd:int\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Formats\">\n    <xsd:sequence>\n      <xsd:element name=\"format\" maxOccurs=\"unbounded\" type=\"CT_Format\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Format\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotArea\" type=\"CT_PivotArea\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"action\" type=\"ST_FormatAction\" default=\"formatting\"/>\n    <xsd:attribute name=\"dxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConditionalFormats\">\n    <xsd:sequence>\n      <xsd:element name=\"conditionalFormat\" maxOccurs=\"unbounded\" type=\"CT_ConditionalFormat\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConditionalFormat\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotAreas\" type=\"CT_PivotAreas\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"scope\" type=\"ST_Scope\" default=\"selection\"/>\n    <xsd:attribute name=\"type\" type=\"ST_Type\" default=\"none\"/>\n    <xsd:attribute name=\"priority\" use=\"required\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotAreas\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotArea\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_PivotArea\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Scope\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"selection\"/>\n      <xsd:enumeration value=\"data\"/>\n      <xsd:enumeration value=\"field\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Type\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"all\"/>\n      <xsd:enumeration value=\"row\"/>\n      <xsd:enumeration value=\"column\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ChartFormats\">\n    <xsd:sequence>\n      <xsd:element name=\"chartFormat\" maxOccurs=\"unbounded\" type=\"CT_ChartFormat\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartFormat\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotArea\" type=\"CT_PivotArea\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"chart\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"format\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"series\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotHierarchies\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotHierarchy\" maxOccurs=\"unbounded\" type=\"CT_PivotHierarchy\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotHierarchy\">\n    <xsd:sequence>\n      <xsd:element name=\"mps\" minOccurs=\"0\" type=\"CT_MemberProperties\"/>\n      <xsd:element name=\"members\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Members\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"outline\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"multipleItemSelectionAllowed\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"subtotalTop\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showInFieldList\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToRow\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToCol\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToPage\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToData\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"dragOff\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"includeNewItemsInFilter\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"caption\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RowHierarchiesUsage\">\n    <xsd:sequence>\n      <xsd:element name=\"rowHierarchyUsage\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n        type=\"CT_HierarchyUsage\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColHierarchiesUsage\">\n    <xsd:sequence>\n      <xsd:element name=\"colHierarchyUsage\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n        type=\"CT_HierarchyUsage\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HierarchyUsage\">\n    <xsd:attribute name=\"hierarchyUsage\" type=\"xsd:int\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MemberProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"mp\" maxOccurs=\"unbounded\" type=\"CT_MemberProperty\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MemberProperty\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"showCell\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showTip\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showAsCaption\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"nameLen\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"pPos\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"pLen\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"level\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"field\" use=\"required\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Members\">\n    <xsd:sequence>\n      <xsd:element name=\"member\" maxOccurs=\"unbounded\" type=\"CT_Member\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"level\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Member\">\n    <xsd:attribute name=\"name\" use=\"required\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Dimensions\">\n    <xsd:sequence>\n      <xsd:element name=\"dimension\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_PivotDimension\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotDimension\">\n    <xsd:attribute name=\"measure\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"name\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"uniqueName\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"caption\" use=\"required\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MeasureGroups\">\n    <xsd:sequence>\n      <xsd:element name=\"measureGroup\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_MeasureGroup\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MeasureDimensionMaps\">\n    <xsd:sequence>\n      <xsd:element name=\"map\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_MeasureDimensionMap\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MeasureGroup\">\n    <xsd:attribute name=\"name\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"caption\" use=\"required\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MeasureDimensionMap\">\n    <xsd:attribute name=\"measureGroup\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"dimension\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotTableStyle\">\n    <xsd:attribute name=\"name\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"showRowHeaders\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"showColHeaders\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"showRowStripes\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"showColStripes\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"showLastColumn\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotFilters\">\n    <xsd:sequence>\n      <xsd:element name=\"filter\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_PivotFilter\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotFilter\">\n    <xsd:sequence>\n      <xsd:element name=\"autoFilter\" minOccurs=\"1\" maxOccurs=\"1\" type=\"CT_AutoFilter\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"fld\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"mpFld\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"type\" use=\"required\" type=\"ST_PivotFilterType\"/>\n    <xsd:attribute name=\"evalOrder\" use=\"optional\" type=\"xsd:int\" default=\"0\"/>\n    <xsd:attribute name=\"id\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"iMeasureHier\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"iMeasureFld\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"description\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"stringValue1\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"stringValue2\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ShowDataAs\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"difference\"/>\n      <xsd:enumeration value=\"percent\"/>\n      <xsd:enumeration value=\"percentDiff\"/>\n      <xsd:enumeration value=\"runTotal\"/>\n      <xsd:enumeration value=\"percentOfRow\"/>\n      <xsd:enumeration value=\"percentOfCol\"/>\n      <xsd:enumeration value=\"percentOfTotal\"/>\n      <xsd:enumeration value=\"index\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ItemType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"data\"/>\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"sum\"/>\n      <xsd:enumeration value=\"countA\"/>\n      <xsd:enumeration value=\"avg\"/>\n      <xsd:enumeration value=\"max\"/>\n      <xsd:enumeration value=\"min\"/>\n      <xsd:enumeration value=\"product\"/>\n      <xsd:enumeration value=\"count\"/>\n      <xsd:enumeration value=\"stdDev\"/>\n      <xsd:enumeration value=\"stdDevP\"/>\n      <xsd:enumeration value=\"var\"/>\n      <xsd:enumeration value=\"varP\"/>\n      <xsd:enumeration value=\"grand\"/>\n      <xsd:enumeration value=\"blank\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FormatAction\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"blank\"/>\n      <xsd:enumeration value=\"formatting\"/>\n      <xsd:enumeration value=\"drill\"/>\n      <xsd:enumeration value=\"formula\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FieldSortType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"manual\"/>\n      <xsd:enumeration value=\"ascending\"/>\n      <xsd:enumeration value=\"descending\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PivotFilterType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"unknown\"/>\n      <xsd:enumeration value=\"count\"/>\n      <xsd:enumeration value=\"percent\"/>\n      <xsd:enumeration value=\"sum\"/>\n      <xsd:enumeration value=\"captionEqual\"/>\n      <xsd:enumeration value=\"captionNotEqual\"/>\n      <xsd:enumeration value=\"captionBeginsWith\"/>\n      <xsd:enumeration value=\"captionNotBeginsWith\"/>\n      <xsd:enumeration value=\"captionEndsWith\"/>\n      <xsd:enumeration value=\"captionNotEndsWith\"/>\n      <xsd:enumeration value=\"captionContains\"/>\n      <xsd:enumeration value=\"captionNotContains\"/>\n      <xsd:enumeration value=\"captionGreaterThan\"/>\n      <xsd:enumeration value=\"captionGreaterThanOrEqual\"/>\n      <xsd:enumeration value=\"captionLessThan\"/>\n      <xsd:enumeration value=\"captionLessThanOrEqual\"/>\n      <xsd:enumeration value=\"captionBetween\"/>\n      <xsd:enumeration value=\"captionNotBetween\"/>\n      <xsd:enumeration value=\"valueEqual\"/>\n      <xsd:enumeration value=\"valueNotEqual\"/>\n      <xsd:enumeration value=\"valueGreaterThan\"/>\n      <xsd:enumeration value=\"valueGreaterThanOrEqual\"/>\n      <xsd:enumeration value=\"valueLessThan\"/>\n      <xsd:enumeration value=\"valueLessThanOrEqual\"/>\n      <xsd:enumeration value=\"valueBetween\"/>\n      <xsd:enumeration value=\"valueNotBetween\"/>\n      <xsd:enumeration value=\"dateEqual\"/>\n      <xsd:enumeration value=\"dateNotEqual\"/>\n      <xsd:enumeration value=\"dateOlderThan\"/>\n      <xsd:enumeration value=\"dateOlderThanOrEqual\"/>\n      <xsd:enumeration value=\"dateNewerThan\"/>\n      <xsd:enumeration value=\"dateNewerThanOrEqual\"/>\n      <xsd:enumeration value=\"dateBetween\"/>\n      <xsd:enumeration value=\"dateNotBetween\"/>\n      <xsd:enumeration value=\"tomorrow\"/>\n      <xsd:enumeration value=\"today\"/>\n      <xsd:enumeration value=\"yesterday\"/>\n      <xsd:enumeration value=\"nextWeek\"/>\n      <xsd:enumeration value=\"thisWeek\"/>\n      <xsd:enumeration value=\"lastWeek\"/>\n      <xsd:enumeration value=\"nextMonth\"/>\n      <xsd:enumeration value=\"thisMonth\"/>\n      <xsd:enumeration value=\"lastMonth\"/>\n      <xsd:enumeration value=\"nextQuarter\"/>\n      <xsd:enumeration value=\"thisQuarter\"/>\n      <xsd:enumeration value=\"lastQuarter\"/>\n      <xsd:enumeration value=\"nextYear\"/>\n      <xsd:enumeration value=\"thisYear\"/>\n      <xsd:enumeration value=\"lastYear\"/>\n      <xsd:enumeration value=\"yearToDate\"/>\n      <xsd:enumeration value=\"Q1\"/>\n      <xsd:enumeration value=\"Q2\"/>\n      <xsd:enumeration value=\"Q3\"/>\n      <xsd:enumeration value=\"Q4\"/>\n      <xsd:enumeration value=\"M1\"/>\n      <xsd:enumeration value=\"M2\"/>\n      <xsd:enumeration value=\"M3\"/>\n      <xsd:enumeration value=\"M4\"/>\n      <xsd:enumeration value=\"M5\"/>\n      <xsd:enumeration value=\"M6\"/>\n      <xsd:enumeration value=\"M7\"/>\n      <xsd:enumeration value=\"M8\"/>\n      <xsd:enumeration value=\"M9\"/>\n      <xsd:enumeration value=\"M10\"/>\n      <xsd:enumeration value=\"M11\"/>\n      <xsd:enumeration value=\"M12\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PivotArea\">\n    <xsd:sequence>\n      <xsd:element name=\"references\" minOccurs=\"0\" type=\"CT_PivotAreaReferences\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"field\" use=\"optional\" type=\"xsd:int\"/>\n    <xsd:attribute name=\"type\" type=\"ST_PivotAreaType\" default=\"normal\"/>\n    <xsd:attribute name=\"dataOnly\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"labelOnly\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"grandRow\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"grandCol\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"cacheIndex\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"outline\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"offset\" type=\"ST_Ref\"/>\n    <xsd:attribute name=\"collapsedLevelsAreSubtotals\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"axis\" type=\"ST_Axis\" use=\"optional\"/>\n    <xsd:attribute name=\"fieldPosition\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PivotAreaType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"data\"/>\n      <xsd:enumeration value=\"all\"/>\n      <xsd:enumeration value=\"origin\"/>\n      <xsd:enumeration value=\"button\"/>\n      <xsd:enumeration value=\"topEnd\"/>\n      <xsd:enumeration value=\"topRight\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PivotAreaReferences\">\n    <xsd:sequence>\n      <xsd:element name=\"reference\" maxOccurs=\"unbounded\" type=\"CT_PivotAreaReference\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotAreaReference\">\n    <xsd:sequence>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Index\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"field\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"selected\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"byPosition\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"relative\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"defaultSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"sumSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"countASubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"avgSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"maxSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"minSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"productSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"countSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"stdDevSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"stdDevPSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"varSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"varPSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Index\">\n    <xsd:attribute name=\"v\" use=\"required\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Axis\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"axisRow\"/>\n      <xsd:enumeration value=\"axisCol\"/>\n      <xsd:enumeration value=\"axisPage\"/>\n      <xsd:enumeration value=\"axisValues\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"queryTable\" type=\"CT_QueryTable\"/>\n  <xsd:complexType name=\"CT_QueryTable\">\n    <xsd:sequence>\n      <xsd:element name=\"queryTableRefresh\" type=\"CT_QueryTableRefresh\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"headers\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"rowNumbers\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"disableRefresh\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"backgroundRefresh\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"firstBackgroundRefresh\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"refreshOnLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"growShrinkType\" type=\"ST_GrowShrinkType\" use=\"optional\"\n      default=\"insertDelete\"/>\n    <xsd:attribute name=\"fillFormulas\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"removeDataOnSave\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"disableEdit\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"preserveFormatting\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"adjustColumnWidth\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"intermediate\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"connectionId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attributeGroup ref=\"AG_AutoFormat\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_QueryTableRefresh\">\n    <xsd:sequence>\n      <xsd:element name=\"queryTableFields\" type=\"CT_QueryTableFields\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"queryTableDeletedFields\" type=\"CT_QueryTableDeletedFields\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"sortState\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_SortState\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"preserveSortFilterLayout\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"fieldIdWrapped\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"headersInLastRefresh\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"minimumVersion\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"nextId\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"unboundColumnsLeft\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"unboundColumnsRight\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_QueryTableDeletedFields\">\n    <xsd:sequence>\n      <xsd:element name=\"deletedField\" type=\"CT_DeletedField\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DeletedField\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_QueryTableFields\">\n    <xsd:sequence>\n      <xsd:element name=\"queryTableField\" type=\"CT_QueryTableField\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_QueryTableField\">\n    <xsd:sequence minOccurs=\"0\">\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"dataBound\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"rowNumbers\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"fillFormulas\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"clipped\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"tableColumnId\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_GrowShrinkType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"insertDelete\"/>\n      <xsd:enumeration value=\"insertClear\"/>\n      <xsd:enumeration value=\"overwriteClear\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"sst\" type=\"CT_Sst\"/>\n  <xsd:complexType name=\"CT_Sst\">\n    <xsd:sequence>\n      <xsd:element name=\"si\" type=\"CT_Rst\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"uniqueCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PhoneticType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"halfwidthKatakana\"/>\n      <xsd:enumeration value=\"fullwidthKatakana\"/>\n      <xsd:enumeration value=\"Hiragana\"/>\n      <xsd:enumeration value=\"noConversion\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PhoneticAlignment\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"noControl\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"distributed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PhoneticRun\">\n    <xsd:sequence>\n      <xsd:element name=\"t\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"sb\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"eb\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RElt\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_RPrElt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"t\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RPrElt\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"rFont\" type=\"CT_FontName\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"charset\" type=\"CT_IntProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"family\" type=\"CT_IntProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"b\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"i\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"strike\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"outline\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shadow\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"condense\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extend\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sz\" type=\"CT_FontSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"u\" type=\"CT_UnderlineProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"vertAlign\" type=\"CT_VerticalAlignFontProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scheme\" type=\"CT_FontScheme\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rst\">\n    <xsd:sequence>\n      <xsd:element name=\"t\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"r\" type=\"CT_RElt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rPh\" type=\"CT_PhoneticRun\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"phoneticPr\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_PhoneticPr\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PhoneticPr\">\n    <xsd:attribute name=\"fontId\" type=\"ST_FontId\" use=\"required\"/>\n    <xsd:attribute name=\"type\" type=\"ST_PhoneticType\" use=\"optional\" default=\"fullwidthKatakana\"/>\n    <xsd:attribute name=\"alignment\" type=\"ST_PhoneticAlignment\" use=\"optional\" default=\"left\"/>\n  </xsd:complexType>\n  <xsd:element name=\"headers\" type=\"CT_RevisionHeaders\"/>\n  <xsd:element name=\"revisions\" type=\"CT_Revisions\"/>\n  <xsd:complexType name=\"CT_RevisionHeaders\">\n    <xsd:sequence>\n      <xsd:element name=\"header\" type=\"CT_RevisionHeader\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"lastGuid\" type=\"s:ST_Guid\" use=\"optional\"/>\n    <xsd:attribute name=\"shared\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"diskRevisions\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"history\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"trackRevisions\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"exclusive\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"revisionId\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"version\" type=\"xsd:int\" default=\"1\"/>\n    <xsd:attribute name=\"keepChangeHistory\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"protected\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"preserveHistory\" type=\"xsd:unsignedInt\" default=\"30\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Revisions\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"rrc\" type=\"CT_RevisionRowColumn\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rm\" type=\"CT_RevisionMove\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rcv\" type=\"CT_RevisionCustomView\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rsnm\" type=\"CT_RevisionSheetRename\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"ris\" type=\"CT_RevisionInsertSheet\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rcc\" type=\"CT_RevisionCellChange\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rfmt\" type=\"CT_RevisionFormatting\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"raf\" type=\"CT_RevisionAutoFormatting\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rdn\" type=\"CT_RevisionDefinedName\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rcmt\" type=\"CT_RevisionComment\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rqt\" type=\"CT_RevisionQueryTableField\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rcft\" type=\"CT_RevisionConflict\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:attributeGroup name=\"AG_RevData\">\n    <xsd:attribute name=\"rId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"ua\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"ra\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_RevisionHeader\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetIdMap\" minOccurs=\"1\" maxOccurs=\"1\" type=\"CT_SheetIdMap\"/>\n      <xsd:element name=\"reviewedList\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ReviewedRevisions\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"dateTime\" type=\"xsd:dateTime\" use=\"required\"/>\n    <xsd:attribute name=\"maxSheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"userName\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n    <xsd:attribute name=\"minRId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"maxRId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetIdMap\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetId\" type=\"CT_SheetId\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetId\">\n    <xsd:attribute name=\"val\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ReviewedRevisions\">\n    <xsd:sequence>\n      <xsd:element name=\"reviewed\" type=\"CT_Reviewed\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Reviewed\">\n    <xsd:attribute name=\"rId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_UndoInfo\">\n    <xsd:attribute name=\"index\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"exp\" type=\"ST_FormulaExpression\" use=\"required\"/>\n    <xsd:attribute name=\"ref3D\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"array\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"v\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"nf\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"cs\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"dr\" type=\"ST_RefA\" use=\"required\"/>\n    <xsd:attribute name=\"dn\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"sId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionRowColumn\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"undo\" type=\"CT_UndoInfo\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rcc\" type=\"CT_RevisionCellChange\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rfmt\" type=\"CT_RevisionFormatting\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"sId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"eol\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"action\" type=\"ST_rwColActionType\" use=\"required\"/>\n    <xsd:attribute name=\"edge\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionMove\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"undo\" type=\"CT_UndoInfo\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rcc\" type=\"CT_RevisionCellChange\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rfmt\" type=\"CT_RevisionFormatting\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"source\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"destination\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"sourceSheetId\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionCustomView\">\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"action\" type=\"ST_RevisionAction\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionSheetRename\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"oldName\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"newName\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionInsertSheet\">\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"sheetPosition\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionCellChange\">\n    <xsd:sequence>\n      <xsd:element name=\"oc\" type=\"CT_Cell\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"nc\" type=\"CT_Cell\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"odxf\" type=\"CT_Dxf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ndxf\" type=\"CT_Dxf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"sId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"odxf\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"xfDxf\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"dxf\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"optional\"/>\n    <xsd:attribute name=\"quotePrefix\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"oldQuotePrefix\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"ph\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"oldPh\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"endOfListFormulaUpdate\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionFormatting\">\n    <xsd:sequence>\n      <xsd:element name=\"dxf\" type=\"CT_Dxf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"xfDxf\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\" use=\"required\"/>\n    <xsd:attribute name=\"start\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"length\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionAutoFormatting\">\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attributeGroup ref=\"AG_AutoFormat\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionComment\">\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"cell\" type=\"ST_CellRef\" use=\"required\"/>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"action\" type=\"ST_RevisionAction\" default=\"add\"/>\n    <xsd:attribute name=\"alwaysShow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"old\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"hiddenRow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"hiddenColumn\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"author\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"oldLength\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"newLength\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionDefinedName\">\n    <xsd:sequence>\n      <xsd:element name=\"formula\" type=\"ST_Formula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oldFormula\" type=\"ST_Formula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"localSheetId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"customView\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"function\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"oldFunction\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"functionGroupId\" type=\"xsd:unsignedByte\" use=\"optional\"/>\n    <xsd:attribute name=\"oldFunctionGroupId\" type=\"xsd:unsignedByte\" use=\"optional\"/>\n    <xsd:attribute name=\"shortcutKey\" type=\"xsd:unsignedByte\" use=\"optional\"/>\n    <xsd:attribute name=\"oldShortcutKey\" type=\"xsd:unsignedByte\" use=\"optional\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"oldHidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"customMenu\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"oldCustomMenu\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"description\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"oldDescription\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"help\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"oldHelp\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"statusBar\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"oldStatusBar\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"comment\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"oldComment\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionConflict\">\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionQueryTableField\">\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"fieldId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_rwColActionType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"insertRow\"/>\n      <xsd:enumeration value=\"deleteRow\"/>\n      <xsd:enumeration value=\"insertCol\"/>\n      <xsd:enumeration value=\"deleteCol\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RevisionAction\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"add\"/>\n      <xsd:enumeration value=\"delete\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FormulaExpression\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"ref\"/>\n      <xsd:enumeration value=\"refError\"/>\n      <xsd:enumeration value=\"area\"/>\n      <xsd:enumeration value=\"areaError\"/>\n      <xsd:enumeration value=\"computedArea\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"users\" type=\"CT_Users\"/>\n  <xsd:complexType name=\"CT_Users\">\n    <xsd:sequence>\n      <xsd:element name=\"userInfo\" minOccurs=\"0\" maxOccurs=\"256\" type=\"CT_SharedUser\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SharedUser\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"id\" type=\"xsd:int\" use=\"required\"/>\n    <xsd:attribute name=\"dateTime\" type=\"xsd:dateTime\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"worksheet\" type=\"CT_Worksheet\"/>\n  <xsd:element name=\"chartsheet\" type=\"CT_Chartsheet\"/>\n  <xsd:element name=\"dialogsheet\" type=\"CT_Dialogsheet\"/>\n  <xsd:complexType name=\"CT_Macrosheet\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetPr\" type=\"CT_SheetPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dimension\" type=\"CT_SheetDimension\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetViews\" type=\"CT_SheetViews\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetFormatPr\" type=\"CT_SheetFormatPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cols\" type=\"CT_Cols\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"sheetData\" type=\"CT_SheetData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetProtection\" type=\"CT_SheetProtection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"autoFilter\" type=\"CT_AutoFilter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sortState\" type=\"CT_SortState\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dataConsolidate\" type=\"CT_DataConsolidate\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customSheetViews\" type=\"CT_CustomSheetViews\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"phoneticPr\" type=\"CT_PhoneticPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"conditionalFormatting\" type=\"CT_ConditionalFormatting\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"printOptions\" type=\"CT_PrintOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageMargins\" type=\"CT_PageMargins\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageSetup\" type=\"CT_PageSetup\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headerFooter\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rowBreaks\" type=\"CT_PageBreak\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"colBreaks\" type=\"CT_PageBreak\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customProperties\" type=\"CT_CustomProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawing\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawingHF\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"drawingHF\" type=\"CT_DrawingHF\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"picture\" type=\"CT_SheetBackgroundPicture\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oleObjects\" type=\"CT_OleObjects\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Dialogsheet\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetPr\" minOccurs=\"0\" type=\"CT_SheetPr\"/>\n      <xsd:element name=\"sheetViews\" minOccurs=\"0\" type=\"CT_SheetViews\"/>\n      <xsd:element name=\"sheetFormatPr\" minOccurs=\"0\" type=\"CT_SheetFormatPr\"/>\n      <xsd:element name=\"sheetProtection\" type=\"CT_SheetProtection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customSheetViews\" minOccurs=\"0\" type=\"CT_CustomSheetViews\"/>\n      <xsd:element name=\"printOptions\" minOccurs=\"0\" type=\"CT_PrintOptions\"/>\n      <xsd:element name=\"pageMargins\" minOccurs=\"0\" type=\"CT_PageMargins\"/>\n      <xsd:element name=\"pageSetup\" minOccurs=\"0\" type=\"CT_PageSetup\"/>\n      <xsd:element name=\"headerFooter\" minOccurs=\"0\" type=\"CT_HeaderFooter\"/>\n      <xsd:element name=\"drawing\" minOccurs=\"0\" type=\"CT_Drawing\"/>\n      <xsd:element name=\"legacyDrawing\" minOccurs=\"0\" type=\"CT_LegacyDrawing\"/>\n      <xsd:element name=\"legacyDrawingHF\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"drawingHF\" type=\"CT_DrawingHF\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oleObjects\" type=\"CT_OleObjects\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"controls\" type=\"CT_Controls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Worksheet\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetPr\" type=\"CT_SheetPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dimension\" type=\"CT_SheetDimension\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetViews\" type=\"CT_SheetViews\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetFormatPr\" type=\"CT_SheetFormatPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cols\" type=\"CT_Cols\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"sheetData\" type=\"CT_SheetData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetCalcPr\" type=\"CT_SheetCalcPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetProtection\" type=\"CT_SheetProtection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"protectedRanges\" type=\"CT_ProtectedRanges\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scenarios\" type=\"CT_Scenarios\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"autoFilter\" type=\"CT_AutoFilter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sortState\" type=\"CT_SortState\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dataConsolidate\" type=\"CT_DataConsolidate\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customSheetViews\" type=\"CT_CustomSheetViews\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"mergeCells\" type=\"CT_MergeCells\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"phoneticPr\" type=\"CT_PhoneticPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"conditionalFormatting\" type=\"CT_ConditionalFormatting\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dataValidations\" type=\"CT_DataValidations\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hyperlinks\" type=\"CT_Hyperlinks\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"printOptions\" type=\"CT_PrintOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageMargins\" type=\"CT_PageMargins\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageSetup\" type=\"CT_PageSetup\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headerFooter\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rowBreaks\" type=\"CT_PageBreak\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"colBreaks\" type=\"CT_PageBreak\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customProperties\" type=\"CT_CustomProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cellWatches\" type=\"CT_CellWatches\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ignoredErrors\" type=\"CT_IgnoredErrors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smartTags\" type=\"CT_SmartTags\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawing\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawingHF\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"drawingHF\" type=\"CT_DrawingHF\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"picture\" type=\"CT_SheetBackgroundPicture\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oleObjects\" type=\"CT_OleObjects\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"controls\" type=\"CT_Controls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"webPublishItems\" type=\"CT_WebPublishItems\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tableParts\" type=\"CT_TableParts\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetData\">\n    <xsd:sequence>\n      <xsd:element name=\"row\" type=\"CT_Row\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetCalcPr\">\n    <xsd:attribute name=\"fullCalcOnLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetFormatPr\">\n    <xsd:attribute name=\"baseColWidth\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"8\"/>\n    <xsd:attribute name=\"defaultColWidth\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"defaultRowHeight\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"customHeight\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"zeroHeight\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"thickTop\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"thickBottom\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"outlineLevelRow\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"outlineLevelCol\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Cols\">\n    <xsd:sequence>\n      <xsd:element name=\"col\" type=\"CT_Col\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Col\">\n    <xsd:attribute name=\"min\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"max\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"width\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"style\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"bestFit\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"customWidth\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"phonetic\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"outlineLevel\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"collapsed\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CellSpan\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CellSpans\">\n    <xsd:list itemType=\"ST_CellSpan\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Row\">\n    <xsd:sequence>\n      <xsd:element name=\"c\" type=\"CT_Cell\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"r\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"spans\" type=\"ST_CellSpans\" use=\"optional\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"customFormat\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"ht\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"customHeight\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"outlineLevel\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"collapsed\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"thickTop\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"thickBot\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"ph\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Cell\">\n    <xsd:sequence>\n      <xsd:element name=\"f\" type=\"CT_CellFormula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"v\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"is\" type=\"CT_Rst\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"t\" type=\"ST_CellType\" use=\"optional\" default=\"n\"/>\n    <xsd:attribute name=\"cm\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"vm\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ph\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CellType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"n\"/>\n      <xsd:enumeration value=\"e\"/>\n      <xsd:enumeration value=\"s\"/>\n      <xsd:enumeration value=\"str\"/>\n      <xsd:enumeration value=\"inlineStr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CellFormulaType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"array\"/>\n      <xsd:enumeration value=\"dataTable\"/>\n      <xsd:enumeration value=\"shared\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SheetPr\">\n    <xsd:sequence>\n      <xsd:element name=\"tabColor\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"outlinePr\" type=\"CT_OutlinePr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageSetUpPr\" type=\"CT_PageSetUpPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"syncHorizontal\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"syncVertical\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"syncRef\" type=\"ST_Ref\" use=\"optional\"/>\n    <xsd:attribute name=\"transitionEvaluation\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"transitionEntry\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"published\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"codeName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"filterMode\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"enableFormatConditionsCalculation\" type=\"xsd:boolean\" use=\"optional\"\n      default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetDimension\">\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetViews\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetView\" type=\"CT_SheetView\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetView\">\n    <xsd:sequence>\n      <xsd:element name=\"pane\" type=\"CT_Pane\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"selection\" type=\"CT_Selection\" minOccurs=\"0\" maxOccurs=\"4\"/>\n      <xsd:element name=\"pivotSelection\" type=\"CT_PivotSelection\" minOccurs=\"0\" maxOccurs=\"4\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"windowProtection\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showFormulas\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showGridLines\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showRowColHeaders\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showZeros\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"rightToLeft\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"tabSelected\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showRuler\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showOutlineSymbols\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"defaultGridColor\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showWhiteSpace\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"view\" type=\"ST_SheetViewType\" use=\"optional\" default=\"normal\"/>\n    <xsd:attribute name=\"topLeftCell\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"colorId\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"64\"/>\n    <xsd:attribute name=\"zoomScale\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"100\"/>\n    <xsd:attribute name=\"zoomScaleNormal\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"zoomScaleSheetLayoutView\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"zoomScalePageLayoutView\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"workbookViewId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Pane\">\n    <xsd:attribute name=\"xSplit\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ySplit\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"topLeftCell\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"activePane\" type=\"ST_Pane\" use=\"optional\" default=\"topLeft\"/>\n    <xsd:attribute name=\"state\" type=\"ST_PaneState\" use=\"optional\" default=\"split\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotSelection\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotArea\" type=\"CT_PivotArea\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"pane\" type=\"ST_Pane\" use=\"optional\" default=\"topLeft\"/>\n    <xsd:attribute name=\"showHeader\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"label\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"data\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"extendable\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"axis\" type=\"ST_Axis\" use=\"optional\"/>\n    <xsd:attribute name=\"dimension\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"start\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"min\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"max\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"activeRow\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"activeCol\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"previousRow\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"previousCol\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"click\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Selection\">\n    <xsd:attribute name=\"pane\" type=\"ST_Pane\" use=\"optional\" default=\"topLeft\"/>\n    <xsd:attribute name=\"activeCell\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"activeCellId\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\" use=\"optional\" default=\"A1\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Pane\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"bottomRight\"/>\n      <xsd:enumeration value=\"topRight\"/>\n      <xsd:enumeration value=\"bottomLeft\"/>\n      <xsd:enumeration value=\"topLeft\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PageBreak\">\n    <xsd:sequence>\n      <xsd:element name=\"brk\" type=\"CT_Break\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"manualBreakCount\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Break\">\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"min\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"max\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"man\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pt\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SheetViewType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"pageBreakPreview\"/>\n      <xsd:enumeration value=\"pageLayout\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_OutlinePr\">\n    <xsd:attribute name=\"applyStyles\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"summaryBelow\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"summaryRight\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showOutlineSymbols\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageSetUpPr\">\n    <xsd:attribute name=\"autoPageBreaks\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"fitToPage\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataConsolidate\">\n    <xsd:sequence>\n      <xsd:element name=\"dataRefs\" type=\"CT_DataRefs\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"function\" type=\"ST_DataConsolidateFunction\" use=\"optional\" default=\"sum\"/>\n    <xsd:attribute name=\"startLabels\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"leftLabels\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"topLabels\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"link\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DataConsolidateFunction\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"average\"/>\n      <xsd:enumeration value=\"count\"/>\n      <xsd:enumeration value=\"countNums\"/>\n      <xsd:enumeration value=\"max\"/>\n      <xsd:enumeration value=\"min\"/>\n      <xsd:enumeration value=\"product\"/>\n      <xsd:enumeration value=\"stdDev\"/>\n      <xsd:enumeration value=\"stdDevp\"/>\n      <xsd:enumeration value=\"sum\"/>\n      <xsd:enumeration value=\"var\"/>\n      <xsd:enumeration value=\"varp\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DataRefs\">\n    <xsd:sequence>\n      <xsd:element name=\"dataRef\" type=\"CT_DataRef\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataRef\">\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"optional\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"sheet\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MergeCells\">\n    <xsd:sequence>\n      <xsd:element name=\"mergeCell\" type=\"CT_MergeCell\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MergeCell\">\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SmartTags\">\n    <xsd:sequence>\n      <xsd:element name=\"cellSmartTags\" type=\"CT_CellSmartTags\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellSmartTags\">\n    <xsd:sequence>\n      <xsd:element name=\"cellSmartTag\" type=\"CT_CellSmartTag\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellSmartTag\">\n    <xsd:sequence>\n      <xsd:element name=\"cellSmartTagPr\" minOccurs=\"0\" maxOccurs=\"unbounded\"\n        type=\"CT_CellSmartTagPr\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"deleted\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"xmlBased\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellSmartTagPr\">\n    <xsd:attribute name=\"key\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Drawing\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LegacyDrawing\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DrawingHF\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n    <xsd:attribute name=\"lho\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"lhe\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"lhf\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"cho\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"che\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"chf\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rho\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rhe\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rhf\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"lfo\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"lfe\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"lff\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"cfo\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"cfe\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"cff\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rfo\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rfe\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rff\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomSheetViews\">\n    <xsd:sequence>\n      <xsd:element name=\"customSheetView\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n        type=\"CT_CustomSheetView\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomSheetView\">\n    <xsd:sequence>\n      <xsd:element name=\"pane\" type=\"CT_Pane\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"selection\" type=\"CT_Selection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rowBreaks\" type=\"CT_PageBreak\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"colBreaks\" type=\"CT_PageBreak\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageMargins\" type=\"CT_PageMargins\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"printOptions\" type=\"CT_PrintOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageSetup\" type=\"CT_PageSetup\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headerFooter\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"autoFilter\" type=\"CT_AutoFilter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"scale\" type=\"xsd:unsignedInt\" default=\"100\"/>\n    <xsd:attribute name=\"colorId\" type=\"xsd:unsignedInt\" default=\"64\"/>\n    <xsd:attribute name=\"showPageBreaks\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showFormulas\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showGridLines\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showRowCol\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"outlineSymbols\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"zeroValues\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"fitToPage\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"printArea\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"filter\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showAutoFilter\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"hiddenRows\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"hiddenColumns\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"state\" type=\"ST_SheetState\" default=\"visible\"/>\n    <xsd:attribute name=\"filterUnique\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"view\" type=\"ST_SheetViewType\" default=\"normal\"/>\n    <xsd:attribute name=\"showRuler\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"topLeftCell\" type=\"ST_CellRef\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataValidations\">\n    <xsd:sequence>\n      <xsd:element name=\"dataValidation\" type=\"CT_DataValidation\" minOccurs=\"1\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"disablePrompts\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"xWindow\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"yWindow\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataValidation\">\n    <xsd:sequence>\n      <xsd:element name=\"formula1\" type=\"ST_Formula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"formula2\" type=\"ST_Formula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_DataValidationType\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"errorStyle\" type=\"ST_DataValidationErrorStyle\" use=\"optional\"\n      default=\"stop\"/>\n    <xsd:attribute name=\"imeMode\" type=\"ST_DataValidationImeMode\" use=\"optional\" default=\"noControl\"/>\n    <xsd:attribute name=\"operator\" type=\"ST_DataValidationOperator\" use=\"optional\" default=\"between\"/>\n    <xsd:attribute name=\"allowBlank\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showDropDown\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showInputMessage\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showErrorMessage\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"errorTitle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"error\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"promptTitle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"prompt\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DataValidationType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"whole\"/>\n      <xsd:enumeration value=\"decimal\"/>\n      <xsd:enumeration value=\"list\"/>\n      <xsd:enumeration value=\"date\"/>\n      <xsd:enumeration value=\"time\"/>\n      <xsd:enumeration value=\"textLength\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DataValidationOperator\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"between\"/>\n      <xsd:enumeration value=\"notBetween\"/>\n      <xsd:enumeration value=\"equal\"/>\n      <xsd:enumeration value=\"notEqual\"/>\n      <xsd:enumeration value=\"lessThan\"/>\n      <xsd:enumeration value=\"lessThanOrEqual\"/>\n      <xsd:enumeration value=\"greaterThan\"/>\n      <xsd:enumeration value=\"greaterThanOrEqual\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DataValidationErrorStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"stop\"/>\n      <xsd:enumeration value=\"warning\"/>\n      <xsd:enumeration value=\"information\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DataValidationImeMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"noControl\"/>\n      <xsd:enumeration value=\"off\"/>\n      <xsd:enumeration value=\"on\"/>\n      <xsd:enumeration value=\"disabled\"/>\n      <xsd:enumeration value=\"hiragana\"/>\n      <xsd:enumeration value=\"fullKatakana\"/>\n      <xsd:enumeration value=\"halfKatakana\"/>\n      <xsd:enumeration value=\"fullAlpha\"/>\n      <xsd:enumeration value=\"halfAlpha\"/>\n      <xsd:enumeration value=\"fullHangul\"/>\n      <xsd:enumeration value=\"halfHangul\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CfType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"expression\"/>\n      <xsd:enumeration value=\"cellIs\"/>\n      <xsd:enumeration value=\"colorScale\"/>\n      <xsd:enumeration value=\"dataBar\"/>\n      <xsd:enumeration value=\"iconSet\"/>\n      <xsd:enumeration value=\"top10\"/>\n      <xsd:enumeration value=\"uniqueValues\"/>\n      <xsd:enumeration value=\"duplicateValues\"/>\n      <xsd:enumeration value=\"containsText\"/>\n      <xsd:enumeration value=\"notContainsText\"/>\n      <xsd:enumeration value=\"beginsWith\"/>\n      <xsd:enumeration value=\"endsWith\"/>\n      <xsd:enumeration value=\"containsBlanks\"/>\n      <xsd:enumeration value=\"notContainsBlanks\"/>\n      <xsd:enumeration value=\"containsErrors\"/>\n      <xsd:enumeration value=\"notContainsErrors\"/>\n      <xsd:enumeration value=\"timePeriod\"/>\n      <xsd:enumeration value=\"aboveAverage\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TimePeriod\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"today\"/>\n      <xsd:enumeration value=\"yesterday\"/>\n      <xsd:enumeration value=\"tomorrow\"/>\n      <xsd:enumeration value=\"last7Days\"/>\n      <xsd:enumeration value=\"thisMonth\"/>\n      <xsd:enumeration value=\"lastMonth\"/>\n      <xsd:enumeration value=\"nextMonth\"/>\n      <xsd:enumeration value=\"thisWeek\"/>\n      <xsd:enumeration value=\"lastWeek\"/>\n      <xsd:enumeration value=\"nextWeek\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConditionalFormattingOperator\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"lessThan\"/>\n      <xsd:enumeration value=\"lessThanOrEqual\"/>\n      <xsd:enumeration value=\"equal\"/>\n      <xsd:enumeration value=\"notEqual\"/>\n      <xsd:enumeration value=\"greaterThanOrEqual\"/>\n      <xsd:enumeration value=\"greaterThan\"/>\n      <xsd:enumeration value=\"between\"/>\n      <xsd:enumeration value=\"notBetween\"/>\n      <xsd:enumeration value=\"containsText\"/>\n      <xsd:enumeration value=\"notContains\"/>\n      <xsd:enumeration value=\"beginsWith\"/>\n      <xsd:enumeration value=\"endsWith\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CfvoType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"num\"/>\n      <xsd:enumeration value=\"percent\"/>\n      <xsd:enumeration value=\"max\"/>\n      <xsd:enumeration value=\"min\"/>\n      <xsd:enumeration value=\"formula\"/>\n      <xsd:enumeration value=\"percentile\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ConditionalFormatting\">\n    <xsd:sequence>\n      <xsd:element name=\"cfRule\" type=\"CT_CfRule\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"pivot\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CfRule\">\n    <xsd:sequence>\n      <xsd:element name=\"formula\" type=\"ST_Formula\" minOccurs=\"0\" maxOccurs=\"3\"/>\n      <xsd:element name=\"colorScale\" type=\"CT_ColorScale\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dataBar\" type=\"CT_DataBar\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"iconSet\" type=\"CT_IconSet\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_CfType\"/>\n    <xsd:attribute name=\"dxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"priority\" type=\"xsd:int\" use=\"required\"/>\n    <xsd:attribute name=\"stopIfTrue\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"aboveAverage\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"percent\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"bottom\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"operator\" type=\"ST_ConditionalFormattingOperator\" use=\"optional\"/>\n    <xsd:attribute name=\"text\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"timePeriod\" type=\"ST_TimePeriod\" use=\"optional\"/>\n    <xsd:attribute name=\"rank\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"stdDev\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"equalAverage\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Hyperlinks\">\n    <xsd:sequence>\n      <xsd:element name=\"hyperlink\" type=\"CT_Hyperlink\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Hyperlink\">\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"location\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"tooltip\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"display\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellFormula\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"ST_Formula\">\n        <xsd:attribute name=\"t\" type=\"ST_CellFormulaType\" use=\"optional\" default=\"normal\"/>\n        <xsd:attribute name=\"aca\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"optional\"/>\n        <xsd:attribute name=\"dt2D\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"dtr\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"del1\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"del2\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"r1\" type=\"ST_CellRef\" use=\"optional\"/>\n        <xsd:attribute name=\"r2\" type=\"ST_CellRef\" use=\"optional\"/>\n        <xsd:attribute name=\"ca\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"si\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n        <xsd:attribute name=\"bx\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorScale\">\n    <xsd:sequence>\n      <xsd:element name=\"cfvo\" type=\"CT_Cfvo\" minOccurs=\"2\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"2\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataBar\">\n    <xsd:sequence>\n      <xsd:element name=\"cfvo\" type=\"CT_Cfvo\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"minLength\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"10\"/>\n    <xsd:attribute name=\"maxLength\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"90\"/>\n    <xsd:attribute name=\"showValue\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_IconSet\">\n    <xsd:sequence>\n      <xsd:element name=\"cfvo\" type=\"CT_Cfvo\" minOccurs=\"2\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"iconSet\" type=\"ST_IconSetType\" use=\"optional\" default=\"3TrafficLights1\"/>\n    <xsd:attribute name=\"showValue\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"percent\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"reverse\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Cfvo\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_CfvoType\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"gte\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageMargins\">\n    <xsd:attribute name=\"left\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"right\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"top\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"bottom\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"header\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"footer\" type=\"xsd:double\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PrintOptions\">\n    <xsd:attribute name=\"horizontalCentered\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"verticalCentered\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"headings\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"gridLines\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"gridLinesSet\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageSetup\">\n    <xsd:attribute name=\"paperSize\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"paperHeight\" type=\"s:ST_PositiveUniversalMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"paperWidth\" type=\"s:ST_PositiveUniversalMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"scale\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"100\"/>\n    <xsd:attribute name=\"firstPageNumber\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"fitToWidth\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"fitToHeight\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"pageOrder\" type=\"ST_PageOrder\" use=\"optional\" default=\"downThenOver\"/>\n    <xsd:attribute name=\"orientation\" type=\"ST_Orientation\" use=\"optional\" default=\"default\"/>\n    <xsd:attribute name=\"usePrinterDefaults\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"blackAndWhite\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"draft\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"cellComments\" type=\"ST_CellComments\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"useFirstPageNumber\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"errors\" type=\"ST_PrintError\" use=\"optional\" default=\"displayed\"/>\n    <xsd:attribute name=\"horizontalDpi\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"verticalDpi\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"copies\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PageOrder\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"downThenOver\"/>\n      <xsd:enumeration value=\"overThenDown\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Orientation\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"portrait\"/>\n      <xsd:enumeration value=\"landscape\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CellComments\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"asDisplayed\"/>\n      <xsd:enumeration value=\"atEnd\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_HeaderFooter\">\n    <xsd:sequence>\n      <xsd:element name=\"oddHeader\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oddFooter\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"evenHeader\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"evenFooter\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstHeader\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstFooter\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"differentOddEven\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"differentFirst\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"scaleWithDoc\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"alignWithMargins\" type=\"xsd:boolean\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PrintError\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"displayed\"/>\n      <xsd:enumeration value=\"blank\"/>\n      <xsd:enumeration value=\"dash\"/>\n      <xsd:enumeration value=\"NA\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Scenarios\">\n    <xsd:sequence>\n      <xsd:element name=\"scenario\" type=\"CT_Scenario\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"current\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"show\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetProtection\">\n    <xsd:attribute name=\"password\" type=\"ST_UnsignedShortHex\" use=\"optional\"/>\n    <xsd:attribute name=\"algorithmName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"hashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"saltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"spinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"sheet\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"objects\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"scenarios\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"formatCells\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"formatColumns\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"formatRows\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"insertColumns\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"insertRows\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"insertHyperlinks\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"deleteColumns\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"deleteRows\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"selectLockedCells\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"sort\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"autoFilter\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"pivotTables\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"selectUnlockedCells\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ProtectedRanges\">\n    <xsd:sequence>\n      <xsd:element name=\"protectedRange\" type=\"CT_ProtectedRange\" minOccurs=\"1\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ProtectedRange\">\n    <xsd:sequence>\n      <xsd:element name=\"securityDescriptor\" type=\"xsd:string\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"password\" type=\"ST_UnsignedShortHex\" use=\"optional\"/>\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"securityDescriptor\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"algorithmName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"hashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"saltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"spinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Scenario\">\n    <xsd:sequence>\n      <xsd:element name=\"inputCells\" type=\"CT_InputCells\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"locked\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"user\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"comment\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_InputCells\">\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"required\"/>\n    <xsd:attribute name=\"deleted\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"undone\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellWatches\">\n    <xsd:sequence>\n      <xsd:element name=\"cellWatch\" type=\"CT_CellWatch\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellWatch\">\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Chartsheet\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetPr\" type=\"CT_ChartsheetPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetViews\" type=\"CT_ChartsheetViews\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetProtection\" type=\"CT_ChartsheetProtection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customSheetViews\" type=\"CT_CustomChartsheetViews\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"pageMargins\" minOccurs=\"0\" type=\"CT_PageMargins\"/>\n      <xsd:element name=\"pageSetup\" type=\"CT_CsPageSetup\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headerFooter\" minOccurs=\"0\" type=\"CT_HeaderFooter\"/>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawing\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawingHF\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"drawingHF\" type=\"CT_DrawingHF\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"picture\" type=\"CT_SheetBackgroundPicture\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"webPublishItems\" type=\"CT_WebPublishItems\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartsheetPr\">\n    <xsd:sequence>\n      <xsd:element name=\"tabColor\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"published\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"codeName\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartsheetViews\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetView\" type=\"CT_ChartsheetView\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartsheetView\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"tabSelected\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"zoomScale\" type=\"xsd:unsignedInt\" default=\"100\" use=\"optional\"/>\n    <xsd:attribute name=\"workbookViewId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"zoomToFit\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartsheetProtection\">\n    <xsd:attribute name=\"password\" type=\"ST_UnsignedShortHex\" use=\"optional\"/>\n    <xsd:attribute name=\"algorithmName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"hashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"saltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"spinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"content\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"objects\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CsPageSetup\">\n    <xsd:attribute name=\"paperSize\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"paperHeight\" type=\"s:ST_PositiveUniversalMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"paperWidth\" type=\"s:ST_PositiveUniversalMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"firstPageNumber\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"orientation\" type=\"ST_Orientation\" use=\"optional\" default=\"default\"/>\n    <xsd:attribute name=\"usePrinterDefaults\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"blackAndWhite\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"draft\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"useFirstPageNumber\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"horizontalDpi\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"verticalDpi\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"copies\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomChartsheetViews\">\n    <xsd:sequence>\n      <xsd:element name=\"customSheetView\" minOccurs=\"0\" maxOccurs=\"unbounded\"\n        type=\"CT_CustomChartsheetView\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomChartsheetView\">\n    <xsd:sequence>\n      <xsd:element name=\"pageMargins\" type=\"CT_PageMargins\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageSetup\" type=\"CT_CsPageSetup\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headerFooter\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"scale\" type=\"xsd:unsignedInt\" default=\"100\"/>\n    <xsd:attribute name=\"state\" type=\"ST_SheetState\" default=\"visible\"/>\n    <xsd:attribute name=\"zoomToFit\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"customPr\" type=\"CT_CustomProperty\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomProperty\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleObjects\">\n    <xsd:sequence>\n      <xsd:element name=\"oleObject\" type=\"CT_OleObject\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleObject\">\n    <xsd:sequence>\n      <xsd:element name=\"objectPr\" type=\"CT_ObjectPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"progId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"dvAspect\" type=\"ST_DvAspect\" use=\"optional\" default=\"DVASPECT_CONTENT\"/>\n    <xsd:attribute name=\"link\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"oleUpdate\" type=\"ST_OleUpdate\" use=\"optional\"/>\n    <xsd:attribute name=\"autoLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"shapeId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ObjectPr\">\n    <xsd:sequence>\n      <xsd:element name=\"anchor\" type=\"CT_ObjectAnchor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"locked\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"defaultSize\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"print\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"disabled\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"uiObject\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoFill\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"autoLine\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"autoPict\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"macro\" type=\"ST_Formula\" use=\"optional\"/>\n    <xsd:attribute name=\"altText\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"dde\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DvAspect\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"DVASPECT_CONTENT\"/>\n      <xsd:enumeration value=\"DVASPECT_ICON\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OleUpdate\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"OLEUPDATE_ALWAYS\"/>\n      <xsd:enumeration value=\"OLEUPDATE_ONCALL\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_WebPublishItems\">\n    <xsd:sequence>\n      <xsd:element name=\"webPublishItem\" type=\"CT_WebPublishItem\" minOccurs=\"1\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WebPublishItem\">\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"divId\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"sourceType\" type=\"ST_WebSourceType\" use=\"required\"/>\n    <xsd:attribute name=\"sourceRef\" type=\"ST_Ref\" use=\"optional\"/>\n    <xsd:attribute name=\"sourceObject\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"destinationFile\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"title\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"autoRepublish\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Controls\">\n    <xsd:sequence>\n      <xsd:element name=\"control\" type=\"CT_Control\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Control\">\n    <xsd:sequence>\n      <xsd:element name=\"controlPr\" type=\"CT_ControlPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"shapeId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ControlPr\">\n    <xsd:sequence>\n      <xsd:element name=\"anchor\" type=\"CT_ObjectAnchor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"locked\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"defaultSize\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"print\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"disabled\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"recalcAlways\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"uiObject\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoFill\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"autoLine\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"autoPict\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"macro\" type=\"ST_Formula\" use=\"optional\"/>\n    <xsd:attribute name=\"altText\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"linkedCell\" type=\"ST_Formula\" use=\"optional\"/>\n    <xsd:attribute name=\"listFillRange\" type=\"ST_Formula\" use=\"optional\"/>\n    <xsd:attribute name=\"cf\" type=\"s:ST_Xstring\" use=\"optional\" default=\"pict\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_WebSourceType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"sheet\"/>\n      <xsd:enumeration value=\"printArea\"/>\n      <xsd:enumeration value=\"autoFilter\"/>\n      <xsd:enumeration value=\"range\"/>\n      <xsd:enumeration value=\"chart\"/>\n      <xsd:enumeration value=\"pivotTable\"/>\n      <xsd:enumeration value=\"query\"/>\n      <xsd:enumeration value=\"label\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_IgnoredErrors\">\n    <xsd:sequence>\n      <xsd:element name=\"ignoredError\" type=\"CT_IgnoredError\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_IgnoredError\">\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\" use=\"required\"/>\n    <xsd:attribute name=\"evalError\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"twoDigitTextYear\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"numberStoredAsText\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"formula\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"formulaRange\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"unlockedFormula\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"emptyCellReference\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"listDataValidation\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"calculatedColumn\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PaneState\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"split\"/>\n      <xsd:enumeration value=\"frozen\"/>\n      <xsd:enumeration value=\"frozenSplit\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TableParts\">\n    <xsd:sequence>\n      <xsd:element name=\"tablePart\" type=\"CT_TablePart\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TablePart\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"metadata\" type=\"CT_Metadata\"/>\n  <xsd:complexType name=\"CT_Metadata\">\n    <xsd:sequence>\n      <xsd:element name=\"metadataTypes\" type=\"CT_MetadataTypes\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"metadataStrings\" type=\"CT_MetadataStrings\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"mdxMetadata\" type=\"CT_MdxMetadata\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"futureMetadata\" type=\"CT_FutureMetadata\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"cellMetadata\" type=\"CT_MetadataBlocks\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"valueMetadata\" type=\"CT_MetadataBlocks\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MetadataTypes\">\n    <xsd:sequence>\n      <xsd:element name=\"metadataType\" type=\"CT_MetadataType\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MetadataType\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"minSupportedVersion\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"ghostRow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"ghostCol\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"edit\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"delete\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"copy\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteAll\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteFormulas\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteValues\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteFormats\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteComments\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteDataValidation\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteBorders\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteColWidths\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteNumberFormats\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"merge\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"splitFirst\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"splitAll\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"rowColShift\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"clearAll\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"clearFormats\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"clearContents\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"clearComments\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"assign\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"coerce\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"adjust\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"cellMeta\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MetadataBlocks\">\n    <xsd:sequence>\n      <xsd:element name=\"bk\" type=\"CT_MetadataBlock\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MetadataBlock\">\n    <xsd:sequence>\n      <xsd:element name=\"rc\" type=\"CT_MetadataRecord\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MetadataRecord\">\n    <xsd:attribute name=\"t\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"v\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FutureMetadata\">\n    <xsd:sequence>\n      <xsd:element name=\"bk\" type=\"CT_FutureMetadataBlock\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FutureMetadataBlock\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MdxMetadata\">\n    <xsd:sequence>\n      <xsd:element name=\"mdx\" type=\"CT_Mdx\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Mdx\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"t\" type=\"CT_MdxTuple\"/>\n      <xsd:element name=\"ms\" type=\"CT_MdxSet\"/>\n      <xsd:element name=\"p\" type=\"CT_MdxMemeberProp\"/>\n      <xsd:element name=\"k\" type=\"CT_MdxKPI\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"n\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"f\" type=\"ST_MdxFunctionType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MdxFunctionType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"m\"/>\n      <xsd:enumeration value=\"v\"/>\n      <xsd:enumeration value=\"s\"/>\n      <xsd:enumeration value=\"c\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"p\"/>\n      <xsd:enumeration value=\"k\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MdxTuple\">\n    <xsd:sequence>\n      <xsd:element name=\"n\" type=\"CT_MetadataStringIndex\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"c\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ct\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"si\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"fi\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"bc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"fc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"st\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MdxSet\">\n    <xsd:sequence>\n      <xsd:element name=\"n\" type=\"CT_MetadataStringIndex\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ns\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"c\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"o\" type=\"ST_MdxSetOrder\" use=\"optional\" default=\"u\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MdxSetOrder\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"u\"/>\n      <xsd:enumeration value=\"a\"/>\n      <xsd:enumeration value=\"d\"/>\n      <xsd:enumeration value=\"aa\"/>\n      <xsd:enumeration value=\"ad\"/>\n      <xsd:enumeration value=\"na\"/>\n      <xsd:enumeration value=\"nd\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MdxMemeberProp\">\n    <xsd:attribute name=\"n\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"np\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MdxKPI\">\n    <xsd:attribute name=\"n\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"np\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"p\" type=\"ST_MdxKPIProperty\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MdxKPIProperty\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"v\"/>\n      <xsd:enumeration value=\"g\"/>\n      <xsd:enumeration value=\"s\"/>\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"w\"/>\n      <xsd:enumeration value=\"m\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MetadataStringIndex\">\n    <xsd:attribute name=\"x\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MetadataStrings\">\n    <xsd:sequence>\n      <xsd:element name=\"s\" type=\"CT_XStringElement\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:element name=\"singleXmlCells\" type=\"CT_SingleXmlCells\"/>\n  <xsd:complexType name=\"CT_SingleXmlCells\">\n    <xsd:sequence>\n      <xsd:element name=\"singleXmlCell\" type=\"CT_SingleXmlCell\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SingleXmlCell\">\n    <xsd:sequence>\n      <xsd:element name=\"xmlCellPr\" type=\"CT_XmlCellPr\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"required\"/>\n    <xsd:attribute name=\"connectionId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_XmlCellPr\">\n    <xsd:sequence>\n      <xsd:element name=\"xmlPr\" type=\"CT_XmlPr\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"uniqueName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_XmlPr\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"mapId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"xpath\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"xmlDataType\" type=\"ST_XmlDataType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"styleSheet\" type=\"CT_Stylesheet\"/>\n  <xsd:complexType name=\"CT_Stylesheet\">\n    <xsd:sequence>\n      <xsd:element name=\"numFmts\" type=\"CT_NumFmts\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fonts\" type=\"CT_Fonts\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fills\" type=\"CT_Fills\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"borders\" type=\"CT_Borders\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cellStyleXfs\" type=\"CT_CellStyleXfs\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cellXfs\" type=\"CT_CellXfs\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cellStyles\" type=\"CT_CellStyles\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dxfs\" type=\"CT_Dxfs\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tableStyles\" type=\"CT_TableStyles\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"colors\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellAlignment\">\n    <xsd:attribute name=\"horizontal\" type=\"ST_HorizontalAlignment\" use=\"optional\"/>\n    <xsd:attribute name=\"vertical\" type=\"ST_VerticalAlignment\" default=\"bottom\" use=\"optional\"/>\n    <xsd:attribute name=\"textRotation\" type=\"ST_TextRotation\" use=\"optional\"/>\n    <xsd:attribute name=\"wrapText\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"indent\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"relativeIndent\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"justifyLastLine\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"shrinkToFit\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"readingOrder\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextRotation\">\n    <xsd:union>\n      <xsd:simpleType>\n        <xsd:restriction base=\"xsd:nonNegativeInteger\">\n          <xsd:maxInclusive value=\"180\"/>\n        </xsd:restriction>\n      </xsd:simpleType>\n      <xsd:simpleType>\n        <xsd:restriction base=\"xsd:nonNegativeInteger\">\n          <xsd:enumeration value=\"255\"/>\n        </xsd:restriction>\n      </xsd:simpleType>\n    </xsd:union>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BorderStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"thin\"/>\n      <xsd:enumeration value=\"medium\"/>\n      <xsd:enumeration value=\"dashed\"/>\n      <xsd:enumeration value=\"dotted\"/>\n      <xsd:enumeration value=\"thick\"/>\n      <xsd:enumeration value=\"double\"/>\n      <xsd:enumeration value=\"hair\"/>\n      <xsd:enumeration value=\"mediumDashed\"/>\n      <xsd:enumeration value=\"dashDot\"/>\n      <xsd:enumeration value=\"mediumDashDot\"/>\n      <xsd:enumeration value=\"dashDotDot\"/>\n      <xsd:enumeration value=\"mediumDashDotDot\"/>\n      <xsd:enumeration value=\"slantDashDot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Borders\">\n    <xsd:sequence>\n      <xsd:element name=\"border\" type=\"CT_Border\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Border\">\n    <xsd:sequence>\n      <xsd:element name=\"start\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"end\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"left\" type=\"CT_BorderPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"right\" type=\"CT_BorderPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"top\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bottom\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"diagonal\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"vertical\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"horizontal\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"diagonalUp\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"diagonalDown\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"outline\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BorderPr\">\n    <xsd:sequence>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"style\" type=\"ST_BorderStyle\" use=\"optional\" default=\"none\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellProtection\">\n    <xsd:attribute name=\"locked\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Fonts\">\n    <xsd:sequence>\n      <xsd:element name=\"font\" type=\"CT_Font\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Fills\">\n    <xsd:sequence>\n      <xsd:element name=\"fill\" type=\"CT_Fill\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Fill\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"patternFill\" type=\"CT_PatternFill\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gradientFill\" type=\"CT_GradientFill\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PatternFill\">\n    <xsd:sequence>\n      <xsd:element name=\"fgColor\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bgColor\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"patternType\" type=\"ST_PatternType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Color\">\n    <xsd:attribute name=\"auto\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"indexed\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rgb\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"theme\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"tint\" type=\"xsd:double\" use=\"optional\" default=\"0.0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PatternType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"solid\"/>\n      <xsd:enumeration value=\"mediumGray\"/>\n      <xsd:enumeration value=\"darkGray\"/>\n      <xsd:enumeration value=\"lightGray\"/>\n      <xsd:enumeration value=\"darkHorizontal\"/>\n      <xsd:enumeration value=\"darkVertical\"/>\n      <xsd:enumeration value=\"darkDown\"/>\n      <xsd:enumeration value=\"darkUp\"/>\n      <xsd:enumeration value=\"darkGrid\"/>\n      <xsd:enumeration value=\"darkTrellis\"/>\n      <xsd:enumeration value=\"lightHorizontal\"/>\n      <xsd:enumeration value=\"lightVertical\"/>\n      <xsd:enumeration value=\"lightDown\"/>\n      <xsd:enumeration value=\"lightUp\"/>\n      <xsd:enumeration value=\"lightGrid\"/>\n      <xsd:enumeration value=\"lightTrellis\"/>\n      <xsd:enumeration value=\"gray125\"/>\n      <xsd:enumeration value=\"gray0625\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_GradientFill\">\n    <xsd:sequence>\n      <xsd:element name=\"stop\" type=\"CT_GradientStop\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_GradientType\" use=\"optional\" default=\"linear\"/>\n    <xsd:attribute name=\"degree\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"left\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"right\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"top\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"bottom\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GradientStop\">\n    <xsd:sequence>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"position\" type=\"xsd:double\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_GradientType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"linear\"/>\n      <xsd:enumeration value=\"path\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HorizontalAlignment\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"general\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"fill\"/>\n      <xsd:enumeration value=\"justify\"/>\n      <xsd:enumeration value=\"centerContinuous\"/>\n      <xsd:enumeration value=\"distributed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VerticalAlignment\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"justify\"/>\n      <xsd:enumeration value=\"distributed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_NumFmts\">\n    <xsd:sequence>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumFmt\">\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"required\"/>\n    <xsd:attribute name=\"formatCode\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellStyleXfs\">\n    <xsd:sequence>\n      <xsd:element name=\"xf\" type=\"CT_Xf\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellXfs\">\n    <xsd:sequence>\n      <xsd:element name=\"xf\" type=\"CT_Xf\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Xf\">\n    <xsd:sequence>\n      <xsd:element name=\"alignment\" type=\"CT_CellAlignment\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"protection\" type=\"CT_CellProtection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"optional\"/>\n    <xsd:attribute name=\"fontId\" type=\"ST_FontId\" use=\"optional\"/>\n    <xsd:attribute name=\"fillId\" type=\"ST_FillId\" use=\"optional\"/>\n    <xsd:attribute name=\"borderId\" type=\"ST_BorderId\" use=\"optional\"/>\n    <xsd:attribute name=\"xfId\" type=\"ST_CellStyleXfId\" use=\"optional\"/>\n    <xsd:attribute name=\"quotePrefix\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pivotButton\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"applyNumberFormat\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"applyFont\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"applyFill\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"applyBorder\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"applyAlignment\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"applyProtection\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellStyles\">\n    <xsd:sequence>\n      <xsd:element name=\"cellStyle\" type=\"CT_CellStyle\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"xfId\" type=\"ST_CellStyleXfId\" use=\"required\"/>\n    <xsd:attribute name=\"builtinId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"iLevel\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"customBuiltin\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Dxfs\">\n    <xsd:sequence>\n      <xsd:element name=\"dxf\" type=\"CT_Dxf\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Dxf\">\n    <xsd:sequence>\n      <xsd:element name=\"font\" type=\"CT_Font\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fill\" type=\"CT_Fill\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alignment\" type=\"CT_CellAlignment\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"border\" type=\"CT_Border\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"protection\" type=\"CT_CellProtection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_NumFmtId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FontId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FillId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BorderId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CellStyleXfId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DxfId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Colors\">\n    <xsd:sequence>\n      <xsd:element name=\"indexedColors\" type=\"CT_IndexedColors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"mruColors\" type=\"CT_MRUColors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_IndexedColors\">\n    <xsd:sequence>\n      <xsd:element name=\"rgbColor\" type=\"CT_RgbColor\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MRUColors\">\n    <xsd:sequence>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RgbColor\">\n    <xsd:attribute name=\"rgb\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableStyles\">\n    <xsd:sequence>\n      <xsd:element name=\"tableStyle\" type=\"CT_TableStyle\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"defaultTableStyle\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"defaultPivotStyle\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"tableStyleElement\" type=\"CT_TableStyleElement\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"pivot\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"table\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableStyleElement\">\n    <xsd:attribute name=\"type\" type=\"ST_TableStyleType\" use=\"required\"/>\n    <xsd:attribute name=\"size\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"dxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TableStyleType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"wholeTable\"/>\n      <xsd:enumeration value=\"headerRow\"/>\n      <xsd:enumeration value=\"totalRow\"/>\n      <xsd:enumeration value=\"firstColumn\"/>\n      <xsd:enumeration value=\"lastColumn\"/>\n      <xsd:enumeration value=\"firstRowStripe\"/>\n      <xsd:enumeration value=\"secondRowStripe\"/>\n      <xsd:enumeration value=\"firstColumnStripe\"/>\n      <xsd:enumeration value=\"secondColumnStripe\"/>\n      <xsd:enumeration value=\"firstHeaderCell\"/>\n      <xsd:enumeration value=\"lastHeaderCell\"/>\n      <xsd:enumeration value=\"firstTotalCell\"/>\n      <xsd:enumeration value=\"lastTotalCell\"/>\n      <xsd:enumeration value=\"firstSubtotalColumn\"/>\n      <xsd:enumeration value=\"secondSubtotalColumn\"/>\n      <xsd:enumeration value=\"thirdSubtotalColumn\"/>\n      <xsd:enumeration value=\"firstSubtotalRow\"/>\n      <xsd:enumeration value=\"secondSubtotalRow\"/>\n      <xsd:enumeration value=\"thirdSubtotalRow\"/>\n      <xsd:enumeration value=\"blankRow\"/>\n      <xsd:enumeration value=\"firstColumnSubheading\"/>\n      <xsd:enumeration value=\"secondColumnSubheading\"/>\n      <xsd:enumeration value=\"thirdColumnSubheading\"/>\n      <xsd:enumeration value=\"firstRowSubheading\"/>\n      <xsd:enumeration value=\"secondRowSubheading\"/>\n      <xsd:enumeration value=\"thirdRowSubheading\"/>\n      <xsd:enumeration value=\"pageFieldLabels\"/>\n      <xsd:enumeration value=\"pageFieldValues\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BooleanProperty\">\n    <xsd:attribute name=\"val\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontSize\">\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_IntProperty\">\n    <xsd:attribute name=\"val\" type=\"xsd:int\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontName\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VerticalAlignFontProperty\">\n    <xsd:attribute name=\"val\" type=\"s:ST_VerticalAlignRun\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontScheme\">\n    <xsd:attribute name=\"val\" type=\"ST_FontScheme\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FontScheme\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"major\"/>\n      <xsd:enumeration value=\"minor\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_UnderlineProperty\">\n    <xsd:attribute name=\"val\" type=\"ST_UnderlineValues\" use=\"optional\" default=\"single\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_UnderlineValues\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"single\"/>\n      <xsd:enumeration value=\"double\"/>\n      <xsd:enumeration value=\"singleAccounting\"/>\n      <xsd:enumeration value=\"doubleAccounting\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Font\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"name\" type=\"CT_FontName\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"charset\" type=\"CT_IntProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"family\" type=\"CT_FontFamily\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"b\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"i\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"strike\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"outline\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shadow\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"condense\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extend\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sz\" type=\"CT_FontSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"u\" type=\"CT_UnderlineProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"vertAlign\" type=\"CT_VerticalAlignFontProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scheme\" type=\"CT_FontScheme\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontFamily\">\n    <xsd:attribute name=\"val\" type=\"ST_FontFamily\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FontFamily\">\n    <xsd:restriction base=\"xsd:integer\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"14\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:attributeGroup name=\"AG_AutoFormat\">\n    <xsd:attribute name=\"autoFormatId\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"applyNumberFormats\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"applyBorderFormats\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"applyFontFormats\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"applyPatternFormats\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"applyAlignmentFormats\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"applyWidthHeightFormats\" type=\"xsd:boolean\"/>\n  </xsd:attributeGroup>\n  <xsd:element name=\"externalLink\" type=\"CT_ExternalLink\"/>\n  <xsd:complexType name=\"CT_ExternalLink\">\n    <xsd:sequence>\n      <xsd:choice>\n        <xsd:element name=\"externalBook\" type=\"CT_ExternalBook\" minOccurs=\"0\" maxOccurs=\"1\"/>\n        <xsd:element name=\"ddeLink\" type=\"CT_DdeLink\" minOccurs=\"0\" maxOccurs=\"1\"/>\n        <xsd:element name=\"oleLink\" type=\"CT_OleLink\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalBook\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetNames\" type=\"CT_ExternalSheetNames\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"definedNames\" type=\"CT_ExternalDefinedNames\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetDataSet\" type=\"CT_ExternalSheetDataSet\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalSheetNames\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetName\" minOccurs=\"1\" maxOccurs=\"unbounded\" type=\"CT_ExternalSheetName\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalSheetName\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalDefinedNames\">\n    <xsd:sequence>\n      <xsd:element name=\"definedName\" type=\"CT_ExternalDefinedName\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalDefinedName\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"refersTo\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalSheetDataSet\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetData\" type=\"CT_ExternalSheetData\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalSheetData\">\n    <xsd:sequence>\n      <xsd:element name=\"row\" type=\"CT_ExternalRow\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"refreshError\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalRow\">\n    <xsd:sequence>\n      <xsd:element name=\"cell\" type=\"CT_ExternalCell\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"r\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalCell\">\n    <xsd:sequence>\n      <xsd:element name=\"v\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"t\" type=\"ST_CellType\" use=\"optional\" default=\"n\"/>\n    <xsd:attribute name=\"vm\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DdeLink\">\n    <xsd:sequence>\n      <xsd:element name=\"ddeItems\" type=\"CT_DdeItems\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ddeService\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"ddeTopic\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DdeItems\">\n    <xsd:sequence>\n      <xsd:element name=\"ddeItem\" type=\"CT_DdeItem\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DdeItem\">\n    <xsd:sequence>\n      <xsd:element name=\"values\" type=\"CT_DdeValues\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" default=\"0\"/>\n    <xsd:attribute name=\"ole\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"advise\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"preferPic\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DdeValues\">\n    <xsd:sequence>\n      <xsd:element name=\"value\" minOccurs=\"1\" maxOccurs=\"unbounded\" type=\"CT_DdeValue\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rows\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"cols\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DdeValue\">\n    <xsd:sequence>\n      <xsd:element name=\"val\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"t\" type=\"ST_DdeValueType\" use=\"optional\" default=\"n\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DdeValueType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"nil\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"n\"/>\n      <xsd:enumeration value=\"e\"/>\n      <xsd:enumeration value=\"str\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_OleLink\">\n    <xsd:sequence>\n      <xsd:element name=\"oleItems\" type=\"CT_OleItems\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n    <xsd:attribute name=\"progId\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleItems\">\n    <xsd:sequence>\n      <xsd:element name=\"oleItem\" type=\"CT_OleItem\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleItem\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"icon\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"advise\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"preferPic\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:element name=\"table\" type=\"CT_Table\"/>\n  <xsd:complexType name=\"CT_Table\">\n    <xsd:sequence>\n      <xsd:element name=\"autoFilter\" type=\"CT_AutoFilter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sortState\" type=\"CT_SortState\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tableColumns\" type=\"CT_TableColumns\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tableStyleInfo\" type=\"CT_TableStyleInfo\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"displayName\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"comment\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"tableType\" type=\"ST_TableType\" use=\"optional\" default=\"worksheet\"/>\n    <xsd:attribute name=\"headerRowCount\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"insertRow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"insertRowShift\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"totalsRowCount\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"totalsRowShown\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"published\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"headerRowDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"dataDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"totalsRowDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"headerRowBorderDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"tableBorderDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"totalsRowBorderDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"headerRowCellStyle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"dataCellStyle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"totalsRowCellStyle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"connectionId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TableType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"worksheet\"/>\n      <xsd:enumeration value=\"xml\"/>\n      <xsd:enumeration value=\"queryTable\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TableStyleInfo\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"showFirstColumn\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"showLastColumn\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"showRowStripes\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"showColumnStripes\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableColumns\">\n    <xsd:sequence>\n      <xsd:element name=\"tableColumn\" type=\"CT_TableColumn\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableColumn\">\n    <xsd:sequence>\n      <xsd:element name=\"calculatedColumnFormula\" type=\"CT_TableFormula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"totalsRowFormula\" type=\"CT_TableFormula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"xmlColumnPr\" type=\"CT_XmlColumnPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"uniqueName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"totalsRowFunction\" type=\"ST_TotalsRowFunction\" use=\"optional\"\n      default=\"none\"/>\n    <xsd:attribute name=\"totalsRowLabel\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"queryTableFieldId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"headerRowDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"dataDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"totalsRowDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"headerRowCellStyle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"dataCellStyle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"totalsRowCellStyle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableFormula\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"ST_Formula\">\n        <xsd:attribute name=\"array\" type=\"xsd:boolean\" default=\"false\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TotalsRowFunction\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"sum\"/>\n      <xsd:enumeration value=\"min\"/>\n      <xsd:enumeration value=\"max\"/>\n      <xsd:enumeration value=\"average\"/>\n      <xsd:enumeration value=\"count\"/>\n      <xsd:enumeration value=\"countNums\"/>\n      <xsd:enumeration value=\"stdDev\"/>\n      <xsd:enumeration value=\"var\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_XmlColumnPr\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"mapId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"xpath\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"denormalized\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"xmlDataType\" type=\"ST_XmlDataType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_XmlDataType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:element name=\"volTypes\" type=\"CT_VolTypes\"/>\n  <xsd:complexType name=\"CT_VolTypes\">\n    <xsd:sequence>\n      <xsd:element name=\"volType\" type=\"CT_VolType\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VolType\">\n    <xsd:sequence>\n      <xsd:element name=\"main\" type=\"CT_VolMain\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_VolDepType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VolMain\">\n    <xsd:sequence>\n      <xsd:element name=\"tp\" type=\"CT_VolTopic\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"first\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VolTopic\">\n    <xsd:sequence>\n      <xsd:element name=\"v\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"stp\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"tr\" type=\"CT_VolTopicRef\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"t\" type=\"ST_VolValueType\" use=\"optional\" default=\"n\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VolTopicRef\">\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"required\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_VolDepType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"realTimeData\"/>\n      <xsd:enumeration value=\"olapFunctions\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VolValueType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"n\"/>\n      <xsd:enumeration value=\"e\"/>\n      <xsd:enumeration value=\"s\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"workbook\" type=\"CT_Workbook\"/>\n  <xsd:complexType name=\"CT_Workbook\">\n    <xsd:sequence>\n      <xsd:element name=\"fileVersion\" type=\"CT_FileVersion\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fileSharing\" type=\"CT_FileSharing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"workbookPr\" type=\"CT_WorkbookPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"workbookProtection\" type=\"CT_WorkbookProtection\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"bookViews\" type=\"CT_BookViews\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheets\" type=\"CT_Sheets\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"functionGroups\" type=\"CT_FunctionGroups\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"externalReferences\" type=\"CT_ExternalReferences\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"definedNames\" type=\"CT_DefinedNames\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"calcPr\" type=\"CT_CalcPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oleSize\" type=\"CT_OleSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customWorkbookViews\" type=\"CT_CustomWorkbookViews\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"pivotCaches\" type=\"CT_PivotCaches\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smartTagPr\" type=\"CT_SmartTagPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smartTagTypes\" type=\"CT_SmartTagTypes\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"webPublishing\" type=\"CT_WebPublishing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fileRecoveryPr\" type=\"CT_FileRecoveryPr\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"webPublishObjects\" type=\"CT_WebPublishObjects\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"conformance\" type=\"s:ST_ConformanceClass\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FileVersion\">\n    <xsd:attribute name=\"appName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lastEdited\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lowestEdited\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"rupBuild\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"codeName\" type=\"s:ST_Guid\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BookViews\">\n    <xsd:sequence>\n      <xsd:element name=\"workbookView\" type=\"CT_BookView\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BookView\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"visibility\" type=\"ST_Visibility\" use=\"optional\" default=\"visible\"/>\n    <xsd:attribute name=\"minimized\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showHorizontalScroll\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showVerticalScroll\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showSheetTabs\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"xWindow\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"yWindow\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"windowWidth\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"windowHeight\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"tabRatio\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"firstSheet\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"activeTab\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"autoFilterDateGrouping\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Visibility\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"visible\"/>\n      <xsd:enumeration value=\"hidden\"/>\n      <xsd:enumeration value=\"veryHidden\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_CustomWorkbookViews\">\n    <xsd:sequence>\n      <xsd:element name=\"customWorkbookView\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n        type=\"CT_CustomWorkbookView\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomWorkbookView\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"autoUpdate\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"mergeInterval\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"changesSavedWin\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"onlySync\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"personalView\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"includePrintSettings\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"includeHiddenRowCol\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"maximized\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"minimized\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showHorizontalScroll\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showVerticalScroll\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showSheetTabs\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"xWindow\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"yWindow\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"windowWidth\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"windowHeight\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"tabRatio\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"activeSheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"showFormulaBar\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showStatusbar\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showComments\" type=\"ST_Comments\" use=\"optional\" default=\"commIndicator\"/>\n    <xsd:attribute name=\"showObjects\" type=\"ST_Objects\" use=\"optional\" default=\"all\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Comments\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"commNone\"/>\n      <xsd:enumeration value=\"commIndicator\"/>\n      <xsd:enumeration value=\"commIndAndComment\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Objects\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"all\"/>\n      <xsd:enumeration value=\"placeholders\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Sheets\">\n    <xsd:sequence>\n      <xsd:element name=\"sheet\" type=\"CT_Sheet\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Sheet\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"state\" type=\"ST_SheetState\" use=\"optional\" default=\"visible\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SheetState\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"visible\"/>\n      <xsd:enumeration value=\"hidden\"/>\n      <xsd:enumeration value=\"veryHidden\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_WorkbookPr\">\n    <xsd:attribute name=\"date1904\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showObjects\" type=\"ST_Objects\" use=\"optional\" default=\"all\"/>\n    <xsd:attribute name=\"showBorderUnselectedTables\" type=\"xsd:boolean\" use=\"optional\"\n      default=\"true\"/>\n    <xsd:attribute name=\"filterPrivacy\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"promptedSolutions\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showInkAnnotation\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"backupFile\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"saveExternalLinkValues\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"updateLinks\" type=\"ST_UpdateLinks\" use=\"optional\" default=\"userSet\"/>\n    <xsd:attribute name=\"codeName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"hidePivotFieldList\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showPivotChartFilter\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"allowRefreshQuery\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"publishItems\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"checkCompatibility\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoCompressPictures\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"refreshAllConnections\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"defaultThemeVersion\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_UpdateLinks\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"userSet\"/>\n      <xsd:enumeration value=\"never\"/>\n      <xsd:enumeration value=\"always\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SmartTagPr\">\n    <xsd:attribute name=\"embed\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"show\" type=\"ST_SmartTagShow\" use=\"optional\" default=\"all\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SmartTagShow\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"all\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"noIndicator\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SmartTagTypes\">\n    <xsd:sequence>\n      <xsd:element name=\"smartTagType\" type=\"CT_SmartTagType\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SmartTagType\">\n    <xsd:attribute name=\"namespaceUri\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"url\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FileRecoveryPr\">\n    <xsd:attribute name=\"autoRecover\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"crashSave\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"dataExtractLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"repairLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalcPr\">\n    <xsd:attribute name=\"calcId\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"calcMode\" type=\"ST_CalcMode\" use=\"optional\" default=\"auto\"/>\n    <xsd:attribute name=\"fullCalcOnLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"refMode\" type=\"ST_RefMode\" use=\"optional\" default=\"A1\"/>\n    <xsd:attribute name=\"iterate\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"iterateCount\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"100\"/>\n    <xsd:attribute name=\"iterateDelta\" type=\"xsd:double\" use=\"optional\" default=\"0.001\"/>\n    <xsd:attribute name=\"fullPrecision\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"calcCompleted\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"calcOnSave\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"concurrentCalc\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"concurrentManualCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"forceFullCalc\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CalcMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"manual\"/>\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"autoNoTable\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RefMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"A1\"/>\n      <xsd:enumeration value=\"R1C1\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DefinedNames\">\n    <xsd:sequence>\n      <xsd:element name=\"definedName\" type=\"CT_DefinedName\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DefinedName\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"ST_Formula\">\n        <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n        <xsd:attribute name=\"comment\" type=\"s:ST_Xstring\" use=\"optional\"/>\n        <xsd:attribute name=\"customMenu\" type=\"s:ST_Xstring\" use=\"optional\"/>\n        <xsd:attribute name=\"description\" type=\"s:ST_Xstring\" use=\"optional\"/>\n        <xsd:attribute name=\"help\" type=\"s:ST_Xstring\" use=\"optional\"/>\n        <xsd:attribute name=\"statusBar\" type=\"s:ST_Xstring\" use=\"optional\"/>\n        <xsd:attribute name=\"localSheetId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n        <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"function\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"vbProcedure\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"xlm\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"functionGroupId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n        <xsd:attribute name=\"shortcutKey\" type=\"s:ST_Xstring\" use=\"optional\"/>\n        <xsd:attribute name=\"publishToServer\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"workbookParameter\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalReferences\">\n    <xsd:sequence>\n      <xsd:element name=\"externalReference\" type=\"CT_ExternalReference\" minOccurs=\"1\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalReference\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetBackgroundPicture\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotCaches\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotCache\" type=\"CT_PivotCache\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotCache\">\n    <xsd:attribute name=\"cacheId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FileSharing\">\n    <xsd:attribute name=\"readOnlyRecommended\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"userName\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"reservationPassword\" type=\"ST_UnsignedShortHex\"/>\n    <xsd:attribute name=\"algorithmName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"hashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"saltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"spinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleSize\">\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WorkbookProtection\">\n    <xsd:attribute name=\"workbookPassword\" type=\"ST_UnsignedShortHex\" use=\"optional\"/>\n    <xsd:attribute name=\"workbookPasswordCharacterSet\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"revisionsPassword\" type=\"ST_UnsignedShortHex\" use=\"optional\"/>\n    <xsd:attribute name=\"revisionsPasswordCharacterSet\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lockStructure\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"lockWindows\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"lockRevision\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"revisionsAlgorithmName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"revisionsHashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"revisionsSaltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"revisionsSpinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"workbookAlgorithmName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"workbookHashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"workbookSaltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"workbookSpinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WebPublishing\">\n    <xsd:attribute name=\"css\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"thicket\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"longFileNames\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"vml\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"allowPng\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"targetScreenSize\" type=\"ST_TargetScreenSize\" use=\"optional\"\n      default=\"800x600\"/>\n    <xsd:attribute name=\"dpi\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"96\"/>\n    <xsd:attribute name=\"codePage\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"characterSet\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TargetScreenSize\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"544x376\"/>\n      <xsd:enumeration value=\"640x480\"/>\n      <xsd:enumeration value=\"720x512\"/>\n      <xsd:enumeration value=\"800x600\"/>\n      <xsd:enumeration value=\"1024x768\"/>\n      <xsd:enumeration value=\"1152x882\"/>\n      <xsd:enumeration value=\"1152x900\"/>\n      <xsd:enumeration value=\"1280x1024\"/>\n      <xsd:enumeration value=\"1600x1200\"/>\n      <xsd:enumeration value=\"1800x1440\"/>\n      <xsd:enumeration value=\"1920x1200\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FunctionGroups\">\n    <xsd:sequence maxOccurs=\"unbounded\">\n      <xsd:element name=\"functionGroup\" type=\"CT_FunctionGroup\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"builtInGroupCount\" type=\"xsd:unsignedInt\" default=\"16\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FunctionGroup\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WebPublishObjects\">\n    <xsd:sequence>\n      <xsd:element name=\"webPublishObject\" type=\"CT_WebPublishObject\" minOccurs=\"1\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WebPublishObject\">\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"divId\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"sourceObject\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"destinationFile\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"title\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"autoRepublish\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns=\"urn:schemas-microsoft-com:vml\"\n  xmlns:pvml=\"urn:schemas-microsoft-com:office:powerpoint\"\n  xmlns:o=\"urn:schemas-microsoft-com:office:office\"\n  xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n  xmlns:w10=\"urn:schemas-microsoft-com:office:word\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:x=\"urn:schemas-microsoft-com:office:excel\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"urn:schemas-microsoft-com:vml\" elementFormDefault=\"qualified\"\n  attributeFormDefault=\"unqualified\">\n  <xsd:import namespace=\"urn:schemas-microsoft-com:office:office\"\n    schemaLocation=\"vml-officeDrawing.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n    schemaLocation=\"wml.xsd\"/>\n  <xsd:import namespace=\"urn:schemas-microsoft-com:office:word\"\n    schemaLocation=\"vml-wordprocessingDrawing.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"urn:schemas-microsoft-com:office:excel\"\n    schemaLocation=\"vml-spreadsheetDrawing.xsd\"/>\n  <xsd:import namespace=\"urn:schemas-microsoft-com:office:powerpoint\"\n    schemaLocation=\"vml-presentationDrawing.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:attributeGroup name=\"AG_Id\">\n    <xsd:attribute name=\"id\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Style\">\n    <xsd:attribute name=\"style\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Type\">\n    <xsd:attribute name=\"type\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Adj\">\n    <xsd:attribute name=\"adj\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Path\">\n    <xsd:attribute name=\"path\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Fill\">\n    <xsd:attribute name=\"filled\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"fillcolor\" type=\"s:ST_ColorType\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Chromakey\">\n    <xsd:attribute name=\"chromakey\" type=\"s:ST_ColorType\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Ext\">\n    <xsd:attribute name=\"ext\" form=\"qualified\" type=\"ST_Ext\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_CoreAttributes\">\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attributeGroup ref=\"AG_Style\"/>\n    <xsd:attribute name=\"href\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"target\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"class\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"title\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"alt\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"coordsize\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"coordorigin\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"wrapcoords\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"print\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_ShapeAttributes\">\n    <xsd:attributeGroup ref=\"AG_Chromakey\"/>\n    <xsd:attributeGroup ref=\"AG_Fill\"/>\n    <xsd:attribute name=\"opacity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"stroked\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"strokecolor\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"strokeweight\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"insetpen\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_OfficeCoreAttributes\">\n    <xsd:attribute ref=\"o:spid\"/>\n    <xsd:attribute ref=\"o:oned\"/>\n    <xsd:attribute ref=\"o:regroupid\"/>\n    <xsd:attribute ref=\"o:doubleclicknotify\"/>\n    <xsd:attribute ref=\"o:button\"/>\n    <xsd:attribute ref=\"o:userhidden\"/>\n    <xsd:attribute ref=\"o:bullet\"/>\n    <xsd:attribute ref=\"o:hr\"/>\n    <xsd:attribute ref=\"o:hrstd\"/>\n    <xsd:attribute ref=\"o:hrnoshade\"/>\n    <xsd:attribute ref=\"o:hrpct\"/>\n    <xsd:attribute ref=\"o:hralign\"/>\n    <xsd:attribute ref=\"o:allowincell\"/>\n    <xsd:attribute ref=\"o:allowoverlap\"/>\n    <xsd:attribute ref=\"o:userdrawn\"/>\n    <xsd:attribute ref=\"o:bordertopcolor\"/>\n    <xsd:attribute ref=\"o:borderleftcolor\"/>\n    <xsd:attribute ref=\"o:borderbottomcolor\"/>\n    <xsd:attribute ref=\"o:borderrightcolor\"/>\n    <xsd:attribute ref=\"o:dgmlayout\"/>\n    <xsd:attribute ref=\"o:dgmnodekind\"/>\n    <xsd:attribute ref=\"o:dgmlayoutmru\"/>\n    <xsd:attribute ref=\"o:insetmode\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_OfficeShapeAttributes\">\n    <xsd:attribute ref=\"o:spt\"/>\n    <xsd:attribute ref=\"o:connectortype\"/>\n    <xsd:attribute ref=\"o:bwmode\"/>\n    <xsd:attribute ref=\"o:bwpure\"/>\n    <xsd:attribute ref=\"o:bwnormal\"/>\n    <xsd:attribute ref=\"o:forcedash\"/>\n    <xsd:attribute ref=\"o:oleicon\"/>\n    <xsd:attribute ref=\"o:ole\"/>\n    <xsd:attribute ref=\"o:preferrelative\"/>\n    <xsd:attribute ref=\"o:cliptowrap\"/>\n    <xsd:attribute ref=\"o:clip\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_AllCoreAttributes\">\n    <xsd:attributeGroup ref=\"AG_CoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_OfficeCoreAttributes\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_AllShapeAttributes\">\n    <xsd:attributeGroup ref=\"AG_ShapeAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_OfficeShapeAttributes\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_ImageAttributes\">\n    <xsd:attribute name=\"src\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"cropleft\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"croptop\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"cropright\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"cropbottom\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"gain\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"blacklevel\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"gamma\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"grayscale\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"bilevel\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_StrokeAttributes\">\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"weight\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"color\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"opacity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"linestyle\" type=\"ST_StrokeLineStyle\" use=\"optional\"/>\n    <xsd:attribute name=\"miterlimit\" type=\"xsd:decimal\" use=\"optional\"/>\n    <xsd:attribute name=\"joinstyle\" type=\"ST_StrokeJoinStyle\" use=\"optional\"/>\n    <xsd:attribute name=\"endcap\" type=\"ST_StrokeEndCap\" use=\"optional\"/>\n    <xsd:attribute name=\"dashstyle\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"filltype\" type=\"ST_FillType\" use=\"optional\"/>\n    <xsd:attribute name=\"src\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"imageaspect\" type=\"ST_ImageAspect\" use=\"optional\"/>\n    <xsd:attribute name=\"imagesize\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"imagealignshape\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"color2\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"startarrow\" type=\"ST_StrokeArrowType\" use=\"optional\"/>\n    <xsd:attribute name=\"startarrowwidth\" type=\"ST_StrokeArrowWidth\" use=\"optional\"/>\n    <xsd:attribute name=\"startarrowlength\" type=\"ST_StrokeArrowLength\" use=\"optional\"/>\n    <xsd:attribute name=\"endarrow\" type=\"ST_StrokeArrowType\" use=\"optional\"/>\n    <xsd:attribute name=\"endarrowwidth\" type=\"ST_StrokeArrowWidth\" use=\"optional\"/>\n    <xsd:attribute name=\"endarrowlength\" type=\"ST_StrokeArrowLength\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:href\"/>\n    <xsd:attribute ref=\"o:althref\"/>\n    <xsd:attribute ref=\"o:title\"/>\n    <xsd:attribute ref=\"o:forcedash\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"insetpen\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:relid\"/>\n  </xsd:attributeGroup>\n  <xsd:group name=\"EG_ShapeElements\">\n    <xsd:choice>\n      <xsd:element ref=\"path\"/>\n      <xsd:element ref=\"formulas\"/>\n      <xsd:element ref=\"handles\"/>\n      <xsd:element ref=\"fill\"/>\n      <xsd:element ref=\"stroke\"/>\n      <xsd:element ref=\"shadow\"/>\n      <xsd:element ref=\"textbox\"/>\n      <xsd:element ref=\"textpath\"/>\n      <xsd:element ref=\"imagedata\"/>\n      <xsd:element ref=\"o:skew\"/>\n      <xsd:element ref=\"o:extrusion\"/>\n      <xsd:element ref=\"o:callout\"/>\n      <xsd:element ref=\"o:lock\"/>\n      <xsd:element ref=\"o:clippath\"/>\n      <xsd:element ref=\"o:signatureline\"/>\n      <xsd:element ref=\"w10:wrap\"/>\n      <xsd:element ref=\"w10:anchorlock\"/>\n      <xsd:element ref=\"w10:bordertop\"/>\n      <xsd:element ref=\"w10:borderbottom\"/>\n      <xsd:element ref=\"w10:borderleft\"/>\n      <xsd:element ref=\"w10:borderright\"/>\n      <xsd:element ref=\"x:ClientData\" minOccurs=\"0\"/>\n      <xsd:element ref=\"pvml:textdata\" minOccurs=\"0\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:element name=\"shape\" type=\"CT_Shape\"/>\n  <xsd:element name=\"shapetype\" type=\"CT_Shapetype\"/>\n  <xsd:element name=\"group\" type=\"CT_Group\"/>\n  <xsd:element name=\"background\" type=\"CT_Background\"/>\n  <xsd:complexType name=\"CT_Shape\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:group ref=\"EG_ShapeElements\"/>\n      <xsd:element ref=\"o:ink\"/>\n      <xsd:element ref=\"pvml:iscomment\"/>\n      <xsd:element ref=\"o:equationxml\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_Type\"/>\n    <xsd:attributeGroup ref=\"AG_Adj\"/>\n    <xsd:attributeGroup ref=\"AG_Path\"/>\n    <xsd:attribute ref=\"o:gfxdata\"/>\n    <xsd:attribute name=\"equationxml\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Shapetype\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element ref=\"o:complex\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_Adj\"/>\n    <xsd:attributeGroup ref=\"AG_Path\"/>\n    <xsd:attribute ref=\"o:master\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Group\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:group ref=\"EG_ShapeElements\"/>\n      <xsd:element ref=\"group\"/>\n      <xsd:element ref=\"shape\"/>\n      <xsd:element ref=\"shapetype\"/>\n      <xsd:element ref=\"arc\"/>\n      <xsd:element ref=\"curve\"/>\n      <xsd:element ref=\"image\"/>\n      <xsd:element ref=\"line\"/>\n      <xsd:element ref=\"oval\"/>\n      <xsd:element ref=\"polyline\"/>\n      <xsd:element ref=\"rect\"/>\n      <xsd:element ref=\"roundrect\"/>\n      <xsd:element ref=\"o:diagram\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_Fill\"/>\n    <xsd:attribute name=\"editas\" type=\"ST_EditAs\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:tableproperties\"/>\n    <xsd:attribute ref=\"o:tablelimits\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Background\">\n    <xsd:sequence>\n      <xsd:element ref=\"fill\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attributeGroup ref=\"AG_Fill\"/>\n    <xsd:attribute ref=\"o:bwmode\"/>\n    <xsd:attribute ref=\"o:bwpure\"/>\n    <xsd:attribute ref=\"o:bwnormal\"/>\n    <xsd:attribute ref=\"o:targetscreensize\"/>\n  </xsd:complexType>\n  <xsd:element name=\"fill\" type=\"CT_Fill\"/>\n  <xsd:element name=\"formulas\" type=\"CT_Formulas\"/>\n  <xsd:element name=\"handles\" type=\"CT_Handles\"/>\n  <xsd:element name=\"imagedata\" type=\"CT_ImageData\"/>\n  <xsd:element name=\"path\" type=\"CT_Path\"/>\n  <xsd:element name=\"textbox\" type=\"CT_Textbox\"/>\n  <xsd:element name=\"shadow\" type=\"CT_Shadow\"/>\n  <xsd:element name=\"stroke\" type=\"CT_Stroke\"/>\n  <xsd:element name=\"textpath\" type=\"CT_TextPath\"/>\n  <xsd:complexType name=\"CT_Fill\">\n    <xsd:sequence>\n      <xsd:element ref=\"o:fill\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attribute name=\"type\" type=\"ST_FillType\" use=\"optional\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"color\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"opacity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"color2\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"src\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:href\"/>\n    <xsd:attribute ref=\"o:althref\"/>\n    <xsd:attribute name=\"size\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"origin\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"position\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"aspect\" type=\"ST_ImageAspect\" use=\"optional\"/>\n    <xsd:attribute name=\"colors\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"angle\" type=\"xsd:decimal\" use=\"optional\"/>\n    <xsd:attribute name=\"alignshape\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"focus\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"focussize\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"focusposition\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"method\" type=\"ST_FillMethod\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:detectmouseclick\"/>\n    <xsd:attribute ref=\"o:title\"/>\n    <xsd:attribute ref=\"o:opacity2\"/>\n    <xsd:attribute name=\"recolor\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"rotate\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:relid\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Formulas\">\n    <xsd:sequence>\n      <xsd:element name=\"f\" type=\"CT_F\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_F\">\n    <xsd:attribute name=\"eqn\" type=\"xsd:string\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Handles\">\n    <xsd:sequence>\n      <xsd:element name=\"h\" type=\"CT_H\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_H\">\n    <xsd:attribute name=\"position\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"polar\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"map\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"invx\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"invy\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"switch\" type=\"s:ST_TrueFalseBlank\"/>\n    <xsd:attribute name=\"xrange\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"yrange\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"radiusrange\" type=\"xsd:string\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ImageData\">\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attributeGroup ref=\"AG_ImageAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_Chromakey\"/>\n    <xsd:attribute name=\"embosscolor\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"recolortarget\" type=\"s:ST_ColorType\"/>\n    <xsd:attribute ref=\"o:href\"/>\n    <xsd:attribute ref=\"o:althref\"/>\n    <xsd:attribute ref=\"o:title\"/>\n    <xsd:attribute ref=\"o:oleid\"/>\n    <xsd:attribute ref=\"o:detectmouseclick\"/>\n    <xsd:attribute ref=\"o:movie\"/>\n    <xsd:attribute ref=\"o:relid\"/>\n    <xsd:attribute ref=\"r:id\"/>\n    <xsd:attribute ref=\"r:pict\"/>\n    <xsd:attribute ref=\"r:href\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path\">\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attribute name=\"v\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"limo\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"textboxrect\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fillok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"strokeok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"shadowok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"arrowok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"gradientshapeok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"textpathok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"insetpenok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:connecttype\"/>\n    <xsd:attribute ref=\"o:connectlocs\"/>\n    <xsd:attribute ref=\"o:connectangles\"/>\n    <xsd:attribute ref=\"o:extrusionok\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Shadow\">\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"type\" type=\"ST_ShadowType\" use=\"optional\"/>\n    <xsd:attribute name=\"obscured\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"color\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"opacity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"offset\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"color2\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"offset2\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"origin\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"matrix\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Stroke\">\n    <xsd:sequence>\n      <xsd:element ref=\"o:left\" minOccurs=\"0\"/>\n      <xsd:element ref=\"o:top\" minOccurs=\"0\"/>\n      <xsd:element ref=\"o:right\" minOccurs=\"0\"/>\n      <xsd:element ref=\"o:bottom\" minOccurs=\"0\"/>\n      <xsd:element ref=\"o:column\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attributeGroup ref=\"AG_StrokeAttributes\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Textbox\">\n    <xsd:choice>\n      <xsd:element ref=\"w:txbxContent\" minOccurs=\"0\"/>\n      <xsd:any namespace=\"##local\" processContents=\"skip\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attributeGroup ref=\"AG_Style\"/>\n    <xsd:attribute name=\"inset\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:singleclick\"/>\n    <xsd:attribute ref=\"o:insetmode\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextPath\">\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attributeGroup ref=\"AG_Style\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"fitshape\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"fitpath\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"trim\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"xscale\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"string\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:element name=\"arc\" type=\"CT_Arc\"/>\n  <xsd:element name=\"curve\" type=\"CT_Curve\"/>\n  <xsd:element name=\"image\" type=\"CT_Image\"/>\n  <xsd:element name=\"line\" type=\"CT_Line\"/>\n  <xsd:element name=\"oval\" type=\"CT_Oval\"/>\n  <xsd:element name=\"polyline\" type=\"CT_PolyLine\"/>\n  <xsd:element name=\"rect\" type=\"CT_Rect\"/>\n  <xsd:element name=\"roundrect\" type=\"CT_RoundRect\"/>\n  <xsd:complexType name=\"CT_Arc\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attribute name=\"startAngle\" type=\"xsd:decimal\" use=\"optional\"/>\n    <xsd:attribute name=\"endAngle\" type=\"xsd:decimal\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Curve\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attribute name=\"from\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"control1\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"control2\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"to\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Image\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_ImageAttributes\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Line\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attribute name=\"from\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"to\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Oval\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PolyLine\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:group ref=\"EG_ShapeElements\"/>\n      <xsd:element ref=\"o:ink\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attribute name=\"points\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rect\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RoundRect\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attribute name=\"arcsize\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Ext\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"view\"/>\n      <xsd:enumeration value=\"edit\"/>\n      <xsd:enumeration value=\"backwardCompatible\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FillType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"solid\"/>\n      <xsd:enumeration value=\"gradient\"/>\n      <xsd:enumeration value=\"gradientRadial\"/>\n      <xsd:enumeration value=\"tile\"/>\n      <xsd:enumeration value=\"pattern\"/>\n      <xsd:enumeration value=\"frame\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FillMethod\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"linear\"/>\n      <xsd:enumeration value=\"sigma\"/>\n      <xsd:enumeration value=\"any\"/>\n      <xsd:enumeration value=\"linear sigma\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ShadowType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"single\"/>\n      <xsd:enumeration value=\"double\"/>\n      <xsd:enumeration value=\"emboss\"/>\n      <xsd:enumeration value=\"perspective\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StrokeLineStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"single\"/>\n      <xsd:enumeration value=\"thinThin\"/>\n      <xsd:enumeration value=\"thinThick\"/>\n      <xsd:enumeration value=\"thickThin\"/>\n      <xsd:enumeration value=\"thickBetweenThin\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StrokeJoinStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"round\"/>\n      <xsd:enumeration value=\"bevel\"/>\n      <xsd:enumeration value=\"miter\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StrokeEndCap\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"flat\"/>\n      <xsd:enumeration value=\"square\"/>\n      <xsd:enumeration value=\"round\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StrokeArrowLength\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"short\"/>\n      <xsd:enumeration value=\"medium\"/>\n      <xsd:enumeration value=\"long\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StrokeArrowWidth\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"narrow\"/>\n      <xsd:enumeration value=\"medium\"/>\n      <xsd:enumeration value=\"wide\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StrokeArrowType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"block\"/>\n      <xsd:enumeration value=\"classic\"/>\n      <xsd:enumeration value=\"oval\"/>\n      <xsd:enumeration value=\"diamond\"/>\n      <xsd:enumeration value=\"open\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ImageAspect\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"ignore\"/>\n      <xsd:enumeration value=\"atMost\"/>\n      <xsd:enumeration value=\"atLeast\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_EditAs\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"canvas\"/>\n      <xsd:enumeration value=\"orgchart\"/>\n      <xsd:enumeration value=\"radial\"/>\n      <xsd:enumeration value=\"cycle\"/>\n      <xsd:enumeration value=\"stacked\"/>\n      <xsd:enumeration value=\"venn\"/>\n      <xsd:enumeration value=\"bullseye\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"urn:schemas-microsoft-com:office:office\" xmlns:v=\"urn:schemas-microsoft-com:vml\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"urn:schemas-microsoft-com:office:office\" elementFormDefault=\"qualified\"\n  attributeFormDefault=\"unqualified\">\n  <xsd:import namespace=\"urn:schemas-microsoft-com:vml\" schemaLocation=\"vml-main.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:attribute name=\"bwmode\" type=\"ST_BWMode\"/>\n  <xsd:attribute name=\"bwpure\" type=\"ST_BWMode\"/>\n  <xsd:attribute name=\"bwnormal\" type=\"ST_BWMode\"/>\n  <xsd:attribute name=\"targetscreensize\" type=\"ST_ScreenSize\"/>\n  <xsd:attribute name=\"insetmode\" type=\"ST_InsetMode\" default=\"custom\"/>\n  <xsd:attribute name=\"spt\" type=\"xsd:float\"/>\n  <xsd:attribute name=\"wrapcoords\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"oned\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"regroupid\" type=\"xsd:integer\"/>\n  <xsd:attribute name=\"doubleclicknotify\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"connectortype\" type=\"ST_ConnectorType\" default=\"straight\"/>\n  <xsd:attribute name=\"button\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"userhidden\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"forcedash\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"oleicon\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"ole\" type=\"s:ST_TrueFalseBlank\"/>\n  <xsd:attribute name=\"preferrelative\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"cliptowrap\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"clip\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"bullet\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"hr\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"hrstd\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"hrnoshade\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"hrpct\" type=\"xsd:float\"/>\n  <xsd:attribute name=\"hralign\" type=\"ST_HrAlign\" default=\"left\"/>\n  <xsd:attribute name=\"allowincell\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"allowoverlap\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"userdrawn\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"bordertopcolor\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"borderleftcolor\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"borderbottomcolor\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"borderrightcolor\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"connecttype\" type=\"ST_ConnectType\"/>\n  <xsd:attribute name=\"connectlocs\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"connectangles\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"master\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"extrusionok\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"href\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"althref\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"title\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"singleclick\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"oleid\" type=\"xsd:float\"/>\n  <xsd:attribute name=\"detectmouseclick\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"movie\" type=\"xsd:float\"/>\n  <xsd:attribute name=\"spid\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"opacity2\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"relid\" type=\"r:ST_RelationshipId\"/>\n  <xsd:attribute name=\"dgmlayout\" type=\"ST_DiagramLayout\"/>\n  <xsd:attribute name=\"dgmnodekind\" type=\"xsd:integer\"/>\n  <xsd:attribute name=\"dgmlayoutmru\" type=\"ST_DiagramLayout\"/>\n  <xsd:attribute name=\"gfxdata\" type=\"xsd:base64Binary\"/>\n  <xsd:attribute name=\"tableproperties\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"tablelimits\" type=\"xsd:string\"/>\n  <xsd:element name=\"shapedefaults\" type=\"CT_ShapeDefaults\"/>\n  <xsd:element name=\"shapelayout\" type=\"CT_ShapeLayout\"/>\n  <xsd:element name=\"signatureline\" type=\"CT_SignatureLine\"/>\n  <xsd:element name=\"ink\" type=\"CT_Ink\"/>\n  <xsd:element name=\"diagram\" type=\"CT_Diagram\"/>\n  <xsd:element name=\"equationxml\" type=\"CT_EquationXml\"/>\n  <xsd:complexType name=\"CT_ShapeDefaults\">\n    <xsd:all minOccurs=\"0\">\n      <xsd:element ref=\"v:fill\" minOccurs=\"0\"/>\n      <xsd:element ref=\"v:stroke\" minOccurs=\"0\"/>\n      <xsd:element ref=\"v:textbox\" minOccurs=\"0\"/>\n      <xsd:element ref=\"v:shadow\" minOccurs=\"0\"/>\n      <xsd:element ref=\"skew\" minOccurs=\"0\"/>\n      <xsd:element ref=\"extrusion\" minOccurs=\"0\"/>\n      <xsd:element ref=\"callout\" minOccurs=\"0\"/>\n      <xsd:element ref=\"lock\" minOccurs=\"0\"/>\n      <xsd:element name=\"colormru\" minOccurs=\"0\" type=\"CT_ColorMru\"/>\n      <xsd:element name=\"colormenu\" minOccurs=\"0\" type=\"CT_ColorMenu\"/>\n    </xsd:all>\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"spidmax\" type=\"xsd:integer\" use=\"optional\"/>\n    <xsd:attribute name=\"style\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fill\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"fillcolor\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"stroke\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"strokecolor\" type=\"s:ST_ColorType\"/>\n    <xsd:attribute name=\"allowincell\" form=\"qualified\" type=\"s:ST_TrueFalse\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Ink\">\n    <xsd:sequence/>\n    <xsd:attribute name=\"i\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"annotation\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"contentType\" type=\"ST_ContentType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SignatureLine\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"issignatureline\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"id\" type=\"s:ST_Guid\"/>\n    <xsd:attribute name=\"provid\" type=\"s:ST_Guid\"/>\n    <xsd:attribute name=\"signinginstructionsset\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"allowcomments\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"showsigndate\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"suggestedsigner\" type=\"xsd:string\" form=\"qualified\"/>\n    <xsd:attribute name=\"suggestedsigner2\" type=\"xsd:string\" form=\"qualified\"/>\n    <xsd:attribute name=\"suggestedsigneremail\" type=\"xsd:string\" form=\"qualified\"/>\n    <xsd:attribute name=\"signinginstructions\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"addlxml\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"sigprovurl\" type=\"xsd:string\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShapeLayout\">\n    <xsd:all>\n      <xsd:element name=\"idmap\" type=\"CT_IdMap\" minOccurs=\"0\"/>\n      <xsd:element name=\"regrouptable\" type=\"CT_RegroupTable\" minOccurs=\"0\"/>\n      <xsd:element name=\"rules\" type=\"CT_Rules\" minOccurs=\"0\"/>\n    </xsd:all>\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_IdMap\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"data\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RegroupTable\">\n    <xsd:sequence>\n      <xsd:element name=\"entry\" type=\"CT_Entry\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Entry\">\n    <xsd:attribute name=\"new\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"old\" type=\"xsd:int\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rules\">\n    <xsd:sequence>\n      <xsd:element name=\"r\" type=\"CT_R\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_R\">\n    <xsd:sequence>\n      <xsd:element name=\"proxy\" type=\"CT_Proxy\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"type\" type=\"ST_RType\" use=\"optional\"/>\n    <xsd:attribute name=\"how\" type=\"ST_How\" use=\"optional\"/>\n    <xsd:attribute name=\"idref\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Proxy\">\n    <xsd:attribute name=\"start\" type=\"s:ST_TrueFalseBlank\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"end\" type=\"s:ST_TrueFalseBlank\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"idref\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"connectloc\" type=\"xsd:int\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Diagram\">\n    <xsd:sequence>\n      <xsd:element name=\"relationtable\" type=\"CT_RelationTable\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"dgmstyle\" type=\"xsd:integer\" use=\"optional\"/>\n    <xsd:attribute name=\"autoformat\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"reverse\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"autolayout\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"dgmscalex\" type=\"xsd:integer\" use=\"optional\"/>\n    <xsd:attribute name=\"dgmscaley\" type=\"xsd:integer\" use=\"optional\"/>\n    <xsd:attribute name=\"dgmfontsize\" type=\"xsd:integer\" use=\"optional\"/>\n    <xsd:attribute name=\"constrainbounds\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"dgmbasetextscale\" type=\"xsd:integer\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EquationXml\">\n    <xsd:sequence>\n      <xsd:any namespace=\"##any\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"contentType\" type=\"ST_AlternateMathContentType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AlternateMathContentType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_RelationTable\">\n    <xsd:sequence>\n      <xsd:element name=\"rel\" type=\"CT_Relation\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Relation\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"idsrc\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"iddest\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"idcntr\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorMru\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"colors\" type=\"xsd:string\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorMenu\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"strokecolor\" type=\"s:ST_ColorType\"/>\n    <xsd:attribute name=\"fillcolor\" type=\"s:ST_ColorType\"/>\n    <xsd:attribute name=\"shadowcolor\" type=\"s:ST_ColorType\"/>\n    <xsd:attribute name=\"extrusioncolor\" type=\"s:ST_ColorType\"/>\n  </xsd:complexType>\n  <xsd:element name=\"skew\" type=\"CT_Skew\"/>\n  <xsd:element name=\"extrusion\" type=\"CT_Extrusion\"/>\n  <xsd:element name=\"callout\" type=\"CT_Callout\"/>\n  <xsd:element name=\"lock\" type=\"CT_Lock\"/>\n  <xsd:element name=\"OLEObject\" type=\"CT_OLEObject\"/>\n  <xsd:element name=\"complex\" type=\"CT_Complex\"/>\n  <xsd:element name=\"left\" type=\"CT_StrokeChild\"/>\n  <xsd:element name=\"top\" type=\"CT_StrokeChild\"/>\n  <xsd:element name=\"right\" type=\"CT_StrokeChild\"/>\n  <xsd:element name=\"bottom\" type=\"CT_StrokeChild\"/>\n  <xsd:element name=\"column\" type=\"CT_StrokeChild\"/>\n  <xsd:element name=\"clippath\" type=\"CT_ClipPath\"/>\n  <xsd:element name=\"fill\" type=\"CT_Fill\"/>\n  <xsd:complexType name=\"CT_Skew\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"id\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"offset\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"origin\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"matrix\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Extrusion\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"type\" type=\"ST_ExtrusionType\" default=\"parallel\" use=\"optional\"/>\n    <xsd:attribute name=\"render\" type=\"ST_ExtrusionRender\" default=\"solid\" use=\"optional\"/>\n    <xsd:attribute name=\"viewpointorigin\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"viewpoint\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"plane\" type=\"ST_ExtrusionPlane\" default=\"XY\" use=\"optional\"/>\n    <xsd:attribute name=\"skewangle\" type=\"xsd:float\" use=\"optional\"/>\n    <xsd:attribute name=\"skewamt\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"foredepth\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"backdepth\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"orientation\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"orientationangle\" type=\"xsd:float\" use=\"optional\"/>\n    <xsd:attribute name=\"lockrotationcenter\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"autorotationcenter\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"rotationcenter\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"rotationangle\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"colormode\" type=\"ST_ColorMode\" use=\"optional\"/>\n    <xsd:attribute name=\"color\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"shininess\" type=\"xsd:float\" use=\"optional\"/>\n    <xsd:attribute name=\"specularity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"diffusity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"metal\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"edge\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"facet\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lightface\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"brightness\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lightposition\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lightlevel\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lightharsh\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"lightposition2\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lightlevel2\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lightharsh2\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Callout\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"type\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"gap\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"angle\" type=\"ST_Angle\" use=\"optional\"/>\n    <xsd:attribute name=\"dropauto\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"drop\" type=\"ST_CalloutDrop\" use=\"optional\"/>\n    <xsd:attribute name=\"distance\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lengthspecified\" type=\"s:ST_TrueFalse\" default=\"f\" use=\"optional\"/>\n    <xsd:attribute name=\"length\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"accentbar\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"textborder\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"minusx\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"minusy\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Lock\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"position\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"selection\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"grouping\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"ungrouping\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"rotation\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"cropping\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"verticies\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"adjusthandles\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"text\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"aspectratio\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"shapetype\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OLEObject\">\n    <xsd:sequence>\n      <xsd:element name=\"LinkType\" type=\"ST_OLELinkType\" minOccurs=\"0\"/>\n      <xsd:element name=\"LockedField\" type=\"s:ST_TrueFalseBlank\" minOccurs=\"0\"/>\n      <xsd:element name=\"FieldCodes\" type=\"xsd:string\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"Type\" type=\"ST_OLEType\" use=\"optional\"/>\n    <xsd:attribute name=\"ProgID\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"ShapeID\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"DrawAspect\" type=\"ST_OLEDrawAspect\" use=\"optional\"/>\n    <xsd:attribute name=\"ObjectID\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"UpdateMode\" type=\"ST_OLEUpdateMode\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Complex\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StrokeChild\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"weight\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"color\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"color2\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"opacity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"linestyle\" type=\"v:ST_StrokeLineStyle\" use=\"optional\"/>\n    <xsd:attribute name=\"miterlimit\" type=\"xsd:decimal\" use=\"optional\"/>\n    <xsd:attribute name=\"joinstyle\" type=\"v:ST_StrokeJoinStyle\" use=\"optional\"/>\n    <xsd:attribute name=\"endcap\" type=\"v:ST_StrokeEndCap\" use=\"optional\"/>\n    <xsd:attribute name=\"dashstyle\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"insetpen\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"filltype\" type=\"v:ST_FillType\" use=\"optional\"/>\n    <xsd:attribute name=\"src\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"imageaspect\" type=\"v:ST_ImageAspect\" use=\"optional\"/>\n    <xsd:attribute name=\"imagesize\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"imagealignshape\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"startarrow\" type=\"v:ST_StrokeArrowType\" use=\"optional\"/>\n    <xsd:attribute name=\"startarrowwidth\" type=\"v:ST_StrokeArrowWidth\" use=\"optional\"/>\n    <xsd:attribute name=\"startarrowlength\" type=\"v:ST_StrokeArrowLength\" use=\"optional\"/>\n    <xsd:attribute name=\"endarrow\" type=\"v:ST_StrokeArrowType\" use=\"optional\"/>\n    <xsd:attribute name=\"endarrowwidth\" type=\"v:ST_StrokeArrowWidth\" use=\"optional\"/>\n    <xsd:attribute name=\"endarrowlength\" type=\"v:ST_StrokeArrowLength\" use=\"optional\"/>\n    <xsd:attribute ref=\"href\"/>\n    <xsd:attribute ref=\"althref\"/>\n    <xsd:attribute ref=\"title\"/>\n    <xsd:attribute ref=\"forcedash\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ClipPath\">\n    <xsd:attribute name=\"v\" type=\"xsd:string\" use=\"required\" form=\"qualified\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Fill\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"type\" type=\"ST_FillType\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"arc\"/>\n      <xsd:enumeration value=\"callout\"/>\n      <xsd:enumeration value=\"connector\"/>\n      <xsd:enumeration value=\"align\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_How\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"middle\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"right\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BWMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"color\"/>\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"grayScale\"/>\n      <xsd:enumeration value=\"lightGrayscale\"/>\n      <xsd:enumeration value=\"inverseGray\"/>\n      <xsd:enumeration value=\"grayOutline\"/>\n      <xsd:enumeration value=\"highContrast\"/>\n      <xsd:enumeration value=\"black\"/>\n      <xsd:enumeration value=\"white\"/>\n      <xsd:enumeration value=\"hide\"/>\n      <xsd:enumeration value=\"undrawn\"/>\n      <xsd:enumeration value=\"blackTextAndLines\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ScreenSize\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"544,376\"/>\n      <xsd:enumeration value=\"640,480\"/>\n      <xsd:enumeration value=\"720,512\"/>\n      <xsd:enumeration value=\"800,600\"/>\n      <xsd:enumeration value=\"1024,768\"/>\n      <xsd:enumeration value=\"1152,862\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_InsetMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ColorMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ContentType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DiagramLayout\">\n    <xsd:restriction base=\"xsd:integer\">\n      <xsd:enumeration value=\"0\"/>\n      <xsd:enumeration value=\"1\"/>\n      <xsd:enumeration value=\"2\"/>\n      <xsd:enumeration value=\"3\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ExtrusionType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"perspective\"/>\n      <xsd:enumeration value=\"parallel\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ExtrusionRender\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"solid\"/>\n      <xsd:enumeration value=\"wireFrame\"/>\n      <xsd:enumeration value=\"boundingCube\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ExtrusionPlane\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"XY\"/>\n      <xsd:enumeration value=\"ZX\"/>\n      <xsd:enumeration value=\"YZ\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Angle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"any\"/>\n      <xsd:enumeration value=\"30\"/>\n      <xsd:enumeration value=\"45\"/>\n      <xsd:enumeration value=\"60\"/>\n      <xsd:enumeration value=\"90\"/>\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CalloutDrop\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CalloutPlacement\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"user\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConnectorType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"straight\"/>\n      <xsd:enumeration value=\"elbow\"/>\n      <xsd:enumeration value=\"curved\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HrAlign\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"center\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConnectType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"rect\"/>\n      <xsd:enumeration value=\"segments\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OLELinkType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OLEType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"Embed\"/>\n      <xsd:enumeration value=\"Link\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OLEDrawAspect\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"Content\"/>\n      <xsd:enumeration value=\"Icon\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OLEUpdateMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"Always\"/>\n      <xsd:enumeration value=\"OnCall\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FillType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"gradientCenter\"/>\n      <xsd:enumeration value=\"solid\"/>\n      <xsd:enumeration value=\"pattern\"/>\n      <xsd:enumeration value=\"tile\"/>\n      <xsd:enumeration value=\"frame\"/>\n      <xsd:enumeration value=\"gradientUnscaled\"/>\n      <xsd:enumeration value=\"gradientRadial\"/>\n      <xsd:enumeration value=\"gradient\"/>\n      <xsd:enumeration value=\"background\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"urn:schemas-microsoft-com:office:powerpoint\"\n  targetNamespace=\"urn:schemas-microsoft-com:office:powerpoint\" elementFormDefault=\"qualified\"\n  attributeFormDefault=\"unqualified\">\n  <xsd:element name=\"iscomment\" type=\"CT_Empty\"/>\n  <xsd:element name=\"textdata\" type=\"CT_Rel\"/>\n  <xsd:complexType name=\"CT_Empty\"/>\n  <xsd:complexType name=\"CT_Rel\">\n    <xsd:attribute name=\"id\" type=\"xsd:string\"/>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"urn:schemas-microsoft-com:office:excel\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"urn:schemas-microsoft-com:office:excel\" elementFormDefault=\"qualified\"\n  attributeFormDefault=\"unqualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:element name=\"ClientData\" type=\"CT_ClientData\"/>\n  <xsd:complexType name=\"CT_ClientData\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"MoveWithCells\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"SizeWithCells\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Anchor\" type=\"xsd:string\"/>\n      <xsd:element name=\"Locked\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"DefaultSize\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"PrintObject\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Disabled\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"AutoFill\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"AutoLine\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"AutoPict\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"FmlaMacro\" type=\"xsd:string\"/>\n      <xsd:element name=\"TextHAlign\" type=\"xsd:string\"/>\n      <xsd:element name=\"TextVAlign\" type=\"xsd:string\"/>\n      <xsd:element name=\"LockText\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"JustLastX\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"SecretEdit\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Default\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Help\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Cancel\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Dismiss\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Accel\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Accel2\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Row\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Column\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Visible\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"RowHidden\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"ColHidden\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"VTEdit\" type=\"xsd:integer\"/>\n      <xsd:element name=\"MultiLine\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"VScroll\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"ValidIds\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"FmlaRange\" type=\"xsd:string\"/>\n      <xsd:element name=\"WidthMin\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Sel\" type=\"xsd:integer\"/>\n      <xsd:element name=\"NoThreeD2\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"SelType\" type=\"xsd:string\"/>\n      <xsd:element name=\"MultiSel\" type=\"xsd:string\"/>\n      <xsd:element name=\"LCT\" type=\"xsd:string\"/>\n      <xsd:element name=\"ListItem\" type=\"xsd:string\"/>\n      <xsd:element name=\"DropStyle\" type=\"xsd:string\"/>\n      <xsd:element name=\"Colored\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"DropLines\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Checked\" type=\"xsd:integer\"/>\n      <xsd:element name=\"FmlaLink\" type=\"xsd:string\"/>\n      <xsd:element name=\"FmlaPict\" type=\"xsd:string\"/>\n      <xsd:element name=\"NoThreeD\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"FirstButton\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"FmlaGroup\" type=\"xsd:string\"/>\n      <xsd:element name=\"Val\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Min\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Max\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Inc\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Page\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Horiz\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Dx\" type=\"xsd:integer\"/>\n      <xsd:element name=\"MapOCX\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"CF\" type=\"ST_CF\"/>\n      <xsd:element name=\"Camera\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"RecalcAlways\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"AutoScale\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"DDE\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"UIObj\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"ScriptText\" type=\"xsd:string\"/>\n      <xsd:element name=\"ScriptExtended\" type=\"xsd:string\"/>\n      <xsd:element name=\"ScriptLanguage\" type=\"xsd:nonNegativeInteger\"/>\n      <xsd:element name=\"ScriptLocation\" type=\"xsd:nonNegativeInteger\"/>\n      <xsd:element name=\"FmlaTxbx\" type=\"xsd:string\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"ObjectType\" type=\"ST_ObjectType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CF\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ObjectType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"Button\"/>\n      <xsd:enumeration value=\"Checkbox\"/>\n      <xsd:enumeration value=\"Dialog\"/>\n      <xsd:enumeration value=\"Drop\"/>\n      <xsd:enumeration value=\"Edit\"/>\n      <xsd:enumeration value=\"GBox\"/>\n      <xsd:enumeration value=\"Label\"/>\n      <xsd:enumeration value=\"LineA\"/>\n      <xsd:enumeration value=\"List\"/>\n      <xsd:enumeration value=\"Movie\"/>\n      <xsd:enumeration value=\"Note\"/>\n      <xsd:enumeration value=\"Pict\"/>\n      <xsd:enumeration value=\"Radio\"/>\n      <xsd:enumeration value=\"RectA\"/>\n      <xsd:enumeration value=\"Scroll\"/>\n      <xsd:enumeration value=\"Spin\"/>\n      <xsd:enumeration value=\"Shape\"/>\n      <xsd:enumeration value=\"Group\"/>\n      <xsd:enumeration value=\"Rect\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"urn:schemas-microsoft-com:office:word\"\n  targetNamespace=\"urn:schemas-microsoft-com:office:word\" elementFormDefault=\"qualified\"\n  attributeFormDefault=\"unqualified\">\n  <xsd:element name=\"bordertop\" type=\"CT_Border\"/>\n  <xsd:element name=\"borderleft\" type=\"CT_Border\"/>\n  <xsd:element name=\"borderright\" type=\"CT_Border\"/>\n  <xsd:element name=\"borderbottom\" type=\"CT_Border\"/>\n  <xsd:complexType name=\"CT_Border\">\n    <xsd:attribute name=\"type\" type=\"ST_BorderType\" use=\"optional\"/>\n    <xsd:attribute name=\"width\" type=\"xsd:positiveInteger\" use=\"optional\"/>\n    <xsd:attribute name=\"shadow\" type=\"ST_BorderShadow\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:element name=\"wrap\" type=\"CT_Wrap\"/>\n  <xsd:complexType name=\"CT_Wrap\">\n    <xsd:attribute name=\"type\" type=\"ST_WrapType\" use=\"optional\"/>\n    <xsd:attribute name=\"side\" type=\"ST_WrapSide\" use=\"optional\"/>\n    <xsd:attribute name=\"anchorx\" type=\"ST_HorizontalAnchor\" use=\"optional\"/>\n    <xsd:attribute name=\"anchory\" type=\"ST_VerticalAnchor\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:element name=\"anchorlock\" type=\"CT_AnchorLock\"/>\n  <xsd:complexType name=\"CT_AnchorLock\"/>\n  <xsd:simpleType name=\"ST_BorderType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"single\"/>\n      <xsd:enumeration value=\"thick\"/>\n      <xsd:enumeration value=\"double\"/>\n      <xsd:enumeration value=\"hairline\"/>\n      <xsd:enumeration value=\"dot\"/>\n      <xsd:enumeration value=\"dash\"/>\n      <xsd:enumeration value=\"dotDash\"/>\n      <xsd:enumeration value=\"dashDotDot\"/>\n      <xsd:enumeration value=\"triple\"/>\n      <xsd:enumeration value=\"thinThickSmall\"/>\n      <xsd:enumeration value=\"thickThinSmall\"/>\n      <xsd:enumeration value=\"thickBetweenThinSmall\"/>\n      <xsd:enumeration value=\"thinThick\"/>\n      <xsd:enumeration value=\"thickThin\"/>\n      <xsd:enumeration value=\"thickBetweenThin\"/>\n      <xsd:enumeration value=\"thinThickLarge\"/>\n      <xsd:enumeration value=\"thickThinLarge\"/>\n      <xsd:enumeration value=\"thickBetweenThinLarge\"/>\n      <xsd:enumeration value=\"wave\"/>\n      <xsd:enumeration value=\"doubleWave\"/>\n      <xsd:enumeration value=\"dashedSmall\"/>\n      <xsd:enumeration value=\"dashDotStroked\"/>\n      <xsd:enumeration value=\"threeDEmboss\"/>\n      <xsd:enumeration value=\"threeDEngrave\"/>\n      <xsd:enumeration value=\"HTMLOutset\"/>\n      <xsd:enumeration value=\"HTMLInset\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BorderShadow\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"true\"/>\n      <xsd:enumeration value=\"f\"/>\n      <xsd:enumeration value=\"false\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_WrapType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"topAndBottom\"/>\n      <xsd:enumeration value=\"square\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"tight\"/>\n      <xsd:enumeration value=\"through\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_WrapSide\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"both\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"largest\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HorizontalAnchor\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"page\"/>\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"char\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VerticalAnchor\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"page\"/>\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"line\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns:m=\"http://schemas.openxmlformats.org/officeDocument/2006/math\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:sl=\"http://schemas.openxmlformats.org/schemaLibrary/2006/main\"\n  xmlns:wp=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\"\n  xmlns=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\"\n  targetNamespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" schemaLocation=\"../mce/mc.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\"\n    schemaLocation=\"dml-wordprocessingDrawing.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/math\"\n    schemaLocation=\"shared-math.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/schemaLibrary/2006/main\"\n    schemaLocation=\"shared-customXmlSchemaProperties.xsd\"/>\n  <xsd:import namespace=\"http://www.w3.org/XML/1998/namespace\"/>\n  <xsd:complexType name=\"CT_Empty\"/>\n  <xsd:complexType name=\"CT_OnOff\">\n    <xsd:attribute name=\"val\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LongHexNumber\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"4\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LongHexNumber\">\n    <xsd:attribute name=\"val\" type=\"ST_LongHexNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ShortHexNumber\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"2\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UcharHexNumber\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"1\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Charset\">\n    <xsd:attribute name=\"val\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"characterSet\" type=\"s:ST_String\" use=\"optional\" default=\"ISO-8859-1\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DecimalNumberOrPercent\">\n    <xsd:union memberTypes=\"ST_UnqualifiedPercentage s:ST_Percentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UnqualifiedPercentage\">\n    <xsd:restriction base=\"xsd:decimal\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DecimalNumber\">\n    <xsd:restriction base=\"xsd:integer\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DecimalNumber\">\n    <xsd:attribute name=\"val\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_UnsignedDecimalNumber\">\n    <xsd:attribute name=\"val\" type=\"s:ST_UnsignedDecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DecimalNumberOrPrecent\">\n    <xsd:attribute name=\"val\" type=\"ST_DecimalNumberOrPercent\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TwipsMeasure\">\n    <xsd:attribute name=\"val\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SignedTwipsMeasure\">\n    <xsd:union memberTypes=\"xsd:integer s:ST_UniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SignedTwipsMeasure\">\n    <xsd:attribute name=\"val\" type=\"ST_SignedTwipsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PixelsMeasure\">\n    <xsd:restriction base=\"s:ST_UnsignedDecimalNumber\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PixelsMeasure\">\n    <xsd:attribute name=\"val\" type=\"ST_PixelsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HpsMeasure\">\n    <xsd:union memberTypes=\"s:ST_UnsignedDecimalNumber s:ST_PositiveUniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_HpsMeasure\">\n    <xsd:attribute name=\"val\" type=\"ST_HpsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SignedHpsMeasure\">\n    <xsd:union memberTypes=\"xsd:integer s:ST_UniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SignedHpsMeasure\">\n    <xsd:attribute name=\"val\" type=\"ST_SignedHpsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DateTime\">\n    <xsd:restriction base=\"xsd:dateTime\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_MacroName\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:maxLength value=\"33\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MacroName\">\n    <xsd:attribute name=\"val\" use=\"required\" type=\"ST_MacroName\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_EighthPointMeasure\">\n    <xsd:restriction base=\"s:ST_UnsignedDecimalNumber\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PointMeasure\">\n    <xsd:restriction base=\"s:ST_UnsignedDecimalNumber\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_String\">\n    <xsd:attribute name=\"val\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextScale\">\n    <xsd:union memberTypes=\"ST_TextScalePercent ST_TextScaleDecimal\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextScalePercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(600|([0-5]?[0-9]?[0-9]))%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextScaleDecimal\">\n    <xsd:restriction base=\"xsd:integer\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"600\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextScale\">\n    <xsd:attribute name=\"val\" type=\"ST_TextScale\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HighlightColor\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"black\"/>\n      <xsd:enumeration value=\"blue\"/>\n      <xsd:enumeration value=\"cyan\"/>\n      <xsd:enumeration value=\"green\"/>\n      <xsd:enumeration value=\"magenta\"/>\n      <xsd:enumeration value=\"red\"/>\n      <xsd:enumeration value=\"yellow\"/>\n      <xsd:enumeration value=\"white\"/>\n      <xsd:enumeration value=\"darkBlue\"/>\n      <xsd:enumeration value=\"darkCyan\"/>\n      <xsd:enumeration value=\"darkGreen\"/>\n      <xsd:enumeration value=\"darkMagenta\"/>\n      <xsd:enumeration value=\"darkRed\"/>\n      <xsd:enumeration value=\"darkYellow\"/>\n      <xsd:enumeration value=\"darkGray\"/>\n      <xsd:enumeration value=\"lightGray\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Highlight\">\n    <xsd:attribute name=\"val\" type=\"ST_HighlightColor\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HexColorAuto\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HexColor\">\n    <xsd:union memberTypes=\"ST_HexColorAuto s:ST_HexColorRGB\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Color\">\n    <xsd:attribute name=\"val\" type=\"ST_HexColor\" use=\"required\"/>\n    <xsd:attribute name=\"themeColor\" type=\"ST_ThemeColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeTint\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"themeShade\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Lang\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Lang\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Guid\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Guid\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Underline\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"single\"/>\n      <xsd:enumeration value=\"words\"/>\n      <xsd:enumeration value=\"double\"/>\n      <xsd:enumeration value=\"thick\"/>\n      <xsd:enumeration value=\"dotted\"/>\n      <xsd:enumeration value=\"dottedHeavy\"/>\n      <xsd:enumeration value=\"dash\"/>\n      <xsd:enumeration value=\"dashedHeavy\"/>\n      <xsd:enumeration value=\"dashLong\"/>\n      <xsd:enumeration value=\"dashLongHeavy\"/>\n      <xsd:enumeration value=\"dotDash\"/>\n      <xsd:enumeration value=\"dashDotHeavy\"/>\n      <xsd:enumeration value=\"dotDotDash\"/>\n      <xsd:enumeration value=\"dashDotDotHeavy\"/>\n      <xsd:enumeration value=\"wave\"/>\n      <xsd:enumeration value=\"wavyHeavy\"/>\n      <xsd:enumeration value=\"wavyDouble\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Underline\">\n    <xsd:attribute name=\"val\" type=\"ST_Underline\" use=\"optional\"/>\n    <xsd:attribute name=\"color\" type=\"ST_HexColor\" use=\"optional\" default=\"auto\"/>\n    <xsd:attribute name=\"themeColor\" type=\"ST_ThemeColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeTint\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"themeShade\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextEffect\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"blinkBackground\"/>\n      <xsd:enumeration value=\"lights\"/>\n      <xsd:enumeration value=\"antsBlack\"/>\n      <xsd:enumeration value=\"antsRed\"/>\n      <xsd:enumeration value=\"shimmer\"/>\n      <xsd:enumeration value=\"sparkle\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextEffect\">\n    <xsd:attribute name=\"val\" type=\"ST_TextEffect\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Border\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"nil\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"single\"/>\n      <xsd:enumeration value=\"thick\"/>\n      <xsd:enumeration value=\"double\"/>\n      <xsd:enumeration value=\"dotted\"/>\n      <xsd:enumeration value=\"dashed\"/>\n      <xsd:enumeration value=\"dotDash\"/>\n      <xsd:enumeration value=\"dotDotDash\"/>\n      <xsd:enumeration value=\"triple\"/>\n      <xsd:enumeration value=\"thinThickSmallGap\"/>\n      <xsd:enumeration value=\"thickThinSmallGap\"/>\n      <xsd:enumeration value=\"thinThickThinSmallGap\"/>\n      <xsd:enumeration value=\"thinThickMediumGap\"/>\n      <xsd:enumeration value=\"thickThinMediumGap\"/>\n      <xsd:enumeration value=\"thinThickThinMediumGap\"/>\n      <xsd:enumeration value=\"thinThickLargeGap\"/>\n      <xsd:enumeration value=\"thickThinLargeGap\"/>\n      <xsd:enumeration value=\"thinThickThinLargeGap\"/>\n      <xsd:enumeration value=\"wave\"/>\n      <xsd:enumeration value=\"doubleWave\"/>\n      <xsd:enumeration value=\"dashSmallGap\"/>\n      <xsd:enumeration value=\"dashDotStroked\"/>\n      <xsd:enumeration value=\"threeDEmboss\"/>\n      <xsd:enumeration value=\"threeDEngrave\"/>\n      <xsd:enumeration value=\"outset\"/>\n      <xsd:enumeration value=\"inset\"/>\n      <xsd:enumeration value=\"apples\"/>\n      <xsd:enumeration value=\"archedScallops\"/>\n      <xsd:enumeration value=\"babyPacifier\"/>\n      <xsd:enumeration value=\"babyRattle\"/>\n      <xsd:enumeration value=\"balloons3Colors\"/>\n      <xsd:enumeration value=\"balloonsHotAir\"/>\n      <xsd:enumeration value=\"basicBlackDashes\"/>\n      <xsd:enumeration value=\"basicBlackDots\"/>\n      <xsd:enumeration value=\"basicBlackSquares\"/>\n      <xsd:enumeration value=\"basicThinLines\"/>\n      <xsd:enumeration value=\"basicWhiteDashes\"/>\n      <xsd:enumeration value=\"basicWhiteDots\"/>\n      <xsd:enumeration value=\"basicWhiteSquares\"/>\n      <xsd:enumeration value=\"basicWideInline\"/>\n      <xsd:enumeration value=\"basicWideMidline\"/>\n      <xsd:enumeration value=\"basicWideOutline\"/>\n      <xsd:enumeration value=\"bats\"/>\n      <xsd:enumeration value=\"birds\"/>\n      <xsd:enumeration value=\"birdsFlight\"/>\n      <xsd:enumeration value=\"cabins\"/>\n      <xsd:enumeration value=\"cakeSlice\"/>\n      <xsd:enumeration value=\"candyCorn\"/>\n      <xsd:enumeration value=\"celticKnotwork\"/>\n      <xsd:enumeration value=\"certificateBanner\"/>\n      <xsd:enumeration value=\"chainLink\"/>\n      <xsd:enumeration value=\"champagneBottle\"/>\n      <xsd:enumeration value=\"checkedBarBlack\"/>\n      <xsd:enumeration value=\"checkedBarColor\"/>\n      <xsd:enumeration value=\"checkered\"/>\n      <xsd:enumeration value=\"christmasTree\"/>\n      <xsd:enumeration value=\"circlesLines\"/>\n      <xsd:enumeration value=\"circlesRectangles\"/>\n      <xsd:enumeration value=\"classicalWave\"/>\n      <xsd:enumeration value=\"clocks\"/>\n      <xsd:enumeration value=\"compass\"/>\n      <xsd:enumeration value=\"confetti\"/>\n      <xsd:enumeration value=\"confettiGrays\"/>\n      <xsd:enumeration value=\"confettiOutline\"/>\n      <xsd:enumeration value=\"confettiStreamers\"/>\n      <xsd:enumeration value=\"confettiWhite\"/>\n      <xsd:enumeration value=\"cornerTriangles\"/>\n      <xsd:enumeration value=\"couponCutoutDashes\"/>\n      <xsd:enumeration value=\"couponCutoutDots\"/>\n      <xsd:enumeration value=\"crazyMaze\"/>\n      <xsd:enumeration value=\"creaturesButterfly\"/>\n      <xsd:enumeration value=\"creaturesFish\"/>\n      <xsd:enumeration value=\"creaturesInsects\"/>\n      <xsd:enumeration value=\"creaturesLadyBug\"/>\n      <xsd:enumeration value=\"crossStitch\"/>\n      <xsd:enumeration value=\"cup\"/>\n      <xsd:enumeration value=\"decoArch\"/>\n      <xsd:enumeration value=\"decoArchColor\"/>\n      <xsd:enumeration value=\"decoBlocks\"/>\n      <xsd:enumeration value=\"diamondsGray\"/>\n      <xsd:enumeration value=\"doubleD\"/>\n      <xsd:enumeration value=\"doubleDiamonds\"/>\n      <xsd:enumeration value=\"earth1\"/>\n      <xsd:enumeration value=\"earth2\"/>\n      <xsd:enumeration value=\"earth3\"/>\n      <xsd:enumeration value=\"eclipsingSquares1\"/>\n      <xsd:enumeration value=\"eclipsingSquares2\"/>\n      <xsd:enumeration value=\"eggsBlack\"/>\n      <xsd:enumeration value=\"fans\"/>\n      <xsd:enumeration value=\"film\"/>\n      <xsd:enumeration value=\"firecrackers\"/>\n      <xsd:enumeration value=\"flowersBlockPrint\"/>\n      <xsd:enumeration value=\"flowersDaisies\"/>\n      <xsd:enumeration value=\"flowersModern1\"/>\n      <xsd:enumeration value=\"flowersModern2\"/>\n      <xsd:enumeration value=\"flowersPansy\"/>\n      <xsd:enumeration value=\"flowersRedRose\"/>\n      <xsd:enumeration value=\"flowersRoses\"/>\n      <xsd:enumeration value=\"flowersTeacup\"/>\n      <xsd:enumeration value=\"flowersTiny\"/>\n      <xsd:enumeration value=\"gems\"/>\n      <xsd:enumeration value=\"gingerbreadMan\"/>\n      <xsd:enumeration value=\"gradient\"/>\n      <xsd:enumeration value=\"handmade1\"/>\n      <xsd:enumeration value=\"handmade2\"/>\n      <xsd:enumeration value=\"heartBalloon\"/>\n      <xsd:enumeration value=\"heartGray\"/>\n      <xsd:enumeration value=\"hearts\"/>\n      <xsd:enumeration value=\"heebieJeebies\"/>\n      <xsd:enumeration value=\"holly\"/>\n      <xsd:enumeration value=\"houseFunky\"/>\n      <xsd:enumeration value=\"hypnotic\"/>\n      <xsd:enumeration value=\"iceCreamCones\"/>\n      <xsd:enumeration value=\"lightBulb\"/>\n      <xsd:enumeration value=\"lightning1\"/>\n      <xsd:enumeration value=\"lightning2\"/>\n      <xsd:enumeration value=\"mapPins\"/>\n      <xsd:enumeration value=\"mapleLeaf\"/>\n      <xsd:enumeration value=\"mapleMuffins\"/>\n      <xsd:enumeration value=\"marquee\"/>\n      <xsd:enumeration value=\"marqueeToothed\"/>\n      <xsd:enumeration value=\"moons\"/>\n      <xsd:enumeration value=\"mosaic\"/>\n      <xsd:enumeration value=\"musicNotes\"/>\n      <xsd:enumeration value=\"northwest\"/>\n      <xsd:enumeration value=\"ovals\"/>\n      <xsd:enumeration value=\"packages\"/>\n      <xsd:enumeration value=\"palmsBlack\"/>\n      <xsd:enumeration value=\"palmsColor\"/>\n      <xsd:enumeration value=\"paperClips\"/>\n      <xsd:enumeration value=\"papyrus\"/>\n      <xsd:enumeration value=\"partyFavor\"/>\n      <xsd:enumeration value=\"partyGlass\"/>\n      <xsd:enumeration value=\"pencils\"/>\n      <xsd:enumeration value=\"people\"/>\n      <xsd:enumeration value=\"peopleWaving\"/>\n      <xsd:enumeration value=\"peopleHats\"/>\n      <xsd:enumeration value=\"poinsettias\"/>\n      <xsd:enumeration value=\"postageStamp\"/>\n      <xsd:enumeration value=\"pumpkin1\"/>\n      <xsd:enumeration value=\"pushPinNote2\"/>\n      <xsd:enumeration value=\"pushPinNote1\"/>\n      <xsd:enumeration value=\"pyramids\"/>\n      <xsd:enumeration value=\"pyramidsAbove\"/>\n      <xsd:enumeration value=\"quadrants\"/>\n      <xsd:enumeration value=\"rings\"/>\n      <xsd:enumeration value=\"safari\"/>\n      <xsd:enumeration value=\"sawtooth\"/>\n      <xsd:enumeration value=\"sawtoothGray\"/>\n      <xsd:enumeration value=\"scaredCat\"/>\n      <xsd:enumeration value=\"seattle\"/>\n      <xsd:enumeration value=\"shadowedSquares\"/>\n      <xsd:enumeration value=\"sharksTeeth\"/>\n      <xsd:enumeration value=\"shorebirdTracks\"/>\n      <xsd:enumeration value=\"skyrocket\"/>\n      <xsd:enumeration value=\"snowflakeFancy\"/>\n      <xsd:enumeration value=\"snowflakes\"/>\n      <xsd:enumeration value=\"sombrero\"/>\n      <xsd:enumeration value=\"southwest\"/>\n      <xsd:enumeration value=\"stars\"/>\n      <xsd:enumeration value=\"starsTop\"/>\n      <xsd:enumeration value=\"stars3d\"/>\n      <xsd:enumeration value=\"starsBlack\"/>\n      <xsd:enumeration value=\"starsShadowed\"/>\n      <xsd:enumeration value=\"sun\"/>\n      <xsd:enumeration value=\"swirligig\"/>\n      <xsd:enumeration value=\"tornPaper\"/>\n      <xsd:enumeration value=\"tornPaperBlack\"/>\n      <xsd:enumeration value=\"trees\"/>\n      <xsd:enumeration value=\"triangleParty\"/>\n      <xsd:enumeration value=\"triangles\"/>\n      <xsd:enumeration value=\"triangle1\"/>\n      <xsd:enumeration value=\"triangle2\"/>\n      <xsd:enumeration value=\"triangleCircle1\"/>\n      <xsd:enumeration value=\"triangleCircle2\"/>\n      <xsd:enumeration value=\"shapes1\"/>\n      <xsd:enumeration value=\"shapes2\"/>\n      <xsd:enumeration value=\"twistedLines1\"/>\n      <xsd:enumeration value=\"twistedLines2\"/>\n      <xsd:enumeration value=\"vine\"/>\n      <xsd:enumeration value=\"waveline\"/>\n      <xsd:enumeration value=\"weavingAngles\"/>\n      <xsd:enumeration value=\"weavingBraid\"/>\n      <xsd:enumeration value=\"weavingRibbon\"/>\n      <xsd:enumeration value=\"weavingStrips\"/>\n      <xsd:enumeration value=\"whiteFlowers\"/>\n      <xsd:enumeration value=\"woodwork\"/>\n      <xsd:enumeration value=\"xIllusions\"/>\n      <xsd:enumeration value=\"zanyTriangles\"/>\n      <xsd:enumeration value=\"zigZag\"/>\n      <xsd:enumeration value=\"zigZagStitch\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Border\">\n    <xsd:attribute name=\"val\" type=\"ST_Border\" use=\"required\"/>\n    <xsd:attribute name=\"color\" type=\"ST_HexColor\" use=\"optional\" default=\"auto\"/>\n    <xsd:attribute name=\"themeColor\" type=\"ST_ThemeColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeTint\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"themeShade\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"sz\" type=\"ST_EighthPointMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"space\" type=\"ST_PointMeasure\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"shadow\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"frame\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Shd\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"nil\"/>\n      <xsd:enumeration value=\"clear\"/>\n      <xsd:enumeration value=\"solid\"/>\n      <xsd:enumeration value=\"horzStripe\"/>\n      <xsd:enumeration value=\"vertStripe\"/>\n      <xsd:enumeration value=\"reverseDiagStripe\"/>\n      <xsd:enumeration value=\"diagStripe\"/>\n      <xsd:enumeration value=\"horzCross\"/>\n      <xsd:enumeration value=\"diagCross\"/>\n      <xsd:enumeration value=\"thinHorzStripe\"/>\n      <xsd:enumeration value=\"thinVertStripe\"/>\n      <xsd:enumeration value=\"thinReverseDiagStripe\"/>\n      <xsd:enumeration value=\"thinDiagStripe\"/>\n      <xsd:enumeration value=\"thinHorzCross\"/>\n      <xsd:enumeration value=\"thinDiagCross\"/>\n      <xsd:enumeration value=\"pct5\"/>\n      <xsd:enumeration value=\"pct10\"/>\n      <xsd:enumeration value=\"pct12\"/>\n      <xsd:enumeration value=\"pct15\"/>\n      <xsd:enumeration value=\"pct20\"/>\n      <xsd:enumeration value=\"pct25\"/>\n      <xsd:enumeration value=\"pct30\"/>\n      <xsd:enumeration value=\"pct35\"/>\n      <xsd:enumeration value=\"pct37\"/>\n      <xsd:enumeration value=\"pct40\"/>\n      <xsd:enumeration value=\"pct45\"/>\n      <xsd:enumeration value=\"pct50\"/>\n      <xsd:enumeration value=\"pct55\"/>\n      <xsd:enumeration value=\"pct60\"/>\n      <xsd:enumeration value=\"pct62\"/>\n      <xsd:enumeration value=\"pct65\"/>\n      <xsd:enumeration value=\"pct70\"/>\n      <xsd:enumeration value=\"pct75\"/>\n      <xsd:enumeration value=\"pct80\"/>\n      <xsd:enumeration value=\"pct85\"/>\n      <xsd:enumeration value=\"pct87\"/>\n      <xsd:enumeration value=\"pct90\"/>\n      <xsd:enumeration value=\"pct95\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Shd\">\n    <xsd:attribute name=\"val\" type=\"ST_Shd\" use=\"required\"/>\n    <xsd:attribute name=\"color\" type=\"ST_HexColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeColor\" type=\"ST_ThemeColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeTint\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"themeShade\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"fill\" type=\"ST_HexColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeFill\" type=\"ST_ThemeColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeFillTint\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"themeFillShade\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VerticalAlignRun\">\n    <xsd:attribute name=\"val\" type=\"s:ST_VerticalAlignRun\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FitText\">\n    <xsd:attribute name=\"val\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"id\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Em\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"dot\"/>\n      <xsd:enumeration value=\"comma\"/>\n      <xsd:enumeration value=\"circle\"/>\n      <xsd:enumeration value=\"underDot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Em\">\n    <xsd:attribute name=\"val\" type=\"ST_Em\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Language\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Lang\" use=\"optional\"/>\n    <xsd:attribute name=\"eastAsia\" type=\"s:ST_Lang\" use=\"optional\"/>\n    <xsd:attribute name=\"bidi\" type=\"s:ST_Lang\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CombineBrackets\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"round\"/>\n      <xsd:enumeration value=\"square\"/>\n      <xsd:enumeration value=\"angle\"/>\n      <xsd:enumeration value=\"curly\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_EastAsianLayout\">\n    <xsd:attribute name=\"id\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"combine\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"combineBrackets\" type=\"ST_CombineBrackets\" use=\"optional\"/>\n    <xsd:attribute name=\"vert\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"vertCompress\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HeightRule\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"exact\"/>\n      <xsd:enumeration value=\"atLeast\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Wrap\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"notBeside\"/>\n      <xsd:enumeration value=\"around\"/>\n      <xsd:enumeration value=\"tight\"/>\n      <xsd:enumeration value=\"through\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VAnchor\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"page\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HAnchor\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"page\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DropCap\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"drop\"/>\n      <xsd:enumeration value=\"margin\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FramePr\">\n    <xsd:attribute name=\"dropCap\" type=\"ST_DropCap\" use=\"optional\"/>\n    <xsd:attribute name=\"lines\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"w\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"h\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"vSpace\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"hSpace\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"wrap\" type=\"ST_Wrap\" use=\"optional\"/>\n    <xsd:attribute name=\"hAnchor\" type=\"ST_HAnchor\" use=\"optional\"/>\n    <xsd:attribute name=\"vAnchor\" type=\"ST_VAnchor\" use=\"optional\"/>\n    <xsd:attribute name=\"x\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"xAlign\" type=\"s:ST_XAlign\" use=\"optional\"/>\n    <xsd:attribute name=\"y\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"yAlign\" type=\"s:ST_YAlign\" use=\"optional\"/>\n    <xsd:attribute name=\"hRule\" type=\"ST_HeightRule\" use=\"optional\"/>\n    <xsd:attribute name=\"anchorLock\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TabJc\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"clear\"/>\n      <xsd:enumeration value=\"start\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"end\"/>\n      <xsd:enumeration value=\"decimal\"/>\n      <xsd:enumeration value=\"bar\"/>\n      <xsd:enumeration value=\"num\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TabTlc\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"dot\"/>\n      <xsd:enumeration value=\"hyphen\"/>\n      <xsd:enumeration value=\"underscore\"/>\n      <xsd:enumeration value=\"heavy\"/>\n      <xsd:enumeration value=\"middleDot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TabStop\">\n    <xsd:attribute name=\"val\" type=\"ST_TabJc\" use=\"required\"/>\n    <xsd:attribute name=\"leader\" type=\"ST_TabTlc\" use=\"optional\"/>\n    <xsd:attribute name=\"pos\" type=\"ST_SignedTwipsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LineSpacingRule\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"exact\"/>\n      <xsd:enumeration value=\"atLeast\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Spacing\">\n    <xsd:attribute name=\"before\" type=\"s:ST_TwipsMeasure\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"beforeLines\" type=\"ST_DecimalNumber\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"beforeAutospacing\" type=\"s:ST_OnOff\" use=\"optional\" default=\"off\"/>\n    <xsd:attribute name=\"after\" type=\"s:ST_TwipsMeasure\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"afterLines\" type=\"ST_DecimalNumber\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"afterAutospacing\" type=\"s:ST_OnOff\" use=\"optional\" default=\"off\"/>\n    <xsd:attribute name=\"line\" type=\"ST_SignedTwipsMeasure\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"lineRule\" type=\"ST_LineSpacingRule\" use=\"optional\" default=\"auto\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Ind\">\n    <xsd:attribute name=\"start\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"startChars\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"end\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"endChars\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"left\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"leftChars\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"right\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"rightChars\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"hanging\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"hangingChars\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"firstLine\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"firstLineChars\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Jc\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"start\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"end\"/>\n      <xsd:enumeration value=\"both\"/>\n      <xsd:enumeration value=\"mediumKashida\"/>\n      <xsd:enumeration value=\"distribute\"/>\n      <xsd:enumeration value=\"numTab\"/>\n      <xsd:enumeration value=\"highKashida\"/>\n      <xsd:enumeration value=\"lowKashida\"/>\n      <xsd:enumeration value=\"thaiDistribute\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_JcTable\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"end\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"start\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Jc\">\n    <xsd:attribute name=\"val\" type=\"ST_Jc\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_JcTable\">\n    <xsd:attribute name=\"val\" type=\"ST_JcTable\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_View\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"print\"/>\n      <xsd:enumeration value=\"outline\"/>\n      <xsd:enumeration value=\"masterPages\"/>\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"web\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_View\">\n    <xsd:attribute name=\"val\" type=\"ST_View\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Zoom\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"fullPage\"/>\n      <xsd:enumeration value=\"bestFit\"/>\n      <xsd:enumeration value=\"textFit\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Zoom\">\n    <xsd:attribute name=\"val\" type=\"ST_Zoom\" use=\"optional\"/>\n    <xsd:attribute name=\"percent\" type=\"ST_DecimalNumberOrPercent\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WritingStyle\">\n    <xsd:attribute name=\"lang\" type=\"s:ST_Lang\" use=\"required\"/>\n    <xsd:attribute name=\"vendorID\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"dllVersion\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"nlCheck\" type=\"s:ST_OnOff\" use=\"optional\" default=\"off\"/>\n    <xsd:attribute name=\"checkStyle\" type=\"s:ST_OnOff\" use=\"required\"/>\n    <xsd:attribute name=\"appName\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Proof\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"clean\"/>\n      <xsd:enumeration value=\"dirty\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Proof\">\n    <xsd:attribute name=\"spelling\" type=\"ST_Proof\" use=\"optional\"/>\n    <xsd:attribute name=\"grammar\" type=\"ST_Proof\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DocType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DocType\">\n    <xsd:attribute name=\"val\" type=\"ST_DocType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DocProtect\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"readOnly\"/>\n      <xsd:enumeration value=\"comments\"/>\n      <xsd:enumeration value=\"trackedChanges\"/>\n      <xsd:enumeration value=\"forms\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:attributeGroup name=\"AG_Password\">\n    <xsd:attribute name=\"algorithmName\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"hashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"saltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"spinCount\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_TransitionalPassword\">\n    <xsd:attribute name=\"cryptProviderType\" type=\"s:ST_CryptProv\"/>\n    <xsd:attribute name=\"cryptAlgorithmClass\" type=\"s:ST_AlgClass\"/>\n    <xsd:attribute name=\"cryptAlgorithmType\" type=\"s:ST_AlgType\"/>\n    <xsd:attribute name=\"cryptAlgorithmSid\" type=\"ST_DecimalNumber\"/>\n    <xsd:attribute name=\"cryptSpinCount\" type=\"ST_DecimalNumber\"/>\n    <xsd:attribute name=\"cryptProvider\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"algIdExt\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"algIdExtSource\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"cryptProviderTypeExt\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"cryptProviderTypeExtSource\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"hash\" type=\"xsd:base64Binary\"/>\n    <xsd:attribute name=\"salt\" type=\"xsd:base64Binary\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_DocProtect\">\n    <xsd:attribute name=\"edit\" type=\"ST_DocProtect\" use=\"optional\"/>\n    <xsd:attribute name=\"formatting\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"enforcement\" type=\"s:ST_OnOff\"/>\n    <xsd:attributeGroup ref=\"AG_Password\"/>\n    <xsd:attributeGroup ref=\"AG_TransitionalPassword\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MailMergeDocType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"catalog\"/>\n      <xsd:enumeration value=\"envelopes\"/>\n      <xsd:enumeration value=\"mailingLabels\"/>\n      <xsd:enumeration value=\"formLetters\"/>\n      <xsd:enumeration value=\"email\"/>\n      <xsd:enumeration value=\"fax\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MailMergeDocType\">\n    <xsd:attribute name=\"val\" type=\"ST_MailMergeDocType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MailMergeDataType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MailMergeDataType\">\n    <xsd:attribute name=\"val\" type=\"ST_MailMergeDataType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MailMergeDest\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"newDocument\"/>\n      <xsd:enumeration value=\"printer\"/>\n      <xsd:enumeration value=\"email\"/>\n      <xsd:enumeration value=\"fax\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MailMergeDest\">\n    <xsd:attribute name=\"val\" type=\"ST_MailMergeDest\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MailMergeOdsoFMDFieldType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"null\"/>\n      <xsd:enumeration value=\"dbColumn\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MailMergeOdsoFMDFieldType\">\n    <xsd:attribute name=\"val\" type=\"ST_MailMergeOdsoFMDFieldType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrackChangesView\">\n    <xsd:attribute name=\"markup\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"comments\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"insDel\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"formatting\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"inkAnnotations\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Kinsoku\">\n    <xsd:attribute name=\"lang\" type=\"s:ST_Lang\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextDirection\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"tb\"/>\n      <xsd:enumeration value=\"rl\"/>\n      <xsd:enumeration value=\"lr\"/>\n      <xsd:enumeration value=\"tbV\"/>\n      <xsd:enumeration value=\"rlV\"/>\n      <xsd:enumeration value=\"lrV\"/>\n      <xsd:enumeration value=\"btLr\"/>\n      <xsd:enumeration value=\"lrTb\"/>\n      <xsd:enumeration value=\"lrTbV\"/>\n      <xsd:enumeration value=\"tbLrV\"/>\n      <xsd:enumeration value=\"tbRl\"/>\n      <xsd:enumeration value=\"tbRlV\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextDirection\">\n    <xsd:attribute name=\"val\" type=\"ST_TextDirection\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextAlignment\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"baseline\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextAlignment\">\n    <xsd:attribute name=\"val\" type=\"ST_TextAlignment\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DisplacedByCustomXml\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"next\"/>\n      <xsd:enumeration value=\"prev\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AnnotationVMerge\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"cont\"/>\n      <xsd:enumeration value=\"rest\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Markup\">\n    <xsd:attribute name=\"id\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrackChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Markup\">\n        <xsd:attribute name=\"author\" type=\"s:ST_String\" use=\"required\"/>\n        <xsd:attribute name=\"date\" type=\"ST_DateTime\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellMergeTrackChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:attribute name=\"vMerge\" type=\"ST_AnnotationVMerge\" use=\"optional\"/>\n        <xsd:attribute name=\"vMergeOrig\" type=\"ST_AnnotationVMerge\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrackChangeRange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:attribute name=\"displacedByCustomXml\" type=\"ST_DisplacedByCustomXml\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MarkupRange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Markup\">\n        <xsd:attribute name=\"displacedByCustomXml\" type=\"ST_DisplacedByCustomXml\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BookmarkRange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_MarkupRange\">\n        <xsd:attribute name=\"colFirst\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n        <xsd:attribute name=\"colLast\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Bookmark\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_BookmarkRange\">\n        <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MoveBookmark\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Bookmark\">\n        <xsd:attribute name=\"author\" type=\"s:ST_String\" use=\"required\"/>\n        <xsd:attribute name=\"date\" type=\"ST_DateTime\" use=\"required\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Comment\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:group ref=\"EG_BlockLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n        </xsd:sequence>\n        <xsd:attribute name=\"initials\" type=\"s:ST_String\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrackChangeNumbering\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:attribute name=\"original\" type=\"s:ST_String\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPrExChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"tblPrEx\" type=\"CT_TblPrExBase\" minOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TcPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"tcPr\" type=\"CT_TcPrInner\" minOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"trPr\" type=\"CT_TrPrBase\" minOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblGridChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Markup\">\n        <xsd:sequence>\n          <xsd:element name=\"tblGrid\" type=\"CT_TblGridBase\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"tblPr\" type=\"CT_TblPrBase\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SectPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"sectPr\" type=\"CT_SectPrBase\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"pPr\" type=\"CT_PPrBase\" minOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"rPr\" type=\"CT_RPrOriginal\" minOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ParaRPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"rPr\" type=\"CT_ParaRPrOriginal\" minOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RunTrackChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n          <xsd:group ref=\"EG_ContentRunContent\"/>\n          <xsd:group ref=\"m:EG_OMathMathElements\"/>\n        </xsd:choice>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:group name=\"EG_PContentMath\">\n    <xsd:choice>\n      <xsd:group ref=\"EG_PContentBase\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:group ref=\"EG_ContentRunContentBase\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_PContentBase\">\n    <xsd:choice>\n      <xsd:element name=\"customXml\" type=\"CT_CustomXmlRun\"/>\n      <xsd:element name=\"fldSimple\" type=\"CT_SimpleField\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"hyperlink\" type=\"CT_Hyperlink\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_ContentRunContentBase\">\n    <xsd:choice>\n      <xsd:element name=\"smartTag\" type=\"CT_SmartTagRun\"/>\n      <xsd:element name=\"sdt\" type=\"CT_SdtRun\"/>\n      <xsd:group ref=\"EG_RunLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_CellMarkupElements\">\n    <xsd:choice>\n      <xsd:element name=\"cellIns\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"cellDel\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"cellMerge\" type=\"CT_CellMergeTrackChange\" minOccurs=\"0\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_RangeMarkupElements\">\n    <xsd:choice>\n      <xsd:element name=\"bookmarkStart\" type=\"CT_Bookmark\"/>\n      <xsd:element name=\"bookmarkEnd\" type=\"CT_MarkupRange\"/>\n      <xsd:element name=\"moveFromRangeStart\" type=\"CT_MoveBookmark\"/>\n      <xsd:element name=\"moveFromRangeEnd\" type=\"CT_MarkupRange\"/>\n      <xsd:element name=\"moveToRangeStart\" type=\"CT_MoveBookmark\"/>\n      <xsd:element name=\"moveToRangeEnd\" type=\"CT_MarkupRange\"/>\n      <xsd:element name=\"commentRangeStart\" type=\"CT_MarkupRange\"/>\n      <xsd:element name=\"commentRangeEnd\" type=\"CT_MarkupRange\"/>\n      <xsd:element name=\"customXmlInsRangeStart\" type=\"CT_TrackChange\"/>\n      <xsd:element name=\"customXmlInsRangeEnd\" type=\"CT_Markup\"/>\n      <xsd:element name=\"customXmlDelRangeStart\" type=\"CT_TrackChange\"/>\n      <xsd:element name=\"customXmlDelRangeEnd\" type=\"CT_Markup\"/>\n      <xsd:element name=\"customXmlMoveFromRangeStart\" type=\"CT_TrackChange\"/>\n      <xsd:element name=\"customXmlMoveFromRangeEnd\" type=\"CT_Markup\"/>\n      <xsd:element name=\"customXmlMoveToRangeStart\" type=\"CT_TrackChange\"/>\n      <xsd:element name=\"customXmlMoveToRangeEnd\" type=\"CT_Markup\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_NumPr\">\n    <xsd:sequence>\n      <xsd:element name=\"ilvl\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"numId\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"numberingChange\" type=\"CT_TrackChangeNumbering\" minOccurs=\"0\"/>\n      <xsd:element name=\"ins\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PBdr\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"left\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"right\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"between\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"bar\" type=\"CT_Border\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Tabs\">\n    <xsd:sequence>\n      <xsd:element name=\"tab\" type=\"CT_TabStop\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextboxTightWrap\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"allLines\"/>\n      <xsd:enumeration value=\"firstAndLastLine\"/>\n      <xsd:enumeration value=\"firstLineOnly\"/>\n      <xsd:enumeration value=\"lastLineOnly\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextboxTightWrap\">\n    <xsd:attribute name=\"val\" type=\"ST_TextboxTightWrap\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PPrBase\">\n    <xsd:sequence>\n      <xsd:element name=\"pStyle\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"keepNext\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"keepLines\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"pageBreakBefore\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"framePr\" type=\"CT_FramePr\" minOccurs=\"0\"/>\n      <xsd:element name=\"widowControl\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"numPr\" type=\"CT_NumPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressLineNumbers\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"pBdr\" type=\"CT_PBdr\" minOccurs=\"0\"/>\n      <xsd:element name=\"shd\" type=\"CT_Shd\" minOccurs=\"0\"/>\n      <xsd:element name=\"tabs\" type=\"CT_Tabs\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressAutoHyphens\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"kinsoku\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"wordWrap\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"overflowPunct\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"topLinePunct\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"autoSpaceDE\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"autoSpaceDN\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bidi\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"adjustRightInd\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"snapToGrid\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"spacing\" type=\"CT_Spacing\" minOccurs=\"0\"/>\n      <xsd:element name=\"ind\" type=\"CT_Ind\" minOccurs=\"0\"/>\n      <xsd:element name=\"contextualSpacing\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"mirrorIndents\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressOverlap\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"jc\" type=\"CT_Jc\" minOccurs=\"0\"/>\n      <xsd:element name=\"textDirection\" type=\"CT_TextDirection\" minOccurs=\"0\"/>\n      <xsd:element name=\"textAlignment\" type=\"CT_TextAlignment\" minOccurs=\"0\"/>\n      <xsd:element name=\"textboxTightWrap\" type=\"CT_TextboxTightWrap\" minOccurs=\"0\"/>\n      <xsd:element name=\"outlineLvl\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"divId\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"cnfStyle\" type=\"CT_Cnf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PPr\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_PPrBase\">\n        <xsd:sequence>\n          <xsd:element name=\"rPr\" type=\"CT_ParaRPr\" minOccurs=\"0\"/>\n          <xsd:element name=\"sectPr\" type=\"CT_SectPr\" minOccurs=\"0\"/>\n          <xsd:element name=\"pPrChange\" type=\"CT_PPrChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PPrGeneral\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_PPrBase\">\n        <xsd:sequence>\n          <xsd:element name=\"pPrChange\" type=\"CT_PPrChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Control\">\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"shapeid\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Background\">\n    <xsd:sequence>\n      <xsd:sequence maxOccurs=\"unbounded\">\n        <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:vml\" minOccurs=\"0\"\n          maxOccurs=\"unbounded\"/>\n        <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:office:office\"\n          minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      </xsd:sequence>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"color\" type=\"ST_HexColor\" use=\"optional\" default=\"auto\"/>\n    <xsd:attribute name=\"themeColor\" type=\"ST_ThemeColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeTint\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"themeShade\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rel\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Object\">\n    <xsd:sequence>\n      <xsd:sequence maxOccurs=\"unbounded\">\n        <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:vml\" minOccurs=\"0\"\n          maxOccurs=\"unbounded\"/>\n        <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:office:office\"\n          minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      </xsd:sequence>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\" minOccurs=\"0\"/>\n      <xsd:choice minOccurs=\"0\">\n        <xsd:element name=\"control\" type=\"CT_Control\"/>\n        <xsd:element name=\"objectLink\" type=\"CT_ObjectLink\"/>\n        <xsd:element name=\"objectEmbed\" type=\"CT_ObjectEmbed\"/>\n        <xsd:element name=\"movie\" type=\"CT_Rel\"/>\n      </xsd:choice>\n    </xsd:sequence>\n    <xsd:attribute name=\"dxaOrig\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"dyaOrig\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Picture\">\n    <xsd:sequence>\n      <xsd:sequence maxOccurs=\"unbounded\">\n        <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:vml\" minOccurs=\"0\"\n          maxOccurs=\"unbounded\"/>\n        <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:office:office\"\n          minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      </xsd:sequence>\n      <xsd:element name=\"movie\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"control\" type=\"CT_Control\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ObjectEmbed\">\n    <xsd:attribute name=\"drawAspect\" type=\"ST_ObjectDrawAspect\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n    <xsd:attribute name=\"progId\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"shapeId\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"fieldCodes\" type=\"s:ST_String\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ObjectDrawAspect\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"content\"/>\n      <xsd:enumeration value=\"icon\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ObjectLink\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_ObjectEmbed\">\n        <xsd:attribute name=\"updateMode\" type=\"ST_ObjectUpdateMode\" use=\"required\"/>\n        <xsd:attribute name=\"lockedField\" type=\"s:ST_OnOff\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ObjectUpdateMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"always\"/>\n      <xsd:enumeration value=\"onCall\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Drawing\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element ref=\"wp:anchor\" minOccurs=\"0\"/>\n      <xsd:element ref=\"wp:inline\" minOccurs=\"0\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SimpleField\">\n    <xsd:sequence>\n      <xsd:element name=\"fldData\" type=\"CT_Text\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"instr\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"fldLock\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"dirty\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FldCharType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"begin\"/>\n      <xsd:enumeration value=\"separate\"/>\n      <xsd:enumeration value=\"end\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_InfoTextType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"autoText\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FFHelpTextVal\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:maxLength value=\"256\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FFStatusTextVal\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:maxLength value=\"140\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FFName\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:maxLength value=\"65\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FFTextType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"regular\"/>\n      <xsd:enumeration value=\"number\"/>\n      <xsd:enumeration value=\"date\"/>\n      <xsd:enumeration value=\"currentTime\"/>\n      <xsd:enumeration value=\"currentDate\"/>\n      <xsd:enumeration value=\"calculated\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FFTextType\">\n    <xsd:attribute name=\"val\" type=\"ST_FFTextType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFName\">\n    <xsd:attribute name=\"val\" type=\"ST_FFName\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FldChar\">\n    <xsd:choice>\n      <xsd:element name=\"fldData\" type=\"CT_Text\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ffData\" type=\"CT_FFData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"numberingChange\" type=\"CT_TrackChangeNumbering\" minOccurs=\"0\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"fldCharType\" type=\"ST_FldCharType\" use=\"required\"/>\n    <xsd:attribute name=\"fldLock\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"dirty\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Hyperlink\">\n    <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    <xsd:attribute name=\"tgtFrame\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"tooltip\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"docLocation\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"history\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"anchor\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFData\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"name\" type=\"CT_FFName\"/>\n      <xsd:element name=\"label\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"tabIndex\" type=\"CT_UnsignedDecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"enabled\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"calcOnExit\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"entryMacro\" type=\"CT_MacroName\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"exitMacro\" type=\"CT_MacroName\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"helpText\" type=\"CT_FFHelpText\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"statusText\" type=\"CT_FFStatusText\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:choice>\n        <xsd:element name=\"checkBox\" type=\"CT_FFCheckBox\"/>\n        <xsd:element name=\"ddList\" type=\"CT_FFDDList\"/>\n        <xsd:element name=\"textInput\" type=\"CT_FFTextInput\"/>\n      </xsd:choice>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFHelpText\">\n    <xsd:attribute name=\"type\" type=\"ST_InfoTextType\"/>\n    <xsd:attribute name=\"val\" type=\"ST_FFHelpTextVal\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFStatusText\">\n    <xsd:attribute name=\"type\" type=\"ST_InfoTextType\"/>\n    <xsd:attribute name=\"val\" type=\"ST_FFStatusTextVal\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFCheckBox\">\n    <xsd:sequence>\n      <xsd:choice>\n        <xsd:element name=\"size\" type=\"CT_HpsMeasure\"/>\n        <xsd:element name=\"sizeAuto\" type=\"CT_OnOff\"/>\n      </xsd:choice>\n      <xsd:element name=\"default\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"checked\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFDDList\">\n    <xsd:sequence>\n      <xsd:element name=\"result\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"default\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"listEntry\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFTextInput\">\n    <xsd:sequence>\n      <xsd:element name=\"type\" type=\"CT_FFTextType\" minOccurs=\"0\"/>\n      <xsd:element name=\"default\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"maxLength\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"format\" type=\"CT_String\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SectionMark\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"nextPage\"/>\n      <xsd:enumeration value=\"nextColumn\"/>\n      <xsd:enumeration value=\"continuous\"/>\n      <xsd:enumeration value=\"evenPage\"/>\n      <xsd:enumeration value=\"oddPage\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SectType\">\n    <xsd:attribute name=\"val\" type=\"ST_SectionMark\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PaperSource\">\n    <xsd:attribute name=\"first\" type=\"ST_DecimalNumber\"/>\n    <xsd:attribute name=\"other\" type=\"ST_DecimalNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_NumberFormat\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"decimal\"/>\n      <xsd:enumeration value=\"upperRoman\"/>\n      <xsd:enumeration value=\"lowerRoman\"/>\n      <xsd:enumeration value=\"upperLetter\"/>\n      <xsd:enumeration value=\"lowerLetter\"/>\n      <xsd:enumeration value=\"ordinal\"/>\n      <xsd:enumeration value=\"cardinalText\"/>\n      <xsd:enumeration value=\"ordinalText\"/>\n      <xsd:enumeration value=\"hex\"/>\n      <xsd:enumeration value=\"chicago\"/>\n      <xsd:enumeration value=\"ideographDigital\"/>\n      <xsd:enumeration value=\"japaneseCounting\"/>\n      <xsd:enumeration value=\"aiueo\"/>\n      <xsd:enumeration value=\"iroha\"/>\n      <xsd:enumeration value=\"decimalFullWidth\"/>\n      <xsd:enumeration value=\"decimalHalfWidth\"/>\n      <xsd:enumeration value=\"japaneseLegal\"/>\n      <xsd:enumeration value=\"japaneseDigitalTenThousand\"/>\n      <xsd:enumeration value=\"decimalEnclosedCircle\"/>\n      <xsd:enumeration value=\"decimalFullWidth2\"/>\n      <xsd:enumeration value=\"aiueoFullWidth\"/>\n      <xsd:enumeration value=\"irohaFullWidth\"/>\n      <xsd:enumeration value=\"decimalZero\"/>\n      <xsd:enumeration value=\"bullet\"/>\n      <xsd:enumeration value=\"ganada\"/>\n      <xsd:enumeration value=\"chosung\"/>\n      <xsd:enumeration value=\"decimalEnclosedFullstop\"/>\n      <xsd:enumeration value=\"decimalEnclosedParen\"/>\n      <xsd:enumeration value=\"decimalEnclosedCircleChinese\"/>\n      <xsd:enumeration value=\"ideographEnclosedCircle\"/>\n      <xsd:enumeration value=\"ideographTraditional\"/>\n      <xsd:enumeration value=\"ideographZodiac\"/>\n      <xsd:enumeration value=\"ideographZodiacTraditional\"/>\n      <xsd:enumeration value=\"taiwaneseCounting\"/>\n      <xsd:enumeration value=\"ideographLegalTraditional\"/>\n      <xsd:enumeration value=\"taiwaneseCountingThousand\"/>\n      <xsd:enumeration value=\"taiwaneseDigital\"/>\n      <xsd:enumeration value=\"chineseCounting\"/>\n      <xsd:enumeration value=\"chineseLegalSimplified\"/>\n      <xsd:enumeration value=\"chineseCountingThousand\"/>\n      <xsd:enumeration value=\"koreanDigital\"/>\n      <xsd:enumeration value=\"koreanCounting\"/>\n      <xsd:enumeration value=\"koreanLegal\"/>\n      <xsd:enumeration value=\"koreanDigital2\"/>\n      <xsd:enumeration value=\"vietnameseCounting\"/>\n      <xsd:enumeration value=\"russianLower\"/>\n      <xsd:enumeration value=\"russianUpper\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"numberInDash\"/>\n      <xsd:enumeration value=\"hebrew1\"/>\n      <xsd:enumeration value=\"hebrew2\"/>\n      <xsd:enumeration value=\"arabicAlpha\"/>\n      <xsd:enumeration value=\"arabicAbjad\"/>\n      <xsd:enumeration value=\"hindiVowels\"/>\n      <xsd:enumeration value=\"hindiConsonants\"/>\n      <xsd:enumeration value=\"hindiNumbers\"/>\n      <xsd:enumeration value=\"hindiCounting\"/>\n      <xsd:enumeration value=\"thaiLetters\"/>\n      <xsd:enumeration value=\"thaiNumbers\"/>\n      <xsd:enumeration value=\"thaiCounting\"/>\n      <xsd:enumeration value=\"bahtText\"/>\n      <xsd:enumeration value=\"dollarText\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PageOrientation\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"portrait\"/>\n      <xsd:enumeration value=\"landscape\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PageSz\">\n    <xsd:attribute name=\"w\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"h\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"orient\" type=\"ST_PageOrientation\" use=\"optional\"/>\n    <xsd:attribute name=\"code\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageMar\">\n    <xsd:attribute name=\"top\" type=\"ST_SignedTwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"right\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"bottom\" type=\"ST_SignedTwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"left\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"header\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"footer\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"gutter\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PageBorderZOrder\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"front\"/>\n      <xsd:enumeration value=\"back\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PageBorderDisplay\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"allPages\"/>\n      <xsd:enumeration value=\"firstPage\"/>\n      <xsd:enumeration value=\"notFirstPage\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PageBorderOffset\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"page\"/>\n      <xsd:enumeration value=\"text\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PageBorders\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_TopPageBorder\" minOccurs=\"0\"/>\n      <xsd:element name=\"left\" type=\"CT_PageBorder\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_BottomPageBorder\" minOccurs=\"0\"/>\n      <xsd:element name=\"right\" type=\"CT_PageBorder\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"zOrder\" type=\"ST_PageBorderZOrder\" use=\"optional\" default=\"front\"/>\n    <xsd:attribute name=\"display\" type=\"ST_PageBorderDisplay\" use=\"optional\"/>\n    <xsd:attribute name=\"offsetFrom\" type=\"ST_PageBorderOffset\" use=\"optional\" default=\"text\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageBorder\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Border\">\n        <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BottomPageBorder\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_PageBorder\">\n        <xsd:attribute ref=\"r:bottomLeft\" use=\"optional\"/>\n        <xsd:attribute ref=\"r:bottomRight\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TopPageBorder\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_PageBorder\">\n        <xsd:attribute ref=\"r:topLeft\" use=\"optional\"/>\n        <xsd:attribute ref=\"r:topRight\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ChapterSep\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"hyphen\"/>\n      <xsd:enumeration value=\"period\"/>\n      <xsd:enumeration value=\"colon\"/>\n      <xsd:enumeration value=\"emDash\"/>\n      <xsd:enumeration value=\"enDash\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LineNumberRestart\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"newPage\"/>\n      <xsd:enumeration value=\"newSection\"/>\n      <xsd:enumeration value=\"continuous\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LineNumber\">\n    <xsd:attribute name=\"countBy\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"start\" type=\"ST_DecimalNumber\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"distance\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"restart\" type=\"ST_LineNumberRestart\" use=\"optional\" default=\"newPage\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageNumber\">\n    <xsd:attribute name=\"fmt\" type=\"ST_NumberFormat\" use=\"optional\" default=\"decimal\"/>\n    <xsd:attribute name=\"start\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"chapStyle\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"chapSep\" type=\"ST_ChapterSep\" use=\"optional\" default=\"hyphen\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Column\">\n    <xsd:attribute name=\"w\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"space\" type=\"s:ST_TwipsMeasure\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Columns\">\n    <xsd:sequence minOccurs=\"0\">\n      <xsd:element name=\"col\" type=\"CT_Column\" maxOccurs=\"45\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"equalWidth\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"space\" type=\"s:ST_TwipsMeasure\" use=\"optional\" default=\"720\"/>\n    <xsd:attribute name=\"num\" type=\"ST_DecimalNumber\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"sep\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_VerticalJc\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"both\"/>\n      <xsd:enumeration value=\"bottom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_VerticalJc\">\n    <xsd:attribute name=\"val\" type=\"ST_VerticalJc\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DocGrid\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"lines\"/>\n      <xsd:enumeration value=\"linesAndChars\"/>\n      <xsd:enumeration value=\"snapToChars\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DocGrid\">\n    <xsd:attribute name=\"type\" type=\"ST_DocGrid\"/>\n    <xsd:attribute name=\"linePitch\" type=\"ST_DecimalNumber\"/>\n    <xsd:attribute name=\"charSpace\" type=\"ST_DecimalNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HdrFtr\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"even\"/>\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"first\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FtnEdn\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"separator\"/>\n      <xsd:enumeration value=\"continuationSeparator\"/>\n      <xsd:enumeration value=\"continuationNotice\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_HdrFtrRef\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Rel\">\n        <xsd:attribute name=\"type\" type=\"ST_HdrFtr\" use=\"required\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:group name=\"EG_HdrFtrReferences\">\n    <xsd:choice>\n      <xsd:element name=\"headerReference\" type=\"CT_HdrFtrRef\" minOccurs=\"0\"/>\n      <xsd:element name=\"footerReference\" type=\"CT_HdrFtrRef\" minOccurs=\"0\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_HdrFtr\">\n    <xsd:group ref=\"EG_BlockLevelElts\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_SectPrContents\">\n    <xsd:sequence>\n      <xsd:element name=\"footnotePr\" type=\"CT_FtnProps\" minOccurs=\"0\"/>\n      <xsd:element name=\"endnotePr\" type=\"CT_EdnProps\" minOccurs=\"0\"/>\n      <xsd:element name=\"type\" type=\"CT_SectType\" minOccurs=\"0\"/>\n      <xsd:element name=\"pgSz\" type=\"CT_PageSz\" minOccurs=\"0\"/>\n      <xsd:element name=\"pgMar\" type=\"CT_PageMar\" minOccurs=\"0\"/>\n      <xsd:element name=\"paperSrc\" type=\"CT_PaperSource\" minOccurs=\"0\"/>\n      <xsd:element name=\"pgBorders\" type=\"CT_PageBorders\" minOccurs=\"0\"/>\n      <xsd:element name=\"lnNumType\" type=\"CT_LineNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"pgNumType\" type=\"CT_PageNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"cols\" type=\"CT_Columns\" minOccurs=\"0\"/>\n      <xsd:element name=\"formProt\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"vAlign\" type=\"CT_VerticalJc\" minOccurs=\"0\"/>\n      <xsd:element name=\"noEndnote\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"titlePg\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"textDirection\" type=\"CT_TextDirection\" minOccurs=\"0\"/>\n      <xsd:element name=\"bidi\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"rtlGutter\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"docGrid\" type=\"CT_DocGrid\" minOccurs=\"0\"/>\n      <xsd:element name=\"printerSettings\" type=\"CT_Rel\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:attributeGroup name=\"AG_SectPrAttributes\">\n    <xsd:attribute name=\"rsidRPr\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidDel\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidR\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidSect\" type=\"ST_LongHexNumber\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_SectPrBase\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SectPrContents\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_SectPrAttributes\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SectPr\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_HdrFtrReferences\" minOccurs=\"0\" maxOccurs=\"6\"/>\n      <xsd:group ref=\"EG_SectPrContents\" minOccurs=\"0\"/>\n      <xsd:element name=\"sectPrChange\" type=\"CT_SectPrChange\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_SectPrAttributes\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BrType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"page\"/>\n      <xsd:enumeration value=\"column\"/>\n      <xsd:enumeration value=\"textWrapping\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BrClear\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"all\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Br\">\n    <xsd:attribute name=\"type\" type=\"ST_BrType\" use=\"optional\"/>\n    <xsd:attribute name=\"clear\" type=\"ST_BrClear\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PTabAlignment\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"right\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PTabRelativeTo\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"indent\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PTabLeader\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"dot\"/>\n      <xsd:enumeration value=\"hyphen\"/>\n      <xsd:enumeration value=\"underscore\"/>\n      <xsd:enumeration value=\"middleDot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PTab\">\n    <xsd:attribute name=\"alignment\" type=\"ST_PTabAlignment\" use=\"required\"/>\n    <xsd:attribute name=\"relativeTo\" type=\"ST_PTabRelativeTo\" use=\"required\"/>\n    <xsd:attribute name=\"leader\" type=\"ST_PTabLeader\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Sym\">\n    <xsd:attribute name=\"font\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"char\" type=\"ST_ShortHexNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ProofErr\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"spellStart\"/>\n      <xsd:enumeration value=\"spellEnd\"/>\n      <xsd:enumeration value=\"gramStart\"/>\n      <xsd:enumeration value=\"gramEnd\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ProofErr\">\n    <xsd:attribute name=\"type\" type=\"ST_ProofErr\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_EdGrp\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"everyone\"/>\n      <xsd:enumeration value=\"administrators\"/>\n      <xsd:enumeration value=\"contributors\"/>\n      <xsd:enumeration value=\"editors\"/>\n      <xsd:enumeration value=\"owners\"/>\n      <xsd:enumeration value=\"current\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Perm\">\n    <xsd:attribute name=\"id\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"displacedByCustomXml\" type=\"ST_DisplacedByCustomXml\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PermStart\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Perm\">\n        <xsd:attribute name=\"edGrp\" type=\"ST_EdGrp\" use=\"optional\"/>\n        <xsd:attribute name=\"ed\" type=\"s:ST_String\" use=\"optional\"/>\n        <xsd:attribute name=\"colFirst\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n        <xsd:attribute name=\"colLast\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Text\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"s:ST_String\">\n        <xsd:attribute ref=\"xml:space\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n  <xsd:group name=\"EG_RunInnerContent\">\n    <xsd:choice>\n      <xsd:element name=\"br\" type=\"CT_Br\"/>\n      <xsd:element name=\"t\" type=\"CT_Text\"/>\n      <xsd:element name=\"contentPart\" type=\"CT_Rel\"/>\n      <xsd:element name=\"delText\" type=\"CT_Text\"/>\n      <xsd:element name=\"instrText\" type=\"CT_Text\"/>\n      <xsd:element name=\"delInstrText\" type=\"CT_Text\"/>\n      <xsd:element name=\"noBreakHyphen\" type=\"CT_Empty\"/>\n      <xsd:element name=\"softHyphen\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"dayShort\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"monthShort\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"yearShort\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"dayLong\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"monthLong\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"yearLong\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"annotationRef\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"footnoteRef\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"endnoteRef\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"separator\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"continuationSeparator\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"sym\" type=\"CT_Sym\" minOccurs=\"0\"/>\n      <xsd:element name=\"pgNum\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"cr\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"tab\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"object\" type=\"CT_Object\"/>\n      <xsd:element name=\"pict\" type=\"CT_Picture\"/>\n      <xsd:element name=\"fldChar\" type=\"CT_FldChar\"/>\n      <xsd:element name=\"ruby\" type=\"CT_Ruby\"/>\n      <xsd:element name=\"footnoteReference\" type=\"CT_FtnEdnRef\"/>\n      <xsd:element name=\"endnoteReference\" type=\"CT_FtnEdnRef\"/>\n      <xsd:element name=\"commentReference\" type=\"CT_Markup\"/>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\"/>\n      <xsd:element name=\"ptab\" type=\"CT_PTab\" minOccurs=\"0\"/>\n      <xsd:element name=\"lastRenderedPageBreak\" type=\"CT_Empty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_R\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_RPr\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_RunInnerContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rsidRPr\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidDel\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidR\" type=\"ST_LongHexNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Hint\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"eastAsia\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Theme\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"majorEastAsia\"/>\n      <xsd:enumeration value=\"majorBidi\"/>\n      <xsd:enumeration value=\"majorAscii\"/>\n      <xsd:enumeration value=\"majorHAnsi\"/>\n      <xsd:enumeration value=\"minorEastAsia\"/>\n      <xsd:enumeration value=\"minorBidi\"/>\n      <xsd:enumeration value=\"minorAscii\"/>\n      <xsd:enumeration value=\"minorHAnsi\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Fonts\">\n    <xsd:attribute name=\"hint\" type=\"ST_Hint\"/>\n    <xsd:attribute name=\"ascii\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"hAnsi\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"eastAsia\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"cs\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"asciiTheme\" type=\"ST_Theme\"/>\n    <xsd:attribute name=\"hAnsiTheme\" type=\"ST_Theme\"/>\n    <xsd:attribute name=\"eastAsiaTheme\" type=\"ST_Theme\"/>\n    <xsd:attribute name=\"cstheme\" type=\"ST_Theme\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_RPrBase\">\n    <xsd:choice>\n      <xsd:element name=\"rStyle\" type=\"CT_String\"/>\n      <xsd:element name=\"rFonts\" type=\"CT_Fonts\"/>\n      <xsd:element name=\"b\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"bCs\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"i\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"iCs\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"caps\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"smallCaps\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"strike\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"dstrike\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"outline\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"shadow\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"emboss\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"imprint\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"noProof\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"snapToGrid\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"vanish\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"webHidden\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"color\" type=\"CT_Color\"/>\n      <xsd:element name=\"spacing\" type=\"CT_SignedTwipsMeasure\"/>\n      <xsd:element name=\"w\" type=\"CT_TextScale\"/>\n      <xsd:element name=\"kern\" type=\"CT_HpsMeasure\"/>\n      <xsd:element name=\"position\" type=\"CT_SignedHpsMeasure\"/>\n      <xsd:element name=\"sz\" type=\"CT_HpsMeasure\"/>\n      <xsd:element name=\"szCs\" type=\"CT_HpsMeasure\"/>\n      <xsd:element name=\"highlight\" type=\"CT_Highlight\"/>\n      <xsd:element name=\"u\" type=\"CT_Underline\"/>\n      <xsd:element name=\"effect\" type=\"CT_TextEffect\"/>\n      <xsd:element name=\"bdr\" type=\"CT_Border\"/>\n      <xsd:element name=\"shd\" type=\"CT_Shd\"/>\n      <xsd:element name=\"fitText\" type=\"CT_FitText\"/>\n      <xsd:element name=\"vertAlign\" type=\"CT_VerticalAlignRun\"/>\n      <xsd:element name=\"rtl\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"cs\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"em\" type=\"CT_Em\"/>\n      <xsd:element name=\"lang\" type=\"CT_Language\"/>\n      <xsd:element name=\"eastAsianLayout\" type=\"CT_EastAsianLayout\"/>\n      <xsd:element name=\"specVanish\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"oMath\" type=\"CT_OnOff\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_RPrContent\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_RPrBase\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rPrChange\" type=\"CT_RPrChange\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_RPr\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_RPrContent\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_RPr\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:group name=\"EG_RPrMath\">\n    <xsd:choice>\n      <xsd:group ref=\"EG_RPr\"/>\n      <xsd:element name=\"ins\" type=\"CT_MathCtrlIns\"/>\n      <xsd:element name=\"del\" type=\"CT_MathCtrlDel\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_MathCtrlIns\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:choice minOccurs=\"0\">\n          <xsd:element name=\"del\" type=\"CT_RPrChange\" minOccurs=\"1\"/>\n          <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"1\"/>\n        </xsd:choice>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MathCtrlDel\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:choice minOccurs=\"0\">\n          <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"1\"/>\n        </xsd:choice>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RPrOriginal\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_RPrBase\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ParaRPrOriginal\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ParaRPrTrackChanges\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_RPrBase\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ParaRPr\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ParaRPrTrackChanges\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_RPrBase\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rPrChange\" type=\"CT_ParaRPrChange\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ParaRPrTrackChanges\">\n    <xsd:sequence>\n      <xsd:element name=\"ins\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"del\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"moveFrom\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"moveTo\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_AltChunk\">\n    <xsd:sequence>\n      <xsd:element name=\"altChunkPr\" type=\"CT_AltChunkPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AltChunkPr\">\n    <xsd:sequence>\n      <xsd:element name=\"matchSrc\" type=\"CT_OnOff\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RubyAlign\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"distributeLetter\"/>\n      <xsd:enumeration value=\"distributeSpace\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"rightVertical\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_RubyAlign\">\n    <xsd:attribute name=\"val\" type=\"ST_RubyAlign\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RubyPr\">\n    <xsd:sequence>\n      <xsd:element name=\"rubyAlign\" type=\"CT_RubyAlign\"/>\n      <xsd:element name=\"hps\" type=\"CT_HpsMeasure\"/>\n      <xsd:element name=\"hpsRaise\" type=\"CT_HpsMeasure\"/>\n      <xsd:element name=\"hpsBaseText\" type=\"CT_HpsMeasure\"/>\n      <xsd:element name=\"lid\" type=\"CT_Lang\"/>\n      <xsd:element name=\"dirty\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_RubyContent\">\n    <xsd:choice>\n      <xsd:element name=\"r\" type=\"CT_R\"/>\n      <xsd:group ref=\"EG_RunLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_RubyContent\">\n    <xsd:group ref=\"EG_RubyContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Ruby\">\n    <xsd:sequence>\n      <xsd:element name=\"rubyPr\" type=\"CT_RubyPr\"/>\n      <xsd:element name=\"rt\" type=\"CT_RubyContent\"/>\n      <xsd:element name=\"rubyBase\" type=\"CT_RubyContent\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Lock\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"sdtLocked\"/>\n      <xsd:enumeration value=\"contentLocked\"/>\n      <xsd:enumeration value=\"unlocked\"/>\n      <xsd:enumeration value=\"sdtContentLocked\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Lock\">\n    <xsd:attribute name=\"val\" type=\"ST_Lock\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtListItem\">\n    <xsd:attribute name=\"displayText\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"value\" type=\"s:ST_String\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SdtDateMappingType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"date\"/>\n      <xsd:enumeration value=\"dateTime\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SdtDateMappingType\">\n    <xsd:attribute name=\"val\" type=\"ST_SdtDateMappingType\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalendarType\">\n    <xsd:attribute name=\"val\" type=\"s:ST_CalendarType\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtDate\">\n    <xsd:sequence>\n      <xsd:element name=\"dateFormat\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"lid\" type=\"CT_Lang\" minOccurs=\"0\"/>\n      <xsd:element name=\"storeMappedDataAs\" type=\"CT_SdtDateMappingType\" minOccurs=\"0\"/>\n      <xsd:element name=\"calendar\" type=\"CT_CalendarType\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"fullDate\" type=\"ST_DateTime\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtComboBox\">\n    <xsd:sequence>\n      <xsd:element name=\"listItem\" type=\"CT_SdtListItem\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"lastValue\" type=\"s:ST_String\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtDocPart\">\n    <xsd:sequence>\n      <xsd:element name=\"docPartGallery\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"docPartCategory\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"docPartUnique\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtDropDownList\">\n    <xsd:sequence>\n      <xsd:element name=\"listItem\" type=\"CT_SdtListItem\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"lastValue\" type=\"s:ST_String\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Placeholder\">\n    <xsd:sequence>\n      <xsd:element name=\"docPart\" type=\"CT_String\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtText\">\n    <xsd:attribute name=\"multiLine\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataBinding\">\n    <xsd:attribute name=\"prefixMappings\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"xpath\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"storeItemID\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtPr\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"alias\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"tag\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"id\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"lock\" type=\"CT_Lock\" minOccurs=\"0\"/>\n      <xsd:element name=\"placeholder\" type=\"CT_Placeholder\" minOccurs=\"0\"/>\n      <xsd:element name=\"temporary\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"showingPlcHdr\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"dataBinding\" type=\"CT_DataBinding\" minOccurs=\"0\"/>\n      <xsd:element name=\"label\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"tabIndex\" type=\"CT_UnsignedDecimalNumber\" minOccurs=\"0\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n        <xsd:element name=\"equation\" type=\"CT_Empty\"/>\n        <xsd:element name=\"comboBox\" type=\"CT_SdtComboBox\"/>\n        <xsd:element name=\"date\" type=\"CT_SdtDate\"/>\n        <xsd:element name=\"docPartObj\" type=\"CT_SdtDocPart\"/>\n        <xsd:element name=\"docPartList\" type=\"CT_SdtDocPart\"/>\n        <xsd:element name=\"dropDownList\" type=\"CT_SdtDropDownList\"/>\n        <xsd:element name=\"picture\" type=\"CT_Empty\"/>\n        <xsd:element name=\"richText\" type=\"CT_Empty\"/>\n        <xsd:element name=\"text\" type=\"CT_SdtText\"/>\n        <xsd:element name=\"citation\" type=\"CT_Empty\"/>\n        <xsd:element name=\"group\" type=\"CT_Empty\"/>\n        <xsd:element name=\"bibliography\" type=\"CT_Empty\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtEndPr\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ContentRunContent\">\n    <xsd:choice>\n      <xsd:element name=\"customXml\" type=\"CT_CustomXmlRun\"/>\n      <xsd:element name=\"smartTag\" type=\"CT_SmartTagRun\"/>\n      <xsd:element name=\"sdt\" type=\"CT_SdtRun\"/>\n      <xsd:element name=\"dir\" type=\"CT_DirContentRun\"/>\n      <xsd:element name=\"bdo\" type=\"CT_BdoContentRun\"/>\n      <xsd:element name=\"r\" type=\"CT_R\"/>\n      <xsd:group ref=\"EG_RunLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_DirContentRun\">\n    <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    <xsd:attribute name=\"val\" type=\"ST_Direction\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BdoContentRun\">\n    <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    <xsd:attribute name=\"val\" type=\"ST_Direction\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Direction\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"ltr\"/>\n      <xsd:enumeration value=\"rtl\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SdtContentRun\">\n    <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ContentBlockContent\">\n    <xsd:choice>\n      <xsd:element name=\"customXml\" type=\"CT_CustomXmlBlock\"/>\n      <xsd:element name=\"sdt\" type=\"CT_SdtBlock\"/>\n      <xsd:element name=\"p\" type=\"CT_P\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"tbl\" type=\"CT_Tbl\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:group ref=\"EG_RunLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_SdtContentBlock\">\n    <xsd:group ref=\"EG_ContentBlockContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ContentRowContent\">\n    <xsd:choice>\n      <xsd:element name=\"tr\" type=\"CT_Row\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"customXml\" type=\"CT_CustomXmlRow\"/>\n      <xsd:element name=\"sdt\" type=\"CT_SdtRow\"/>\n      <xsd:group ref=\"EG_RunLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_SdtContentRow\">\n    <xsd:group ref=\"EG_ContentRowContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ContentCellContent\">\n    <xsd:choice>\n      <xsd:element name=\"tc\" type=\"CT_Tc\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"customXml\" type=\"CT_CustomXmlCell\"/>\n      <xsd:element name=\"sdt\" type=\"CT_SdtCell\"/>\n      <xsd:group ref=\"EG_RunLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_SdtContentCell\">\n    <xsd:group ref=\"EG_ContentCellContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtBlock\">\n    <xsd:sequence>\n      <xsd:element name=\"sdtPr\" type=\"CT_SdtPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtEndPr\" type=\"CT_SdtEndPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtContent\" type=\"CT_SdtContentBlock\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtRun\">\n    <xsd:sequence>\n      <xsd:element name=\"sdtPr\" type=\"CT_SdtPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtEndPr\" type=\"CT_SdtEndPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtContent\" type=\"CT_SdtContentRun\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtCell\">\n    <xsd:sequence>\n      <xsd:element name=\"sdtPr\" type=\"CT_SdtPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtEndPr\" type=\"CT_SdtEndPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtContent\" type=\"CT_SdtContentCell\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtRow\">\n    <xsd:sequence>\n      <xsd:element name=\"sdtPr\" type=\"CT_SdtPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtEndPr\" type=\"CT_SdtEndPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtContent\" type=\"CT_SdtContentRow\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Attr\">\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomXmlRun\">\n    <xsd:sequence>\n      <xsd:element name=\"customXmlPr\" type=\"CT_CustomXmlPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"element\" type=\"s:ST_XmlName\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SmartTagRun\">\n    <xsd:sequence>\n      <xsd:element name=\"smartTagPr\" type=\"CT_SmartTagPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"element\" type=\"s:ST_XmlName\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomXmlBlock\">\n    <xsd:sequence>\n      <xsd:element name=\"customXmlPr\" type=\"CT_CustomXmlPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ContentBlockContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"element\" type=\"s:ST_XmlName\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomXmlPr\">\n    <xsd:sequence>\n      <xsd:element name=\"placeholder\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"attr\" type=\"CT_Attr\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomXmlRow\">\n    <xsd:sequence>\n      <xsd:element name=\"customXmlPr\" type=\"CT_CustomXmlPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ContentRowContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"element\" type=\"s:ST_XmlName\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomXmlCell\">\n    <xsd:sequence>\n      <xsd:element name=\"customXmlPr\" type=\"CT_CustomXmlPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ContentCellContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"element\" type=\"s:ST_XmlName\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SmartTagPr\">\n    <xsd:sequence>\n      <xsd:element name=\"attr\" type=\"CT_Attr\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_PContent\">\n    <xsd:choice>\n      <xsd:group ref=\"EG_ContentRunContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"fldSimple\" type=\"CT_SimpleField\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"hyperlink\" type=\"CT_Hyperlink\"/>\n      <xsd:element name=\"subDoc\" type=\"CT_Rel\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_P\">\n    <xsd:sequence>\n      <xsd:element name=\"pPr\" type=\"CT_PPr\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rsidRPr\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidR\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidDel\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidP\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidRDefault\" type=\"ST_LongHexNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TblWidth\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"nil\"/>\n      <xsd:enumeration value=\"pct\"/>\n      <xsd:enumeration value=\"dxa\"/>\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Height\">\n    <xsd:attribute name=\"val\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"hRule\" type=\"ST_HeightRule\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MeasurementOrPercent\">\n    <xsd:union memberTypes=\"ST_DecimalNumberOrPercent s:ST_UniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TblWidth\">\n    <xsd:attribute name=\"w\" type=\"ST_MeasurementOrPercent\"/>\n    <xsd:attribute name=\"type\" type=\"ST_TblWidth\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblGridCol\">\n    <xsd:attribute name=\"w\" type=\"s:ST_TwipsMeasure\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblGridBase\">\n    <xsd:sequence>\n      <xsd:element name=\"gridCol\" type=\"CT_TblGridCol\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblGrid\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TblGridBase\">\n        <xsd:sequence>\n          <xsd:element name=\"tblGridChange\" type=\"CT_TblGridChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TcBorders\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"start\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"left\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"end\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"right\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"insideH\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"insideV\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"tl2br\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"tr2bl\" type=\"CT_Border\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TcMar\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"start\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"left\" type=\"CT_TblWidth\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"end\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"right\" type=\"CT_TblWidth\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Merge\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"continue\"/>\n      <xsd:enumeration value=\"restart\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_VMerge\">\n    <xsd:attribute name=\"val\" type=\"ST_Merge\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HMerge\">\n    <xsd:attribute name=\"val\" type=\"ST_Merge\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TcPrBase\">\n    <xsd:sequence>\n      <xsd:element name=\"cnfStyle\" type=\"CT_Cnf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tcW\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gridSpan\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"hMerge\" type=\"CT_HMerge\" minOccurs=\"0\"/>\n      <xsd:element name=\"vMerge\" type=\"CT_VMerge\" minOccurs=\"0\"/>\n      <xsd:element name=\"tcBorders\" type=\"CT_TcBorders\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shd\" type=\"CT_Shd\" minOccurs=\"0\"/>\n      <xsd:element name=\"noWrap\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"tcMar\" type=\"CT_TcMar\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"textDirection\" type=\"CT_TextDirection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tcFitText\" type=\"CT_OnOff\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"vAlign\" type=\"CT_VerticalJc\" minOccurs=\"0\"/>\n      <xsd:element name=\"hideMark\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"headers\" type=\"CT_Headers\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TcPr\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TcPrInner\">\n        <xsd:sequence>\n          <xsd:element name=\"tcPrChange\" type=\"CT_TcPrChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TcPrInner\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TcPrBase\">\n        <xsd:sequence>\n          <xsd:group ref=\"EG_CellMarkupElements\" minOccurs=\"0\" maxOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Tc\">\n    <xsd:sequence>\n      <xsd:element name=\"tcPr\" type=\"CT_TcPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_BlockLevelElts\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"s:ST_String\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Cnf\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:length value=\"12\"/>\n      <xsd:pattern value=\"[01]*\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Cnf\">\n    <xsd:attribute name=\"val\" type=\"ST_Cnf\"/>\n    <xsd:attribute name=\"firstRow\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"lastRow\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"firstColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"lastColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"oddVBand\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"evenVBand\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"oddHBand\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"evenHBand\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"firstRowFirstColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"firstRowLastColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"lastRowFirstColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"lastRowLastColumn\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Headers\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"header\" type=\"CT_String\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrPrBase\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"cnfStyle\" type=\"CT_Cnf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"divId\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"gridBefore\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"gridAfter\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"wBefore\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"wAfter\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cantSplit\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"trHeight\" type=\"CT_Height\" minOccurs=\"0\"/>\n      <xsd:element name=\"tblHeader\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"tblCellSpacing\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"jc\" type=\"CT_JcTable\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hidden\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrPr\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrPrBase\">\n        <xsd:sequence>\n          <xsd:element name=\"ins\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n          <xsd:element name=\"del\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n          <xsd:element name=\"trPrChange\" type=\"CT_TrPrChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Row\">\n    <xsd:sequence>\n      <xsd:element name=\"tblPrEx\" type=\"CT_TblPrEx\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trPr\" type=\"CT_TrPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ContentCellContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rsidRPr\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidR\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidDel\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidTr\" type=\"ST_LongHexNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TblLayoutType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"fixed\"/>\n      <xsd:enumeration value=\"autofit\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TblLayoutType\">\n    <xsd:attribute name=\"type\" type=\"ST_TblLayoutType\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TblOverlap\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"never\"/>\n      <xsd:enumeration value=\"overlap\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TblOverlap\">\n    <xsd:attribute name=\"val\" type=\"ST_TblOverlap\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPPr\">\n    <xsd:attribute name=\"leftFromText\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"rightFromText\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"topFromText\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"bottomFromText\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"vertAnchor\" type=\"ST_VAnchor\"/>\n    <xsd:attribute name=\"horzAnchor\" type=\"ST_HAnchor\"/>\n    <xsd:attribute name=\"tblpXSpec\" type=\"s:ST_XAlign\"/>\n    <xsd:attribute name=\"tblpX\" type=\"ST_SignedTwipsMeasure\"/>\n    <xsd:attribute name=\"tblpYSpec\" type=\"s:ST_YAlign\"/>\n    <xsd:attribute name=\"tblpY\" type=\"ST_SignedTwipsMeasure\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblCellMar\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"start\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"left\" type=\"CT_TblWidth\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"end\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"right\" type=\"CT_TblWidth\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblBorders\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"start\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"left\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"end\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"right\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"insideH\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"insideV\" type=\"CT_Border\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPrBase\">\n    <xsd:sequence>\n      <xsd:element name=\"tblStyle\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"tblpPr\" type=\"CT_TblPPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblOverlap\" type=\"CT_TblOverlap\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bidiVisual\" type=\"CT_OnOff\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblStyleRowBandSize\" type=\"CT_DecimalNumber\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblStyleColBandSize\" type=\"CT_DecimalNumber\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblW\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"jc\" type=\"CT_JcTable\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblCellSpacing\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblInd\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblBorders\" type=\"CT_TblBorders\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shd\" type=\"CT_Shd\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblLayout\" type=\"CT_TblLayoutType\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblCellMar\" type=\"CT_TblCellMar\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblLook\" type=\"CT_TblLook\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblCaption\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblDescription\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPr\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TblPrBase\">\n        <xsd:sequence>\n          <xsd:element name=\"tblPrChange\" type=\"CT_TblPrChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPrExBase\">\n    <xsd:sequence>\n      <xsd:element name=\"tblW\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"jc\" type=\"CT_JcTable\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblCellSpacing\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblInd\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblBorders\" type=\"CT_TblBorders\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shd\" type=\"CT_Shd\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblLayout\" type=\"CT_TblLayoutType\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblCellMar\" type=\"CT_TblCellMar\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblLook\" type=\"CT_TblLook\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPrEx\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TblPrExBase\">\n        <xsd:sequence>\n          <xsd:element name=\"tblPrExChange\" type=\"CT_TblPrExChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Tbl\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_RangeMarkupElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"tblPr\" type=\"CT_TblPr\"/>\n      <xsd:element name=\"tblGrid\" type=\"CT_TblGrid\"/>\n      <xsd:group ref=\"EG_ContentRowContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblLook\">\n    <xsd:attribute name=\"firstRow\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"lastRow\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"firstColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"lastColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"noHBand\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"noVBand\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"val\" type=\"ST_ShortHexNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FtnPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"pageBottom\"/>\n      <xsd:enumeration value=\"beneathText\"/>\n      <xsd:enumeration value=\"sectEnd\"/>\n      <xsd:enumeration value=\"docEnd\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FtnPos\">\n    <xsd:attribute name=\"val\" type=\"ST_FtnPos\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_EdnPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"sectEnd\"/>\n      <xsd:enumeration value=\"docEnd\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_EdnPos\">\n    <xsd:attribute name=\"val\" type=\"ST_EdnPos\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumFmt\">\n    <xsd:attribute name=\"val\" type=\"ST_NumberFormat\" use=\"required\"/>\n    <xsd:attribute name=\"format\" type=\"s:ST_String\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RestartNumber\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"continuous\"/>\n      <xsd:enumeration value=\"eachSect\"/>\n      <xsd:enumeration value=\"eachPage\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_NumRestart\">\n    <xsd:attribute name=\"val\" type=\"ST_RestartNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FtnEdnRef\">\n    <xsd:attribute name=\"customMarkFollows\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"id\" use=\"required\" type=\"ST_DecimalNumber\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FtnEdnSepRef\">\n    <xsd:attribute name=\"id\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FtnEdn\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_BlockLevelElts\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_FtnEdn\" use=\"optional\"/>\n    <xsd:attribute name=\"id\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_FtnEdnNumProps\">\n    <xsd:sequence>\n      <xsd:element name=\"numStart\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"numRestart\" type=\"CT_NumRestart\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_FtnProps\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"CT_FtnPos\" minOccurs=\"0\"/>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_FtnEdnNumProps\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EdnProps\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"CT_EdnPos\" minOccurs=\"0\"/>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_FtnEdnNumProps\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FtnDocProps\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_FtnProps\">\n        <xsd:sequence>\n          <xsd:element name=\"footnote\" type=\"CT_FtnEdnSepRef\" minOccurs=\"0\" maxOccurs=\"3\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EdnDocProps\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_EdnProps\">\n        <xsd:sequence>\n          <xsd:element name=\"endnote\" type=\"CT_FtnEdnSepRef\" minOccurs=\"0\" maxOccurs=\"3\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RecipientData\">\n    <xsd:sequence>\n      <xsd:element name=\"active\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"column\" type=\"CT_DecimalNumber\" minOccurs=\"1\"/>\n      <xsd:element name=\"uniqueTag\" type=\"CT_Base64Binary\" minOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Base64Binary\">\n    <xsd:attribute name=\"val\" type=\"xsd:base64Binary\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Recipients\">\n    <xsd:sequence>\n      <xsd:element name=\"recipientData\" type=\"CT_RecipientData\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"recipients\" type=\"CT_Recipients\"/>\n  <xsd:complexType name=\"CT_OdsoFieldMapData\">\n    <xsd:sequence>\n      <xsd:element name=\"type\" type=\"CT_MailMergeOdsoFMDFieldType\" minOccurs=\"0\"/>\n      <xsd:element name=\"name\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"mappedName\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"column\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"lid\" type=\"CT_Lang\" minOccurs=\"0\"/>\n      <xsd:element name=\"dynamicAddress\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MailMergeSourceType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"database\"/>\n      <xsd:enumeration value=\"addressBook\"/>\n      <xsd:enumeration value=\"document1\"/>\n      <xsd:enumeration value=\"document2\"/>\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"email\"/>\n      <xsd:enumeration value=\"native\"/>\n      <xsd:enumeration value=\"legacy\"/>\n      <xsd:enumeration value=\"master\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MailMergeSourceType\">\n    <xsd:attribute name=\"val\" use=\"required\" type=\"ST_MailMergeSourceType\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Odso\">\n    <xsd:sequence>\n      <xsd:element name=\"udl\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"table\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"src\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"colDelim\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"type\" type=\"CT_MailMergeSourceType\" minOccurs=\"0\"/>\n      <xsd:element name=\"fHdr\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"fieldMapData\" type=\"CT_OdsoFieldMapData\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"recipientData\" type=\"CT_Rel\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MailMerge\">\n    <xsd:sequence>\n      <xsd:element name=\"mainDocumentType\" type=\"CT_MailMergeDocType\" minOccurs=\"1\"/>\n      <xsd:element name=\"linkToQuery\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"dataType\" type=\"CT_MailMergeDataType\" minOccurs=\"1\"/>\n      <xsd:element name=\"connectString\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"query\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"dataSource\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"headerSource\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotSuppressBlankLines\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"destination\" type=\"CT_MailMergeDest\" minOccurs=\"0\"/>\n      <xsd:element name=\"addressFieldName\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"mailSubject\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"mailAsAttachment\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"viewMergedData\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"activeRecord\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"checkErrors\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"odso\" type=\"CT_Odso\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TargetScreenSz\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"544x376\"/>\n      <xsd:enumeration value=\"640x480\"/>\n      <xsd:enumeration value=\"720x512\"/>\n      <xsd:enumeration value=\"800x600\"/>\n      <xsd:enumeration value=\"1024x768\"/>\n      <xsd:enumeration value=\"1152x882\"/>\n      <xsd:enumeration value=\"1152x900\"/>\n      <xsd:enumeration value=\"1280x1024\"/>\n      <xsd:enumeration value=\"1600x1200\"/>\n      <xsd:enumeration value=\"1800x1440\"/>\n      <xsd:enumeration value=\"1920x1200\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TargetScreenSz\">\n    <xsd:attribute name=\"val\" type=\"ST_TargetScreenSz\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Compat\">\n    <xsd:sequence>\n      <xsd:element name=\"useSingleBorderforContiguousCells\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"wpJustification\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noTabHangInd\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noLeading\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"spaceForUL\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noColumnBalance\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"balanceSingleByteDoubleByteWidth\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noExtraLineSpacing\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotLeaveBackslashAlone\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ulTrailSpace\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotExpandShiftReturn\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"spacingInWholePoints\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"lineWrapLikeWord6\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"printBodyTextBeforeHeader\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"printColBlack\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"wpSpaceWidth\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"showBreaksInFrames\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"subFontBySize\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressBottomSpacing\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressTopSpacing\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressSpacingAtTopOfPage\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressTopSpacingWP\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressSpBfAfterPgBrk\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"swapBordersFacingPages\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"convMailMergeEsc\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"truncateFontHeightsLikeWP6\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"mwSmallCaps\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"usePrinterMetrics\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotSuppressParagraphBorders\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"wrapTrailSpaces\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"footnoteLayoutLikeWW8\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"shapeLayoutLikeWW8\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"alignTablesRowByRow\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"forgetLastTabAlignment\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"adjustLineHeightInTable\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"autoSpaceLikeWord95\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noSpaceRaiseLower\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotUseHTMLParagraphAutoSpacing\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"layoutRawTableWidth\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"layoutTableRowsApart\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useWord97LineBreakRules\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotBreakWrappedTables\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotSnapToGridInCell\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"selectFldWithFirstOrLastChar\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"applyBreakingRules\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotWrapTextWithPunct\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotUseEastAsianBreakRules\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useWord2002TableStyleRules\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"growAutofit\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useFELayout\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useNormalStyleForList\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotUseIndentAsNumberingTabStop\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useAltKinsokuLineBreakRules\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"allowSpaceOfSameStyleInTable\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotSuppressIndentation\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotAutofitConstrainedTables\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"autofitToFirstFixedWidthCell\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"underlineTabInNumList\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"displayHangulFixedWidth\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"splitPgBreakAndParaMark\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotVertAlignCellWithSp\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotBreakConstrainedForcedTable\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotVertAlignInTxbx\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useAnsiKerningPairs\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"cachedColBalance\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"compatSetting\" type=\"CT_CompatSetting\" minOccurs=\"0\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CompatSetting\">\n    <xsd:attribute name=\"name\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_String\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocVar\">\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocVars\">\n    <xsd:sequence>\n      <xsd:element name=\"docVar\" type=\"CT_DocVar\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocRsids\">\n    <xsd:sequence>\n      <xsd:element name=\"rsidRoot\" type=\"CT_LongHexNumber\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rsid\" type=\"CT_LongHexNumber\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CharacterSpacing\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"doNotCompress\"/>\n      <xsd:enumeration value=\"compressPunctuation\"/>\n      <xsd:enumeration value=\"compressPunctuationAndJapaneseKana\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_CharacterSpacing\">\n    <xsd:attribute name=\"val\" type=\"ST_CharacterSpacing\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SaveThroughXslt\">\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"solutionID\" type=\"s:ST_String\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RPrDefault\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PPrDefault\">\n    <xsd:sequence>\n      <xsd:element name=\"pPr\" type=\"CT_PPrGeneral\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocDefaults\">\n    <xsd:sequence>\n      <xsd:element name=\"rPrDefault\" type=\"CT_RPrDefault\" minOccurs=\"0\"/>\n      <xsd:element name=\"pPrDefault\" type=\"CT_PPrDefault\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_WmlColorSchemeIndex\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"dark1\"/>\n      <xsd:enumeration value=\"light1\"/>\n      <xsd:enumeration value=\"dark2\"/>\n      <xsd:enumeration value=\"light2\"/>\n      <xsd:enumeration value=\"accent1\"/>\n      <xsd:enumeration value=\"accent2\"/>\n      <xsd:enumeration value=\"accent3\"/>\n      <xsd:enumeration value=\"accent4\"/>\n      <xsd:enumeration value=\"accent5\"/>\n      <xsd:enumeration value=\"accent6\"/>\n      <xsd:enumeration value=\"hyperlink\"/>\n      <xsd:enumeration value=\"followedHyperlink\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ColorSchemeMapping\">\n    <xsd:attribute name=\"bg1\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"t1\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"bg2\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"t2\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"accent1\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"accent2\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"accent3\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"accent4\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"accent5\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"accent6\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"hyperlink\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"followedHyperlink\" type=\"ST_WmlColorSchemeIndex\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ReadingModeInkLockDown\">\n    <xsd:attribute name=\"actualPg\" type=\"s:ST_OnOff\" use=\"required\"/>\n    <xsd:attribute name=\"w\" type=\"ST_PixelsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"h\" type=\"ST_PixelsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"fontSz\" type=\"ST_DecimalNumberOrPercent\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WriteProtection\">\n    <xsd:attribute name=\"recommended\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attributeGroup ref=\"AG_Password\"/>\n    <xsd:attributeGroup ref=\"AG_TransitionalPassword\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Settings\">\n    <xsd:sequence>\n      <xsd:element name=\"writeProtection\" type=\"CT_WriteProtection\" minOccurs=\"0\"/>\n      <xsd:element name=\"view\" type=\"CT_View\" minOccurs=\"0\"/>\n      <xsd:element name=\"zoom\" type=\"CT_Zoom\" minOccurs=\"0\"/>\n      <xsd:element name=\"removePersonalInformation\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"removeDateAndTime\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotDisplayPageBoundaries\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"displayBackgroundShape\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"printPostScriptOverText\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"printFractionalCharacterWidth\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"printFormsData\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"embedTrueTypeFonts\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"embedSystemFonts\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"saveSubsetFonts\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"saveFormsData\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"mirrorMargins\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"alignBordersAndEdges\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bordersDoNotSurroundHeader\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bordersDoNotSurroundFooter\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"gutterAtTop\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hideSpellingErrors\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hideGrammaticalErrors\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"activeWritingStyle\" type=\"CT_WritingStyle\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"proofState\" type=\"CT_Proof\" minOccurs=\"0\"/>\n      <xsd:element name=\"formsDesign\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"attachedTemplate\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"linkStyles\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"stylePaneFormatFilter\" type=\"CT_StylePaneFilter\" minOccurs=\"0\"/>\n      <xsd:element name=\"stylePaneSortMethod\" type=\"CT_StyleSort\" minOccurs=\"0\"/>\n      <xsd:element name=\"documentType\" type=\"CT_DocType\" minOccurs=\"0\"/>\n      <xsd:element name=\"mailMerge\" type=\"CT_MailMerge\" minOccurs=\"0\"/>\n      <xsd:element name=\"revisionView\" type=\"CT_TrackChangesView\" minOccurs=\"0\"/>\n      <xsd:element name=\"trackRevisions\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotTrackMoves\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotTrackFormatting\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"documentProtection\" type=\"CT_DocProtect\" minOccurs=\"0\"/>\n      <xsd:element name=\"autoFormatOverride\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"styleLockTheme\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"styleLockQFSet\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"defaultTabStop\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"autoHyphenation\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"consecutiveHyphenLimit\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"hyphenationZone\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotHyphenateCaps\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"showEnvelope\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"summaryLength\" type=\"CT_DecimalNumberOrPrecent\" minOccurs=\"0\"/>\n      <xsd:element name=\"clickAndTypeStyle\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"defaultTableStyle\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"evenAndOddHeaders\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bookFoldRevPrinting\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bookFoldPrinting\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bookFoldPrintingSheets\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"drawingGridHorizontalSpacing\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"drawingGridVerticalSpacing\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"displayHorizontalDrawingGridEvery\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"displayVerticalDrawingGridEvery\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotUseMarginsForDrawingGridOrigin\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"drawingGridHorizontalOrigin\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"drawingGridVerticalOrigin\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotShadeFormData\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noPunctuationKerning\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"characterSpacingControl\" type=\"CT_CharacterSpacing\" minOccurs=\"0\"/>\n      <xsd:element name=\"printTwoOnOne\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"strictFirstAndLastChars\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noLineBreaksAfter\" type=\"CT_Kinsoku\" minOccurs=\"0\"/>\n      <xsd:element name=\"noLineBreaksBefore\" type=\"CT_Kinsoku\" minOccurs=\"0\"/>\n      <xsd:element name=\"savePreviewPicture\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotValidateAgainstSchema\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"saveInvalidXml\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ignoreMixedContent\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"alwaysShowPlaceholderText\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotDemarcateInvalidXml\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"saveXmlDataOnly\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useXSLTWhenSaving\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"saveThroughXslt\" type=\"CT_SaveThroughXslt\" minOccurs=\"0\"/>\n      <xsd:element name=\"showXMLTags\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"alwaysMergeEmptyNamespace\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"updateFields\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hdrShapeDefaults\" type=\"CT_ShapeDefaults\" minOccurs=\"0\"/>\n      <xsd:element name=\"footnotePr\" type=\"CT_FtnDocProps\" minOccurs=\"0\"/>\n      <xsd:element name=\"endnotePr\" type=\"CT_EdnDocProps\" minOccurs=\"0\"/>\n      <xsd:element name=\"compat\" type=\"CT_Compat\" minOccurs=\"0\"/>\n      <xsd:element name=\"docVars\" type=\"CT_DocVars\" minOccurs=\"0\"/>\n      <xsd:element name=\"rsids\" type=\"CT_DocRsids\" minOccurs=\"0\"/>\n      <xsd:element ref=\"m:mathPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"attachedSchema\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"themeFontLang\" type=\"CT_Language\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrSchemeMapping\" type=\"CT_ColorSchemeMapping\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotIncludeSubdocsInStats\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotAutoCompressPictures\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"forceUpgrade\" type=\"CT_Empty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"captions\" type=\"CT_Captions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"readModeInkLockDown\" type=\"CT_ReadingModeInkLockDown\" minOccurs=\"0\"/>\n      <xsd:element name=\"smartTagType\" type=\"CT_SmartTagType\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element ref=\"sl:schemaLibrary\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shapeDefaults\" type=\"CT_ShapeDefaults\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotEmbedSmartTags\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"decimalSymbol\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"listSeparator\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StyleSort\">\n    <xsd:attribute name=\"val\" type=\"ST_StyleSort\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StylePaneFilter\">\n    <xsd:attribute name=\"allStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"customStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"latentStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"stylesInUse\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"headingStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"numberingStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"tableStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"directFormattingOnRuns\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"directFormattingOnParagraphs\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"directFormattingOnNumbering\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"directFormattingOnTables\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"clearFormatting\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"top3HeadingStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"visibleStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"alternateStyleNames\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"val\" type=\"ST_ShortHexNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_StyleSort\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"name\"/>\n      <xsd:enumeration value=\"priority\"/>\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"font\"/>\n      <xsd:enumeration value=\"basedOn\"/>\n      <xsd:enumeration value=\"type\"/>\n      <xsd:enumeration value=\"0000\"/>\n      <xsd:enumeration value=\"0001\"/>\n      <xsd:enumeration value=\"0002\"/>\n      <xsd:enumeration value=\"0003\"/>\n      <xsd:enumeration value=\"0004\"/>\n      <xsd:enumeration value=\"0005\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_WebSettings\">\n    <xsd:sequence>\n      <xsd:element name=\"frameset\" type=\"CT_Frameset\" minOccurs=\"0\"/>\n      <xsd:element name=\"divs\" type=\"CT_Divs\" minOccurs=\"0\"/>\n      <xsd:element name=\"encoding\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"optimizeForBrowser\" type=\"CT_OptimizeForBrowser\" minOccurs=\"0\"/>\n      <xsd:element name=\"relyOnVML\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"allowPNG\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotRelyOnCSS\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotSaveAsSingleFile\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotOrganizeInFolder\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotUseLongFileNames\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"pixelsPerInch\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"targetScreenSz\" type=\"CT_TargetScreenSz\" minOccurs=\"0\"/>\n      <xsd:element name=\"saveSmartTagsAsXml\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FrameScrollbar\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"on\"/>\n      <xsd:enumeration value=\"off\"/>\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FrameScrollbar\">\n    <xsd:attribute name=\"val\" type=\"ST_FrameScrollbar\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OptimizeForBrowser\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_OnOff\">\n        <xsd:attribute name=\"target\" type=\"s:ST_String\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Frame\">\n    <xsd:sequence>\n      <xsd:element name=\"sz\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"name\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"title\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"longDesc\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"sourceFileName\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"marW\" type=\"CT_PixelsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"marH\" type=\"CT_PixelsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"scrollbar\" type=\"CT_FrameScrollbar\" minOccurs=\"0\"/>\n      <xsd:element name=\"noResizeAllowed\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"linkedToFile\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FrameLayout\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"rows\"/>\n      <xsd:enumeration value=\"cols\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FrameLayout\">\n    <xsd:attribute name=\"val\" type=\"ST_FrameLayout\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FramesetSplitbar\">\n    <xsd:sequence>\n      <xsd:element name=\"w\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"0\"/>\n      <xsd:element name=\"noBorder\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"flatBorders\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Frameset\">\n    <xsd:sequence>\n      <xsd:element name=\"sz\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"framesetSplitbar\" type=\"CT_FramesetSplitbar\" minOccurs=\"0\"/>\n      <xsd:element name=\"frameLayout\" type=\"CT_FrameLayout\" minOccurs=\"0\"/>\n      <xsd:element name=\"title\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"frameset\" type=\"CT_Frameset\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n        <xsd:element name=\"frame\" type=\"CT_Frame\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumPicBullet\">\n    <xsd:choice>\n      <xsd:element name=\"pict\" type=\"CT_Picture\"/>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"numPicBulletId\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LevelSuffix\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"tab\"/>\n      <xsd:enumeration value=\"space\"/>\n      <xsd:enumeration value=\"nothing\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LevelSuffix\">\n    <xsd:attribute name=\"val\" type=\"ST_LevelSuffix\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LevelText\">\n    <xsd:attribute name=\"val\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"null\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LvlLegacy\">\n    <xsd:attribute name=\"legacy\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"legacySpace\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"legacyIndent\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Lvl\">\n    <xsd:sequence>\n      <xsd:element name=\"start\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\"/>\n      <xsd:element name=\"lvlRestart\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"pStyle\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"isLgl\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suff\" type=\"CT_LevelSuffix\" minOccurs=\"0\"/>\n      <xsd:element name=\"lvlText\" type=\"CT_LevelText\" minOccurs=\"0\"/>\n      <xsd:element name=\"lvlPicBulletId\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"legacy\" type=\"CT_LvlLegacy\" minOccurs=\"0\"/>\n      <xsd:element name=\"lvlJc\" type=\"CT_Jc\" minOccurs=\"0\"/>\n      <xsd:element name=\"pPr\" type=\"CT_PPrGeneral\" minOccurs=\"0\"/>\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ilvl\" type=\"ST_DecimalNumber\" use=\"required\"/>\n    <xsd:attribute name=\"tplc\" type=\"ST_LongHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"tentative\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MultiLevelType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"singleLevel\"/>\n      <xsd:enumeration value=\"multilevel\"/>\n      <xsd:enumeration value=\"hybridMultilevel\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MultiLevelType\">\n    <xsd:attribute name=\"val\" type=\"ST_MultiLevelType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AbstractNum\">\n    <xsd:sequence>\n      <xsd:element name=\"nsid\" type=\"CT_LongHexNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"multiLevelType\" type=\"CT_MultiLevelType\" minOccurs=\"0\"/>\n      <xsd:element name=\"tmpl\" type=\"CT_LongHexNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"name\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"styleLink\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"numStyleLink\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"lvl\" type=\"CT_Lvl\" minOccurs=\"0\" maxOccurs=\"9\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"abstractNumId\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumLvl\">\n    <xsd:sequence>\n      <xsd:element name=\"startOverride\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"lvl\" type=\"CT_Lvl\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ilvl\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Num\">\n    <xsd:sequence>\n      <xsd:element name=\"abstractNumId\" type=\"CT_DecimalNumber\" minOccurs=\"1\"/>\n      <xsd:element name=\"lvlOverride\" type=\"CT_NumLvl\" minOccurs=\"0\" maxOccurs=\"9\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"numId\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Numbering\">\n    <xsd:sequence>\n      <xsd:element name=\"numPicBullet\" type=\"CT_NumPicBullet\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"abstractNum\" type=\"CT_AbstractNum\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"num\" type=\"CT_Num\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"numIdMacAtCleanup\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TblStyleOverrideType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"wholeTable\"/>\n      <xsd:enumeration value=\"firstRow\"/>\n      <xsd:enumeration value=\"lastRow\"/>\n      <xsd:enumeration value=\"firstCol\"/>\n      <xsd:enumeration value=\"lastCol\"/>\n      <xsd:enumeration value=\"band1Vert\"/>\n      <xsd:enumeration value=\"band2Vert\"/>\n      <xsd:enumeration value=\"band1Horz\"/>\n      <xsd:enumeration value=\"band2Horz\"/>\n      <xsd:enumeration value=\"neCell\"/>\n      <xsd:enumeration value=\"nwCell\"/>\n      <xsd:enumeration value=\"seCell\"/>\n      <xsd:enumeration value=\"swCell\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TblStylePr\">\n    <xsd:sequence>\n      <xsd:element name=\"pPr\" type=\"CT_PPrGeneral\" minOccurs=\"0\"/>\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"tblPr\" type=\"CT_TblPrBase\" minOccurs=\"0\"/>\n      <xsd:element name=\"trPr\" type=\"CT_TrPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tcPr\" type=\"CT_TcPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_TblStyleOverrideType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_StyleType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"paragraph\"/>\n      <xsd:enumeration value=\"character\"/>\n      <xsd:enumeration value=\"table\"/>\n      <xsd:enumeration value=\"numbering\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Style\">\n    <xsd:sequence>\n      <xsd:element name=\"name\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"aliases\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"basedOn\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"next\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"link\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"autoRedefine\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hidden\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"uiPriority\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"semiHidden\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"unhideWhenUsed\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"qFormat\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"locked\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"personal\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"personalCompose\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"personalReply\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"rsid\" type=\"CT_LongHexNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"pPr\" type=\"CT_PPrGeneral\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblPr\" type=\"CT_TblPrBase\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trPr\" type=\"CT_TrPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tcPr\" type=\"CT_TcPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblStylePr\" type=\"CT_TblStylePr\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_StyleType\" use=\"optional\"/>\n    <xsd:attribute name=\"styleId\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"default\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"customStyle\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LsdException\">\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"locked\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"uiPriority\" type=\"ST_DecimalNumber\"/>\n    <xsd:attribute name=\"semiHidden\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"unhideWhenUsed\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"qFormat\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LatentStyles\">\n    <xsd:sequence>\n      <xsd:element name=\"lsdException\" type=\"CT_LsdException\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"defLockedState\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"defUIPriority\" type=\"ST_DecimalNumber\"/>\n    <xsd:attribute name=\"defSemiHidden\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"defUnhideWhenUsed\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"defQFormat\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"count\" type=\"ST_DecimalNumber\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Styles\">\n    <xsd:sequence>\n      <xsd:element name=\"docDefaults\" type=\"CT_DocDefaults\" minOccurs=\"0\"/>\n      <xsd:element name=\"latentStyles\" type=\"CT_LatentStyles\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_Style\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Panose\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Panose\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FontFamily\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"decorative\"/>\n      <xsd:enumeration value=\"modern\"/>\n      <xsd:enumeration value=\"roman\"/>\n      <xsd:enumeration value=\"script\"/>\n      <xsd:enumeration value=\"swiss\"/>\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FontFamily\">\n    <xsd:attribute name=\"val\" type=\"ST_FontFamily\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Pitch\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"fixed\"/>\n      <xsd:enumeration value=\"variable\"/>\n      <xsd:enumeration value=\"default\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Pitch\">\n    <xsd:attribute name=\"val\" type=\"ST_Pitch\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontSig\">\n    <xsd:attribute name=\"usb0\" use=\"required\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"usb1\" use=\"required\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"usb2\" use=\"required\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"usb3\" use=\"required\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"csb0\" use=\"required\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"csb1\" use=\"required\" type=\"ST_LongHexNumber\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontRel\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Rel\">\n        <xsd:attribute name=\"fontKey\" type=\"s:ST_Guid\"/>\n        <xsd:attribute name=\"subsetted\" type=\"s:ST_OnOff\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Font\">\n    <xsd:sequence>\n      <xsd:element name=\"altName\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"panose1\" type=\"CT_Panose\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"charset\" type=\"CT_Charset\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"family\" type=\"CT_FontFamily\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"notTrueType\" type=\"CT_OnOff\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pitch\" type=\"CT_Pitch\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sig\" type=\"CT_FontSig\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"embedRegular\" type=\"CT_FontRel\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"embedBold\" type=\"CT_FontRel\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"embedItalic\" type=\"CT_FontRel\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"embedBoldItalic\" type=\"CT_FontRel\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontsList\">\n    <xsd:sequence>\n      <xsd:element name=\"font\" type=\"CT_Font\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DivBdr\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"left\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"right\" type=\"CT_Border\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Div\">\n    <xsd:sequence>\n      <xsd:element name=\"blockQuote\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bodyDiv\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"marLeft\" type=\"CT_SignedTwipsMeasure\"/>\n      <xsd:element name=\"marRight\" type=\"CT_SignedTwipsMeasure\"/>\n      <xsd:element name=\"marTop\" type=\"CT_SignedTwipsMeasure\"/>\n      <xsd:element name=\"marBottom\" type=\"CT_SignedTwipsMeasure\"/>\n      <xsd:element name=\"divBdr\" type=\"CT_DivBdr\" minOccurs=\"0\"/>\n      <xsd:element name=\"divsChild\" type=\"CT_Divs\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Divs\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"div\" type=\"CT_Div\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TxbxContent\">\n    <xsd:group ref=\"EG_BlockLevelElts\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:element name=\"txbxContent\" type=\"CT_TxbxContent\"/>\n  <xsd:group name=\"EG_MathContent\">\n    <xsd:choice>\n      <xsd:element ref=\"m:oMathPara\"/>\n      <xsd:element ref=\"m:oMath\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_BlockLevelChunkElts\">\n    <xsd:choice>\n      <xsd:group ref=\"EG_ContentBlockContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_BlockLevelElts\">\n    <xsd:choice>\n      <xsd:group ref=\"EG_BlockLevelChunkElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"altChunk\" type=\"CT_AltChunk\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_RunLevelElts\">\n    <xsd:choice>\n      <xsd:element name=\"proofErr\" minOccurs=\"0\" type=\"CT_ProofErr\"/>\n      <xsd:element name=\"permStart\" minOccurs=\"0\" type=\"CT_PermStart\"/>\n      <xsd:element name=\"permEnd\" minOccurs=\"0\" type=\"CT_Perm\"/>\n      <xsd:group ref=\"EG_RangeMarkupElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"ins\" type=\"CT_RunTrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"del\" type=\"CT_RunTrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"moveFrom\" type=\"CT_RunTrackChange\"/>\n      <xsd:element name=\"moveTo\" type=\"CT_RunTrackChange\"/>\n      <xsd:group ref=\"EG_MathContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_Body\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_BlockLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"sectPr\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_SectPr\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShapeDefaults\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:office:office\"\n        minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Comments\">\n    <xsd:sequence>\n      <xsd:element name=\"comment\" type=\"CT_Comment\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"comments\" type=\"CT_Comments\"/>\n  <xsd:complexType name=\"CT_Footnotes\">\n    <xsd:sequence maxOccurs=\"unbounded\">\n      <xsd:element name=\"footnote\" type=\"CT_FtnEdn\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"footnotes\" type=\"CT_Footnotes\"/>\n  <xsd:complexType name=\"CT_Endnotes\">\n    <xsd:sequence maxOccurs=\"unbounded\">\n      <xsd:element name=\"endnote\" type=\"CT_FtnEdn\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"endnotes\" type=\"CT_Endnotes\"/>\n  <xsd:element name=\"hdr\" type=\"CT_HdrFtr\"/>\n  <xsd:element name=\"ftr\" type=\"CT_HdrFtr\"/>\n  <xsd:complexType name=\"CT_SmartTagType\">\n    <xsd:attribute name=\"namespaceuri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"url\" type=\"s:ST_String\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ThemeColor\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"dark1\"/>\n      <xsd:enumeration value=\"light1\"/>\n      <xsd:enumeration value=\"dark2\"/>\n      <xsd:enumeration value=\"light2\"/>\n      <xsd:enumeration value=\"accent1\"/>\n      <xsd:enumeration value=\"accent2\"/>\n      <xsd:enumeration value=\"accent3\"/>\n      <xsd:enumeration value=\"accent4\"/>\n      <xsd:enumeration value=\"accent5\"/>\n      <xsd:enumeration value=\"accent6\"/>\n      <xsd:enumeration value=\"hyperlink\"/>\n      <xsd:enumeration value=\"followedHyperlink\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"background1\"/>\n      <xsd:enumeration value=\"text1\"/>\n      <xsd:enumeration value=\"background2\"/>\n      <xsd:enumeration value=\"text2\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DocPartBehavior\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"content\"/>\n      <xsd:enumeration value=\"p\"/>\n      <xsd:enumeration value=\"pg\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DocPartBehavior\">\n    <xsd:attribute name=\"val\" use=\"required\" type=\"ST_DocPartBehavior\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocPartBehaviors\">\n    <xsd:choice>\n      <xsd:element name=\"behavior\" type=\"CT_DocPartBehavior\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DocPartType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"autoExp\"/>\n      <xsd:enumeration value=\"toolbar\"/>\n      <xsd:enumeration value=\"speller\"/>\n      <xsd:enumeration value=\"formFld\"/>\n      <xsd:enumeration value=\"bbPlcHdr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DocPartType\">\n    <xsd:attribute name=\"val\" use=\"required\" type=\"ST_DocPartType\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocPartTypes\">\n    <xsd:choice>\n      <xsd:element name=\"type\" type=\"CT_DocPartType\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"all\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DocPartGallery\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"placeholder\"/>\n      <xsd:enumeration value=\"any\"/>\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"docParts\"/>\n      <xsd:enumeration value=\"coverPg\"/>\n      <xsd:enumeration value=\"eq\"/>\n      <xsd:enumeration value=\"ftrs\"/>\n      <xsd:enumeration value=\"hdrs\"/>\n      <xsd:enumeration value=\"pgNum\"/>\n      <xsd:enumeration value=\"tbls\"/>\n      <xsd:enumeration value=\"watermarks\"/>\n      <xsd:enumeration value=\"autoTxt\"/>\n      <xsd:enumeration value=\"txtBox\"/>\n      <xsd:enumeration value=\"pgNumT\"/>\n      <xsd:enumeration value=\"pgNumB\"/>\n      <xsd:enumeration value=\"pgNumMargins\"/>\n      <xsd:enumeration value=\"tblOfContents\"/>\n      <xsd:enumeration value=\"bib\"/>\n      <xsd:enumeration value=\"custQuickParts\"/>\n      <xsd:enumeration value=\"custCoverPg\"/>\n      <xsd:enumeration value=\"custEq\"/>\n      <xsd:enumeration value=\"custFtrs\"/>\n      <xsd:enumeration value=\"custHdrs\"/>\n      <xsd:enumeration value=\"custPgNum\"/>\n      <xsd:enumeration value=\"custTbls\"/>\n      <xsd:enumeration value=\"custWatermarks\"/>\n      <xsd:enumeration value=\"custAutoTxt\"/>\n      <xsd:enumeration value=\"custTxtBox\"/>\n      <xsd:enumeration value=\"custPgNumT\"/>\n      <xsd:enumeration value=\"custPgNumB\"/>\n      <xsd:enumeration value=\"custPgNumMargins\"/>\n      <xsd:enumeration value=\"custTblOfContents\"/>\n      <xsd:enumeration value=\"custBib\"/>\n      <xsd:enumeration value=\"custom1\"/>\n      <xsd:enumeration value=\"custom2\"/>\n      <xsd:enumeration value=\"custom3\"/>\n      <xsd:enumeration value=\"custom4\"/>\n      <xsd:enumeration value=\"custom5\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DocPartGallery\">\n    <xsd:attribute name=\"val\" type=\"ST_DocPartGallery\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocPartCategory\">\n    <xsd:sequence>\n      <xsd:element name=\"name\" type=\"CT_String\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gallery\" type=\"CT_DocPartGallery\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocPartName\">\n    <xsd:attribute name=\"val\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"decorated\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocPartPr\">\n    <xsd:all>\n      <xsd:element name=\"name\" type=\"CT_DocPartName\" minOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"category\" type=\"CT_DocPartCategory\" minOccurs=\"0\"/>\n      <xsd:element name=\"types\" type=\"CT_DocPartTypes\" minOccurs=\"0\"/>\n      <xsd:element name=\"behaviors\" type=\"CT_DocPartBehaviors\" minOccurs=\"0\"/>\n      <xsd:element name=\"description\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"guid\" type=\"CT_Guid\" minOccurs=\"0\"/>\n    </xsd:all>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocPart\">\n    <xsd:sequence>\n      <xsd:element name=\"docPartPr\" type=\"CT_DocPartPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"docPartBody\" type=\"CT_Body\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocParts\">\n    <xsd:choice>\n      <xsd:element name=\"docPart\" type=\"CT_DocPart\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:element name=\"settings\" type=\"CT_Settings\"/>\n  <xsd:element name=\"webSettings\" type=\"CT_WebSettings\"/>\n  <xsd:element name=\"fonts\" type=\"CT_FontsList\"/>\n  <xsd:element name=\"numbering\" type=\"CT_Numbering\"/>\n  <xsd:element name=\"styles\" type=\"CT_Styles\"/>\n  <xsd:simpleType name=\"ST_CaptionPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"above\"/>\n      <xsd:enumeration value=\"below\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Caption\">\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"pos\" type=\"ST_CaptionPos\" use=\"optional\"/>\n    <xsd:attribute name=\"chapNum\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"heading\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"noLabel\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"numFmt\" type=\"ST_NumberFormat\" use=\"optional\"/>\n    <xsd:attribute name=\"sep\" type=\"ST_ChapterSep\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AutoCaption\">\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"caption\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AutoCaptions\">\n    <xsd:sequence>\n      <xsd:element name=\"autoCaption\" type=\"CT_AutoCaption\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Captions\">\n    <xsd:sequence>\n      <xsd:element name=\"caption\" type=\"CT_Caption\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"autoCaptions\" type=\"CT_AutoCaptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocumentBase\">\n    <xsd:sequence>\n      <xsd:element name=\"background\" type=\"CT_Background\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Document\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_DocumentBase\">\n        <xsd:sequence>\n          <xsd:element name=\"body\" type=\"CT_Body\" minOccurs=\"0\" maxOccurs=\"1\"/>\n        </xsd:sequence>\n        <xsd:attribute name=\"conformance\" type=\"s:ST_ConformanceClass\"/>\n        <xsd:attribute ref=\"mc:Ignorable\" use=\"optional\" />\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GlossaryDocument\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_DocumentBase\">\n        <xsd:sequence>\n          <xsd:element name=\"docParts\" type=\"CT_DocParts\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:element name=\"document\" type=\"CT_Document\"/>\n  <xsd:element name=\"glossaryDocument\" type=\"CT_GlossaryDocument\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd",
    "content": "<?xml version='1.0'?>\n<xs:schema targetNamespace=\"http://www.w3.org/XML/1998/namespace\" xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" xml:lang=\"en\">\n\n <xs:annotation>\n  <xs:documentation>\n   See http://www.w3.org/XML/1998/namespace.html and\n   http://www.w3.org/TR/REC-xml for information about this namespace.\n\n    This schema document describes the XML namespace, in a form\n    suitable for import by other schema documents.  \n\n    Note that local names in this namespace are intended to be defined\n    only by the World Wide Web Consortium or its subgroups.  The\n    following names are currently defined in this namespace and should\n    not be used with conflicting semantics by any Working Group,\n    specification, or document instance:\n\n    base (as an attribute name): denotes an attribute whose value\n         provides a URI to be used as the base for interpreting any\n         relative URIs in the scope of the element on which it\n         appears; its value is inherited.  This name is reserved\n         by virtue of its definition in the XML Base specification.\n\n    lang (as an attribute name): denotes an attribute whose value\n         is a language code for the natural language of the content of\n         any element; its value is inherited.  This name is reserved\n         by virtue of its definition in the XML specification.\n  \n    space (as an attribute name): denotes an attribute whose\n         value is a keyword indicating what whitespace processing\n         discipline is intended for the content of the element; its\n         value is inherited.  This name is reserved by virtue of its\n         definition in the XML specification.\n\n    Father (in any context at all): denotes Jon Bosak, the chair of \n         the original XML Working Group.  This name is reserved by \n         the following decision of the W3C XML Plenary and \n         XML Coordination groups:\n\n             In appreciation for his vision, leadership and dedication\n             the W3C XML Plenary on this 10th day of February, 2000\n             reserves for Jon Bosak in perpetuity the XML name\n             xml:Father\n  </xs:documentation>\n </xs:annotation>\n\n <xs:annotation>\n  <xs:documentation>This schema defines attributes and an attribute group\n        suitable for use by\n        schemas wishing to allow xml:base, xml:lang or xml:space attributes\n        on elements they define.\n\n        To enable this, such a schema must import this schema\n        for the XML namespace, e.g. as follows:\n        &lt;schema . . .>\n         . . .\n         &lt;import namespace=\"http://www.w3.org/XML/1998/namespace\"\n                    schemaLocation=\"http://www.w3.org/2001/03/xml.xsd\"/>\n\n        Subsequently, qualified reference to any of the attributes\n        or the group defined below will have the desired effect, e.g.\n\n        &lt;type . . .>\n         . . .\n         &lt;attributeGroup ref=\"xml:specialAttrs\"/>\n \n         will define a type which will schema-validate an instance\n         element with any of those attributes</xs:documentation>\n </xs:annotation>\n\n <xs:annotation>\n  <xs:documentation>In keeping with the XML Schema WG's standard versioning\n   policy, this schema document will persist at\n   http://www.w3.org/2001/03/xml.xsd.\n   At the date of issue it can also be found at\n   http://www.w3.org/2001/xml.xsd.\n   The schema document at that URI may however change in the future,\n   in order to remain compatible with the latest version of XML Schema\n   itself.  In other words, if the XML Schema namespace changes, the version\n   of this document at\n   http://www.w3.org/2001/xml.xsd will change\n   accordingly; the version at\n   http://www.w3.org/2001/03/xml.xsd will not change.\n  </xs:documentation>\n </xs:annotation>\n\n <xs:attribute name=\"lang\" type=\"xs:language\">\n  <xs:annotation>\n   <xs:documentation>In due course, we should install the relevant ISO 2- and 3-letter\n         codes as the enumerated possible values . . .</xs:documentation>\n  </xs:annotation>\n </xs:attribute>\n\n <xs:attribute name=\"space\" default=\"preserve\">\n  <xs:simpleType>\n   <xs:restriction base=\"xs:NCName\">\n    <xs:enumeration value=\"default\"/>\n    <xs:enumeration value=\"preserve\"/>\n   </xs:restriction>\n  </xs:simpleType>\n </xs:attribute>\n\n <xs:attribute name=\"base\" type=\"xs:anyURI\">\n  <xs:annotation>\n   <xs:documentation>See http://www.w3.org/TR/xmlbase/ for\n                     information about this attribute.</xs:documentation>\n  </xs:annotation>\n </xs:attribute>\n\n <xs:attributeGroup name=\"specialAttrs\">\n  <xs:attribute ref=\"xml:base\"/>\n  <xs:attribute ref=\"xml:lang\"/>\n  <xs:attribute ref=\"xml:space\"/>\n </xs:attributeGroup>\n\n</xs:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd",
    "content": "﻿<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<xs:schema xmlns=\"http://schemas.openxmlformats.org/package/2006/content-types\"\n  xmlns:xs=\"http://www.w3.org/2001/XMLSchema\"\n  targetNamespace=\"http://schemas.openxmlformats.org/package/2006/content-types\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"unqualified\" blockDefault=\"#all\">\n\n  <xs:element name=\"Types\" type=\"CT_Types\"/>\n  <xs:element name=\"Default\" type=\"CT_Default\"/>\n  <xs:element name=\"Override\" type=\"CT_Override\"/>\n\n  <xs:complexType name=\"CT_Types\">\n    <xs:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xs:element ref=\"Default\"/>\n      <xs:element ref=\"Override\"/>\n    </xs:choice>\n  </xs:complexType>\n\n  <xs:complexType name=\"CT_Default\">\n    <xs:attribute name=\"Extension\" type=\"ST_Extension\" use=\"required\"/>\n    <xs:attribute name=\"ContentType\" type=\"ST_ContentType\" use=\"required\"/>\n  </xs:complexType>\n\n  <xs:complexType name=\"CT_Override\">\n    <xs:attribute name=\"ContentType\" type=\"ST_ContentType\" use=\"required\"/>\n    <xs:attribute name=\"PartName\" type=\"xs:anyURI\" use=\"required\"/>\n  </xs:complexType>\n\n  <xs:simpleType name=\"ST_ContentType\">\n    <xs:restriction base=\"xs:string\">\n      <xs:pattern\n        value=\"(((([\\p{IsBasicLatin}-[\\p{Cc}&#127;\\(\\)&lt;&gt;@,;:\\\\&quot;/\\[\\]\\?=\\{\\}\\s\\t]])+))/((([\\p{IsBasicLatin}-[\\p{Cc}&#127;\\(\\)&lt;&gt;@,;:\\\\&quot;/\\[\\]\\?=\\{\\}\\s\\t]])+))((\\s+)*;(\\s+)*(((([\\p{IsBasicLatin}-[\\p{Cc}&#127;\\(\\)&lt;&gt;@,;:\\\\&quot;/\\[\\]\\?=\\{\\}\\s\\t]])+))=((([\\p{IsBasicLatin}-[\\p{Cc}&#127;\\(\\)&lt;&gt;@,;:\\\\&quot;/\\[\\]\\?=\\{\\}\\s\\t]])+)|(&quot;(([\\p{IsLatin-1Supplement}\\p{IsBasicLatin}-[\\p{Cc}&#127;&quot;\\n\\r]]|(\\s+))|(\\\\[\\p{IsBasicLatin}]))*&quot;))))*)\"\n      />\n    </xs:restriction>\n  </xs:simpleType>\n\n  <xs:simpleType name=\"ST_Extension\">\n    <xs:restriction base=\"xs:string\">\n      <xs:pattern\n        value=\"([!$&amp;'\\(\\)\\*\\+,:=]|(%[0-9a-fA-F][0-9a-fA-F])|[:@]|[a-zA-Z0-9\\-_~])+\"/>\n    </xs:restriction>\n  </xs:simpleType>\n</xs:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd",
    "content": "﻿<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xs:schema targetNamespace=\"http://schemas.openxmlformats.org/package/2006/metadata/core-properties\"\n  xmlns=\"http://schemas.openxmlformats.org/package/2006/metadata/core-properties\"\n  xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n  xmlns:dcterms=\"http://purl.org/dc/terms/\" elementFormDefault=\"qualified\" blockDefault=\"#all\">\n\n  <xs:import namespace=\"http://purl.org/dc/elements/1.1/\"\n    schemaLocation=\"http://dublincore.org/schemas/xmls/qdc/2003/04/02/dc.xsd\"/>\n  <xs:import namespace=\"http://purl.org/dc/terms/\"\n    schemaLocation=\"http://dublincore.org/schemas/xmls/qdc/2003/04/02/dcterms.xsd\"/>\n  <xs:import id=\"xml\" namespace=\"http://www.w3.org/XML/1998/namespace\"/>\n\n  <xs:element name=\"coreProperties\" type=\"CT_CoreProperties\"/>\n\n  <xs:complexType name=\"CT_CoreProperties\">\n    <xs:all>\n      <xs:element name=\"category\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xs:string\"/>\n      <xs:element name=\"contentStatus\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xs:string\"/>\n      <xs:element ref=\"dcterms:created\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element ref=\"dc:creator\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element ref=\"dc:description\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element ref=\"dc:identifier\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element name=\"keywords\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_Keywords\"/>\n      <xs:element ref=\"dc:language\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element name=\"lastModifiedBy\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xs:string\"/>\n      <xs:element name=\"lastPrinted\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xs:dateTime\"/>\n      <xs:element ref=\"dcterms:modified\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element name=\"revision\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xs:string\"/>\n      <xs:element ref=\"dc:subject\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element ref=\"dc:title\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element name=\"version\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xs:string\"/>\n    </xs:all>\n  </xs:complexType>\n\n  <xs:complexType name=\"CT_Keywords\" mixed=\"true\">\n    <xs:sequence>\n      <xs:element name=\"value\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Keyword\"/>\n    </xs:sequence>\n    <xs:attribute ref=\"xml:lang\" use=\"optional\"/>\n  </xs:complexType>\n\n  <xs:complexType name=\"CT_Keyword\">\n    <xs:simpleContent>\n      <xs:extension base=\"xs:string\">\n        <xs:attribute ref=\"xml:lang\" use=\"optional\"/>\n      </xs:extension>\n    </xs:simpleContent>\n  </xs:complexType>\n\n</xs:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xsd:schema xmlns=\"http://schemas.openxmlformats.org/package/2006/digital-signature\"\n  xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  targetNamespace=\"http://schemas.openxmlformats.org/package/2006/digital-signature\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"unqualified\" blockDefault=\"#all\">\n\n  <xsd:element name=\"SignatureTime\" type=\"CT_SignatureTime\"/>\n  <xsd:element name=\"RelationshipReference\" type=\"CT_RelationshipReference\"/>\n  <xsd:element name=\"RelationshipsGroupReference\" type=\"CT_RelationshipsGroupReference\"/>\n\n  <xsd:complexType name=\"CT_SignatureTime\">\n    <xsd:sequence>\n      <xsd:element name=\"Format\" type=\"ST_Format\"/>\n      <xsd:element name=\"Value\" type=\"ST_Value\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n\n  <xsd:complexType name=\"CT_RelationshipReference\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"xsd:string\">\n        <xsd:attribute name=\"SourceId\" type=\"xsd:string\" use=\"required\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n\n  <xsd:complexType name=\"CT_RelationshipsGroupReference\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"xsd:string\">\n        <xsd:attribute name=\"SourceType\" type=\"xsd:anyURI\" use=\"required\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n\n  <xsd:simpleType name=\"ST_Format\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern\n        value=\"(YYYY)|(YYYY-MM)|(YYYY-MM-DD)|(YYYY-MM-DDThh:mmTZD)|(YYYY-MM-DDThh:mm:ssTZD)|(YYYY-MM-DDThh:mm:ss.sTZD)\"\n      />\n    </xsd:restriction>\n  </xsd:simpleType>\n\n  <xsd:simpleType name=\"ST_Value\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern\n        value=\"(([0-9][0-9][0-9][0-9]))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2))))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1))))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))(((\\+|-)((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))(((\\+|-)((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])):(((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))\\.[0-9])(((\\+|-)((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))\"\n      />\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd",
    "content": "﻿<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<xsd:schema xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\"\n  xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  targetNamespace=\"http://schemas.openxmlformats.org/package/2006/relationships\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"unqualified\" blockDefault=\"#all\">\n\n  <xsd:element name=\"Relationships\" type=\"CT_Relationships\"/>\n  <xsd:element name=\"Relationship\" type=\"CT_Relationship\"/>\n\n  <xsd:complexType name=\"CT_Relationships\">\n    <xsd:sequence>\n      <xsd:element ref=\"Relationship\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n\n  <xsd:complexType name=\"CT_Relationship\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"xsd:string\">\n        <xsd:attribute name=\"TargetMode\" type=\"ST_TargetMode\" use=\"optional\"/>\n        <xsd:attribute name=\"Target\" type=\"xsd:anyURI\" use=\"required\"/>\n        <xsd:attribute name=\"Type\" type=\"xsd:anyURI\" use=\"required\"/>\n        <xsd:attribute name=\"Id\" type=\"xsd:ID\" use=\"required\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n\n  <xsd:simpleType name=\"ST_TargetMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"External\"/>\n      <xsd:enumeration value=\"Internal\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/mce/mc.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\"\n\tattributeFormDefault=\"unqualified\" elementFormDefault=\"qualified\"\n\ttargetNamespace=\"http://schemas.openxmlformats.org/markup-compatibility/2006\"\n\txmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">\n\n  <!--\n    This XSD is a modified version of the one found at:\n    https://github.com/plutext/docx4j/blob/master/xsd/mce/markup-compatibility-2006-MINIMAL.xsd\n\n    This XSD has 2 objectives:\n\n        1. round tripping @mc:Ignorable\n\n\t\t\t<w:document\n\t\t\t            xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\"\n\t\t\t            xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n\t\t\t            mc:Ignorable=\"w14 w15 wp14\">\n\n        2. enabling AlternateContent to be manipulated in certain elements\n           (in the unusual case where the content model is xsd:any, it doesn't have to be explicitly added)\n\n\t\tSee further ECMA-376, 4th Edition, Office Open XML File Formats\n\t\tPart 3 : Markup Compatibility and Extensibility\n   -->\n\n  <!--  Objective 1 -->\n  <xsd:attribute name=\"Ignorable\" type=\"xsd:string\" />\n\n  <!--  Objective 2 -->\n\t<xsd:attribute name=\"MustUnderstand\" type=\"xsd:string\"  />\n\t<xsd:attribute name=\"ProcessContent\" type=\"xsd:string\"  />\n\n<!-- An AlternateContent element shall contain one or more Choice child elements, optionally followed by a\nFallback child element. If present, there shall be only one Fallback element, and it shall follow all Choice\nelements. -->\n\t<xsd:element name=\"AlternateContent\">\n\t\t<xsd:complexType>\n\t\t\t<xsd:sequence>\n\t\t\t\t<xsd:element name=\"Choice\" minOccurs=\"0\" maxOccurs=\"unbounded\">\n\t\t\t\t\t<xsd:complexType>\n\t\t\t\t\t\t<xsd:sequence>\n\t\t\t\t\t\t\t<xsd:any minOccurs=\"0\" maxOccurs=\"unbounded\"\n\t\t\t\t\t\t\t\tprocessContents=\"strict\">\n\t\t\t\t\t\t\t</xsd:any>\n\t\t\t\t\t\t</xsd:sequence>\n\t\t\t\t\t\t<xsd:attribute name=\"Requires\" type=\"xsd:string\" use=\"required\" />\n\t\t\t\t\t\t<xsd:attribute ref=\"mc:Ignorable\" use=\"optional\" />\n\t\t\t\t\t\t<xsd:attribute ref=\"mc:MustUnderstand\" use=\"optional\" />\n\t\t\t\t\t\t<xsd:attribute ref=\"mc:ProcessContent\" use=\"optional\" />\n\t\t\t\t\t</xsd:complexType>\n\t\t\t\t</xsd:element>\n\t\t\t\t<xsd:element name=\"Fallback\" minOccurs=\"0\" maxOccurs=\"1\">\n\t\t\t\t\t<xsd:complexType>\n\t\t\t\t\t\t<xsd:sequence>\n\t\t\t\t\t\t\t<xsd:any minOccurs=\"0\" maxOccurs=\"unbounded\"\n\t\t\t\t\t\t\t\tprocessContents=\"strict\">\n\t\t\t\t\t\t\t</xsd:any>\n\t\t\t\t\t\t</xsd:sequence>\n\t\t\t\t\t\t<xsd:attribute ref=\"mc:Ignorable\" use=\"optional\" />\n\t\t\t\t\t\t<xsd:attribute ref=\"mc:MustUnderstand\" use=\"optional\" />\n\t\t\t\t\t\t<xsd:attribute ref=\"mc:ProcessContent\" use=\"optional\" />\n\t\t\t\t\t</xsd:complexType>\n\t\t\t\t</xsd:element>\n\t\t\t</xsd:sequence>\n\t\t\t<!-- AlternateContent elements might include the attributes Ignorable,\n\t\t\t\tMustUnderstand and ProcessContent described in this Part of ECMA-376. These\n\t\t\t\tattributes’ qualified names shall be prefixed when associated with an AlternateContent\n\t\t\t\telement. -->\n\t\t\t<xsd:attribute ref=\"mc:Ignorable\" use=\"optional\" />\n\t\t\t<xsd:attribute ref=\"mc:MustUnderstand\" use=\"optional\" />\n\t\t\t<xsd:attribute ref=\"mc:ProcessContent\" use=\"optional\" />\n\t\t</xsd:complexType>\n\t</xsd:element>\n</xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/microsoft/wml-2010.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w12=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\" xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\" xmlns=\"http://schemas.microsoft.com/office/word/2010/wordml\" targetNamespace=\"http://schemas.microsoft.com/office/word/2010/wordml\">\n   <!-- <xsd:import id=\"rel\" namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" schemaLocation=\"orel.xsd\"/> -->\n   <xsd:import id=\"w\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <!-- <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\" schemaLocation=\"oartbasetypes.xsd\"/>\n   <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\" schemaLocation=\"oartsplineproperties.xsd\"/> -->\n   <xsd:complexType name=\"CT_LongHexNumber\">\n     <xsd:attribute name=\"val\" type=\"w:ST_LongHexNumber\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_OnOff\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"true\"/>\n       <xsd:enumeration value=\"false\"/>\n       <xsd:enumeration value=\"0\"/>\n       <xsd:enumeration value=\"1\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_OnOff\">\n     <xsd:attribute name=\"val\" type=\"ST_OnOff\"/>\n   </xsd:complexType>\n   <xsd:element name=\"docId\" type=\"CT_LongHexNumber\"/>\n   <xsd:element name=\"conflictMode\" type=\"CT_OnOff\"/>\n   <xsd:attributeGroup name=\"AG_Parids\">\n     <xsd:attribute name=\"paraId\" type=\"w:ST_LongHexNumber\"/>\n     <xsd:attribute name=\"textId\" type=\"w:ST_LongHexNumber\"/>\n   </xsd:attributeGroup>\n   <xsd:attribute name=\"anchorId\" type=\"w:ST_LongHexNumber\"/>\n   <xsd:attribute name=\"noSpellErr\" type=\"ST_OnOff\"/>\n   <xsd:element name=\"customXmlConflictInsRangeStart\" type=\"w:CT_TrackChange\"/>\n   <xsd:element name=\"customXmlConflictInsRangeEnd\" type=\"w:CT_Markup\"/>\n   <xsd:element name=\"customXmlConflictDelRangeStart\" type=\"w:CT_TrackChange\"/>\n   <xsd:element name=\"customXmlConflictDelRangeEnd\" type=\"w:CT_Markup\"/>\n   <xsd:group name=\"EG_RunLevelConflicts\">\n     <xsd:sequence>\n       <xsd:element name=\"conflictIns\" type=\"w:CT_RunTrackChange\" minOccurs=\"0\"/>\n       <xsd:element name=\"conflictDel\" type=\"w:CT_RunTrackChange\" minOccurs=\"0\"/>\n     </xsd:sequence>\n   </xsd:group>\n   <xsd:group name=\"EG_Conflicts\">\n     <xsd:choice>\n       <xsd:element name=\"conflictIns\" type=\"w:CT_TrackChange\" minOccurs=\"0\"/>\n       <xsd:element name=\"conflictDel\" type=\"w:CT_TrackChange\" minOccurs=\"0\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:complexType name=\"CT_Percentage\">\n     <xsd:attribute name=\"val\" type=\"a:ST_Percentage\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_PositiveFixedPercentage\">\n     <xsd:attribute name=\"val\" type=\"a:ST_PositiveFixedPercentage\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_PositivePercentage\">\n     <xsd:attribute name=\"val\" type=\"a:ST_PositivePercentage\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_SchemeColorVal\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"bg1\"/>\n       <xsd:enumeration value=\"tx1\"/>\n       <xsd:enumeration value=\"bg2\"/>\n       <xsd:enumeration value=\"tx2\"/>\n       <xsd:enumeration value=\"accent1\"/>\n       <xsd:enumeration value=\"accent2\"/>\n       <xsd:enumeration value=\"accent3\"/>\n       <xsd:enumeration value=\"accent4\"/>\n       <xsd:enumeration value=\"accent5\"/>\n       <xsd:enumeration value=\"accent6\"/>\n       <xsd:enumeration value=\"hlink\"/>\n       <xsd:enumeration value=\"folHlink\"/>\n       <xsd:enumeration value=\"dk1\"/>\n       <xsd:enumeration value=\"lt1\"/>\n       <xsd:enumeration value=\"dk2\"/>\n       <xsd:enumeration value=\"lt2\"/>\n       <xsd:enumeration value=\"phClr\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_RectAlignment\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"none\"/>\n       <xsd:enumeration value=\"tl\"/>\n       <xsd:enumeration value=\"t\"/>\n       <xsd:enumeration value=\"tr\"/>\n       <xsd:enumeration value=\"l\"/>\n       <xsd:enumeration value=\"ctr\"/>\n       <xsd:enumeration value=\"r\"/>\n       <xsd:enumeration value=\"bl\"/>\n       <xsd:enumeration value=\"b\"/>\n       <xsd:enumeration value=\"br\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_PathShadeType\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"shape\"/>\n       <xsd:enumeration value=\"circle\"/>\n       <xsd:enumeration value=\"rect\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_LineCap\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"rnd\"/>\n       <xsd:enumeration value=\"sq\"/>\n       <xsd:enumeration value=\"flat\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_PresetLineDashVal\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"solid\"/>\n       <xsd:enumeration value=\"dot\"/>\n       <xsd:enumeration value=\"sysDot\"/>\n       <xsd:enumeration value=\"dash\"/>\n       <xsd:enumeration value=\"sysDash\"/>\n       <xsd:enumeration value=\"lgDash\"/>\n       <xsd:enumeration value=\"dashDot\"/>\n       <xsd:enumeration value=\"sysDashDot\"/>\n       <xsd:enumeration value=\"lgDashDot\"/>\n       <xsd:enumeration value=\"lgDashDotDot\"/>\n       <xsd:enumeration value=\"sysDashDotDot\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_PenAlignment\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"ctr\"/>\n       <xsd:enumeration value=\"in\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_CompoundLine\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"sng\"/>\n       <xsd:enumeration value=\"dbl\"/>\n       <xsd:enumeration value=\"thickThin\"/>\n       <xsd:enumeration value=\"thinThick\"/>\n       <xsd:enumeration value=\"tri\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_RelativeRect\">\n     <xsd:attribute name=\"l\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"t\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"r\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"b\" use=\"optional\" type=\"a:ST_Percentage\"/>\n   </xsd:complexType>\n   <xsd:group name=\"EG_ColorTransform\">\n     <xsd:choice>\n       <xsd:element name=\"tint\" type=\"CT_PositiveFixedPercentage\"/>\n       <xsd:element name=\"shade\" type=\"CT_PositiveFixedPercentage\"/>\n       <xsd:element name=\"alpha\" type=\"CT_PositiveFixedPercentage\"/>\n       <xsd:element name=\"hueMod\" type=\"CT_PositivePercentage\"/>\n       <xsd:element name=\"sat\" type=\"CT_Percentage\"/>\n       <xsd:element name=\"satOff\" type=\"CT_Percentage\"/>\n       <xsd:element name=\"satMod\" type=\"CT_Percentage\"/>\n       <xsd:element name=\"lum\" type=\"CT_Percentage\"/>\n       <xsd:element name=\"lumOff\" type=\"CT_Percentage\"/>\n       <xsd:element name=\"lumMod\" type=\"CT_Percentage\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:complexType name=\"CT_SRgbColor\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"val\" type=\"s:ST_HexColorRGB\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_SchemeColor\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"val\" type=\"ST_SchemeColorVal\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:group name=\"EG_ColorChoice\">\n     <xsd:choice>\n       <xsd:element name=\"srgbClr\" type=\"CT_SRgbColor\"/>\n       <xsd:element name=\"schemeClr\" type=\"CT_SchemeColor\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:complexType name=\"CT_Color\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorChoice\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_GradientStop\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorChoice\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"pos\" type=\"a:ST_PositiveFixedPercentage\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_GradientStopList\">\n     <xsd:sequence>\n       <xsd:element name=\"gs\" type=\"CT_GradientStop\" minOccurs=\"2\" maxOccurs=\"10\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_LinearShadeProperties\">\n     <xsd:attribute name=\"ang\" type=\"a:ST_PositiveFixedAngle\" use=\"optional\"/>\n     <xsd:attribute name=\"scaled\" type=\"ST_OnOff\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_PathShadeProperties\">\n     <xsd:sequence>\n       <xsd:element name=\"fillToRect\" type=\"CT_RelativeRect\" minOccurs=\"0\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"path\" type=\"ST_PathShadeType\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:group name=\"EG_ShadeProperties\">\n     <xsd:choice>\n       <xsd:element name=\"lin\" type=\"CT_LinearShadeProperties\"/>\n       <xsd:element name=\"path\" type=\"CT_PathShadeProperties\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:complexType name=\"CT_SolidColorFillProperties\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_GradientFillProperties\">\n     <xsd:sequence>\n       <xsd:element name=\"gsLst\" type=\"CT_GradientStopList\" minOccurs=\"0\"/>\n       <xsd:group ref=\"EG_ShadeProperties\" minOccurs=\"0\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:group name=\"EG_FillProperties\">\n     <xsd:choice>\n       <xsd:element name=\"noFill\" type=\"w:CT_Empty\"/>\n       <xsd:element name=\"solidFill\" type=\"CT_SolidColorFillProperties\"/>\n       <xsd:element name=\"gradFill\" type=\"CT_GradientFillProperties\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:complexType name=\"CT_PresetLineDashProperties\">\n     <xsd:attribute name=\"val\" type=\"ST_PresetLineDashVal\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:group name=\"EG_LineDashProperties\">\n     <xsd:choice>\n       <xsd:element name=\"prstDash\" type=\"CT_PresetLineDashProperties\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:complexType name=\"CT_LineJoinMiterProperties\">\n     <xsd:attribute name=\"lim\" type=\"a:ST_PositivePercentage\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:group name=\"EG_LineJoinProperties\">\n     <xsd:choice>\n       <xsd:element name=\"round\" type=\"w:CT_Empty\"/>\n       <xsd:element name=\"bevel\" type=\"w:CT_Empty\"/>\n       <xsd:element name=\"miter\" type=\"CT_LineJoinMiterProperties\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:simpleType name=\"ST_PresetCameraType\">\n     <xsd:restriction base=\"xsd:token\">\n       <xsd:enumeration value=\"legacyObliqueTopLeft\"/>\n       <xsd:enumeration value=\"legacyObliqueTop\"/>\n       <xsd:enumeration value=\"legacyObliqueTopRight\"/>\n       <xsd:enumeration value=\"legacyObliqueLeft\"/>\n       <xsd:enumeration value=\"legacyObliqueFront\"/>\n       <xsd:enumeration value=\"legacyObliqueRight\"/>\n       <xsd:enumeration value=\"legacyObliqueBottomLeft\"/>\n       <xsd:enumeration value=\"legacyObliqueBottom\"/>\n       <xsd:enumeration value=\"legacyObliqueBottomRight\"/>\n       <xsd:enumeration value=\"legacyPerspectiveTopLeft\"/>\n       <xsd:enumeration value=\"legacyPerspectiveTop\"/>\n       <xsd:enumeration value=\"legacyPerspectiveTopRight\"/>\n       <xsd:enumeration value=\"legacyPerspectiveLeft\"/>\n       <xsd:enumeration value=\"legacyPerspectiveFront\"/>\n       <xsd:enumeration value=\"legacyPerspectiveRight\"/>\n       <xsd:enumeration value=\"legacyPerspectiveBottomLeft\"/>\n       <xsd:enumeration value=\"legacyPerspectiveBottom\"/>\n       <xsd:enumeration value=\"legacyPerspectiveBottomRight\"/>\n       <xsd:enumeration value=\"orthographicFront\"/>\n       <xsd:enumeration value=\"isometricTopUp\"/>\n       <xsd:enumeration value=\"isometricTopDown\"/>\n       <xsd:enumeration value=\"isometricBottomUp\"/>\n       <xsd:enumeration value=\"isometricBottomDown\"/>\n       <xsd:enumeration value=\"isometricLeftUp\"/>\n       <xsd:enumeration value=\"isometricLeftDown\"/>\n       <xsd:enumeration value=\"isometricRightUp\"/>\n       <xsd:enumeration value=\"isometricRightDown\"/>\n       <xsd:enumeration value=\"isometricOffAxis1Left\"/>\n       <xsd:enumeration value=\"isometricOffAxis1Right\"/>\n       <xsd:enumeration value=\"isometricOffAxis1Top\"/>\n       <xsd:enumeration value=\"isometricOffAxis2Left\"/>\n       <xsd:enumeration value=\"isometricOffAxis2Right\"/>\n       <xsd:enumeration value=\"isometricOffAxis2Top\"/>\n       <xsd:enumeration value=\"isometricOffAxis3Left\"/>\n       <xsd:enumeration value=\"isometricOffAxis3Right\"/>\n       <xsd:enumeration value=\"isometricOffAxis3Bottom\"/>\n       <xsd:enumeration value=\"isometricOffAxis4Left\"/>\n       <xsd:enumeration value=\"isometricOffAxis4Right\"/>\n       <xsd:enumeration value=\"isometricOffAxis4Bottom\"/>\n       <xsd:enumeration value=\"obliqueTopLeft\"/>\n       <xsd:enumeration value=\"obliqueTop\"/>\n       <xsd:enumeration value=\"obliqueTopRight\"/>\n       <xsd:enumeration value=\"obliqueLeft\"/>\n       <xsd:enumeration value=\"obliqueRight\"/>\n       <xsd:enumeration value=\"obliqueBottomLeft\"/>\n       <xsd:enumeration value=\"obliqueBottom\"/>\n       <xsd:enumeration value=\"obliqueBottomRight\"/>\n       <xsd:enumeration value=\"perspectiveFront\"/>\n       <xsd:enumeration value=\"perspectiveLeft\"/>\n       <xsd:enumeration value=\"perspectiveRight\"/>\n       <xsd:enumeration value=\"perspectiveAbove\"/>\n       <xsd:enumeration value=\"perspectiveBelow\"/>\n       <xsd:enumeration value=\"perspectiveAboveLeftFacing\"/>\n       <xsd:enumeration value=\"perspectiveAboveRightFacing\"/>\n       <xsd:enumeration value=\"perspectiveContrastingLeftFacing\"/>\n       <xsd:enumeration value=\"perspectiveContrastingRightFacing\"/>\n       <xsd:enumeration value=\"perspectiveHeroicLeftFacing\"/>\n       <xsd:enumeration value=\"perspectiveHeroicRightFacing\"/>\n       <xsd:enumeration value=\"perspectiveHeroicExtremeLeftFacing\"/>\n       <xsd:enumeration value=\"perspectiveHeroicExtremeRightFacing\"/>\n       <xsd:enumeration value=\"perspectiveRelaxed\"/>\n       <xsd:enumeration value=\"perspectiveRelaxedModerately\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_Camera\">\n     <xsd:attribute name=\"prst\" use=\"required\" type=\"ST_PresetCameraType\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_SphereCoords\">\n     <xsd:attribute name=\"lat\" type=\"a:ST_PositiveFixedAngle\" use=\"required\"/>\n     <xsd:attribute name=\"lon\" type=\"a:ST_PositiveFixedAngle\" use=\"required\"/>\n     <xsd:attribute name=\"rev\" type=\"a:ST_PositiveFixedAngle\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_LightRigType\">\n     <xsd:restriction base=\"xsd:token\">\n       <xsd:enumeration value=\"legacyFlat1\"/>\n       <xsd:enumeration value=\"legacyFlat2\"/>\n       <xsd:enumeration value=\"legacyFlat3\"/>\n       <xsd:enumeration value=\"legacyFlat4\"/>\n       <xsd:enumeration value=\"legacyNormal1\"/>\n       <xsd:enumeration value=\"legacyNormal2\"/>\n       <xsd:enumeration value=\"legacyNormal3\"/>\n       <xsd:enumeration value=\"legacyNormal4\"/>\n       <xsd:enumeration value=\"legacyHarsh1\"/>\n       <xsd:enumeration value=\"legacyHarsh2\"/>\n       <xsd:enumeration value=\"legacyHarsh3\"/>\n       <xsd:enumeration value=\"legacyHarsh4\"/>\n       <xsd:enumeration value=\"threePt\"/>\n       <xsd:enumeration value=\"balanced\"/>\n       <xsd:enumeration value=\"soft\"/>\n       <xsd:enumeration value=\"harsh\"/>\n       <xsd:enumeration value=\"flood\"/>\n       <xsd:enumeration value=\"contrasting\"/>\n       <xsd:enumeration value=\"morning\"/>\n       <xsd:enumeration value=\"sunrise\"/>\n       <xsd:enumeration value=\"sunset\"/>\n       <xsd:enumeration value=\"chilly\"/>\n       <xsd:enumeration value=\"freezing\"/>\n       <xsd:enumeration value=\"flat\"/>\n       <xsd:enumeration value=\"twoPt\"/>\n       <xsd:enumeration value=\"glow\"/>\n       <xsd:enumeration value=\"brightRoom\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_LightRigDirection\">\n     <xsd:restriction base=\"xsd:token\">\n       <xsd:enumeration value=\"tl\"/>\n       <xsd:enumeration value=\"t\"/>\n       <xsd:enumeration value=\"tr\"/>\n       <xsd:enumeration value=\"l\"/>\n       <xsd:enumeration value=\"r\"/>\n       <xsd:enumeration value=\"bl\"/>\n       <xsd:enumeration value=\"b\"/>\n       <xsd:enumeration value=\"br\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_LightRig\">\n     <xsd:sequence>\n       <xsd:element name=\"rot\" type=\"CT_SphereCoords\" minOccurs=\"0\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"rig\" type=\"ST_LightRigType\" use=\"required\"/>\n     <xsd:attribute name=\"dir\" type=\"ST_LightRigDirection\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_BevelPresetType\">\n     <xsd:restriction base=\"xsd:token\">\n       <xsd:enumeration value=\"relaxedInset\"/>\n       <xsd:enumeration value=\"circle\"/>\n       <xsd:enumeration value=\"slope\"/>\n       <xsd:enumeration value=\"cross\"/>\n       <xsd:enumeration value=\"angle\"/>\n       <xsd:enumeration value=\"softRound\"/>\n       <xsd:enumeration value=\"convex\"/>\n       <xsd:enumeration value=\"coolSlant\"/>\n       <xsd:enumeration value=\"divot\"/>\n       <xsd:enumeration value=\"riblet\"/>\n       <xsd:enumeration value=\"hardEdge\"/>\n       <xsd:enumeration value=\"artDeco\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_Bevel\">\n     <xsd:attribute name=\"w\" type=\"a:ST_PositiveCoordinate\" use=\"optional\"/>\n     <xsd:attribute name=\"h\" type=\"a:ST_PositiveCoordinate\" use=\"optional\"/>\n     <xsd:attribute name=\"prst\" type=\"ST_BevelPresetType\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_PresetMaterialType\">\n     <xsd:restriction base=\"xsd:token\">\n       <xsd:enumeration value=\"legacyMatte\"/>\n       <xsd:enumeration value=\"legacyPlastic\"/>\n       <xsd:enumeration value=\"legacyMetal\"/>\n       <xsd:enumeration value=\"legacyWireframe\"/>\n       <xsd:enumeration value=\"matte\"/>\n       <xsd:enumeration value=\"plastic\"/>\n       <xsd:enumeration value=\"metal\"/>\n       <xsd:enumeration value=\"warmMatte\"/>\n       <xsd:enumeration value=\"translucentPowder\"/>\n       <xsd:enumeration value=\"powder\"/>\n       <xsd:enumeration value=\"dkEdge\"/>\n       <xsd:enumeration value=\"softEdge\"/>\n       <xsd:enumeration value=\"clear\"/>\n       <xsd:enumeration value=\"flat\"/>\n       <xsd:enumeration value=\"softmetal\"/>\n       <xsd:enumeration value=\"none\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_Glow\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorChoice\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"rad\" use=\"optional\" type=\"a:ST_PositiveCoordinate\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_Shadow\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorChoice\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"blurRad\" use=\"optional\" type=\"a:ST_PositiveCoordinate\"/>\n     <xsd:attribute name=\"dist\" use=\"optional\" type=\"a:ST_PositiveCoordinate\"/>\n     <xsd:attribute name=\"dir\" use=\"optional\" type=\"a:ST_PositiveFixedAngle\"/>\n     <xsd:attribute name=\"sx\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"sy\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"kx\" use=\"optional\" type=\"a:ST_FixedAngle\"/>\n     <xsd:attribute name=\"ky\" use=\"optional\" type=\"a:ST_FixedAngle\"/>\n     <xsd:attribute name=\"algn\" use=\"optional\" type=\"ST_RectAlignment\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_Reflection\">\n     <xsd:attribute name=\"blurRad\" use=\"optional\" type=\"a:ST_PositiveCoordinate\"/>\n     <xsd:attribute name=\"stA\" use=\"optional\" type=\"a:ST_PositiveFixedPercentage\"/>\n     <xsd:attribute name=\"stPos\" use=\"optional\" type=\"a:ST_PositiveFixedPercentage\"/>\n     <xsd:attribute name=\"endA\" use=\"optional\" type=\"a:ST_PositiveFixedPercentage\"/>\n     <xsd:attribute name=\"endPos\" use=\"optional\" type=\"a:ST_PositiveFixedPercentage\"/>\n     <xsd:attribute name=\"dist\" use=\"optional\" type=\"a:ST_PositiveCoordinate\"/>\n     <xsd:attribute name=\"dir\" use=\"optional\" type=\"a:ST_PositiveFixedAngle\"/>\n     <xsd:attribute name=\"fadeDir\" use=\"optional\" type=\"a:ST_PositiveFixedAngle\"/>\n     <xsd:attribute name=\"sx\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"sy\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"kx\" use=\"optional\" type=\"a:ST_FixedAngle\"/>\n     <xsd:attribute name=\"ky\" use=\"optional\" type=\"a:ST_FixedAngle\"/>\n     <xsd:attribute name=\"algn\" use=\"optional\" type=\"ST_RectAlignment\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_FillTextEffect\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_TextOutlineEffect\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\"/>\n       <xsd:group ref=\"EG_LineDashProperties\" minOccurs=\"0\"/>\n       <xsd:group ref=\"EG_LineJoinProperties\" minOccurs=\"0\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"w\" use=\"optional\" type=\"a:ST_LineWidth\"/>\n     <xsd:attribute name=\"cap\" use=\"optional\" type=\"ST_LineCap\"/>\n     <xsd:attribute name=\"cmpd\" use=\"optional\" type=\"ST_CompoundLine\"/>\n     <xsd:attribute name=\"algn\" use=\"optional\" type=\"ST_PenAlignment\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_Scene3D\">\n     <xsd:sequence>\n       <xsd:element name=\"camera\" type=\"CT_Camera\"/>\n       <xsd:element name=\"lightRig\" type=\"CT_LightRig\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_Props3D\">\n     <xsd:sequence>\n       <xsd:element name=\"bevelT\" type=\"CT_Bevel\" minOccurs=\"0\"/>\n       <xsd:element name=\"bevelB\" type=\"CT_Bevel\" minOccurs=\"0\"/>\n       <xsd:element name=\"extrusionClr\" type=\"CT_Color\" minOccurs=\"0\"/>\n       <xsd:element name=\"contourClr\" type=\"CT_Color\" minOccurs=\"0\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"extrusionH\" type=\"a:ST_PositiveCoordinate\" use=\"optional\"/>\n     <xsd:attribute name=\"contourW\" type=\"a:ST_PositiveCoordinate\" use=\"optional\"/>\n     <xsd:attribute name=\"prstMaterial\" type=\"ST_PresetMaterialType\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:group name=\"EG_RPrTextEffects\">\n     <xsd:sequence>\n       <xsd:element name=\"glow\" minOccurs=\"0\" type=\"CT_Glow\"/>\n       <xsd:element name=\"shadow\" minOccurs=\"0\" type=\"CT_Shadow\"/>\n       <xsd:element name=\"reflection\" minOccurs=\"0\" type=\"CT_Reflection\"/>\n       <xsd:element name=\"textOutline\" minOccurs=\"0\" type=\"CT_TextOutlineEffect\"/>\n       <xsd:element name=\"textFill\" minOccurs=\"0\" type=\"CT_FillTextEffect\"/>\n       <xsd:element name=\"scene3d\" minOccurs=\"0\" type=\"CT_Scene3D\"/>\n       <xsd:element name=\"props3d\" minOccurs=\"0\" type=\"CT_Props3D\"/>\n     </xsd:sequence>\n   </xsd:group>\n   <xsd:simpleType name=\"ST_Ligatures\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"none\"/>\n       <xsd:enumeration value=\"standard\"/>\n       <xsd:enumeration value=\"contextual\"/>\n       <xsd:enumeration value=\"historical\"/>\n       <xsd:enumeration value=\"discretional\"/>\n       <xsd:enumeration value=\"standardContextual\"/>\n       <xsd:enumeration value=\"standardHistorical\"/>\n       <xsd:enumeration value=\"contextualHistorical\"/>\n       <xsd:enumeration value=\"standardDiscretional\"/>\n       <xsd:enumeration value=\"contextualDiscretional\"/>\n       <xsd:enumeration value=\"historicalDiscretional\"/>\n       <xsd:enumeration value=\"standardContextualHistorical\"/>\n       <xsd:enumeration value=\"standardContextualDiscretional\"/>\n       <xsd:enumeration value=\"standardHistoricalDiscretional\"/>\n       <xsd:enumeration value=\"contextualHistoricalDiscretional\"/>\n       <xsd:enumeration value=\"all\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_Ligatures\">\n     <xsd:attribute name=\"val\" type=\"ST_Ligatures\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_NumForm\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"default\"/>\n       <xsd:enumeration value=\"lining\"/>\n       <xsd:enumeration value=\"oldStyle\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_NumForm\">\n     <xsd:attribute name=\"val\" type=\"ST_NumForm\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_NumSpacing\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"default\"/>\n       <xsd:enumeration value=\"proportional\"/>\n       <xsd:enumeration value=\"tabular\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_NumSpacing\">\n     <xsd:attribute name=\"val\" type=\"ST_NumSpacing\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_StyleSet\">\n     <xsd:attribute name=\"id\" type=\"s:ST_UnsignedDecimalNumber\" use=\"required\"/>\n     <xsd:attribute name=\"val\" type=\"ST_OnOff\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_StylisticSets\">\n     <xsd:sequence minOccurs=\"0\">\n       <xsd:element name=\"styleSet\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_StyleSet\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:group name=\"EG_RPrOpenType\">\n     <xsd:sequence>\n       <xsd:element name=\"ligatures\" minOccurs=\"0\" type=\"CT_Ligatures\"/>\n       <xsd:element name=\"numForm\" minOccurs=\"0\" type=\"CT_NumForm\"/>\n       <xsd:element name=\"numSpacing\" minOccurs=\"0\" type=\"CT_NumSpacing\"/>\n       <xsd:element name=\"stylisticSets\" minOccurs=\"0\" type=\"CT_StylisticSets\"/>\n       <xsd:element name=\"cntxtAlts\" minOccurs=\"0\" type=\"CT_OnOff\"/>\n     </xsd:sequence>\n   </xsd:group>\n   <xsd:element name=\"discardImageEditingData\" type=\"CT_OnOff\"/>\n   <xsd:element name=\"defaultImageDpi\" type=\"CT_DefaultImageDpi\"/>\n   <xsd:complexType name=\"CT_DefaultImageDpi\">\n     <xsd:attribute name=\"val\" type=\"w:ST_DecimalNumber\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:element name=\"entityPicker\" type=\"w:CT_Empty\"/>\n   <xsd:complexType name=\"CT_SdtCheckboxSymbol\">\n     <xsd:attribute name=\"font\" type=\"s:ST_String\"/>\n     <xsd:attribute name=\"val\" type=\"w:ST_ShortHexNumber\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_SdtCheckbox\">\n     <xsd:sequence>\n       <xsd:element name=\"checked\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n       <xsd:element name=\"checkedState\" type=\"CT_SdtCheckboxSymbol\" minOccurs=\"0\"/>\n       <xsd:element name=\"uncheckedState\" type=\"CT_SdtCheckboxSymbol\" minOccurs=\"0\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:element name=\"checkbox\" type=\"CT_SdtCheckbox\"/>\n </xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/microsoft/wml-2012.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w12=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns=\"http://schemas.microsoft.com/office/word/2012/wordml\" targetNamespace=\"http://schemas.microsoft.com/office/word/2012/wordml\">\n   <xsd:import id=\"w12\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\" schemaLocation=\"../ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd\"/>\n   <xsd:element name=\"color\" type=\"w12:CT_Color\"/>\n   <xsd:simpleType name=\"ST_SdtAppearance\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"boundingBox\"/>\n       <xsd:enumeration value=\"tags\"/>\n       <xsd:enumeration value=\"hidden\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:element name=\"dataBinding\" type=\"w12:CT_DataBinding\"/>\n   <xsd:complexType name=\"CT_SdtAppearance\">\n     <xsd:attribute name=\"val\" type=\"ST_SdtAppearance\"/>\n   </xsd:complexType>\n   <xsd:element name=\"appearance\" type=\"CT_SdtAppearance\"/>\n   <xsd:complexType name=\"CT_CommentsEx\">\n     <xsd:sequence>\n       <xsd:element name=\"commentEx\" type=\"CT_CommentEx\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_CommentEx\">\n     <xsd:attribute name=\"paraId\" type=\"w12:ST_LongHexNumber\" use=\"required\"/>\n     <xsd:attribute name=\"paraIdParent\" type=\"w12:ST_LongHexNumber\" use=\"optional\"/>\n     <xsd:attribute name=\"done\" type=\"s:ST_OnOff\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:element name=\"commentsEx\" type=\"CT_CommentsEx\"/>\n   <xsd:complexType name=\"CT_People\">\n     <xsd:sequence>\n       <xsd:element name=\"person\" type=\"CT_Person\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_PresenceInfo\">\n     <xsd:attribute name=\"providerId\" type=\"xsd:string\" use=\"required\"/>\n     <xsd:attribute name=\"userId\" type=\"xsd:string\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_Person\">\n     <xsd:sequence>\n       <xsd:element name=\"presenceInfo\" type=\"CT_PresenceInfo\" minOccurs=\"0\" maxOccurs=\"1\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"author\" type=\"s:ST_String\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:element name=\"people\" type=\"CT_People\"/>\n   <xsd:complexType name=\"CT_SdtRepeatedSection\">\n     <xsd:sequence>\n       <xsd:element name=\"sectionTitle\" type=\"w12:CT_String\" minOccurs=\"0\"/>\n       <xsd:element name=\"doNotAllowInsertDeleteSection\" type=\"w12:CT_OnOff\" minOccurs=\"0\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_Guid\">\n     <xsd:restriction base=\"xsd:token\">\n       <xsd:pattern value=\"\\{[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}\\}\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_Guid\">\n     <xsd:attribute name=\"val\" type=\"ST_Guid\"/>\n   </xsd:complexType>\n   <xsd:element name=\"repeatingSection\" type=\"CT_SdtRepeatedSection\"/>\n   <xsd:element name=\"repeatingSectionItem\" type=\"w12:CT_Empty\"/>\n   <xsd:element name=\"chartTrackingRefBased\" type=\"w12:CT_OnOff\"/>\n   <xsd:element name=\"collapsed\" type=\"w12:CT_OnOff\"/>\n   <xsd:element name=\"docId\" type=\"CT_Guid\"/>\n   <xsd:element name=\"footnoteColumns\" type=\"w12:CT_DecimalNumber\"/>\n   <xsd:element name=\"webExtensionLinked\" type=\"w12:CT_OnOff\"/>\n   <xsd:element name=\"webExtensionCreated\" type=\"w12:CT_OnOff\"/>\n   <xsd:attribute name=\"restartNumberingAfterBreak\" type=\"s:ST_OnOff\"/>\n </xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/microsoft/wml-2018.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w12=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns=\"http://schemas.microsoft.com/office/word/2018/wordml\" targetNamespace=\"http://schemas.microsoft.com/office/word/2018/wordml\">\n   <xsd:import id=\"w12\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <xsd:complexType name=\"CT_Extension\">\n     <xsd:sequence>\n       <xsd:any processContents=\"lax\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"uri\" type=\"xsd:token\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_ExtensionList\">\n     <xsd:sequence>\n       <xsd:element name=\"ext\" type=\"CT_Extension\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n </xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/microsoft/wml-cex-2018.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\" xmlns:w16=\"http://schemas.microsoft.com/office/word/2018/wordml\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns=\"http://schemas.microsoft.com/office/word/2018/wordml/cex\" targetNamespace=\"http://schemas.microsoft.com/office/word/2018/wordml/cex\">\n   <xsd:import id=\"w16\" namespace=\"http://schemas.microsoft.com/office/word/2018/wordml\" schemaLocation=\"wml-2018.xsd\"/>\n   <xsd:import id=\"w\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <xsd:import id=\"s\" namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\" schemaLocation=\"../ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd\"/>\n   <xsd:complexType name=\"CT_CommentsExtensible\">\n     <xsd:sequence>\n       <xsd:element name=\"commentExtensible\" type=\"CT_CommentExtensible\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n       <xsd:element name=\"extLst\" type=\"w16:CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_CommentExtensible\">\n     <xsd:sequence>\n       <xsd:element name=\"extLst\" type=\"w16:CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"durableId\" type=\"w:ST_LongHexNumber\" use=\"required\"/>\n     <xsd:attribute name=\"dateUtc\" type=\"w:ST_DateTime\" use=\"optional\"/>\n     <xsd:attribute name=\"intelligentPlaceholder\" type=\"s:ST_OnOff\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:element name=\"commentsExtensible\" type=\"CT_CommentsExtensible\"/>\n </xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/microsoft/wml-cid-2016.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w12=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns=\"http://schemas.microsoft.com/office/word/2016/wordml/cid\" targetNamespace=\"http://schemas.microsoft.com/office/word/2016/wordml/cid\">\n   <xsd:import id=\"w12\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <xsd:complexType name=\"CT_CommentsIds\">\n     <xsd:sequence>\n       <xsd:element name=\"commentId\" type=\"CT_CommentId\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_CommentId\">\n     <xsd:attribute name=\"paraId\" type=\"w12:ST_LongHexNumber\" use=\"required\"/>\n     <xsd:attribute name=\"durableId\" type=\"w12:ST_LongHexNumber\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:element name=\"commentsIds\" type=\"CT_CommentsIds\"/>\n </xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w12=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns=\"http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash\" targetNamespace=\"http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash\">\n   <xsd:import id=\"w12\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <xsd:attribute name=\"storeItemChecksum\" type=\"w12:ST_String\"/>\n </xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/schemas/microsoft/wml-symex-2015.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w12=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns=\"http://schemas.microsoft.com/office/word/2015/wordml/symex\" targetNamespace=\"http://schemas.microsoft.com/office/word/2015/wordml/symex\">\n   <xsd:import id=\"w12\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <xsd:complexType name=\"CT_SymEx\">\n     <xsd:attribute name=\"font\" type=\"w12:ST_String\"/>\n     <xsd:attribute name=\"char\" type=\"w12:ST_LongHexNumber\"/>\n   </xsd:complexType>\n   <xsd:element name=\"symEx\" type=\"CT_SymEx\"/>\n </xsd:schema>\n"
  },
  {
    "path": "skills/docx/scripts/office/soffice.py",
    "content": "\"\"\"\nHelper for running LibreOffice (soffice) in environments where AF_UNIX\nsockets may be blocked (e.g., sandboxed VMs).  Detects the restriction\nat runtime and applies an LD_PRELOAD shim if needed.\n\nUsage:\n    from office.soffice import run_soffice, get_soffice_env\n\n    # Option 1 – run soffice directly\n    result = run_soffice([\"--headless\", \"--convert-to\", \"pdf\", \"input.docx\"])\n\n    # Option 2 – get env dict for your own subprocess calls\n    env = get_soffice_env()\n    subprocess.run([\"soffice\", ...], env=env)\n\"\"\"\n\nimport os\nimport socket\nimport subprocess\nimport tempfile\nfrom pathlib import Path\n\n\ndef get_soffice_env() -> dict:\n    env = os.environ.copy()\n    env[\"SAL_USE_VCLPLUGIN\"] = \"svp\"\n\n    if _needs_shim():\n        shim = _ensure_shim()\n        env[\"LD_PRELOAD\"] = str(shim)\n\n    return env\n\n\ndef run_soffice(args: list[str], **kwargs) -> subprocess.CompletedProcess:\n    env = get_soffice_env()\n    return subprocess.run([\"soffice\"] + args, env=env, **kwargs)\n\n\n\n_SHIM_SO = Path(tempfile.gettempdir()) / \"lo_socket_shim.so\"\n\n\ndef _needs_shim() -> bool:\n    try:\n        s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)\n        s.close()\n        return False\n    except OSError:\n        return True\n\n\ndef _ensure_shim() -> Path:\n    if _SHIM_SO.exists():\n        return _SHIM_SO\n\n    src = Path(tempfile.gettempdir()) / \"lo_socket_shim.c\"\n    src.write_text(_SHIM_SOURCE)\n    subprocess.run(\n        [\"gcc\", \"-shared\", \"-fPIC\", \"-o\", str(_SHIM_SO), str(src), \"-ldl\"],\n        check=True,\n        capture_output=True,\n    )\n    src.unlink()\n    return _SHIM_SO\n\n\n\n_SHIM_SOURCE = r\"\"\"\n#define _GNU_SOURCE\n#include <dlfcn.h>\n#include <errno.h>\n#include <signal.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <sys/socket.h>\n#include <unistd.h>\n\nstatic int (*real_socket)(int, int, int);\nstatic int (*real_socketpair)(int, int, int, int[2]);\nstatic int (*real_listen)(int, int);\nstatic int (*real_accept)(int, struct sockaddr *, socklen_t *);\nstatic int (*real_close)(int);\nstatic int (*real_read)(int, void *, size_t);\n\n/* Per-FD bookkeeping (FDs >= 1024 are passed through unshimmed). */\nstatic int is_shimmed[1024];\nstatic int peer_of[1024];\nstatic int wake_r[1024];            /* accept() blocks reading this */\nstatic int wake_w[1024];            /* close()  writes to this      */\nstatic int listener_fd = -1;        /* FD that received listen()    */\n\n__attribute__((constructor))\nstatic void init(void) {\n    real_socket     = dlsym(RTLD_NEXT, \"socket\");\n    real_socketpair = dlsym(RTLD_NEXT, \"socketpair\");\n    real_listen     = dlsym(RTLD_NEXT, \"listen\");\n    real_accept     = dlsym(RTLD_NEXT, \"accept\");\n    real_close      = dlsym(RTLD_NEXT, \"close\");\n    real_read       = dlsym(RTLD_NEXT, \"read\");\n    for (int i = 0; i < 1024; i++) {\n        peer_of[i] = -1;\n        wake_r[i]  = -1;\n        wake_w[i]  = -1;\n    }\n}\n\n/* ---- socket ---------------------------------------------------------- */\nint socket(int domain, int type, int protocol) {\n    if (domain == AF_UNIX) {\n        int fd = real_socket(domain, type, protocol);\n        if (fd >= 0) return fd;\n        /* socket(AF_UNIX) blocked – fall back to socketpair(). */\n        int sv[2];\n        if (real_socketpair(domain, type, protocol, sv) == 0) {\n            if (sv[0] >= 0 && sv[0] < 1024) {\n                is_shimmed[sv[0]] = 1;\n                peer_of[sv[0]]    = sv[1];\n                int wp[2];\n                if (pipe(wp) == 0) {\n                    wake_r[sv[0]] = wp[0];\n                    wake_w[sv[0]] = wp[1];\n                }\n            }\n            return sv[0];\n        }\n        errno = EPERM;\n        return -1;\n    }\n    return real_socket(domain, type, protocol);\n}\n\n/* ---- listen ---------------------------------------------------------- */\nint listen(int sockfd, int backlog) {\n    if (sockfd >= 0 && sockfd < 1024 && is_shimmed[sockfd]) {\n        listener_fd = sockfd;\n        return 0;\n    }\n    return real_listen(sockfd, backlog);\n}\n\n/* ---- accept ---------------------------------------------------------- */\nint accept(int sockfd, struct sockaddr *addr, socklen_t *addrlen) {\n    if (sockfd >= 0 && sockfd < 1024 && is_shimmed[sockfd]) {\n        /* Block until close() writes to the wake pipe. */\n        if (wake_r[sockfd] >= 0) {\n            char buf;\n            real_read(wake_r[sockfd], &buf, 1);\n        }\n        errno = ECONNABORTED;\n        return -1;\n    }\n    return real_accept(sockfd, addr, addrlen);\n}\n\n/* ---- close ----------------------------------------------------------- */\nint close(int fd) {\n    if (fd >= 0 && fd < 1024 && is_shimmed[fd]) {\n        int was_listener = (fd == listener_fd);\n        is_shimmed[fd] = 0;\n\n        if (wake_w[fd] >= 0) {              /* unblock accept() */\n            char c = 0;\n            write(wake_w[fd], &c, 1);\n            real_close(wake_w[fd]);\n            wake_w[fd] = -1;\n        }\n        if (wake_r[fd] >= 0) { real_close(wake_r[fd]); wake_r[fd]  = -1; }\n        if (peer_of[fd] >= 0) { real_close(peer_of[fd]); peer_of[fd] = -1; }\n\n        if (was_listener)\n            _exit(0);                        /* conversion done – exit */\n    }\n    return real_close(fd);\n}\n\"\"\"\n\n\n\nif __name__ == \"__main__\":\n    import sys\n    result = run_soffice(sys.argv[1:])\n    sys.exit(result.returncode)\n"
  },
  {
    "path": "skills/docx/scripts/office/unpack.py",
    "content": "\"\"\"Unpack Office files (DOCX, PPTX, XLSX) for editing.\n\nExtracts the ZIP archive, pretty-prints XML files, and optionally:\n- Merges adjacent runs with identical formatting (DOCX only)\n- Simplifies adjacent tracked changes from same author (DOCX only)\n\nUsage:\n    python unpack.py <office_file> <output_dir> [options]\n\nExamples:\n    python unpack.py document.docx unpacked/\n    python unpack.py presentation.pptx unpacked/\n    python unpack.py document.docx unpacked/ --merge-runs false\n\"\"\"\n\nimport argparse\nimport sys\nimport zipfile\nfrom pathlib import Path\n\nimport defusedxml.minidom\n\nfrom helpers.merge_runs import merge_runs as do_merge_runs\nfrom helpers.simplify_redlines import simplify_redlines as do_simplify_redlines\n\nSMART_QUOTE_REPLACEMENTS = {\n    \"\\u201c\": \"&#x201C;\",  \n    \"\\u201d\": \"&#x201D;\",  \n    \"\\u2018\": \"&#x2018;\",  \n    \"\\u2019\": \"&#x2019;\",  \n}\n\n\ndef unpack(\n    input_file: str,\n    output_directory: str,\n    merge_runs: bool = True,\n    simplify_redlines: bool = True,\n) -> tuple[None, str]:\n    input_path = Path(input_file)\n    output_path = Path(output_directory)\n    suffix = input_path.suffix.lower()\n\n    if not input_path.exists():\n        return None, f\"Error: {input_file} does not exist\"\n\n    if suffix not in {\".docx\", \".pptx\", \".xlsx\"}:\n        return None, f\"Error: {input_file} must be a .docx, .pptx, or .xlsx file\"\n\n    try:\n        output_path.mkdir(parents=True, exist_ok=True)\n\n        with zipfile.ZipFile(input_path, \"r\") as zf:\n            zf.extractall(output_path)\n\n        xml_files = list(output_path.rglob(\"*.xml\")) + list(output_path.rglob(\"*.rels\"))\n        for xml_file in xml_files:\n            _pretty_print_xml(xml_file)\n\n        message = f\"Unpacked {input_file} ({len(xml_files)} XML files)\"\n\n        if suffix == \".docx\":\n            if simplify_redlines:\n                simplify_count, _ = do_simplify_redlines(str(output_path))\n                message += f\", simplified {simplify_count} tracked changes\"\n\n            if merge_runs:\n                merge_count, _ = do_merge_runs(str(output_path))\n                message += f\", merged {merge_count} runs\"\n\n        for xml_file in xml_files:\n            _escape_smart_quotes(xml_file)\n\n        return None, message\n\n    except zipfile.BadZipFile:\n        return None, f\"Error: {input_file} is not a valid Office file\"\n    except Exception as e:\n        return None, f\"Error unpacking: {e}\"\n\n\ndef _pretty_print_xml(xml_file: Path) -> None:\n    try:\n        content = xml_file.read_text(encoding=\"utf-8\")\n        dom = defusedxml.minidom.parseString(content)\n        xml_file.write_bytes(dom.toprettyxml(indent=\"  \", encoding=\"utf-8\"))\n    except Exception:\n        pass  \n\n\ndef _escape_smart_quotes(xml_file: Path) -> None:\n    try:\n        content = xml_file.read_text(encoding=\"utf-8\")\n        for char, entity in SMART_QUOTE_REPLACEMENTS.items():\n            content = content.replace(char, entity)\n        xml_file.write_text(content, encoding=\"utf-8\")\n    except Exception:\n        pass\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser(\n        description=\"Unpack an Office file (DOCX, PPTX, XLSX) for editing\"\n    )\n    parser.add_argument(\"input_file\", help=\"Office file to unpack\")\n    parser.add_argument(\"output_directory\", help=\"Output directory\")\n    parser.add_argument(\n        \"--merge-runs\",\n        type=lambda x: x.lower() == \"true\",\n        default=True,\n        metavar=\"true|false\",\n        help=\"Merge adjacent runs with identical formatting (DOCX only, default: true)\",\n    )\n    parser.add_argument(\n        \"--simplify-redlines\",\n        type=lambda x: x.lower() == \"true\",\n        default=True,\n        metavar=\"true|false\",\n        help=\"Merge adjacent tracked changes from same author (DOCX only, default: true)\",\n    )\n    args = parser.parse_args()\n\n    _, message = unpack(\n        args.input_file,\n        args.output_directory,\n        merge_runs=args.merge_runs,\n        simplify_redlines=args.simplify_redlines,\n    )\n    print(message)\n\n    if \"Error\" in message:\n        sys.exit(1)\n"
  },
  {
    "path": "skills/docx/scripts/office/validate.py",
    "content": "\"\"\"\nCommand line tool to validate Office document XML files against XSD schemas and tracked changes.\n\nUsage:\n    python validate.py <path> [--original <original_file>] [--auto-repair] [--author NAME]\n\nThe first argument can be either:\n- An unpacked directory containing the Office document XML files\n- A packed Office file (.docx/.pptx/.xlsx) which will be unpacked to a temp directory\n\nAuto-repair fixes:\n- paraId/durableId values that exceed OOXML limits\n- Missing xml:space=\"preserve\" on w:t elements with whitespace\n\"\"\"\n\nimport argparse\nimport sys\nimport tempfile\nimport zipfile\nfrom pathlib import Path\n\nfrom validators import DOCXSchemaValidator, PPTXSchemaValidator, RedliningValidator\n\n\ndef main():\n    parser = argparse.ArgumentParser(description=\"Validate Office document XML files\")\n    parser.add_argument(\n        \"path\",\n        help=\"Path to unpacked directory or packed Office file (.docx/.pptx/.xlsx)\",\n    )\n    parser.add_argument(\n        \"--original\",\n        required=False,\n        default=None,\n        help=\"Path to original file (.docx/.pptx/.xlsx). If omitted, all XSD errors are reported and redlining validation is skipped.\",\n    )\n    parser.add_argument(\n        \"-v\",\n        \"--verbose\",\n        action=\"store_true\",\n        help=\"Enable verbose output\",\n    )\n    parser.add_argument(\n        \"--auto-repair\",\n        action=\"store_true\",\n        help=\"Automatically repair common issues (hex IDs, whitespace preservation)\",\n    )\n    parser.add_argument(\n        \"--author\",\n        default=\"Claude\",\n        help=\"Author name for redlining validation (default: Claude)\",\n    )\n    args = parser.parse_args()\n\n    path = Path(args.path)\n    assert path.exists(), f\"Error: {path} does not exist\"\n\n    original_file = None\n    if args.original:\n        original_file = Path(args.original)\n        assert original_file.is_file(), f\"Error: {original_file} is not a file\"\n        assert original_file.suffix.lower() in [\".docx\", \".pptx\", \".xlsx\"], (\n            f\"Error: {original_file} must be a .docx, .pptx, or .xlsx file\"\n        )\n\n    file_extension = (original_file or path).suffix.lower()\n    assert file_extension in [\".docx\", \".pptx\", \".xlsx\"], (\n        f\"Error: Cannot determine file type from {path}. Use --original or provide a .docx/.pptx/.xlsx file.\"\n    )\n\n    if path.is_file() and path.suffix.lower() in [\".docx\", \".pptx\", \".xlsx\"]:\n        temp_dir = tempfile.mkdtemp()\n        with zipfile.ZipFile(path, \"r\") as zf:\n            zf.extractall(temp_dir)\n        unpacked_dir = Path(temp_dir)\n    else:\n        assert path.is_dir(), f\"Error: {path} is not a directory or Office file\"\n        unpacked_dir = path\n\n    match file_extension:\n        case \".docx\":\n            validators = [\n                DOCXSchemaValidator(unpacked_dir, original_file, verbose=args.verbose),\n            ]\n            if original_file:\n                validators.append(\n                    RedliningValidator(unpacked_dir, original_file, verbose=args.verbose, author=args.author)  \n                )\n        case \".pptx\":\n            validators = [\n                PPTXSchemaValidator(unpacked_dir, original_file, verbose=args.verbose),\n            ]\n        case _:\n            print(f\"Error: Validation not supported for file type {file_extension}\")\n            sys.exit(1)\n\n    if args.auto_repair:\n        total_repairs = sum(v.repair() for v in validators)\n        if total_repairs:\n            print(f\"Auto-repaired {total_repairs} issue(s)\")\n\n    success = all(v.validate() for v in validators)\n\n    if success:\n        print(\"All validations PASSED!\")\n\n    sys.exit(0 if success else 1)\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "skills/docx/scripts/office/validators/__init__.py",
    "content": "\"\"\"\nValidation modules for Word document processing.\n\"\"\"\n\nfrom .base import BaseSchemaValidator\nfrom .docx import DOCXSchemaValidator\nfrom .pptx import PPTXSchemaValidator\nfrom .redlining import RedliningValidator\n\n__all__ = [\n    \"BaseSchemaValidator\",\n    \"DOCXSchemaValidator\",\n    \"PPTXSchemaValidator\",\n    \"RedliningValidator\",\n]\n"
  },
  {
    "path": "skills/docx/scripts/office/validators/base.py",
    "content": "\"\"\"\nBase validator with common validation logic for document files.\n\"\"\"\n\nimport re\nfrom pathlib import Path\n\nimport defusedxml.minidom\nimport lxml.etree\n\n\nclass BaseSchemaValidator:\n\n    IGNORED_VALIDATION_ERRORS = [\n        \"hyphenationZone\",\n        \"purl.org/dc/terms\",\n    ]\n\n    UNIQUE_ID_REQUIREMENTS = {\n        \"comment\": (\"id\", \"file\"),  \n        \"commentrangestart\": (\"id\", \"file\"),  \n        \"commentrangeend\": (\"id\", \"file\"),  \n        \"bookmarkstart\": (\"id\", \"file\"),  \n        \"bookmarkend\": (\"id\", \"file\"),  \n        \"sldid\": (\"id\", \"file\"),  \n        \"sldmasterid\": (\"id\", \"global\"),  \n        \"sldlayoutid\": (\"id\", \"global\"),  \n        \"cm\": (\"authorid\", \"file\"),  \n        \"sheet\": (\"sheetid\", \"file\"),  \n        \"definedname\": (\"id\", \"file\"),  \n        \"cxnsp\": (\"id\", \"file\"),  \n        \"sp\": (\"id\", \"file\"),  \n        \"pic\": (\"id\", \"file\"),  \n        \"grpsp\": (\"id\", \"file\"),  \n    }\n\n    EXCLUDED_ID_CONTAINERS = {\n        \"sectionlst\",  \n    }\n\n    ELEMENT_RELATIONSHIP_TYPES = {}\n\n    SCHEMA_MAPPINGS = {\n        \"word\": \"ISO-IEC29500-4_2016/wml.xsd\",  \n        \"ppt\": \"ISO-IEC29500-4_2016/pml.xsd\",  \n        \"xl\": \"ISO-IEC29500-4_2016/sml.xsd\",  \n        \"[Content_Types].xml\": \"ecma/fouth-edition/opc-contentTypes.xsd\",\n        \"app.xml\": \"ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd\",\n        \"core.xml\": \"ecma/fouth-edition/opc-coreProperties.xsd\",\n        \"custom.xml\": \"ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd\",\n        \".rels\": \"ecma/fouth-edition/opc-relationships.xsd\",\n        \"people.xml\": \"microsoft/wml-2012.xsd\",\n        \"commentsIds.xml\": \"microsoft/wml-cid-2016.xsd\",\n        \"commentsExtensible.xml\": \"microsoft/wml-cex-2018.xsd\",\n        \"commentsExtended.xml\": \"microsoft/wml-2012.xsd\",\n        \"chart\": \"ISO-IEC29500-4_2016/dml-chart.xsd\",\n        \"theme\": \"ISO-IEC29500-4_2016/dml-main.xsd\",\n        \"drawing\": \"ISO-IEC29500-4_2016/dml-main.xsd\",\n    }\n\n    MC_NAMESPACE = \"http://schemas.openxmlformats.org/markup-compatibility/2006\"\n    XML_NAMESPACE = \"http://www.w3.org/XML/1998/namespace\"\n\n    PACKAGE_RELATIONSHIPS_NAMESPACE = (\n        \"http://schemas.openxmlformats.org/package/2006/relationships\"\n    )\n    OFFICE_RELATIONSHIPS_NAMESPACE = (\n        \"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    )\n    CONTENT_TYPES_NAMESPACE = (\n        \"http://schemas.openxmlformats.org/package/2006/content-types\"\n    )\n\n    MAIN_CONTENT_FOLDERS = {\"word\", \"ppt\", \"xl\"}\n\n    OOXML_NAMESPACES = {\n        \"http://schemas.openxmlformats.org/officeDocument/2006/math\",\n        \"http://schemas.openxmlformats.org/officeDocument/2006/relationships\",\n        \"http://schemas.openxmlformats.org/schemaLibrary/2006/main\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/main\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/chart\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/chartDrawing\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/diagram\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/picture\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\",\n        \"http://schemas.openxmlformats.org/wordprocessingml/2006/main\",\n        \"http://schemas.openxmlformats.org/presentationml/2006/main\",\n        \"http://schemas.openxmlformats.org/spreadsheetml/2006/main\",\n        \"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\",\n        \"http://www.w3.org/XML/1998/namespace\",\n    }\n\n    def __init__(self, unpacked_dir, original_file=None, verbose=False):\n        self.unpacked_dir = Path(unpacked_dir).resolve()\n        self.original_file = Path(original_file) if original_file else None\n        self.verbose = verbose\n\n        self.schemas_dir = Path(__file__).parent.parent / \"schemas\"\n\n        patterns = [\"*.xml\", \"*.rels\"]\n        self.xml_files = [\n            f for pattern in patterns for f in self.unpacked_dir.rglob(pattern)\n        ]\n\n        if not self.xml_files:\n            print(f\"Warning: No XML files found in {self.unpacked_dir}\")\n\n    def validate(self):\n        raise NotImplementedError(\"Subclasses must implement the validate method\")\n\n    def repair(self) -> int:\n        return self.repair_whitespace_preservation()\n\n    def repair_whitespace_preservation(self) -> int:\n        repairs = 0\n\n        for xml_file in self.xml_files:\n            try:\n                content = xml_file.read_text(encoding=\"utf-8\")\n                dom = defusedxml.minidom.parseString(content)\n                modified = False\n\n                for elem in dom.getElementsByTagName(\"*\"):\n                    if elem.tagName.endswith(\":t\") and elem.firstChild:\n                        text = elem.firstChild.nodeValue\n                        if text and (text.startswith((' ', '\\t')) or text.endswith((' ', '\\t'))):\n                            if elem.getAttribute(\"xml:space\") != \"preserve\":\n                                elem.setAttribute(\"xml:space\", \"preserve\")\n                                text_preview = repr(text[:30]) + \"...\" if len(text) > 30 else repr(text)\n                                print(f\"  Repaired: {xml_file.name}: Added xml:space='preserve' to {elem.tagName}: {text_preview}\")\n                                repairs += 1\n                                modified = True\n\n                if modified:\n                    xml_file.write_bytes(dom.toxml(encoding=\"UTF-8\"))\n\n            except Exception:\n                pass\n\n        return repairs\n\n    def validate_xml(self):\n        errors = []\n\n        for xml_file in self.xml_files:\n            try:\n                lxml.etree.parse(str(xml_file))\n            except lxml.etree.XMLSyntaxError as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                    f\"Line {e.lineno}: {e.msg}\"\n                )\n            except Exception as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                    f\"Unexpected error: {str(e)}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} XML violations:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All XML files are well-formed\")\n            return True\n\n    def validate_namespaces(self):\n        errors = []\n\n        for xml_file in self.xml_files:\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n                declared = set(root.nsmap.keys()) - {None}  \n\n                for attr_val in [\n                    v for k, v in root.attrib.items() if k.endswith(\"Ignorable\")\n                ]:\n                    undeclared = set(attr_val.split()) - declared\n                    errors.extend(\n                        f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                        f\"Namespace '{ns}' in Ignorable but not declared\"\n                        for ns in undeclared\n                    )\n            except lxml.etree.XMLSyntaxError:\n                continue\n\n        if errors:\n            print(f\"FAILED - {len(errors)} namespace issues:\")\n            for error in errors:\n                print(error)\n            return False\n        if self.verbose:\n            print(\"PASSED - All namespace prefixes properly declared\")\n        return True\n\n    def validate_unique_ids(self):\n        errors = []\n        global_ids = {}  \n\n        for xml_file in self.xml_files:\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n                file_ids = {}  \n\n                mc_elements = root.xpath(\n                    \".//mc:AlternateContent\", namespaces={\"mc\": self.MC_NAMESPACE}\n                )\n                for elem in mc_elements:\n                    elem.getparent().remove(elem)\n\n                for elem in root.iter():\n                    tag = (\n                        elem.tag.split(\"}\")[-1].lower()\n                        if \"}\" in elem.tag\n                        else elem.tag.lower()\n                    )\n\n                    if tag in self.UNIQUE_ID_REQUIREMENTS:\n                        in_excluded_container = any(\n                            ancestor.tag.split(\"}\")[-1].lower() in self.EXCLUDED_ID_CONTAINERS\n                            for ancestor in elem.iterancestors()\n                        )\n                        if in_excluded_container:\n                            continue\n\n                        attr_name, scope = self.UNIQUE_ID_REQUIREMENTS[tag]\n\n                        id_value = None\n                        for attr, value in elem.attrib.items():\n                            attr_local = (\n                                attr.split(\"}\")[-1].lower()\n                                if \"}\" in attr\n                                else attr.lower()\n                            )\n                            if attr_local == attr_name:\n                                id_value = value\n                                break\n\n                        if id_value is not None:\n                            if scope == \"global\":\n                                if id_value in global_ids:\n                                    prev_file, prev_line, prev_tag = global_ids[\n                                        id_value\n                                    ]\n                                    errors.append(\n                                        f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                                        f\"Line {elem.sourceline}: Global ID '{id_value}' in <{tag}> \"\n                                        f\"already used in {prev_file} at line {prev_line} in <{prev_tag}>\"\n                                    )\n                                else:\n                                    global_ids[id_value] = (\n                                        xml_file.relative_to(self.unpacked_dir),\n                                        elem.sourceline,\n                                        tag,\n                                    )\n                            elif scope == \"file\":\n                                key = (tag, attr_name)\n                                if key not in file_ids:\n                                    file_ids[key] = {}\n\n                                if id_value in file_ids[key]:\n                                    prev_line = file_ids[key][id_value]\n                                    errors.append(\n                                        f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                                        f\"Line {elem.sourceline}: Duplicate {attr_name}='{id_value}' in <{tag}> \"\n                                        f\"(first occurrence at line {prev_line})\"\n                                    )\n                                else:\n                                    file_ids[key][id_value] = elem.sourceline\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} ID uniqueness violations:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All required IDs are unique\")\n            return True\n\n    def validate_file_references(self):\n        errors = []\n\n        rels_files = list(self.unpacked_dir.rglob(\"*.rels\"))\n\n        if not rels_files:\n            if self.verbose:\n                print(\"PASSED - No .rels files found\")\n            return True\n\n        all_files = []\n        for file_path in self.unpacked_dir.rglob(\"*\"):\n            if (\n                file_path.is_file()\n                and file_path.name != \"[Content_Types].xml\"\n                and not file_path.name.endswith(\".rels\")\n            ):  \n                all_files.append(file_path.resolve())\n\n        all_referenced_files = set()\n\n        if self.verbose:\n            print(\n                f\"Found {len(rels_files)} .rels files and {len(all_files)} target files\"\n            )\n\n        for rels_file in rels_files:\n            try:\n                rels_root = lxml.etree.parse(str(rels_file)).getroot()\n\n                rels_dir = rels_file.parent\n\n                referenced_files = set()\n                broken_refs = []\n\n                for rel in rels_root.findall(\n                    \".//ns:Relationship\",\n                    namespaces={\"ns\": self.PACKAGE_RELATIONSHIPS_NAMESPACE},\n                ):\n                    target = rel.get(\"Target\")\n                    if target and not target.startswith(\n                        (\"http\", \"mailto:\")\n                    ):  \n                        if target.startswith(\"/\"):\n                            target_path = self.unpacked_dir / target.lstrip(\"/\")\n                        elif rels_file.name == \".rels\":\n                            target_path = self.unpacked_dir / target\n                        else:\n                            base_dir = rels_dir.parent\n                            target_path = base_dir / target\n\n                        try:\n                            target_path = target_path.resolve()\n                            if target_path.exists() and target_path.is_file():\n                                referenced_files.add(target_path)\n                                all_referenced_files.add(target_path)\n                            else:\n                                broken_refs.append((target, rel.sourceline))\n                        except (OSError, ValueError):\n                            broken_refs.append((target, rel.sourceline))\n\n                if broken_refs:\n                    rel_path = rels_file.relative_to(self.unpacked_dir)\n                    for broken_ref, line_num in broken_refs:\n                        errors.append(\n                            f\"  {rel_path}: Line {line_num}: Broken reference to {broken_ref}\"\n                        )\n\n            except Exception as e:\n                rel_path = rels_file.relative_to(self.unpacked_dir)\n                errors.append(f\"  Error parsing {rel_path}: {e}\")\n\n        unreferenced_files = set(all_files) - all_referenced_files\n\n        if unreferenced_files:\n            for unref_file in sorted(unreferenced_files):\n                unref_rel_path = unref_file.relative_to(self.unpacked_dir)\n                errors.append(f\"  Unreferenced file: {unref_rel_path}\")\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} relationship validation errors:\")\n            for error in errors:\n                print(error)\n            print(\n                \"CRITICAL: These errors will cause the document to appear corrupt. \"\n                + \"Broken references MUST be fixed, \"\n                + \"and unreferenced files MUST be referenced or removed.\"\n            )\n            return False\n        else:\n            if self.verbose:\n                print(\n                    \"PASSED - All references are valid and all files are properly referenced\"\n                )\n            return True\n\n    def validate_all_relationship_ids(self):\n        import lxml.etree\n\n        errors = []\n\n        for xml_file in self.xml_files:\n            if xml_file.suffix == \".rels\":\n                continue\n\n            rels_dir = xml_file.parent / \"_rels\"\n            rels_file = rels_dir / f\"{xml_file.name}.rels\"\n\n            if not rels_file.exists():\n                continue\n\n            try:\n                rels_root = lxml.etree.parse(str(rels_file)).getroot()\n                rid_to_type = {}\n\n                for rel in rels_root.findall(\n                    f\".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship\"\n                ):\n                    rid = rel.get(\"Id\")\n                    rel_type = rel.get(\"Type\", \"\")\n                    if rid:\n                        if rid in rid_to_type:\n                            rels_rel_path = rels_file.relative_to(self.unpacked_dir)\n                            errors.append(\n                                f\"  {rels_rel_path}: Line {rel.sourceline}: \"\n                                f\"Duplicate relationship ID '{rid}' (IDs must be unique)\"\n                            )\n                        type_name = (\n                            rel_type.split(\"/\")[-1] if \"/\" in rel_type else rel_type\n                        )\n                        rid_to_type[rid] = type_name\n\n                xml_root = lxml.etree.parse(str(xml_file)).getroot()\n\n                r_ns = self.OFFICE_RELATIONSHIPS_NAMESPACE\n                rid_attrs_to_check = [\"id\", \"embed\", \"link\"]\n                for elem in xml_root.iter():\n                    for attr_name in rid_attrs_to_check:\n                        rid_attr = elem.get(f\"{{{r_ns}}}{attr_name}\")\n                        if not rid_attr:\n                            continue\n                        xml_rel_path = xml_file.relative_to(self.unpacked_dir)\n                        elem_name = (\n                            elem.tag.split(\"}\")[-1] if \"}\" in elem.tag else elem.tag\n                        )\n\n                        if rid_attr not in rid_to_type:\n                            errors.append(\n                                f\"  {xml_rel_path}: Line {elem.sourceline}: \"\n                                f\"<{elem_name}> r:{attr_name} references non-existent relationship '{rid_attr}' \"\n                                f\"(valid IDs: {', '.join(sorted(rid_to_type.keys())[:5])}{'...' if len(rid_to_type) > 5 else ''})\"\n                            )\n                        elif attr_name == \"id\" and self.ELEMENT_RELATIONSHIP_TYPES:\n                            expected_type = self._get_expected_relationship_type(\n                                elem_name\n                            )\n                            if expected_type:\n                                actual_type = rid_to_type[rid_attr]\n                                if expected_type not in actual_type.lower():\n                                    errors.append(\n                                        f\"  {xml_rel_path}: Line {elem.sourceline}: \"\n                                        f\"<{elem_name}> references '{rid_attr}' which points to '{actual_type}' \"\n                                        f\"but should point to a '{expected_type}' relationship\"\n                                    )\n\n            except Exception as e:\n                xml_rel_path = xml_file.relative_to(self.unpacked_dir)\n                errors.append(f\"  Error processing {xml_rel_path}: {e}\")\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} relationship ID reference errors:\")\n            for error in errors:\n                print(error)\n            print(\"\\nThese ID mismatches will cause the document to appear corrupt!\")\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All relationship ID references are valid\")\n            return True\n\n    def _get_expected_relationship_type(self, element_name):\n        elem_lower = element_name.lower()\n\n        if elem_lower in self.ELEMENT_RELATIONSHIP_TYPES:\n            return self.ELEMENT_RELATIONSHIP_TYPES[elem_lower]\n\n        if elem_lower.endswith(\"id\") and len(elem_lower) > 2:\n            prefix = elem_lower[:-2]  \n            if prefix.endswith(\"master\"):\n                return prefix.lower()\n            elif prefix.endswith(\"layout\"):\n                return prefix.lower()\n            else:\n                if prefix == \"sld\":\n                    return \"slide\"\n                return prefix.lower()\n\n        if elem_lower.endswith(\"reference\") and len(elem_lower) > 9:\n            prefix = elem_lower[:-9]  \n            return prefix.lower()\n\n        return None\n\n    def validate_content_types(self):\n        errors = []\n\n        content_types_file = self.unpacked_dir / \"[Content_Types].xml\"\n        if not content_types_file.exists():\n            print(\"FAILED - [Content_Types].xml file not found\")\n            return False\n\n        try:\n            root = lxml.etree.parse(str(content_types_file)).getroot()\n            declared_parts = set()\n            declared_extensions = set()\n\n            for override in root.findall(\n                f\".//{{{self.CONTENT_TYPES_NAMESPACE}}}Override\"\n            ):\n                part_name = override.get(\"PartName\")\n                if part_name is not None:\n                    declared_parts.add(part_name.lstrip(\"/\"))\n\n            for default in root.findall(\n                f\".//{{{self.CONTENT_TYPES_NAMESPACE}}}Default\"\n            ):\n                extension = default.get(\"Extension\")\n                if extension is not None:\n                    declared_extensions.add(extension.lower())\n\n            declarable_roots = {\n                \"sld\",\n                \"sldLayout\",\n                \"sldMaster\",\n                \"presentation\",  \n                \"document\",  \n                \"workbook\",\n                \"worksheet\",  \n                \"theme\",  \n            }\n\n            media_extensions = {\n                \"png\": \"image/png\",\n                \"jpg\": \"image/jpeg\",\n                \"jpeg\": \"image/jpeg\",\n                \"gif\": \"image/gif\",\n                \"bmp\": \"image/bmp\",\n                \"tiff\": \"image/tiff\",\n                \"wmf\": \"image/x-wmf\",\n                \"emf\": \"image/x-emf\",\n            }\n\n            all_files = list(self.unpacked_dir.rglob(\"*\"))\n            all_files = [f for f in all_files if f.is_file()]\n\n            for xml_file in self.xml_files:\n                path_str = str(xml_file.relative_to(self.unpacked_dir)).replace(\n                    \"\\\\\", \"/\"\n                )\n\n                if any(\n                    skip in path_str\n                    for skip in [\".rels\", \"[Content_Types]\", \"docProps/\", \"_rels/\"]\n                ):\n                    continue\n\n                try:\n                    root_tag = lxml.etree.parse(str(xml_file)).getroot().tag\n                    root_name = root_tag.split(\"}\")[-1] if \"}\" in root_tag else root_tag\n\n                    if root_name in declarable_roots and path_str not in declared_parts:\n                        errors.append(\n                            f\"  {path_str}: File with <{root_name}> root not declared in [Content_Types].xml\"\n                        )\n\n                except Exception:\n                    continue  \n\n            for file_path in all_files:\n                if file_path.suffix.lower() in {\".xml\", \".rels\"}:\n                    continue\n                if file_path.name == \"[Content_Types].xml\":\n                    continue\n                if \"_rels\" in file_path.parts or \"docProps\" in file_path.parts:\n                    continue\n\n                extension = file_path.suffix.lstrip(\".\").lower()\n                if extension and extension not in declared_extensions:\n                    if extension in media_extensions:\n                        relative_path = file_path.relative_to(self.unpacked_dir)\n                        errors.append(\n                            f'  {relative_path}: File with extension \\'{extension}\\' not declared in [Content_Types].xml - should add: <Default Extension=\"{extension}\" ContentType=\"{media_extensions[extension]}\"/>'\n                        )\n\n        except Exception as e:\n            errors.append(f\"  Error parsing [Content_Types].xml: {e}\")\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} content type declaration errors:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\n                    \"PASSED - All content files are properly declared in [Content_Types].xml\"\n                )\n            return True\n\n    def validate_file_against_xsd(self, xml_file, verbose=False):\n        xml_file = Path(xml_file).resolve()\n        unpacked_dir = self.unpacked_dir.resolve()\n\n        is_valid, current_errors = self._validate_single_file_xsd(\n            xml_file, unpacked_dir\n        )\n\n        if is_valid is None:\n            return None, set()  \n        elif is_valid:\n            return True, set()  \n\n        original_errors = self._get_original_file_errors(xml_file)\n\n        assert current_errors is not None\n        new_errors = current_errors - original_errors\n\n        new_errors = {\n            e for e in new_errors\n            if not any(pattern in e for pattern in self.IGNORED_VALIDATION_ERRORS)\n        }\n\n        if new_errors:\n            if verbose:\n                relative_path = xml_file.relative_to(unpacked_dir)\n                print(f\"FAILED - {relative_path}: {len(new_errors)} new error(s)\")\n                for error in list(new_errors)[:3]:\n                    truncated = error[:250] + \"...\" if len(error) > 250 else error\n                    print(f\"  - {truncated}\")\n            return False, new_errors\n        else:\n            if verbose:\n                print(\n                    f\"PASSED - No new errors (original had {len(current_errors)} errors)\"\n                )\n            return True, set()\n\n    def validate_against_xsd(self):\n        new_errors = []\n        original_error_count = 0\n        valid_count = 0\n        skipped_count = 0\n\n        for xml_file in self.xml_files:\n            relative_path = str(xml_file.relative_to(self.unpacked_dir))\n            is_valid, new_file_errors = self.validate_file_against_xsd(\n                xml_file, verbose=False\n            )\n\n            if is_valid is None:\n                skipped_count += 1\n                continue\n            elif is_valid and not new_file_errors:\n                valid_count += 1\n                continue\n            elif is_valid:\n                original_error_count += 1\n                valid_count += 1\n                continue\n\n            new_errors.append(f\"  {relative_path}: {len(new_file_errors)} new error(s)\")\n            for error in list(new_file_errors)[:3]:  \n                new_errors.append(\n                    f\"    - {error[:250]}...\" if len(error) > 250 else f\"    - {error}\"\n                )\n\n        if self.verbose:\n            print(f\"Validated {len(self.xml_files)} files:\")\n            print(f\"  - Valid: {valid_count}\")\n            print(f\"  - Skipped (no schema): {skipped_count}\")\n            if original_error_count:\n                print(f\"  - With original errors (ignored): {original_error_count}\")\n            print(\n                f\"  - With NEW errors: {len(new_errors) > 0 and len([e for e in new_errors if not e.startswith('    ')]) or 0}\"\n            )\n\n        if new_errors:\n            print(\"\\nFAILED - Found NEW validation errors:\")\n            for error in new_errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"\\nPASSED - No new XSD validation errors introduced\")\n            return True\n\n    def _get_schema_path(self, xml_file):\n        if xml_file.name in self.SCHEMA_MAPPINGS:\n            return self.schemas_dir / self.SCHEMA_MAPPINGS[xml_file.name]\n\n        if xml_file.suffix == \".rels\":\n            return self.schemas_dir / self.SCHEMA_MAPPINGS[\".rels\"]\n\n        if \"charts/\" in str(xml_file) and xml_file.name.startswith(\"chart\"):\n            return self.schemas_dir / self.SCHEMA_MAPPINGS[\"chart\"]\n\n        if \"theme/\" in str(xml_file) and xml_file.name.startswith(\"theme\"):\n            return self.schemas_dir / self.SCHEMA_MAPPINGS[\"theme\"]\n\n        if xml_file.parent.name in self.MAIN_CONTENT_FOLDERS:\n            return self.schemas_dir / self.SCHEMA_MAPPINGS[xml_file.parent.name]\n\n        return None\n\n    def _clean_ignorable_namespaces(self, xml_doc):\n        xml_string = lxml.etree.tostring(xml_doc, encoding=\"unicode\")\n        xml_copy = lxml.etree.fromstring(xml_string)\n\n        for elem in xml_copy.iter():\n            attrs_to_remove = []\n\n            for attr in elem.attrib:\n                if \"{\" in attr:\n                    ns = attr.split(\"}\")[0][1:]\n                    if ns not in self.OOXML_NAMESPACES:\n                        attrs_to_remove.append(attr)\n\n            for attr in attrs_to_remove:\n                del elem.attrib[attr]\n\n        self._remove_ignorable_elements(xml_copy)\n\n        return lxml.etree.ElementTree(xml_copy)\n\n    def _remove_ignorable_elements(self, root):\n        elements_to_remove = []\n\n        for elem in list(root):\n            if not hasattr(elem, \"tag\") or callable(elem.tag):\n                continue\n\n            tag_str = str(elem.tag)\n            if tag_str.startswith(\"{\"):\n                ns = tag_str.split(\"}\")[0][1:]\n                if ns not in self.OOXML_NAMESPACES:\n                    elements_to_remove.append(elem)\n                    continue\n\n            self._remove_ignorable_elements(elem)\n\n        for elem in elements_to_remove:\n            root.remove(elem)\n\n    def _preprocess_for_mc_ignorable(self, xml_doc):\n        root = xml_doc.getroot()\n\n        if f\"{{{self.MC_NAMESPACE}}}Ignorable\" in root.attrib:\n            del root.attrib[f\"{{{self.MC_NAMESPACE}}}Ignorable\"]\n\n        return xml_doc\n\n    def _validate_single_file_xsd(self, xml_file, base_path):\n        schema_path = self._get_schema_path(xml_file)\n        if not schema_path:\n            return None, None  \n\n        try:\n            with open(schema_path, \"rb\") as xsd_file:\n                parser = lxml.etree.XMLParser()\n                xsd_doc = lxml.etree.parse(\n                    xsd_file, parser=parser, base_url=str(schema_path)\n                )\n                schema = lxml.etree.XMLSchema(xsd_doc)\n\n            with open(xml_file, \"r\") as f:\n                xml_doc = lxml.etree.parse(f)\n\n            xml_doc, _ = self._remove_template_tags_from_text_nodes(xml_doc)\n            xml_doc = self._preprocess_for_mc_ignorable(xml_doc)\n\n            relative_path = xml_file.relative_to(base_path)\n            if (\n                relative_path.parts\n                and relative_path.parts[0] in self.MAIN_CONTENT_FOLDERS\n            ):\n                xml_doc = self._clean_ignorable_namespaces(xml_doc)\n\n            if schema.validate(xml_doc):\n                return True, set()\n            else:\n                errors = set()\n                for error in schema.error_log:\n                    errors.add(error.message)\n                return False, errors\n\n        except Exception as e:\n            return False, {str(e)}\n\n    def _get_original_file_errors(self, xml_file):\n        if self.original_file is None:\n            return set()\n\n        import tempfile\n        import zipfile\n\n        xml_file = Path(xml_file).resolve()\n        unpacked_dir = self.unpacked_dir.resolve()\n        relative_path = xml_file.relative_to(unpacked_dir)\n\n        with tempfile.TemporaryDirectory() as temp_dir:\n            temp_path = Path(temp_dir)\n\n            with zipfile.ZipFile(self.original_file, \"r\") as zip_ref:\n                zip_ref.extractall(temp_path)\n\n            original_xml_file = temp_path / relative_path\n\n            if not original_xml_file.exists():\n                return set()\n\n            is_valid, errors = self._validate_single_file_xsd(\n                original_xml_file, temp_path\n            )\n            return errors if errors else set()\n\n    def _remove_template_tags_from_text_nodes(self, xml_doc):\n        warnings = []\n        template_pattern = re.compile(r\"\\{\\{[^}]*\\}\\}\")\n\n        xml_string = lxml.etree.tostring(xml_doc, encoding=\"unicode\")\n        xml_copy = lxml.etree.fromstring(xml_string)\n\n        def process_text_content(text, content_type):\n            if not text:\n                return text\n            matches = list(template_pattern.finditer(text))\n            if matches:\n                for match in matches:\n                    warnings.append(\n                        f\"Found template tag in {content_type}: {match.group()}\"\n                    )\n                return template_pattern.sub(\"\", text)\n            return text\n\n        for elem in xml_copy.iter():\n            if not hasattr(elem, \"tag\") or callable(elem.tag):\n                continue\n            tag_str = str(elem.tag)\n            if tag_str.endswith(\"}t\") or tag_str == \"t\":\n                continue\n\n            elem.text = process_text_content(elem.text, \"text content\")\n            elem.tail = process_text_content(elem.tail, \"tail content\")\n\n        return lxml.etree.ElementTree(xml_copy), warnings\n\n\nif __name__ == \"__main__\":\n    raise RuntimeError(\"This module should not be run directly.\")\n"
  },
  {
    "path": "skills/docx/scripts/office/validators/docx.py",
    "content": "\"\"\"\nValidator for Word document XML files against XSD schemas.\n\"\"\"\n\nimport random\nimport re\nimport tempfile\nimport zipfile\n\nimport defusedxml.minidom\nimport lxml.etree\n\nfrom .base import BaseSchemaValidator\n\n\nclass DOCXSchemaValidator(BaseSchemaValidator):\n\n    WORD_2006_NAMESPACE = \"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n    W14_NAMESPACE = \"http://schemas.microsoft.com/office/word/2010/wordml\"\n    W16CID_NAMESPACE = \"http://schemas.microsoft.com/office/word/2016/wordml/cid\"\n\n    ELEMENT_RELATIONSHIP_TYPES = {}\n\n    def validate(self):\n        if not self.validate_xml():\n            return False\n\n        all_valid = True\n        if not self.validate_namespaces():\n            all_valid = False\n\n        if not self.validate_unique_ids():\n            all_valid = False\n\n        if not self.validate_file_references():\n            all_valid = False\n\n        if not self.validate_content_types():\n            all_valid = False\n\n        if not self.validate_against_xsd():\n            all_valid = False\n\n        if not self.validate_whitespace_preservation():\n            all_valid = False\n\n        if not self.validate_deletions():\n            all_valid = False\n\n        if not self.validate_insertions():\n            all_valid = False\n\n        if not self.validate_all_relationship_ids():\n            all_valid = False\n\n        if not self.validate_id_constraints():\n            all_valid = False\n\n        if not self.validate_comment_markers():\n            all_valid = False\n\n        self.compare_paragraph_counts()\n\n        return all_valid\n\n    def validate_whitespace_preservation(self):\n        errors = []\n\n        for xml_file in self.xml_files:\n            if xml_file.name != \"document.xml\":\n                continue\n\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n\n                for elem in root.iter(f\"{{{self.WORD_2006_NAMESPACE}}}t\"):\n                    if elem.text:\n                        text = elem.text\n                        if re.search(r\"^[ \\t\\n\\r]\", text) or re.search(\n                            r\"[ \\t\\n\\r]$\", text\n                        ):\n                            xml_space_attr = f\"{{{self.XML_NAMESPACE}}}space\"\n                            if (\n                                xml_space_attr not in elem.attrib\n                                or elem.attrib[xml_space_attr] != \"preserve\"\n                            ):\n                                text_preview = (\n                                    repr(text)[:50] + \"...\"\n                                    if len(repr(text)) > 50\n                                    else repr(text)\n                                )\n                                errors.append(\n                                    f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                                    f\"Line {elem.sourceline}: w:t element with whitespace missing xml:space='preserve': {text_preview}\"\n                                )\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} whitespace preservation violations:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All whitespace is properly preserved\")\n            return True\n\n    def validate_deletions(self):\n        errors = []\n\n        for xml_file in self.xml_files:\n            if xml_file.name != \"document.xml\":\n                continue\n\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n                namespaces = {\"w\": self.WORD_2006_NAMESPACE}\n\n                for t_elem in root.xpath(\".//w:del//w:t\", namespaces=namespaces):\n                    if t_elem.text:\n                        text_preview = (\n                            repr(t_elem.text)[:50] + \"...\"\n                            if len(repr(t_elem.text)) > 50\n                            else repr(t_elem.text)\n                        )\n                        errors.append(\n                            f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                            f\"Line {t_elem.sourceline}: <w:t> found within <w:del>: {text_preview}\"\n                        )\n\n                for instr_elem in root.xpath(\n                    \".//w:del//w:instrText\", namespaces=namespaces\n                ):\n                    text_preview = (\n                        repr(instr_elem.text or \"\")[:50] + \"...\"\n                        if len(repr(instr_elem.text or \"\")) > 50\n                        else repr(instr_elem.text or \"\")\n                    )\n                    errors.append(\n                        f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                        f\"Line {instr_elem.sourceline}: <w:instrText> found within <w:del> (use <w:delInstrText>): {text_preview}\"\n                    )\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} deletion validation violations:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - No w:t elements found within w:del elements\")\n            return True\n\n    def count_paragraphs_in_unpacked(self):\n        count = 0\n\n        for xml_file in self.xml_files:\n            if xml_file.name != \"document.xml\":\n                continue\n\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n                paragraphs = root.findall(f\".//{{{self.WORD_2006_NAMESPACE}}}p\")\n                count = len(paragraphs)\n            except Exception as e:\n                print(f\"Error counting paragraphs in unpacked document: {e}\")\n\n        return count\n\n    def count_paragraphs_in_original(self):\n        original = self.original_file\n        if original is None:\n            return 0\n\n        count = 0\n\n        try:\n            with tempfile.TemporaryDirectory() as temp_dir:\n                with zipfile.ZipFile(original, \"r\") as zip_ref:\n                    zip_ref.extractall(temp_dir)\n\n                doc_xml_path = temp_dir + \"/word/document.xml\"\n                root = lxml.etree.parse(doc_xml_path).getroot()\n\n                paragraphs = root.findall(f\".//{{{self.WORD_2006_NAMESPACE}}}p\")\n                count = len(paragraphs)\n\n        except Exception as e:\n            print(f\"Error counting paragraphs in original document: {e}\")\n\n        return count\n\n    def validate_insertions(self):\n        errors = []\n\n        for xml_file in self.xml_files:\n            if xml_file.name != \"document.xml\":\n                continue\n\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n                namespaces = {\"w\": self.WORD_2006_NAMESPACE}\n\n                invalid_elements = root.xpath(\n                    \".//w:ins//w:delText[not(ancestor::w:del)]\", namespaces=namespaces\n                )\n\n                for elem in invalid_elements:\n                    text_preview = (\n                        repr(elem.text or \"\")[:50] + \"...\"\n                        if len(repr(elem.text or \"\")) > 50\n                        else repr(elem.text or \"\")\n                    )\n                    errors.append(\n                        f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                        f\"Line {elem.sourceline}: <w:delText> within <w:ins>: {text_preview}\"\n                    )\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} insertion validation violations:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - No w:delText elements within w:ins elements\")\n            return True\n\n    def compare_paragraph_counts(self):\n        original_count = self.count_paragraphs_in_original()\n        new_count = self.count_paragraphs_in_unpacked()\n\n        diff = new_count - original_count\n        diff_str = f\"+{diff}\" if diff > 0 else str(diff)\n        print(f\"\\nParagraphs: {original_count} → {new_count} ({diff_str})\")\n\n    def _parse_id_value(self, val: str, base: int = 16) -> int:\n        return int(val, base)\n\n    def validate_id_constraints(self):\n        errors = []\n        para_id_attr = f\"{{{self.W14_NAMESPACE}}}paraId\"\n        durable_id_attr = f\"{{{self.W16CID_NAMESPACE}}}durableId\"\n\n        for xml_file in self.xml_files:\n            try:\n                for elem in lxml.etree.parse(str(xml_file)).iter():\n                    if val := elem.get(para_id_attr):\n                        if self._parse_id_value(val, base=16) >= 0x80000000:\n                            errors.append(\n                                f\"  {xml_file.name}:{elem.sourceline}: paraId={val} >= 0x80000000\"\n                            )\n\n                    if val := elem.get(durable_id_attr):\n                        if xml_file.name == \"numbering.xml\":\n                            try:\n                                if self._parse_id_value(val, base=10) >= 0x7FFFFFFF:\n                                    errors.append(\n                                        f\"  {xml_file.name}:{elem.sourceline}: \"\n                                        f\"durableId={val} >= 0x7FFFFFFF\"\n                                    )\n                            except ValueError:\n                                errors.append(\n                                    f\"  {xml_file.name}:{elem.sourceline}: \"\n                                    f\"durableId={val} must be decimal in numbering.xml\"\n                                )\n                        else:\n                            if self._parse_id_value(val, base=16) >= 0x7FFFFFFF:\n                                errors.append(\n                                    f\"  {xml_file.name}:{elem.sourceline}: \"\n                                    f\"durableId={val} >= 0x7FFFFFFF\"\n                                )\n            except Exception:\n                pass\n\n        if errors:\n            print(f\"FAILED - {len(errors)} ID constraint violations:\")\n            for e in errors:\n                print(e)\n        elif self.verbose:\n            print(\"PASSED - All paraId/durableId values within constraints\")\n        return not errors\n\n    def validate_comment_markers(self):\n        errors = []\n\n        document_xml = None\n        comments_xml = None\n        for xml_file in self.xml_files:\n            if xml_file.name == \"document.xml\" and \"word\" in str(xml_file):\n                document_xml = xml_file\n            elif xml_file.name == \"comments.xml\":\n                comments_xml = xml_file\n\n        if not document_xml:\n            if self.verbose:\n                print(\"PASSED - No document.xml found (skipping comment validation)\")\n            return True\n\n        try:\n            doc_root = lxml.etree.parse(str(document_xml)).getroot()\n            namespaces = {\"w\": self.WORD_2006_NAMESPACE}\n\n            range_starts = {\n                elem.get(f\"{{{self.WORD_2006_NAMESPACE}}}id\")\n                for elem in doc_root.xpath(\n                    \".//w:commentRangeStart\", namespaces=namespaces\n                )\n            }\n            range_ends = {\n                elem.get(f\"{{{self.WORD_2006_NAMESPACE}}}id\")\n                for elem in doc_root.xpath(\n                    \".//w:commentRangeEnd\", namespaces=namespaces\n                )\n            }\n            references = {\n                elem.get(f\"{{{self.WORD_2006_NAMESPACE}}}id\")\n                for elem in doc_root.xpath(\n                    \".//w:commentReference\", namespaces=namespaces\n                )\n            }\n\n            orphaned_ends = range_ends - range_starts\n            for comment_id in sorted(\n                orphaned_ends, key=lambda x: int(x) if x and x.isdigit() else 0\n            ):\n                errors.append(\n                    f'  document.xml: commentRangeEnd id=\"{comment_id}\" has no matching commentRangeStart'\n                )\n\n            orphaned_starts = range_starts - range_ends\n            for comment_id in sorted(\n                orphaned_starts, key=lambda x: int(x) if x and x.isdigit() else 0\n            ):\n                errors.append(\n                    f'  document.xml: commentRangeStart id=\"{comment_id}\" has no matching commentRangeEnd'\n                )\n\n            comment_ids = set()\n            if comments_xml and comments_xml.exists():\n                comments_root = lxml.etree.parse(str(comments_xml)).getroot()\n                comment_ids = {\n                    elem.get(f\"{{{self.WORD_2006_NAMESPACE}}}id\")\n                    for elem in comments_root.xpath(\n                        \".//w:comment\", namespaces=namespaces\n                    )\n                }\n\n                marker_ids = range_starts | range_ends | references\n                invalid_refs = marker_ids - comment_ids\n                for comment_id in sorted(\n                    invalid_refs, key=lambda x: int(x) if x and x.isdigit() else 0\n                ):\n                    if comment_id:  \n                        errors.append(\n                            f'  document.xml: marker id=\"{comment_id}\" references non-existent comment'\n                        )\n\n        except (lxml.etree.XMLSyntaxError, Exception) as e:\n            errors.append(f\"  Error parsing XML: {e}\")\n\n        if errors:\n            print(f\"FAILED - {len(errors)} comment marker violations:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All comment markers properly paired\")\n            return True\n\n    def repair(self) -> int:\n        repairs = super().repair()\n        repairs += self.repair_durableId()\n        return repairs\n\n    def repair_durableId(self) -> int:\n        repairs = 0\n\n        for xml_file in self.xml_files:\n            try:\n                content = xml_file.read_text(encoding=\"utf-8\")\n                dom = defusedxml.minidom.parseString(content)\n                modified = False\n\n                for elem in dom.getElementsByTagName(\"*\"):\n                    if not elem.hasAttribute(\"w16cid:durableId\"):\n                        continue\n\n                    durable_id = elem.getAttribute(\"w16cid:durableId\")\n                    needs_repair = False\n\n                    if xml_file.name == \"numbering.xml\":\n                        try:\n                            needs_repair = (\n                                self._parse_id_value(durable_id, base=10) >= 0x7FFFFFFF\n                            )\n                        except ValueError:\n                            needs_repair = True\n                    else:\n                        try:\n                            needs_repair = (\n                                self._parse_id_value(durable_id, base=16) >= 0x7FFFFFFF\n                            )\n                        except ValueError:\n                            needs_repair = True\n\n                    if needs_repair:\n                        value = random.randint(1, 0x7FFFFFFE)\n                        if xml_file.name == \"numbering.xml\":\n                            new_id = str(value)  \n                        else:\n                            new_id = f\"{value:08X}\"  \n\n                        elem.setAttribute(\"w16cid:durableId\", new_id)\n                        print(\n                            f\"  Repaired: {xml_file.name}: durableId {durable_id} → {new_id}\"\n                        )\n                        repairs += 1\n                        modified = True\n\n                if modified:\n                    xml_file.write_bytes(dom.toxml(encoding=\"UTF-8\"))\n\n            except Exception:\n                pass\n\n        return repairs\n\n\nif __name__ == \"__main__\":\n    raise RuntimeError(\"This module should not be run directly.\")\n"
  },
  {
    "path": "skills/docx/scripts/office/validators/pptx.py",
    "content": "\"\"\"\nValidator for PowerPoint presentation XML files against XSD schemas.\n\"\"\"\n\nimport re\n\nfrom .base import BaseSchemaValidator\n\n\nclass PPTXSchemaValidator(BaseSchemaValidator):\n\n    PRESENTATIONML_NAMESPACE = (\n        \"http://schemas.openxmlformats.org/presentationml/2006/main\"\n    )\n\n    ELEMENT_RELATIONSHIP_TYPES = {\n        \"sldid\": \"slide\",\n        \"sldmasterid\": \"slidemaster\",\n        \"notesmasterid\": \"notesmaster\",\n        \"sldlayoutid\": \"slidelayout\",\n        \"themeid\": \"theme\",\n        \"tablestyleid\": \"tablestyles\",\n    }\n\n    def validate(self):\n        if not self.validate_xml():\n            return False\n\n        all_valid = True\n        if not self.validate_namespaces():\n            all_valid = False\n\n        if not self.validate_unique_ids():\n            all_valid = False\n\n        if not self.validate_uuid_ids():\n            all_valid = False\n\n        if not self.validate_file_references():\n            all_valid = False\n\n        if not self.validate_slide_layout_ids():\n            all_valid = False\n\n        if not self.validate_content_types():\n            all_valid = False\n\n        if not self.validate_against_xsd():\n            all_valid = False\n\n        if not self.validate_notes_slide_references():\n            all_valid = False\n\n        if not self.validate_all_relationship_ids():\n            all_valid = False\n\n        if not self.validate_no_duplicate_slide_layouts():\n            all_valid = False\n\n        return all_valid\n\n    def validate_uuid_ids(self):\n        import lxml.etree\n\n        errors = []\n        uuid_pattern = re.compile(\n            r\"^[\\{\\(]?[0-9A-Fa-f]{8}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{12}[\\}\\)]?$\"\n        )\n\n        for xml_file in self.xml_files:\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n\n                for elem in root.iter():\n                    for attr, value in elem.attrib.items():\n                        attr_name = attr.split(\"}\")[-1].lower()\n                        if attr_name == \"id\" or attr_name.endswith(\"id\"):\n                            if self._looks_like_uuid(value):\n                                if not uuid_pattern.match(value):\n                                    errors.append(\n                                        f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                                        f\"Line {elem.sourceline}: ID '{value}' appears to be a UUID but contains invalid hex characters\"\n                                    )\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} UUID ID validation errors:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All UUID-like IDs contain valid hex values\")\n            return True\n\n    def _looks_like_uuid(self, value):\n        clean_value = value.strip(\"{}()\").replace(\"-\", \"\")\n        return len(clean_value) == 32 and all(c.isalnum() for c in clean_value)\n\n    def validate_slide_layout_ids(self):\n        import lxml.etree\n\n        errors = []\n\n        slide_masters = list(self.unpacked_dir.glob(\"ppt/slideMasters/*.xml\"))\n\n        if not slide_masters:\n            if self.verbose:\n                print(\"PASSED - No slide masters found\")\n            return True\n\n        for slide_master in slide_masters:\n            try:\n                root = lxml.etree.parse(str(slide_master)).getroot()\n\n                rels_file = slide_master.parent / \"_rels\" / f\"{slide_master.name}.rels\"\n\n                if not rels_file.exists():\n                    errors.append(\n                        f\"  {slide_master.relative_to(self.unpacked_dir)}: \"\n                        f\"Missing relationships file: {rels_file.relative_to(self.unpacked_dir)}\"\n                    )\n                    continue\n\n                rels_root = lxml.etree.parse(str(rels_file)).getroot()\n\n                valid_layout_rids = set()\n                for rel in rels_root.findall(\n                    f\".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship\"\n                ):\n                    rel_type = rel.get(\"Type\", \"\")\n                    if \"slideLayout\" in rel_type:\n                        valid_layout_rids.add(rel.get(\"Id\"))\n\n                for sld_layout_id in root.findall(\n                    f\".//{{{self.PRESENTATIONML_NAMESPACE}}}sldLayoutId\"\n                ):\n                    r_id = sld_layout_id.get(\n                        f\"{{{self.OFFICE_RELATIONSHIPS_NAMESPACE}}}id\"\n                    )\n                    layout_id = sld_layout_id.get(\"id\")\n\n                    if r_id and r_id not in valid_layout_rids:\n                        errors.append(\n                            f\"  {slide_master.relative_to(self.unpacked_dir)}: \"\n                            f\"Line {sld_layout_id.sourceline}: sldLayoutId with id='{layout_id}' \"\n                            f\"references r:id='{r_id}' which is not found in slide layout relationships\"\n                        )\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {slide_master.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} slide layout ID validation errors:\")\n            for error in errors:\n                print(error)\n            print(\n                \"Remove invalid references or add missing slide layouts to the relationships file.\"\n            )\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All slide layout IDs reference valid slide layouts\")\n            return True\n\n    def validate_no_duplicate_slide_layouts(self):\n        import lxml.etree\n\n        errors = []\n        slide_rels_files = list(self.unpacked_dir.glob(\"ppt/slides/_rels/*.xml.rels\"))\n\n        for rels_file in slide_rels_files:\n            try:\n                root = lxml.etree.parse(str(rels_file)).getroot()\n\n                layout_rels = [\n                    rel\n                    for rel in root.findall(\n                        f\".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship\"\n                    )\n                    if \"slideLayout\" in rel.get(\"Type\", \"\")\n                ]\n\n                if len(layout_rels) > 1:\n                    errors.append(\n                        f\"  {rels_file.relative_to(self.unpacked_dir)}: has {len(layout_rels)} slideLayout references\"\n                    )\n\n            except Exception as e:\n                errors.append(\n                    f\"  {rels_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(\"FAILED - Found slides with duplicate slideLayout references:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All slides have exactly one slideLayout reference\")\n            return True\n\n    def validate_notes_slide_references(self):\n        import lxml.etree\n\n        errors = []\n        notes_slide_references = {}  \n\n        slide_rels_files = list(self.unpacked_dir.glob(\"ppt/slides/_rels/*.xml.rels\"))\n\n        if not slide_rels_files:\n            if self.verbose:\n                print(\"PASSED - No slide relationship files found\")\n            return True\n\n        for rels_file in slide_rels_files:\n            try:\n                root = lxml.etree.parse(str(rels_file)).getroot()\n\n                for rel in root.findall(\n                    f\".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship\"\n                ):\n                    rel_type = rel.get(\"Type\", \"\")\n                    if \"notesSlide\" in rel_type:\n                        target = rel.get(\"Target\", \"\")\n                        if target:\n                            normalized_target = target.replace(\"../\", \"\")\n\n                            slide_name = rels_file.stem.replace(\n                                \".xml\", \"\"\n                            )  \n\n                            if normalized_target not in notes_slide_references:\n                                notes_slide_references[normalized_target] = []\n                            notes_slide_references[normalized_target].append(\n                                (slide_name, rels_file)\n                            )\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {rels_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        for target, references in notes_slide_references.items():\n            if len(references) > 1:\n                slide_names = [ref[0] for ref in references]\n                errors.append(\n                    f\"  Notes slide '{target}' is referenced by multiple slides: {', '.join(slide_names)}\"\n                )\n                for slide_name, rels_file in references:\n                    errors.append(f\"    - {rels_file.relative_to(self.unpacked_dir)}\")\n\n        if errors:\n            print(\n                f\"FAILED - Found {len([e for e in errors if not e.startswith('    ')])} notes slide reference validation errors:\"\n            )\n            for error in errors:\n                print(error)\n            print(\"Each slide may optionally have its own slide file.\")\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All notes slide references are unique\")\n            return True\n\n\nif __name__ == \"__main__\":\n    raise RuntimeError(\"This module should not be run directly.\")\n"
  },
  {
    "path": "skills/docx/scripts/office/validators/redlining.py",
    "content": "\"\"\"\nValidator for tracked changes in Word documents.\n\"\"\"\n\nimport subprocess\nimport tempfile\nimport zipfile\nfrom pathlib import Path\n\n\nclass RedliningValidator:\n\n    def __init__(self, unpacked_dir, original_docx, verbose=False, author=\"Claude\"):\n        self.unpacked_dir = Path(unpacked_dir)\n        self.original_docx = Path(original_docx)\n        self.verbose = verbose\n        self.author = author\n        self.namespaces = {\n            \"w\": \"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n        }\n\n    def repair(self) -> int:\n        return 0\n\n    def validate(self):\n        modified_file = self.unpacked_dir / \"word\" / \"document.xml\"\n        if not modified_file.exists():\n            print(f\"FAILED - Modified document.xml not found at {modified_file}\")\n            return False\n\n        try:\n            import xml.etree.ElementTree as ET\n\n            tree = ET.parse(modified_file)\n            root = tree.getroot()\n\n            del_elements = root.findall(\".//w:del\", self.namespaces)\n            ins_elements = root.findall(\".//w:ins\", self.namespaces)\n\n            author_del_elements = [\n                elem\n                for elem in del_elements\n                if elem.get(f\"{{{self.namespaces['w']}}}author\") == self.author\n            ]\n            author_ins_elements = [\n                elem\n                for elem in ins_elements\n                if elem.get(f\"{{{self.namespaces['w']}}}author\") == self.author\n            ]\n\n            if not author_del_elements and not author_ins_elements:\n                if self.verbose:\n                    print(f\"PASSED - No tracked changes by {self.author} found.\")\n                return True\n\n        except Exception:\n            pass\n\n        with tempfile.TemporaryDirectory() as temp_dir:\n            temp_path = Path(temp_dir)\n\n            try:\n                with zipfile.ZipFile(self.original_docx, \"r\") as zip_ref:\n                    zip_ref.extractall(temp_path)\n            except Exception as e:\n                print(f\"FAILED - Error unpacking original docx: {e}\")\n                return False\n\n            original_file = temp_path / \"word\" / \"document.xml\"\n            if not original_file.exists():\n                print(\n                    f\"FAILED - Original document.xml not found in {self.original_docx}\"\n                )\n                return False\n\n            try:\n                import xml.etree.ElementTree as ET\n\n                modified_tree = ET.parse(modified_file)\n                modified_root = modified_tree.getroot()\n                original_tree = ET.parse(original_file)\n                original_root = original_tree.getroot()\n            except ET.ParseError as e:\n                print(f\"FAILED - Error parsing XML files: {e}\")\n                return False\n\n            self._remove_author_tracked_changes(original_root)\n            self._remove_author_tracked_changes(modified_root)\n\n            modified_text = self._extract_text_content(modified_root)\n            original_text = self._extract_text_content(original_root)\n\n            if modified_text != original_text:\n                error_message = self._generate_detailed_diff(\n                    original_text, modified_text\n                )\n                print(error_message)\n                return False\n\n            if self.verbose:\n                print(f\"PASSED - All changes by {self.author} are properly tracked\")\n            return True\n\n    def _generate_detailed_diff(self, original_text, modified_text):\n        error_parts = [\n            f\"FAILED - Document text doesn't match after removing {self.author}'s tracked changes\",\n            \"\",\n            \"Likely causes:\",\n            \"  1. Modified text inside another author's <w:ins> or <w:del> tags\",\n            \"  2. Made edits without proper tracked changes\",\n            \"  3. Didn't nest <w:del> inside <w:ins> when deleting another's insertion\",\n            \"\",\n            \"For pre-redlined documents, use correct patterns:\",\n            \"  - To reject another's INSERTION: Nest <w:del> inside their <w:ins>\",\n            \"  - To restore another's DELETION: Add new <w:ins> AFTER their <w:del>\",\n            \"\",\n        ]\n\n        git_diff = self._get_git_word_diff(original_text, modified_text)\n        if git_diff:\n            error_parts.extend([\"Differences:\", \"============\", git_diff])\n        else:\n            error_parts.append(\"Unable to generate word diff (git not available)\")\n\n        return \"\\n\".join(error_parts)\n\n    def _get_git_word_diff(self, original_text, modified_text):\n        try:\n            with tempfile.TemporaryDirectory() as temp_dir:\n                temp_path = Path(temp_dir)\n\n                original_file = temp_path / \"original.txt\"\n                modified_file = temp_path / \"modified.txt\"\n\n                original_file.write_text(original_text, encoding=\"utf-8\")\n                modified_file.write_text(modified_text, encoding=\"utf-8\")\n\n                result = subprocess.run(\n                    [\n                        \"git\",\n                        \"diff\",\n                        \"--word-diff=plain\",\n                        \"--word-diff-regex=.\",  \n                        \"-U0\",  \n                        \"--no-index\",\n                        str(original_file),\n                        str(modified_file),\n                    ],\n                    capture_output=True,\n                    text=True,\n                )\n\n                if result.stdout.strip():\n                    lines = result.stdout.split(\"\\n\")\n                    content_lines = []\n                    in_content = False\n                    for line in lines:\n                        if line.startswith(\"@@\"):\n                            in_content = True\n                            continue\n                        if in_content and line.strip():\n                            content_lines.append(line)\n\n                    if content_lines:\n                        return \"\\n\".join(content_lines)\n\n                result = subprocess.run(\n                    [\n                        \"git\",\n                        \"diff\",\n                        \"--word-diff=plain\",\n                        \"-U0\",  \n                        \"--no-index\",\n                        str(original_file),\n                        str(modified_file),\n                    ],\n                    capture_output=True,\n                    text=True,\n                )\n\n                if result.stdout.strip():\n                    lines = result.stdout.split(\"\\n\")\n                    content_lines = []\n                    in_content = False\n                    for line in lines:\n                        if line.startswith(\"@@\"):\n                            in_content = True\n                            continue\n                        if in_content and line.strip():\n                            content_lines.append(line)\n                    return \"\\n\".join(content_lines)\n\n        except (subprocess.CalledProcessError, FileNotFoundError, Exception):\n            pass\n\n        return None\n\n    def _remove_author_tracked_changes(self, root):\n        ins_tag = f\"{{{self.namespaces['w']}}}ins\"\n        del_tag = f\"{{{self.namespaces['w']}}}del\"\n        author_attr = f\"{{{self.namespaces['w']}}}author\"\n\n        for parent in root.iter():\n            to_remove = []\n            for child in parent:\n                if child.tag == ins_tag and child.get(author_attr) == self.author:\n                    to_remove.append(child)\n            for elem in to_remove:\n                parent.remove(elem)\n\n        deltext_tag = f\"{{{self.namespaces['w']}}}delText\"\n        t_tag = f\"{{{self.namespaces['w']}}}t\"\n\n        for parent in root.iter():\n            to_process = []\n            for child in parent:\n                if child.tag == del_tag and child.get(author_attr) == self.author:\n                    to_process.append((child, list(parent).index(child)))\n\n            for del_elem, del_index in reversed(to_process):\n                for elem in del_elem.iter():\n                    if elem.tag == deltext_tag:\n                        elem.tag = t_tag\n\n                for child in reversed(list(del_elem)):\n                    parent.insert(del_index, child)\n                parent.remove(del_elem)\n\n    def _extract_text_content(self, root):\n        p_tag = f\"{{{self.namespaces['w']}}}p\"\n        t_tag = f\"{{{self.namespaces['w']}}}t\"\n\n        paragraphs = []\n        for p_elem in root.findall(f\".//{p_tag}\"):\n            text_parts = []\n            for t_elem in p_elem.findall(f\".//{t_tag}\"):\n                if t_elem.text:\n                    text_parts.append(t_elem.text)\n            paragraph_text = \"\".join(text_parts)\n            if paragraph_text:\n                paragraphs.append(paragraph_text)\n\n        return \"\\n\".join(paragraphs)\n\n\nif __name__ == \"__main__\":\n    raise RuntimeError(\"This module should not be run directly.\")\n"
  },
  {
    "path": "skills/docx/scripts/templates/comments.xml",
    "content": "<?xml version=\"1.0\" ?>\n<w:comments xmlns:wpc=\"http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas\" xmlns:cx=\"http://schemas.microsoft.com/office/drawing/2014/chartex\" xmlns:cx1=\"http://schemas.microsoft.com/office/drawing/2015/9/8/chartex\" xmlns:cx2=\"http://schemas.microsoft.com/office/drawing/2015/10/21/chartex\" xmlns:cx3=\"http://schemas.microsoft.com/office/drawing/2016/5/9/chartex\" xmlns:cx4=\"http://schemas.microsoft.com/office/drawing/2016/5/10/chartex\" xmlns:cx5=\"http://schemas.microsoft.com/office/drawing/2016/5/11/chartex\" xmlns:cx6=\"http://schemas.microsoft.com/office/drawing/2016/5/12/chartex\" xmlns:cx7=\"http://schemas.microsoft.com/office/drawing/2016/5/13/chartex\" xmlns:cx8=\"http://schemas.microsoft.com/office/drawing/2016/5/14/chartex\" xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" xmlns:aink=\"http://schemas.microsoft.com/office/drawing/2016/ink\" xmlns:am3d=\"http://schemas.microsoft.com/office/drawing/2017/model3d\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:oel=\"http://schemas.microsoft.com/office/2019/extlst\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:m=\"http://schemas.openxmlformats.org/officeDocument/2006/math\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:wp14=\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\" xmlns:wp=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\" xmlns:w10=\"urn:schemas-microsoft-com:office:word\" xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" xmlns:w14=\"http://schemas.microsoft.com/office/word/2010/wordml\" xmlns:w15=\"http://schemas.microsoft.com/office/word/2012/wordml\" xmlns:w16cex=\"http://schemas.microsoft.com/office/word/2018/wordml/cex\" xmlns:w16cid=\"http://schemas.microsoft.com/office/word/2016/wordml/cid\" xmlns:w16=\"http://schemas.microsoft.com/office/word/2018/wordml\" xmlns:w16du=\"http://schemas.microsoft.com/office/word/2023/wordml/word16du\" xmlns:w16sdtdh=\"http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash\" xmlns:w16sdtfl=\"http://schemas.microsoft.com/office/word/2024/wordml/sdtformatlock\" xmlns:w16se=\"http://schemas.microsoft.com/office/word/2015/wordml/symex\" xmlns:wpg=\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\" xmlns:wpi=\"http://schemas.microsoft.com/office/word/2010/wordprocessingInk\" xmlns:wne=\"http://schemas.microsoft.com/office/word/2006/wordml\" xmlns:wps=\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\" mc:Ignorable=\"w14 w15 w16se w16cid w16 w16cex w16sdtdh w16sdtfl w16du wp14\">\n</w:comments>\n"
  },
  {
    "path": "skills/docx/scripts/templates/commentsExtended.xml",
    "content": "<?xml version=\"1.0\" ?>\n<w15:commentsEx xmlns:wpc=\"http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas\" xmlns:cx=\"http://schemas.microsoft.com/office/drawing/2014/chartex\" xmlns:cx1=\"http://schemas.microsoft.com/office/drawing/2015/9/8/chartex\" xmlns:cx2=\"http://schemas.microsoft.com/office/drawing/2015/10/21/chartex\" xmlns:cx3=\"http://schemas.microsoft.com/office/drawing/2016/5/9/chartex\" xmlns:cx4=\"http://schemas.microsoft.com/office/drawing/2016/5/10/chartex\" xmlns:cx5=\"http://schemas.microsoft.com/office/drawing/2016/5/11/chartex\" xmlns:cx6=\"http://schemas.microsoft.com/office/drawing/2016/5/12/chartex\" xmlns:cx7=\"http://schemas.microsoft.com/office/drawing/2016/5/13/chartex\" xmlns:cx8=\"http://schemas.microsoft.com/office/drawing/2016/5/14/chartex\" xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" xmlns:aink=\"http://schemas.microsoft.com/office/drawing/2016/ink\" xmlns:am3d=\"http://schemas.microsoft.com/office/drawing/2017/model3d\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:oel=\"http://schemas.microsoft.com/office/2019/extlst\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:m=\"http://schemas.openxmlformats.org/officeDocument/2006/math\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:wp14=\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\" xmlns:wp=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\" xmlns:w10=\"urn:schemas-microsoft-com:office:word\" xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" xmlns:w14=\"http://schemas.microsoft.com/office/word/2010/wordml\" xmlns:w15=\"http://schemas.microsoft.com/office/word/2012/wordml\" xmlns:w16cex=\"http://schemas.microsoft.com/office/word/2018/wordml/cex\" xmlns:w16cid=\"http://schemas.microsoft.com/office/word/2016/wordml/cid\" xmlns:w16=\"http://schemas.microsoft.com/office/word/2018/wordml\" xmlns:w16du=\"http://schemas.microsoft.com/office/word/2023/wordml/word16du\" xmlns:w16sdtdh=\"http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash\" xmlns:w16sdtfl=\"http://schemas.microsoft.com/office/word/2024/wordml/sdtformatlock\" xmlns:w16se=\"http://schemas.microsoft.com/office/word/2015/wordml/symex\" xmlns:wpg=\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\" xmlns:wpi=\"http://schemas.microsoft.com/office/word/2010/wordprocessingInk\" xmlns:wne=\"http://schemas.microsoft.com/office/word/2006/wordml\" xmlns:wps=\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\" mc:Ignorable=\"w14 w15 w16se w16cid w16 w16cex w16sdtdh w16sdtfl w16du wp14\">\n</w15:commentsEx>\n"
  },
  {
    "path": "skills/docx/scripts/templates/commentsExtensible.xml",
    "content": "<?xml version=\"1.0\" ?>\n<w16cex:commentsExtensible xmlns:wpc=\"http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas\" xmlns:cx=\"http://schemas.microsoft.com/office/drawing/2014/chartex\" xmlns:cx1=\"http://schemas.microsoft.com/office/drawing/2015/9/8/chartex\" xmlns:cx2=\"http://schemas.microsoft.com/office/drawing/2015/10/21/chartex\" xmlns:cx3=\"http://schemas.microsoft.com/office/drawing/2016/5/9/chartex\" xmlns:cx4=\"http://schemas.microsoft.com/office/drawing/2016/5/10/chartex\" xmlns:cx5=\"http://schemas.microsoft.com/office/drawing/2016/5/11/chartex\" xmlns:cx6=\"http://schemas.microsoft.com/office/drawing/2016/5/12/chartex\" xmlns:cx7=\"http://schemas.microsoft.com/office/drawing/2016/5/13/chartex\" xmlns:cx8=\"http://schemas.microsoft.com/office/drawing/2016/5/14/chartex\" xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" xmlns:aink=\"http://schemas.microsoft.com/office/drawing/2016/ink\" xmlns:am3d=\"http://schemas.microsoft.com/office/drawing/2017/model3d\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:oel=\"http://schemas.microsoft.com/office/2019/extlst\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:m=\"http://schemas.openxmlformats.org/officeDocument/2006/math\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:wp14=\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\" xmlns:wp=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\" xmlns:w10=\"urn:schemas-microsoft-com:office:word\" xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" xmlns:w14=\"http://schemas.microsoft.com/office/word/2010/wordml\" xmlns:w15=\"http://schemas.microsoft.com/office/word/2012/wordml\" xmlns:w16cex=\"http://schemas.microsoft.com/office/word/2018/wordml/cex\" xmlns:w16cid=\"http://schemas.microsoft.com/office/word/2016/wordml/cid\" xmlns:w16=\"http://schemas.microsoft.com/office/word/2018/wordml\" xmlns:w16du=\"http://schemas.microsoft.com/office/word/2023/wordml/word16du\" xmlns:w16sdtdh=\"http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash\" xmlns:w16sdtfl=\"http://schemas.microsoft.com/office/word/2024/wordml/sdtformatlock\" xmlns:w16se=\"http://schemas.microsoft.com/office/word/2015/wordml/symex\" xmlns:wpg=\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\" xmlns:wpi=\"http://schemas.microsoft.com/office/word/2010/wordprocessingInk\" xmlns:wne=\"http://schemas.microsoft.com/office/word/2006/wordml\" xmlns:wps=\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\" xmlns:cr=\"http://schemas.microsoft.com/office/comments/2020/reactions\" mc:Ignorable=\"w14 w15 w16se w16cid w16 w16cex w16sdtdh w16sdtfl cr w16du wp14\">\n</w16cex:commentsExtensible>\n"
  },
  {
    "path": "skills/docx/scripts/templates/commentsIds.xml",
    "content": "<?xml version=\"1.0\" ?>\n<w16cid:commentsIds xmlns:wpc=\"http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas\" xmlns:cx=\"http://schemas.microsoft.com/office/drawing/2014/chartex\" xmlns:cx1=\"http://schemas.microsoft.com/office/drawing/2015/9/8/chartex\" xmlns:cx2=\"http://schemas.microsoft.com/office/drawing/2015/10/21/chartex\" xmlns:cx3=\"http://schemas.microsoft.com/office/drawing/2016/5/9/chartex\" xmlns:cx4=\"http://schemas.microsoft.com/office/drawing/2016/5/10/chartex\" xmlns:cx5=\"http://schemas.microsoft.com/office/drawing/2016/5/11/chartex\" xmlns:cx6=\"http://schemas.microsoft.com/office/drawing/2016/5/12/chartex\" xmlns:cx7=\"http://schemas.microsoft.com/office/drawing/2016/5/13/chartex\" xmlns:cx8=\"http://schemas.microsoft.com/office/drawing/2016/5/14/chartex\" xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" xmlns:aink=\"http://schemas.microsoft.com/office/drawing/2016/ink\" xmlns:am3d=\"http://schemas.microsoft.com/office/drawing/2017/model3d\" xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:oel=\"http://schemas.microsoft.com/office/2019/extlst\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:m=\"http://schemas.openxmlformats.org/officeDocument/2006/math\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:wp14=\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\" xmlns:wp=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\" xmlns:w10=\"urn:schemas-microsoft-com:office:word\" xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" xmlns:w14=\"http://schemas.microsoft.com/office/word/2010/wordml\" xmlns:w15=\"http://schemas.microsoft.com/office/word/2012/wordml\" xmlns:w16cex=\"http://schemas.microsoft.com/office/word/2018/wordml/cex\" xmlns:w16cid=\"http://schemas.microsoft.com/office/word/2016/wordml/cid\" xmlns:w16=\"http://schemas.microsoft.com/office/word/2018/wordml\" xmlns:w16du=\"http://schemas.microsoft.com/office/word/2023/wordml/word16du\" xmlns:w16sdtdh=\"http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash\" xmlns:w16sdtfl=\"http://schemas.microsoft.com/office/word/2024/wordml/sdtformatlock\" xmlns:w16se=\"http://schemas.microsoft.com/office/word/2015/wordml/symex\" xmlns:wpg=\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\" xmlns:wpi=\"http://schemas.microsoft.com/office/word/2010/wordprocessingInk\" xmlns:wne=\"http://schemas.microsoft.com/office/word/2006/wordml\" xmlns:wps=\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\" mc:Ignorable=\"w14 w15 w16se w16cid w16 w16cex w16sdtdh w16sdtfl w16du wp14\">\n</w16cid:commentsIds>\n"
  },
  {
    "path": "skills/docx/scripts/templates/people.xml",
    "content": "<?xml version=\"1.0\" ?>\n<w15:people xmlns:w15=\"http://schemas.microsoft.com/office/word/2012/wordml\">\n</w15:people>\n"
  },
  {
    "path": "skills/frontend-design/LICENSE.txt",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n"
  },
  {
    "path": "skills/frontend-design/SKILL.md",
    "content": "---\nname: frontend-design\ndescription: Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.\nlicense: Complete terms in LICENSE.txt\n---\n\nThis skill guides creation of distinctive, production-grade frontend interfaces that avoid generic \"AI slop\" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices.\n\nThe user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints.\n\n## Design Thinking\n\nBefore coding, understand the context and commit to a BOLD aesthetic direction:\n- **Purpose**: What problem does this interface solve? Who uses it?\n- **Tone**: Pick an extreme: brutally minimal, maximalist chaos, retro-futuristic, organic/natural, luxury/refined, playful/toy-like, editorial/magazine, brutalist/raw, art deco/geometric, soft/pastel, industrial/utilitarian, etc. There are so many flavors to choose from. Use these for inspiration but design one that is true to the aesthetic direction.\n- **Constraints**: Technical requirements (framework, performance, accessibility).\n- **Differentiation**: What makes this UNFORGETTABLE? What's the one thing someone will remember?\n\n**CRITICAL**: Choose a clear conceptual direction and execute it with precision. Bold maximalism and refined minimalism both work - the key is intentionality, not intensity.\n\nThen implement working code (HTML/CSS/JS, React, Vue, etc.) that is:\n- Production-grade and functional\n- Visually striking and memorable\n- Cohesive with a clear aesthetic point-of-view\n- Meticulously refined in every detail\n\n## Frontend Aesthetics Guidelines\n\nFocus on:\n- **Typography**: Choose fonts that are beautiful, unique, and interesting. Avoid generic fonts like Arial and Inter; opt instead for distinctive choices that elevate the frontend's aesthetics; unexpected, characterful font choices. Pair a distinctive display font with a refined body font.\n- **Color & Theme**: Commit to a cohesive aesthetic. Use CSS variables for consistency. Dominant colors with sharp accents outperform timid, evenly-distributed palettes.\n- **Motion**: Use animations for effects and micro-interactions. Prioritize CSS-only solutions for HTML. Use Motion library for React when available. Focus on high-impact moments: one well-orchestrated page load with staggered reveals (animation-delay) creates more delight than scattered micro-interactions. Use scroll-triggering and hover states that surprise.\n- **Spatial Composition**: Unexpected layouts. Asymmetry. Overlap. Diagonal flow. Grid-breaking elements. Generous negative space OR controlled density.\n- **Backgrounds & Visual Details**: Create atmosphere and depth rather than defaulting to solid colors. Add contextual effects and textures that match the overall aesthetic. Apply creative forms like gradient meshes, noise textures, geometric patterns, layered transparencies, dramatic shadows, decorative borders, custom cursors, and grain overlays.\n\nNEVER use generic AI-generated aesthetics like overused font families (Inter, Roboto, Arial, system fonts), cliched color schemes (particularly purple gradients on white backgrounds), predictable layouts and component patterns, and cookie-cutter design that lacks context-specific character.\n\nInterpret creatively and make unexpected choices that feel genuinely designed for the context. No design should be the same. Vary between light and dark themes, different fonts, different aesthetics. NEVER converge on common choices (Space Grotesk, for example) across generations.\n\n**IMPORTANT**: Match implementation complexity to the aesthetic vision. Maximalist designs need elaborate code with extensive animations and effects. Minimalist or refined designs need restraint, precision, and careful attention to spacing, typography, and subtle details. Elegance comes from executing the vision well.\n\nRemember: Claude is capable of extraordinary creative work. Don't hold back, show what can truly be created when thinking outside the box and committing fully to a distinctive vision.\n"
  },
  {
    "path": "skills/internal-comms/LICENSE.txt",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License."
  },
  {
    "path": "skills/internal-comms/SKILL.md",
    "content": "---\nname: internal-comms\ndescription: A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).\nlicense: Complete terms in LICENSE.txt\n---\n\n## When to use this skill\nTo write internal communications, use this skill for:\n- 3P updates (Progress, Plans, Problems)\n- Company newsletters\n- FAQ responses\n- Status reports\n- Leadership updates\n- Project updates\n- Incident reports\n\n## How to use this skill\n\nTo write any internal communication:\n\n1. **Identify the communication type** from the request\n2. **Load the appropriate guideline file** from the `examples/` directory:\n    - `examples/3p-updates.md` - For Progress/Plans/Problems team updates\n    - `examples/company-newsletter.md` - For company-wide newsletters\n    - `examples/faq-answers.md` - For answering frequently asked questions\n    - `examples/general-comms.md` - For anything else that doesn't explicitly match one of the above\n3. **Follow the specific instructions** in that file for formatting, tone, and content gathering\n\nIf the communication type doesn't match any existing guideline, ask for clarification or more context about the desired format.\n\n## Keywords\n3P updates, company newsletter, company comms, weekly update, faqs, common questions, updates, internal comms\n"
  },
  {
    "path": "skills/internal-comms/examples/3p-updates.md",
    "content": "## Instructions\nYou are being asked to write a 3P update. 3P updates stand for \"Progress, Plans, Problems.\" The main audience is for executives, leadership, other teammates, etc. They're meant to be very succinct and to-the-point: think something you can read in 30-60sec or less. They're also for people with some, but not a lot of context on what the team does.\n\n3Ps can cover a team of any size, ranging all the way up to the entire company. The bigger the team, the less granular the tasks should be. For example, \"mobile team\" might have \"shipped feature\" or \"fixed bugs,\" whereas the company might have really meaty 3Ps, like \"hired 20 new people\" or \"closed 10 new deals.\" \n\nThey represent the work of the team across a time period, almost always one week. They include three sections:\n1) Progress: what the team has accomplished over the next time period. Focus mainly on things shipped, milestones achieved, tasks created, etc.\n2) Plans: what the team plans to do over the next time period. Focus on what things are top-of-mind, really high priority, etc. for the team.\n3) Problems: anything that is slowing the team down. This could be things like too few people, bugs or blockers that are preventing the team from moving forward, some deal that fell through, etc.\n\nBefore writing them, make sure that you know the team name. If it's not specified, you can ask explicitly what the team name you're writing for is.\n\n\n## Tools Available\nWhenever possible, try to pull from available sources to get the information you need:\n- Slack: posts from team members with their updates - ideally look for posts in large channels with lots of reactions\n- Google Drive: docs written from critical team members with lots of views\n- Email: emails with lots of responses of lots of content that seems relevant\n- Calendar: non-recurring meetings that have a lot of importance, like product reviews, etc.\n\n\nTry to gather as much context as you can, focusing on the things that covered the time period you're writing for:\n- Progress: anything between a week ago and today\n- Plans: anything from today to the next week\n- Problems: anything between a week ago and today\n\n\nIf you don't have access, you can ask the user for things they want to cover. They might also include these things to you directly, in which case you're mostly just formatting for this particular format.\n\n## Workflow\n\n1. **Clarify scope**: Confirm the team name and time period (usually past week for Progress/Problems, next\nweek for Plans)\n2. **Gather information**: Use available tools or ask the user directly\n3. **Draft the update**: Follow the strict formatting guidelines\n4. **Review**: Ensure it's concise (30-60 seconds to read) and data-driven\n\n## Formatting\n\nThe format is always the same, very strict formatting. Never use any formatting other than this. Pick an emoji that is fun and captures the vibe of the team and update.\n\n[pick an emoji] [Team Name] (Dates Covered, usually a week)\nProgress: [1-3 sentences of content]\nPlans: [1-3 sentences of content]\nProblems: [1-3 sentences of content]\n\nEach section should be no more than 1-3 sentences: clear, to the point. It should be data-driven, and generally include metrics where possible. The tone should be very matter-of-fact, not super prose-heavy."
  },
  {
    "path": "skills/internal-comms/examples/company-newsletter.md",
    "content": "## Instructions\nYou are being asked to write a company-wide newsletter update. You are meant to summarize the past week/month of a company in the form of a newsletter that the entire company will read. It should be maybe ~20-25 bullet points long. It will be sent via Slack and email, so make it consumable for that.\n\nIdeally it includes the following attributes:\n- Lots of links: pulling documents from Google Drive that are very relevant, linking to prominent Slack messages in announce channels and from executives, perhgaps referencing emails that went company-wide, highlighting significant things that have happened in the company.\n- Short and to-the-point: each bullet should probably be no longer than ~1-2 sentences\n- Use the \"we\" tense, as you are part of the company. Many of the bullets should say \"we did this\" or \"we did that\"\n\n## Tools to use\nIf you have access to the following tools, please try to use them. If not, you can also let the user know directly that their responses would be better if they gave them access.\n\n- Slack: look for messages in channels with lots of people, with lots of reactions or lots of responses within the thread\n- Email: look for things from executives that discuss company-wide announcements\n- Calendar: if there were meetings with large attendee lists, particularly things like All-Hands meetings, big company announcements, etc. If there were documents attached to those meetings, those are great links to include.\n- Documents: if there were new docs published in the last week or two that got a lot of attention, you can link them. These should be things like company-wide vision docs, plans for the upcoming quarter or half, things authored by critical executives, etc.\n- External press: if you see references to articles or press we've received over the past week, that could be really cool too.\n\nIf you don't have access to any of these things, you can ask the user for things they want to cover. In this case, you'll mostly just be polishing up and fitting to this format more directly.\n\n## Sections\nThe company is pretty big: 1000+ people. There are a variety of different teams and initiatives going on across the company. To make sure the update works well, try breaking it into sections of similar things. You might break into clusters like {product development, go to market, finance} or {recruiting, execution, vision}, or {external news, internal news} etc. Try to make sure the different areas of the company are highlighted well.\n\n## Prioritization\nFocus on:\n- Company-wide impact (not team-specific details)\n- Announcements from leadership\n- Major milestones and achievements\n- Information that affects most employees\n- External recognition or press\n\nAvoid:\n- Overly granular team updates (save those for 3Ps)\n- Information only relevant to small groups\n- Duplicate information already communicated\n\n## Example Formats\n\n:megaphone: Company Announcements\n- Announcement 1\n- Announcement 2\n- Announcement 3\n\n:dart: Progress on Priorities\n- Area 1\n    - Sub-area 1\n    - Sub-area 2\n    - Sub-area 3\n- Area 2\n    - Sub-area 1\n    - Sub-area 2\n    - Sub-area 3\n- Area 3\n    - Sub-area 1\n    - Sub-area 2\n    - Sub-area 3\n\n:pillar: Leadership Updates\n- Post 1\n- Post 2\n- Post 3\n\n:thread: Social Updates\n- Update 1\n- Update 2\n- Update 3\n"
  },
  {
    "path": "skills/internal-comms/examples/faq-answers.md",
    "content": "## Instructions\nYou are an assistant for answering questions that are being asked across the company. Every week, there are lots of questions that get asked across the company, and your goal is to try to summarize what those questions are. We want our company to be well-informed and on the same page, so your job is to produce a set of frequently asked questions that our employees are asking and attempt to answer them. Your singular job is to do two things:\n\n- Find questions that are big sources of confusion for lots of employees at the company, generally about things that affect a large portion of the employee base\n- Attempt to give a nice summarized answer to that question in order to minimize confusion.\n\nSome examples of areas that may be interesting to folks: recent corporate events (fundraising, new executives, etc.), upcoming launches, hiring progress, changes to vision or focus, etc.\n\n\n## Tools Available\nYou should use the company's available tools, where communication and work happens. For most companies, it looks something like this:\n- Slack: questions being asked across the company - it could be questions in response to posts with lots of responses, questions being asked with lots of reactions or thumbs up to show support, or anything else to show that a large number of employees want to ask the same things\n- Email: emails with FAQs written directly in them can be a good source as well\n- Documents: docs in places like Google Drive, linked on calendar events, etc. can also be a good source of FAQs, either directly added or inferred based on the contents of the doc\n\n## Formatting\nThe formatting should be pretty basic:\n\n- *Question*: [insert question - 1 sentence]\n- *Answer*: [insert answer - 1-2 sentence]\n\n## Guidance\nMake sure you're being holistic in your questions. Don't focus too much on just the user in question or the team they are a part of, but try to capture the entire company. Try to be as holistic as you can in reading all the tools available, producing responses that are relevant to all at the company.\n\n## Answer Guidelines\n- Base answers on official company communications when possible\n- If information is uncertain, indicate that clearly\n- Link to authoritative sources (docs, announcements, emails)\n- Keep tone professional but approachable\n- Flag if a question requires executive input or official response"
  },
  {
    "path": "skills/internal-comms/examples/general-comms.md",
    "content": "  ## Instructions\n  You are being asked to write internal company communication that doesn't fit into the standard formats (3P\n  updates, newsletters, or FAQs).\n\n  Before proceeding:\n  1. Ask the user about their target audience\n  2. Understand the communication's purpose\n  3. Clarify the desired tone (formal, casual, urgent, informational)\n  4. Confirm any specific formatting requirements\n\n  Use these general principles:\n  - Be clear and concise\n  - Use active voice\n  - Put the most important information first\n  - Include relevant links and references\n  - Match the company's communication style"
  },
  {
    "path": "skills/mcp-builder/LICENSE.txt",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License."
  },
  {
    "path": "skills/mcp-builder/SKILL.md",
    "content": "---\nname: mcp-builder\ndescription: Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).\nlicense: Complete terms in LICENSE.txt\n---\n\n# MCP Server Development Guide\n\n## Overview\n\nCreate MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. The quality of an MCP server is measured by how well it enables LLMs to accomplish real-world tasks.\n\n---\n\n# Process\n\n## 🚀 High-Level Workflow\n\nCreating a high-quality MCP server involves four main phases:\n\n### Phase 1: Deep Research and Planning\n\n#### 1.1 Understand Modern MCP Design\n\n**API Coverage vs. Workflow Tools:**\nBalance comprehensive API endpoint coverage with specialized workflow tools. Workflow tools can be more convenient for specific tasks, while comprehensive coverage gives agents flexibility to compose operations. Performance varies by client—some clients benefit from code execution that combines basic tools, while others work better with higher-level workflows. When uncertain, prioritize comprehensive API coverage.\n\n**Tool Naming and Discoverability:**\nClear, descriptive tool names help agents find the right tools quickly. Use consistent prefixes (e.g., `github_create_issue`, `github_list_repos`) and action-oriented naming.\n\n**Context Management:**\nAgents benefit from concise tool descriptions and the ability to filter/paginate results. Design tools that return focused, relevant data. Some clients support code execution which can help agents filter and process data efficiently.\n\n**Actionable Error Messages:**\nError messages should guide agents toward solutions with specific suggestions and next steps.\n\n#### 1.2 Study MCP Protocol Documentation\n\n**Navigate the MCP specification:**\n\nStart with the sitemap to find relevant pages: `https://modelcontextprotocol.io/sitemap.xml`\n\nThen fetch specific pages with `.md` suffix for markdown format (e.g., `https://modelcontextprotocol.io/specification/draft.md`).\n\nKey pages to review:\n- Specification overview and architecture\n- Transport mechanisms (streamable HTTP, stdio)\n- Tool, resource, and prompt definitions\n\n#### 1.3 Study Framework Documentation\n\n**Recommended stack:**\n- **Language**: TypeScript (high-quality SDK support and good compatibility in many execution environments e.g. MCPB. Plus AI models are good at generating TypeScript code, benefiting from its broad usage, static typing and good linting tools)\n- **Transport**: Streamable HTTP for remote servers, using stateless JSON (simpler to scale and maintain, as opposed to stateful sessions and streaming responses). stdio for local servers.\n\n**Load framework documentation:**\n\n- **MCP Best Practices**: [📋 View Best Practices](./reference/mcp_best_practices.md) - Core guidelines\n\n**For TypeScript (recommended):**\n- **TypeScript SDK**: Use WebFetch to load `https://raw.githubusercontent.com/modelcontextprotocol/typescript-sdk/main/README.md`\n- [⚡ TypeScript Guide](./reference/node_mcp_server.md) - TypeScript patterns and examples\n\n**For Python:**\n- **Python SDK**: Use WebFetch to load `https://raw.githubusercontent.com/modelcontextprotocol/python-sdk/main/README.md`\n- [🐍 Python Guide](./reference/python_mcp_server.md) - Python patterns and examples\n\n#### 1.4 Plan Your Implementation\n\n**Understand the API:**\nReview the service's API documentation to identify key endpoints, authentication requirements, and data models. Use web search and WebFetch as needed.\n\n**Tool Selection:**\nPrioritize comprehensive API coverage. List endpoints to implement, starting with the most common operations.\n\n---\n\n### Phase 2: Implementation\n\n#### 2.1 Set Up Project Structure\n\nSee language-specific guides for project setup:\n- [⚡ TypeScript Guide](./reference/node_mcp_server.md) - Project structure, package.json, tsconfig.json\n- [🐍 Python Guide](./reference/python_mcp_server.md) - Module organization, dependencies\n\n#### 2.2 Implement Core Infrastructure\n\nCreate shared utilities:\n- API client with authentication\n- Error handling helpers\n- Response formatting (JSON/Markdown)\n- Pagination support\n\n#### 2.3 Implement Tools\n\nFor each tool:\n\n**Input Schema:**\n- Use Zod (TypeScript) or Pydantic (Python)\n- Include constraints and clear descriptions\n- Add examples in field descriptions\n\n**Output Schema:**\n- Define `outputSchema` where possible for structured data\n- Use `structuredContent` in tool responses (TypeScript SDK feature)\n- Helps clients understand and process tool outputs\n\n**Tool Description:**\n- Concise summary of functionality\n- Parameter descriptions\n- Return type schema\n\n**Implementation:**\n- Async/await for I/O operations\n- Proper error handling with actionable messages\n- Support pagination where applicable\n- Return both text content and structured data when using modern SDKs\n\n**Annotations:**\n- `readOnlyHint`: true/false\n- `destructiveHint`: true/false\n- `idempotentHint`: true/false\n- `openWorldHint`: true/false\n\n---\n\n### Phase 3: Review and Test\n\n#### 3.1 Code Quality\n\nReview for:\n- No duplicated code (DRY principle)\n- Consistent error handling\n- Full type coverage\n- Clear tool descriptions\n\n#### 3.2 Build and Test\n\n**TypeScript:**\n- Run `npm run build` to verify compilation\n- Test with MCP Inspector: `npx @modelcontextprotocol/inspector`\n\n**Python:**\n- Verify syntax: `python -m py_compile your_server.py`\n- Test with MCP Inspector\n\nSee language-specific guides for detailed testing approaches and quality checklists.\n\n---\n\n### Phase 4: Create Evaluations\n\nAfter implementing your MCP server, create comprehensive evaluations to test its effectiveness.\n\n**Load [✅ Evaluation Guide](./reference/evaluation.md) for complete evaluation guidelines.**\n\n#### 4.1 Understand Evaluation Purpose\n\nUse evaluations to test whether LLMs can effectively use your MCP server to answer realistic, complex questions.\n\n#### 4.2 Create 10 Evaluation Questions\n\nTo create effective evaluations, follow the process outlined in the evaluation guide:\n\n1. **Tool Inspection**: List available tools and understand their capabilities\n2. **Content Exploration**: Use READ-ONLY operations to explore available data\n3. **Question Generation**: Create 10 complex, realistic questions\n4. **Answer Verification**: Solve each question yourself to verify answers\n\n#### 4.3 Evaluation Requirements\n\nEnsure each question is:\n- **Independent**: Not dependent on other questions\n- **Read-only**: Only non-destructive operations required\n- **Complex**: Requiring multiple tool calls and deep exploration\n- **Realistic**: Based on real use cases humans would care about\n- **Verifiable**: Single, clear answer that can be verified by string comparison\n- **Stable**: Answer won't change over time\n\n#### 4.4 Output Format\n\nCreate an XML file with this structure:\n\n```xml\n<evaluation>\n  <qa_pair>\n    <question>Find discussions about AI model launches with animal codenames. One model needed a specific safety designation that uses the format ASL-X. What number X was being determined for the model named after a spotted wild cat?</question>\n    <answer>3</answer>\n  </qa_pair>\n<!-- More qa_pairs... -->\n</evaluation>\n```\n\n---\n\n# Reference Files\n\n## 📚 Documentation Library\n\nLoad these resources as needed during development:\n\n### Core MCP Documentation (Load First)\n- **MCP Protocol**: Start with sitemap at `https://modelcontextprotocol.io/sitemap.xml`, then fetch specific pages with `.md` suffix\n- [📋 MCP Best Practices](./reference/mcp_best_practices.md) - Universal MCP guidelines including:\n  - Server and tool naming conventions\n  - Response format guidelines (JSON vs Markdown)\n  - Pagination best practices\n  - Transport selection (streamable HTTP vs stdio)\n  - Security and error handling standards\n\n### SDK Documentation (Load During Phase 1/2)\n- **Python SDK**: Fetch from `https://raw.githubusercontent.com/modelcontextprotocol/python-sdk/main/README.md`\n- **TypeScript SDK**: Fetch from `https://raw.githubusercontent.com/modelcontextprotocol/typescript-sdk/main/README.md`\n\n### Language-Specific Implementation Guides (Load During Phase 2)\n- [🐍 Python Implementation Guide](./reference/python_mcp_server.md) - Complete Python/FastMCP guide with:\n  - Server initialization patterns\n  - Pydantic model examples\n  - Tool registration with `@mcp.tool`\n  - Complete working examples\n  - Quality checklist\n\n- [⚡ TypeScript Implementation Guide](./reference/node_mcp_server.md) - Complete TypeScript guide with:\n  - Project structure\n  - Zod schema patterns\n  - Tool registration with `server.registerTool`\n  - Complete working examples\n  - Quality checklist\n\n### Evaluation Guide (Load During Phase 4)\n- [✅ Evaluation Guide](./reference/evaluation.md) - Complete evaluation creation guide with:\n  - Question creation guidelines\n  - Answer verification strategies\n  - XML format specifications\n  - Example questions and answers\n  - Running an evaluation with the provided scripts\n"
  },
  {
    "path": "skills/mcp-builder/reference/evaluation.md",
    "content": "# MCP Server Evaluation Guide\n\n## Overview\n\nThis document provides guidance on creating comprehensive evaluations for MCP servers. Evaluations test whether LLMs can effectively use your MCP server to answer realistic, complex questions using only the tools provided.\n\n---\n\n## Quick Reference\n\n### Evaluation Requirements\n- Create 10 human-readable questions\n- Questions must be READ-ONLY, INDEPENDENT, NON-DESTRUCTIVE\n- Each question requires multiple tool calls (potentially dozens)\n- Answers must be single, verifiable values\n- Answers must be STABLE (won't change over time)\n\n### Output Format\n```xml\n<evaluation>\n   <qa_pair>\n      <question>Your question here</question>\n      <answer>Single verifiable answer</answer>\n   </qa_pair>\n</evaluation>\n```\n\n---\n\n## Purpose of Evaluations\n\nThe measure of quality of an MCP server is NOT how well or comprehensively the server implements tools, but how well these implementations (input/output schemas, docstrings/descriptions, functionality) enable LLMs with no other context and access ONLY to the MCP servers to answer realistic and difficult questions.\n\n## Evaluation Overview\n\nCreate 10 human-readable questions requiring ONLY READ-ONLY, INDEPENDENT, NON-DESTRUCTIVE, and IDEMPOTENT operations to answer. Each question should be:\n- Realistic\n- Clear and concise\n- Unambiguous\n- Complex, requiring potentially dozens of tool calls or steps\n- Answerable with a single, verifiable value that you identify in advance\n\n## Question Guidelines\n\n### Core Requirements\n\n1. **Questions MUST be independent**\n   - Each question should NOT depend on the answer to any other question\n   - Should not assume prior write operations from processing another question\n\n2. **Questions MUST require ONLY NON-DESTRUCTIVE AND IDEMPOTENT tool use**\n   - Should not instruct or require modifying state to arrive at the correct answer\n\n3. **Questions must be REALISTIC, CLEAR, CONCISE, and COMPLEX**\n   - Must require another LLM to use multiple (potentially dozens of) tools or steps to answer\n\n### Complexity and Depth\n\n4. **Questions must require deep exploration**\n   - Consider multi-hop questions requiring multiple sub-questions and sequential tool calls\n   - Each step should benefit from information found in previous questions\n\n5. **Questions may require extensive paging**\n   - May need paging through multiple pages of results\n   - May require querying old data (1-2 years out-of-date) to find niche information\n   - The questions must be DIFFICULT\n\n6. **Questions must require deep understanding**\n   - Rather than surface-level knowledge\n   - May pose complex ideas as True/False questions requiring evidence\n   - May use multiple-choice format where LLM must search different hypotheses\n\n7. **Questions must not be solvable with straightforward keyword search**\n   - Do not include specific keywords from the target content\n   - Use synonyms, related concepts, or paraphrases\n   - Require multiple searches, analyzing multiple related items, extracting context, then deriving the answer\n\n### Tool Testing\n\n8. **Questions should stress-test tool return values**\n   - May elicit tools returning large JSON objects or lists, overwhelming the LLM\n   - Should require understanding multiple modalities of data:\n     - IDs and names\n     - Timestamps and datetimes (months, days, years, seconds)\n     - File IDs, names, extensions, and mimetypes\n     - URLs, GIDs, etc.\n   - Should probe the tool's ability to return all useful forms of data\n\n9. **Questions should MOSTLY reflect real human use cases**\n   - The kinds of information retrieval tasks that HUMANS assisted by an LLM would care about\n\n10. **Questions may require dozens of tool calls**\n    - This challenges LLMs with limited context\n    - Encourages MCP server tools to reduce information returned\n\n11. **Include ambiguous questions**\n    - May be ambiguous OR require difficult decisions on which tools to call\n    - Force the LLM to potentially make mistakes or misinterpret\n    - Ensure that despite AMBIGUITY, there is STILL A SINGLE VERIFIABLE ANSWER\n\n### Stability\n\n12. **Questions must be designed so the answer DOES NOT CHANGE**\n    - Do not ask questions that rely on \"current state\" which is dynamic\n    - For example, do not count:\n      - Number of reactions to a post\n      - Number of replies to a thread\n      - Number of members in a channel\n\n13. **DO NOT let the MCP server RESTRICT the kinds of questions you create**\n    - Create challenging and complex questions\n    - Some may not be solvable with the available MCP server tools\n    - Questions may require specific output formats (datetime vs. epoch time, JSON vs. MARKDOWN)\n    - Questions may require dozens of tool calls to complete\n\n## Answer Guidelines\n\n### Verification\n\n1. **Answers must be VERIFIABLE via direct string comparison**\n   - If the answer can be re-written in many formats, clearly specify the output format in the QUESTION\n   - Examples: \"Use YYYY/MM/DD.\", \"Respond True or False.\", \"Answer A, B, C, or D and nothing else.\"\n   - Answer should be a single VERIFIABLE value such as:\n     - User ID, user name, display name, first name, last name\n     - Channel ID, channel name\n     - Message ID, string\n     - URL, title\n     - Numerical quantity\n     - Timestamp, datetime\n     - Boolean (for True/False questions)\n     - Email address, phone number\n     - File ID, file name, file extension\n     - Multiple choice answer\n   - Answers must not require special formatting or complex, structured output\n   - Answer will be verified using DIRECT STRING COMPARISON\n\n### Readability\n\n2. **Answers should generally prefer HUMAN-READABLE formats**\n   - Examples: names, first name, last name, datetime, file name, message string, URL, yes/no, true/false, a/b/c/d\n   - Rather than opaque IDs (though IDs are acceptable)\n   - The VAST MAJORITY of answers should be human-readable\n\n### Stability\n\n3. **Answers must be STABLE/STATIONARY**\n   - Look at old content (e.g., conversations that have ended, projects that have launched, questions answered)\n   - Create QUESTIONS based on \"closed\" concepts that will always return the same answer\n   - Questions may ask to consider a fixed time window to insulate from non-stationary answers\n   - Rely on context UNLIKELY to change\n   - Example: if finding a paper name, be SPECIFIC enough so answer is not confused with papers published later\n\n4. **Answers must be CLEAR and UNAMBIGUOUS**\n   - Questions must be designed so there is a single, clear answer\n   - Answer can be derived from using the MCP server tools\n\n### Diversity\n\n5. **Answers must be DIVERSE**\n   - Answer should be a single VERIFIABLE value in diverse modalities and formats\n   - User concept: user ID, user name, display name, first name, last name, email address, phone number\n   - Channel concept: channel ID, channel name, channel topic\n   - Message concept: message ID, message string, timestamp, month, day, year\n\n6. **Answers must NOT be complex structures**\n   - Not a list of values\n   - Not a complex object\n   - Not a list of IDs or strings\n   - Not natural language text\n   - UNLESS the answer can be straightforwardly verified using DIRECT STRING COMPARISON\n   - And can be realistically reproduced\n   - It should be unlikely that an LLM would return the same list in any other order or format\n\n## Evaluation Process\n\n### Step 1: Documentation Inspection\n\nRead the documentation of the target API to understand:\n- Available endpoints and functionality\n- If ambiguity exists, fetch additional information from the web\n- Parallelize this step AS MUCH AS POSSIBLE\n- Ensure each subagent is ONLY examining documentation from the file system or on the web\n\n### Step 2: Tool Inspection\n\nList the tools available in the MCP server:\n- Inspect the MCP server directly\n- Understand input/output schemas, docstrings, and descriptions\n- WITHOUT calling the tools themselves at this stage\n\n### Step 3: Developing Understanding\n\nRepeat steps 1 & 2 until you have a good understanding:\n- Iterate multiple times\n- Think about the kinds of tasks you want to create\n- Refine your understanding\n- At NO stage should you READ the code of the MCP server implementation itself\n- Use your intuition and understanding to create reasonable, realistic, but VERY challenging tasks\n\n### Step 4: Read-Only Content Inspection\n\nAfter understanding the API and tools, USE the MCP server tools:\n- Inspect content using READ-ONLY and NON-DESTRUCTIVE operations ONLY\n- Goal: identify specific content (e.g., users, channels, messages, projects, tasks) for creating realistic questions\n- Should NOT call any tools that modify state\n- Will NOT read the code of the MCP server implementation itself\n- Parallelize this step with individual sub-agents pursuing independent explorations\n- Ensure each subagent is only performing READ-ONLY, NON-DESTRUCTIVE, and IDEMPOTENT operations\n- BE CAREFUL: SOME TOOLS may return LOTS OF DATA which would cause you to run out of CONTEXT\n- Make INCREMENTAL, SMALL, AND TARGETED tool calls for exploration\n- In all tool call requests, use the `limit` parameter to limit results (<10)\n- Use pagination\n\n### Step 5: Task Generation\n\nAfter inspecting the content, create 10 human-readable questions:\n- An LLM should be able to answer these with the MCP server\n- Follow all question and answer guidelines above\n\n## Output Format\n\nEach QA pair consists of a question and an answer. The output should be an XML file with this structure:\n\n```xml\n<evaluation>\n   <qa_pair>\n      <question>Find the project created in Q2 2024 with the highest number of completed tasks. What is the project name?</question>\n      <answer>Website Redesign</answer>\n   </qa_pair>\n   <qa_pair>\n      <question>Search for issues labeled as \"bug\" that were closed in March 2024. Which user closed the most issues? Provide their username.</question>\n      <answer>sarah_dev</answer>\n   </qa_pair>\n   <qa_pair>\n      <question>Look for pull requests that modified files in the /api directory and were merged between January 1 and January 31, 2024. How many different contributors worked on these PRs?</question>\n      <answer>7</answer>\n   </qa_pair>\n   <qa_pair>\n      <question>Find the repository with the most stars that was created before 2023. What is the repository name?</question>\n      <answer>data-pipeline</answer>\n   </qa_pair>\n</evaluation>\n```\n\n## Evaluation Examples\n\n### Good Questions\n\n**Example 1: Multi-hop question requiring deep exploration (GitHub MCP)**\n```xml\n<qa_pair>\n   <question>Find the repository that was archived in Q3 2023 and had previously been the most forked project in the organization. What was the primary programming language used in that repository?</question>\n   <answer>Python</answer>\n</qa_pair>\n```\n\nThis question is good because:\n- Requires multiple searches to find archived repositories\n- Needs to identify which had the most forks before archival\n- Requires examining repository details for the language\n- Answer is a simple, verifiable value\n- Based on historical (closed) data that won't change\n\n**Example 2: Requires understanding context without keyword matching (Project Management MCP)**\n```xml\n<qa_pair>\n   <question>Locate the initiative focused on improving customer onboarding that was completed in late 2023. The project lead created a retrospective document after completion. What was the lead's role title at that time?</question>\n   <answer>Product Manager</answer>\n</qa_pair>\n```\n\nThis question is good because:\n- Doesn't use specific project name (\"initiative focused on improving customer onboarding\")\n- Requires finding completed projects from specific timeframe\n- Needs to identify the project lead and their role\n- Requires understanding context from retrospective documents\n- Answer is human-readable and stable\n- Based on completed work (won't change)\n\n**Example 3: Complex aggregation requiring multiple steps (Issue Tracker MCP)**\n```xml\n<qa_pair>\n   <question>Among all bugs reported in January 2024 that were marked as critical priority, which assignee resolved the highest percentage of their assigned bugs within 48 hours? Provide the assignee's username.</question>\n   <answer>alex_eng</answer>\n</qa_pair>\n```\n\nThis question is good because:\n- Requires filtering bugs by date, priority, and status\n- Needs to group by assignee and calculate resolution rates\n- Requires understanding timestamps to determine 48-hour windows\n- Tests pagination (potentially many bugs to process)\n- Answer is a single username\n- Based on historical data from specific time period\n\n**Example 4: Requires synthesis across multiple data types (CRM MCP)**\n```xml\n<qa_pair>\n   <question>Find the account that upgraded from the Starter to Enterprise plan in Q4 2023 and had the highest annual contract value. What industry does this account operate in?</question>\n   <answer>Healthcare</answer>\n</qa_pair>\n```\n\nThis question is good because:\n- Requires understanding subscription tier changes\n- Needs to identify upgrade events in specific timeframe\n- Requires comparing contract values\n- Must access account industry information\n- Answer is simple and verifiable\n- Based on completed historical transactions\n\n### Poor Questions\n\n**Example 1: Answer changes over time**\n```xml\n<qa_pair>\n   <question>How many open issues are currently assigned to the engineering team?</question>\n   <answer>47</answer>\n</qa_pair>\n```\n\nThis question is poor because:\n- The answer will change as issues are created, closed, or reassigned\n- Not based on stable/stationary data\n- Relies on \"current state\" which is dynamic\n\n**Example 2: Too easy with keyword search**\n```xml\n<qa_pair>\n   <question>Find the pull request with title \"Add authentication feature\" and tell me who created it.</question>\n   <answer>developer123</answer>\n</qa_pair>\n```\n\nThis question is poor because:\n- Can be solved with a straightforward keyword search for exact title\n- Doesn't require deep exploration or understanding\n- No synthesis or analysis needed\n\n**Example 3: Ambiguous answer format**\n```xml\n<qa_pair>\n   <question>List all the repositories that have Python as their primary language.</question>\n   <answer>repo1, repo2, repo3, data-pipeline, ml-tools</answer>\n</qa_pair>\n```\n\nThis question is poor because:\n- Answer is a list that could be returned in any order\n- Difficult to verify with direct string comparison\n- LLM might format differently (JSON array, comma-separated, newline-separated)\n- Better to ask for a specific aggregate (count) or superlative (most stars)\n\n## Verification Process\n\nAfter creating evaluations:\n\n1. **Examine the XML file** to understand the schema\n2. **Load each task instruction** and in parallel using the MCP server and tools, identify the correct answer by attempting to solve the task YOURSELF\n3. **Flag any operations** that require WRITE or DESTRUCTIVE operations\n4. **Accumulate all CORRECT answers** and replace any incorrect answers in the document\n5. **Remove any `<qa_pair>`** that require WRITE or DESTRUCTIVE operations\n\nRemember to parallelize solving tasks to avoid running out of context, then accumulate all answers and make changes to the file at the end.\n\n## Tips for Creating Quality Evaluations\n\n1. **Think Hard and Plan Ahead** before generating tasks\n2. **Parallelize Where Opportunity Arises** to speed up the process and manage context\n3. **Focus on Realistic Use Cases** that humans would actually want to accomplish\n4. **Create Challenging Questions** that test the limits of the MCP server's capabilities\n5. **Ensure Stability** by using historical data and closed concepts\n6. **Verify Answers** by solving the questions yourself using the MCP server tools\n7. **Iterate and Refine** based on what you learn during the process\n\n---\n\n# Running Evaluations\n\nAfter creating your evaluation file, you can use the provided evaluation harness to test your MCP server.\n\n## Setup\n\n1. **Install Dependencies**\n\n   ```bash\n   pip install -r scripts/requirements.txt\n   ```\n\n   Or install manually:\n   ```bash\n   pip install anthropic mcp\n   ```\n\n2. **Set API Key**\n\n   ```bash\n   export ANTHROPIC_API_KEY=your_api_key_here\n   ```\n\n## Evaluation File Format\n\nEvaluation files use XML format with `<qa_pair>` elements:\n\n```xml\n<evaluation>\n   <qa_pair>\n      <question>Find the project created in Q2 2024 with the highest number of completed tasks. What is the project name?</question>\n      <answer>Website Redesign</answer>\n   </qa_pair>\n   <qa_pair>\n      <question>Search for issues labeled as \"bug\" that were closed in March 2024. Which user closed the most issues? Provide their username.</question>\n      <answer>sarah_dev</answer>\n   </qa_pair>\n</evaluation>\n```\n\n## Running Evaluations\n\nThe evaluation script (`scripts/evaluation.py`) supports three transport types:\n\n**Important:**\n- **stdio transport**: The evaluation script automatically launches and manages the MCP server process for you. Do not run the server manually.\n- **sse/http transports**: You must start the MCP server separately before running the evaluation. The script connects to the already-running server at the specified URL.\n\n### 1. Local STDIO Server\n\nFor locally-run MCP servers (script launches the server automatically):\n\n```bash\npython scripts/evaluation.py \\\n  -t stdio \\\n  -c python \\\n  -a my_mcp_server.py \\\n  evaluation.xml\n```\n\nWith environment variables:\n```bash\npython scripts/evaluation.py \\\n  -t stdio \\\n  -c python \\\n  -a my_mcp_server.py \\\n  -e API_KEY=abc123 \\\n  -e DEBUG=true \\\n  evaluation.xml\n```\n\n### 2. Server-Sent Events (SSE)\n\nFor SSE-based MCP servers (you must start the server first):\n\n```bash\npython scripts/evaluation.py \\\n  -t sse \\\n  -u https://example.com/mcp \\\n  -H \"Authorization: Bearer token123\" \\\n  -H \"X-Custom-Header: value\" \\\n  evaluation.xml\n```\n\n### 3. HTTP (Streamable HTTP)\n\nFor HTTP-based MCP servers (you must start the server first):\n\n```bash\npython scripts/evaluation.py \\\n  -t http \\\n  -u https://example.com/mcp \\\n  -H \"Authorization: Bearer token123\" \\\n  evaluation.xml\n```\n\n## Command-Line Options\n\n```\nusage: evaluation.py [-h] [-t {stdio,sse,http}] [-m MODEL] [-c COMMAND]\n                     [-a ARGS [ARGS ...]] [-e ENV [ENV ...]] [-u URL]\n                     [-H HEADERS [HEADERS ...]] [-o OUTPUT]\n                     eval_file\n\npositional arguments:\n  eval_file             Path to evaluation XML file\n\noptional arguments:\n  -h, --help            Show help message\n  -t, --transport       Transport type: stdio, sse, or http (default: stdio)\n  -m, --model           Claude model to use (default: claude-3-7-sonnet-20250219)\n  -o, --output          Output file for report (default: print to stdout)\n\nstdio options:\n  -c, --command         Command to run MCP server (e.g., python, node)\n  -a, --args            Arguments for the command (e.g., server.py)\n  -e, --env             Environment variables in KEY=VALUE format\n\nsse/http options:\n  -u, --url             MCP server URL\n  -H, --header          HTTP headers in 'Key: Value' format\n```\n\n## Output\n\nThe evaluation script generates a detailed report including:\n\n- **Summary Statistics**:\n  - Accuracy (correct/total)\n  - Average task duration\n  - Average tool calls per task\n  - Total tool calls\n\n- **Per-Task Results**:\n  - Prompt and expected response\n  - Actual response from the agent\n  - Whether the answer was correct (✅/❌)\n  - Duration and tool call details\n  - Agent's summary of its approach\n  - Agent's feedback on the tools\n\n### Save Report to File\n\n```bash\npython scripts/evaluation.py \\\n  -t stdio \\\n  -c python \\\n  -a my_server.py \\\n  -o evaluation_report.md \\\n  evaluation.xml\n```\n\n## Complete Example Workflow\n\nHere's a complete example of creating and running an evaluation:\n\n1. **Create your evaluation file** (`my_evaluation.xml`):\n\n```xml\n<evaluation>\n   <qa_pair>\n      <question>Find the user who created the most issues in January 2024. What is their username?</question>\n      <answer>alice_developer</answer>\n   </qa_pair>\n   <qa_pair>\n      <question>Among all pull requests merged in Q1 2024, which repository had the highest number? Provide the repository name.</question>\n      <answer>backend-api</answer>\n   </qa_pair>\n   <qa_pair>\n      <question>Find the project that was completed in December 2023 and had the longest duration from start to finish. How many days did it take?</question>\n      <answer>127</answer>\n   </qa_pair>\n</evaluation>\n```\n\n2. **Install dependencies**:\n\n```bash\npip install -r scripts/requirements.txt\nexport ANTHROPIC_API_KEY=your_api_key\n```\n\n3. **Run evaluation**:\n\n```bash\npython scripts/evaluation.py \\\n  -t stdio \\\n  -c python \\\n  -a github_mcp_server.py \\\n  -e GITHUB_TOKEN=ghp_xxx \\\n  -o github_eval_report.md \\\n  my_evaluation.xml\n```\n\n4. **Review the report** in `github_eval_report.md` to:\n   - See which questions passed/failed\n   - Read the agent's feedback on your tools\n   - Identify areas for improvement\n   - Iterate on your MCP server design\n\n## Troubleshooting\n\n### Connection Errors\n\nIf you get connection errors:\n- **STDIO**: Verify the command and arguments are correct\n- **SSE/HTTP**: Check the URL is accessible and headers are correct\n- Ensure any required API keys are set in environment variables or headers\n\n### Low Accuracy\n\nIf many evaluations fail:\n- Review the agent's feedback for each task\n- Check if tool descriptions are clear and comprehensive\n- Verify input parameters are well-documented\n- Consider whether tools return too much or too little data\n- Ensure error messages are actionable\n\n### Timeout Issues\n\nIf tasks are timing out:\n- Use a more capable model (e.g., `claude-3-7-sonnet-20250219`)\n- Check if tools are returning too much data\n- Verify pagination is working correctly\n- Consider simplifying complex questions"
  },
  {
    "path": "skills/mcp-builder/reference/mcp_best_practices.md",
    "content": "# MCP Server Best Practices\n\n## Quick Reference\n\n### Server Naming\n- **Python**: `{service}_mcp` (e.g., `slack_mcp`)\n- **Node/TypeScript**: `{service}-mcp-server` (e.g., `slack-mcp-server`)\n\n### Tool Naming\n- Use snake_case with service prefix\n- Format: `{service}_{action}_{resource}`\n- Example: `slack_send_message`, `github_create_issue`\n\n### Response Formats\n- Support both JSON and Markdown formats\n- JSON for programmatic processing\n- Markdown for human readability\n\n### Pagination\n- Always respect `limit` parameter\n- Return `has_more`, `next_offset`, `total_count`\n- Default to 20-50 items\n\n### Transport\n- **Streamable HTTP**: For remote servers, multi-client scenarios\n- **stdio**: For local integrations, command-line tools\n- Avoid SSE (deprecated in favor of streamable HTTP)\n\n---\n\n## Server Naming Conventions\n\nFollow these standardized naming patterns:\n\n**Python**: Use format `{service}_mcp` (lowercase with underscores)\n- Examples: `slack_mcp`, `github_mcp`, `jira_mcp`\n\n**Node/TypeScript**: Use format `{service}-mcp-server` (lowercase with hyphens)\n- Examples: `slack-mcp-server`, `github-mcp-server`, `jira-mcp-server`\n\nThe name should be general, descriptive of the service being integrated, easy to infer from the task description, and without version numbers.\n\n---\n\n## Tool Naming and Design\n\n### Tool Naming\n\n1. **Use snake_case**: `search_users`, `create_project`, `get_channel_info`\n2. **Include service prefix**: Anticipate that your MCP server may be used alongside other MCP servers\n   - Use `slack_send_message` instead of just `send_message`\n   - Use `github_create_issue` instead of just `create_issue`\n3. **Be action-oriented**: Start with verbs (get, list, search, create, etc.)\n4. **Be specific**: Avoid generic names that could conflict with other servers\n\n### Tool Design\n\n- Tool descriptions must narrowly and unambiguously describe functionality\n- Descriptions must precisely match actual functionality\n- Provide tool annotations (readOnlyHint, destructiveHint, idempotentHint, openWorldHint)\n- Keep tool operations focused and atomic\n\n---\n\n## Response Formats\n\nAll tools that return data should support multiple formats:\n\n### JSON Format (`response_format=\"json\"`)\n- Machine-readable structured data\n- Include all available fields and metadata\n- Consistent field names and types\n- Use for programmatic processing\n\n### Markdown Format (`response_format=\"markdown\"`, typically default)\n- Human-readable formatted text\n- Use headers, lists, and formatting for clarity\n- Convert timestamps to human-readable format\n- Show display names with IDs in parentheses\n- Omit verbose metadata\n\n---\n\n## Pagination\n\nFor tools that list resources:\n\n- **Always respect the `limit` parameter**\n- **Implement pagination**: Use `offset` or cursor-based pagination\n- **Return pagination metadata**: Include `has_more`, `next_offset`/`next_cursor`, `total_count`\n- **Never load all results into memory**: Especially important for large datasets\n- **Default to reasonable limits**: 20-50 items is typical\n\nExample pagination response:\n```json\n{\n  \"total\": 150,\n  \"count\": 20,\n  \"offset\": 0,\n  \"items\": [...],\n  \"has_more\": true,\n  \"next_offset\": 20\n}\n```\n\n---\n\n## Transport Options\n\n### Streamable HTTP\n\n**Best for**: Remote servers, web services, multi-client scenarios\n\n**Characteristics**:\n- Bidirectional communication over HTTP\n- Supports multiple simultaneous clients\n- Can be deployed as a web service\n- Enables server-to-client notifications\n\n**Use when**:\n- Serving multiple clients simultaneously\n- Deploying as a cloud service\n- Integration with web applications\n\n### stdio\n\n**Best for**: Local integrations, command-line tools\n\n**Characteristics**:\n- Standard input/output stream communication\n- Simple setup, no network configuration needed\n- Runs as a subprocess of the client\n\n**Use when**:\n- Building tools for local development environments\n- Integrating with desktop applications\n- Single-user, single-session scenarios\n\n**Note**: stdio servers should NOT log to stdout (use stderr for logging)\n\n### Transport Selection\n\n| Criterion | stdio | Streamable HTTP |\n|-----------|-------|-----------------|\n| **Deployment** | Local | Remote |\n| **Clients** | Single | Multiple |\n| **Complexity** | Low | Medium |\n| **Real-time** | No | Yes |\n\n---\n\n## Security Best Practices\n\n### Authentication and Authorization\n\n**OAuth 2.1**:\n- Use secure OAuth 2.1 with certificates from recognized authorities\n- Validate access tokens before processing requests\n- Only accept tokens specifically intended for your server\n\n**API Keys**:\n- Store API keys in environment variables, never in code\n- Validate keys on server startup\n- Provide clear error messages when authentication fails\n\n### Input Validation\n\n- Sanitize file paths to prevent directory traversal\n- Validate URLs and external identifiers\n- Check parameter sizes and ranges\n- Prevent command injection in system calls\n- Use schema validation (Pydantic/Zod) for all inputs\n\n### Error Handling\n\n- Don't expose internal errors to clients\n- Log security-relevant errors server-side\n- Provide helpful but not revealing error messages\n- Clean up resources after errors\n\n### DNS Rebinding Protection\n\nFor streamable HTTP servers running locally:\n- Enable DNS rebinding protection\n- Validate the `Origin` header on all incoming connections\n- Bind to `127.0.0.1` rather than `0.0.0.0`\n\n---\n\n## Tool Annotations\n\nProvide annotations to help clients understand tool behavior:\n\n| Annotation | Type | Default | Description |\n|-----------|------|---------|-------------|\n| `readOnlyHint` | boolean | false | Tool does not modify its environment |\n| `destructiveHint` | boolean | true | Tool may perform destructive updates |\n| `idempotentHint` | boolean | false | Repeated calls with same args have no additional effect |\n| `openWorldHint` | boolean | true | Tool interacts with external entities |\n\n**Important**: Annotations are hints, not security guarantees. Clients should not make security-critical decisions based solely on annotations.\n\n---\n\n## Error Handling\n\n- Use standard JSON-RPC error codes\n- Report tool errors within result objects (not protocol-level errors)\n- Provide helpful, specific error messages with suggested next steps\n- Don't expose internal implementation details\n- Clean up resources properly on errors\n\nExample error handling:\n```typescript\ntry {\n  const result = performOperation();\n  return { content: [{ type: \"text\", text: result }] };\n} catch (error) {\n  return {\n    isError: true,\n    content: [{\n      type: \"text\",\n      text: `Error: ${error.message}. Try using filter='active_only' to reduce results.`\n    }]\n  };\n}\n```\n\n---\n\n## Testing Requirements\n\nComprehensive testing should cover:\n\n- **Functional testing**: Verify correct execution with valid/invalid inputs\n- **Integration testing**: Test interaction with external systems\n- **Security testing**: Validate auth, input sanitization, rate limiting\n- **Performance testing**: Check behavior under load, timeouts\n- **Error handling**: Ensure proper error reporting and cleanup\n\n---\n\n## Documentation Requirements\n\n- Provide clear documentation of all tools and capabilities\n- Include working examples (at least 3 per major feature)\n- Document security considerations\n- Specify required permissions and access levels\n- Document rate limits and performance characteristics\n"
  },
  {
    "path": "skills/mcp-builder/reference/node_mcp_server.md",
    "content": "# Node/TypeScript MCP Server Implementation Guide\n\n## Overview\n\nThis document provides Node/TypeScript-specific best practices and examples for implementing MCP servers using the MCP TypeScript SDK. It covers project structure, server setup, tool registration patterns, input validation with Zod, error handling, and complete working examples.\n\n---\n\n## Quick Reference\n\n### Key Imports\n```typescript\nimport { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StreamableHTTPServerTransport } from \"@modelcontextprotocol/sdk/server/streamableHttp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport express from \"express\";\nimport { z } from \"zod\";\n```\n\n### Server Initialization\n```typescript\nconst server = new McpServer({\n  name: \"service-mcp-server\",\n  version: \"1.0.0\"\n});\n```\n\n### Tool Registration Pattern\n```typescript\nserver.registerTool(\n  \"tool_name\",\n  {\n    title: \"Tool Display Name\",\n    description: \"What the tool does\",\n    inputSchema: { param: z.string() },\n    outputSchema: { result: z.string() }\n  },\n  async ({ param }) => {\n    const output = { result: `Processed: ${param}` };\n    return {\n      content: [{ type: \"text\", text: JSON.stringify(output) }],\n      structuredContent: output // Modern pattern for structured data\n    };\n  }\n);\n```\n\n---\n\n## MCP TypeScript SDK\n\nThe official MCP TypeScript SDK provides:\n- `McpServer` class for server initialization\n- `registerTool` method for tool registration\n- Zod schema integration for runtime input validation\n- Type-safe tool handler implementations\n\n**IMPORTANT - Use Modern APIs Only:**\n- **DO use**: `server.registerTool()`, `server.registerResource()`, `server.registerPrompt()`\n- **DO NOT use**: Old deprecated APIs such as `server.tool()`, `server.setRequestHandler(ListToolsRequestSchema, ...)`, or manual handler registration\n- The `register*` methods provide better type safety, automatic schema handling, and are the recommended approach\n\nSee the MCP SDK documentation in the references for complete details.\n\n## Server Naming Convention\n\nNode/TypeScript MCP servers must follow this naming pattern:\n- **Format**: `{service}-mcp-server` (lowercase with hyphens)\n- **Examples**: `github-mcp-server`, `jira-mcp-server`, `stripe-mcp-server`\n\nThe name should be:\n- General (not tied to specific features)\n- Descriptive of the service/API being integrated\n- Easy to infer from the task description\n- Without version numbers or dates\n\n## Project Structure\n\nCreate the following structure for Node/TypeScript MCP servers:\n\n```\n{service}-mcp-server/\n├── package.json\n├── tsconfig.json\n├── README.md\n├── src/\n│   ├── index.ts          # Main entry point with McpServer initialization\n│   ├── types.ts          # TypeScript type definitions and interfaces\n│   ├── tools/            # Tool implementations (one file per domain)\n│   ├── services/         # API clients and shared utilities\n│   ├── schemas/          # Zod validation schemas\n│   └── constants.ts      # Shared constants (API_URL, CHARACTER_LIMIT, etc.)\n└── dist/                 # Built JavaScript files (entry point: dist/index.js)\n```\n\n## Tool Implementation\n\n### Tool Naming\n\nUse snake_case for tool names (e.g., \"search_users\", \"create_project\", \"get_channel_info\") with clear, action-oriented names.\n\n**Avoid Naming Conflicts**: Include the service context to prevent overlaps:\n- Use \"slack_send_message\" instead of just \"send_message\"\n- Use \"github_create_issue\" instead of just \"create_issue\"\n- Use \"asana_list_tasks\" instead of just \"list_tasks\"\n\n### Tool Structure\n\nTools are registered using the `registerTool` method with the following requirements:\n- Use Zod schemas for runtime input validation and type safety\n- The `description` field must be explicitly provided - JSDoc comments are NOT automatically extracted\n- Explicitly provide `title`, `description`, `inputSchema`, and `annotations`\n- The `inputSchema` must be a Zod schema object (not a JSON schema)\n- Type all parameters and return values explicitly\n\n```typescript\nimport { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { z } from \"zod\";\n\nconst server = new McpServer({\n  name: \"example-mcp\",\n  version: \"1.0.0\"\n});\n\n// Zod schema for input validation\nconst UserSearchInputSchema = z.object({\n  query: z.string()\n    .min(2, \"Query must be at least 2 characters\")\n    .max(200, \"Query must not exceed 200 characters\")\n    .describe(\"Search string to match against names/emails\"),\n  limit: z.number()\n    .int()\n    .min(1)\n    .max(100)\n    .default(20)\n    .describe(\"Maximum results to return\"),\n  offset: z.number()\n    .int()\n    .min(0)\n    .default(0)\n    .describe(\"Number of results to skip for pagination\"),\n  response_format: z.nativeEnum(ResponseFormat)\n    .default(ResponseFormat.MARKDOWN)\n    .describe(\"Output format: 'markdown' for human-readable or 'json' for machine-readable\")\n}).strict();\n\n// Type definition from Zod schema\ntype UserSearchInput = z.infer<typeof UserSearchInputSchema>;\n\nserver.registerTool(\n  \"example_search_users\",\n  {\n    title: \"Search Example Users\",\n    description: `Search for users in the Example system by name, email, or team.\n\nThis tool searches across all user profiles in the Example platform, supporting partial matches and various search filters. It does NOT create or modify users, only searches existing ones.\n\nArgs:\n  - query (string): Search string to match against names/emails\n  - limit (number): Maximum results to return, between 1-100 (default: 20)\n  - offset (number): Number of results to skip for pagination (default: 0)\n  - response_format ('markdown' | 'json'): Output format (default: 'markdown')\n\nReturns:\n  For JSON format: Structured data with schema:\n  {\n    \"total\": number,           // Total number of matches found\n    \"count\": number,           // Number of results in this response\n    \"offset\": number,          // Current pagination offset\n    \"users\": [\n      {\n        \"id\": string,          // User ID (e.g., \"U123456789\")\n        \"name\": string,        // Full name (e.g., \"John Doe\")\n        \"email\": string,       // Email address\n        \"team\": string,        // Team name (optional)\n        \"active\": boolean      // Whether user is active\n      }\n    ],\n    \"has_more\": boolean,       // Whether more results are available\n    \"next_offset\": number      // Offset for next page (if has_more is true)\n  }\n\nExamples:\n  - Use when: \"Find all marketing team members\" -> params with query=\"team:marketing\"\n  - Use when: \"Search for John's account\" -> params with query=\"john\"\n  - Don't use when: You need to create a user (use example_create_user instead)\n\nError Handling:\n  - Returns \"Error: Rate limit exceeded\" if too many requests (429 status)\n  - Returns \"No users found matching '<query>'\" if search returns empty`,\n    inputSchema: UserSearchInputSchema,\n    annotations: {\n      readOnlyHint: true,\n      destructiveHint: false,\n      idempotentHint: true,\n      openWorldHint: true\n    }\n  },\n  async (params: UserSearchInput) => {\n    try {\n      // Input validation is handled by Zod schema\n      // Make API request using validated parameters\n      const data = await makeApiRequest<any>(\n        \"users/search\",\n        \"GET\",\n        undefined,\n        {\n          q: params.query,\n          limit: params.limit,\n          offset: params.offset\n        }\n      );\n\n      const users = data.users || [];\n      const total = data.total || 0;\n\n      if (!users.length) {\n        return {\n          content: [{\n            type: \"text\",\n            text: `No users found matching '${params.query}'`\n          }]\n        };\n      }\n\n      // Prepare structured output\n      const output = {\n        total,\n        count: users.length,\n        offset: params.offset,\n        users: users.map((user: any) => ({\n          id: user.id,\n          name: user.name,\n          email: user.email,\n          ...(user.team ? { team: user.team } : {}),\n          active: user.active ?? true\n        })),\n        has_more: total > params.offset + users.length,\n        ...(total > params.offset + users.length ? {\n          next_offset: params.offset + users.length\n        } : {})\n      };\n\n      // Format text representation based on requested format\n      let textContent: string;\n      if (params.response_format === ResponseFormat.MARKDOWN) {\n        const lines = [`# User Search Results: '${params.query}'`, \"\",\n          `Found ${total} users (showing ${users.length})`, \"\"];\n        for (const user of users) {\n          lines.push(`## ${user.name} (${user.id})`);\n          lines.push(`- **Email**: ${user.email}`);\n          if (user.team) lines.push(`- **Team**: ${user.team}`);\n          lines.push(\"\");\n        }\n        textContent = lines.join(\"\\n\");\n      } else {\n        textContent = JSON.stringify(output, null, 2);\n      }\n\n      return {\n        content: [{ type: \"text\", text: textContent }],\n        structuredContent: output // Modern pattern for structured data\n      };\n    } catch (error) {\n      return {\n        content: [{\n          type: \"text\",\n          text: handleApiError(error)\n        }]\n      };\n    }\n  }\n);\n```\n\n## Zod Schemas for Input Validation\n\nZod provides runtime type validation:\n\n```typescript\nimport { z } from \"zod\";\n\n// Basic schema with validation\nconst CreateUserSchema = z.object({\n  name: z.string()\n    .min(1, \"Name is required\")\n    .max(100, \"Name must not exceed 100 characters\"),\n  email: z.string()\n    .email(\"Invalid email format\"),\n  age: z.number()\n    .int(\"Age must be a whole number\")\n    .min(0, \"Age cannot be negative\")\n    .max(150, \"Age cannot be greater than 150\")\n}).strict();  // Use .strict() to forbid extra fields\n\n// Enums\nenum ResponseFormat {\n  MARKDOWN = \"markdown\",\n  JSON = \"json\"\n}\n\nconst SearchSchema = z.object({\n  response_format: z.nativeEnum(ResponseFormat)\n    .default(ResponseFormat.MARKDOWN)\n    .describe(\"Output format\")\n});\n\n// Optional fields with defaults\nconst PaginationSchema = z.object({\n  limit: z.number()\n    .int()\n    .min(1)\n    .max(100)\n    .default(20)\n    .describe(\"Maximum results to return\"),\n  offset: z.number()\n    .int()\n    .min(0)\n    .default(0)\n    .describe(\"Number of results to skip\")\n});\n```\n\n## Response Format Options\n\nSupport multiple output formats for flexibility:\n\n```typescript\nenum ResponseFormat {\n  MARKDOWN = \"markdown\",\n  JSON = \"json\"\n}\n\nconst inputSchema = z.object({\n  query: z.string(),\n  response_format: z.nativeEnum(ResponseFormat)\n    .default(ResponseFormat.MARKDOWN)\n    .describe(\"Output format: 'markdown' for human-readable or 'json' for machine-readable\")\n});\n```\n\n**Markdown format**:\n- Use headers, lists, and formatting for clarity\n- Convert timestamps to human-readable format\n- Show display names with IDs in parentheses\n- Omit verbose metadata\n- Group related information logically\n\n**JSON format**:\n- Return complete, structured data suitable for programmatic processing\n- Include all available fields and metadata\n- Use consistent field names and types\n\n## Pagination Implementation\n\nFor tools that list resources:\n\n```typescript\nconst ListSchema = z.object({\n  limit: z.number().int().min(1).max(100).default(20),\n  offset: z.number().int().min(0).default(0)\n});\n\nasync function listItems(params: z.infer<typeof ListSchema>) {\n  const data = await apiRequest(params.limit, params.offset);\n\n  const response = {\n    total: data.total,\n    count: data.items.length,\n    offset: params.offset,\n    items: data.items,\n    has_more: data.total > params.offset + data.items.length,\n    next_offset: data.total > params.offset + data.items.length\n      ? params.offset + data.items.length\n      : undefined\n  };\n\n  return JSON.stringify(response, null, 2);\n}\n```\n\n## Character Limits and Truncation\n\nAdd a CHARACTER_LIMIT constant to prevent overwhelming responses:\n\n```typescript\n// At module level in constants.ts\nexport const CHARACTER_LIMIT = 25000;  // Maximum response size in characters\n\nasync function searchTool(params: SearchInput) {\n  let result = generateResponse(data);\n\n  // Check character limit and truncate if needed\n  if (result.length > CHARACTER_LIMIT) {\n    const truncatedData = data.slice(0, Math.max(1, data.length / 2));\n    response.data = truncatedData;\n    response.truncated = true;\n    response.truncation_message =\n      `Response truncated from ${data.length} to ${truncatedData.length} items. ` +\n      `Use 'offset' parameter or add filters to see more results.`;\n    result = JSON.stringify(response, null, 2);\n  }\n\n  return result;\n}\n```\n\n## Error Handling\n\nProvide clear, actionable error messages:\n\n```typescript\nimport axios, { AxiosError } from \"axios\";\n\nfunction handleApiError(error: unknown): string {\n  if (error instanceof AxiosError) {\n    if (error.response) {\n      switch (error.response.status) {\n        case 404:\n          return \"Error: Resource not found. Please check the ID is correct.\";\n        case 403:\n          return \"Error: Permission denied. You don't have access to this resource.\";\n        case 429:\n          return \"Error: Rate limit exceeded. Please wait before making more requests.\";\n        default:\n          return `Error: API request failed with status ${error.response.status}`;\n      }\n    } else if (error.code === \"ECONNABORTED\") {\n      return \"Error: Request timed out. Please try again.\";\n    }\n  }\n  return `Error: Unexpected error occurred: ${error instanceof Error ? error.message : String(error)}`;\n}\n```\n\n## Shared Utilities\n\nExtract common functionality into reusable functions:\n\n```typescript\n// Shared API request function\nasync function makeApiRequest<T>(\n  endpoint: string,\n  method: \"GET\" | \"POST\" | \"PUT\" | \"DELETE\" = \"GET\",\n  data?: any,\n  params?: any\n): Promise<T> {\n  try {\n    const response = await axios({\n      method,\n      url: `${API_BASE_URL}/${endpoint}`,\n      data,\n      params,\n      timeout: 30000,\n      headers: {\n        \"Content-Type\": \"application/json\",\n        \"Accept\": \"application/json\"\n      }\n    });\n    return response.data;\n  } catch (error) {\n    throw error;\n  }\n}\n```\n\n## Async/Await Best Practices\n\nAlways use async/await for network requests and I/O operations:\n\n```typescript\n// Good: Async network request\nasync function fetchData(resourceId: string): Promise<ResourceData> {\n  const response = await axios.get(`${API_URL}/resource/${resourceId}`);\n  return response.data;\n}\n\n// Bad: Promise chains\nfunction fetchData(resourceId: string): Promise<ResourceData> {\n  return axios.get(`${API_URL}/resource/${resourceId}`)\n    .then(response => response.data);  // Harder to read and maintain\n}\n```\n\n## TypeScript Best Practices\n\n1. **Use Strict TypeScript**: Enable strict mode in tsconfig.json\n2. **Define Interfaces**: Create clear interface definitions for all data structures\n3. **Avoid `any`**: Use proper types or `unknown` instead of `any`\n4. **Zod for Runtime Validation**: Use Zod schemas to validate external data\n5. **Type Guards**: Create type guard functions for complex type checking\n6. **Error Handling**: Always use try-catch with proper error type checking\n7. **Null Safety**: Use optional chaining (`?.`) and nullish coalescing (`??`)\n\n```typescript\n// Good: Type-safe with Zod and interfaces\ninterface UserResponse {\n  id: string;\n  name: string;\n  email: string;\n  team?: string;\n  active: boolean;\n}\n\nconst UserSchema = z.object({\n  id: z.string(),\n  name: z.string(),\n  email: z.string().email(),\n  team: z.string().optional(),\n  active: z.boolean()\n});\n\ntype User = z.infer<typeof UserSchema>;\n\nasync function getUser(id: string): Promise<User> {\n  const data = await apiCall(`/users/${id}`);\n  return UserSchema.parse(data);  // Runtime validation\n}\n\n// Bad: Using any\nasync function getUser(id: string): Promise<any> {\n  return await apiCall(`/users/${id}`);  // No type safety\n}\n```\n\n## Package Configuration\n\n### package.json\n\n```json\n{\n  \"name\": \"{service}-mcp-server\",\n  \"version\": \"1.0.0\",\n  \"description\": \"MCP server for {Service} API integration\",\n  \"type\": \"module\",\n  \"main\": \"dist/index.js\",\n  \"scripts\": {\n    \"start\": \"node dist/index.js\",\n    \"dev\": \"tsx watch src/index.ts\",\n    \"build\": \"tsc\",\n    \"clean\": \"rm -rf dist\"\n  },\n  \"engines\": {\n    \"node\": \">=18\"\n  },\n  \"dependencies\": {\n    \"@modelcontextprotocol/sdk\": \"^1.6.1\",\n    \"axios\": \"^1.7.9\",\n    \"zod\": \"^3.23.8\"\n  },\n  \"devDependencies\": {\n    \"@types/node\": \"^22.10.0\",\n    \"tsx\": \"^4.19.2\",\n    \"typescript\": \"^5.7.2\"\n  }\n}\n```\n\n### tsconfig.json\n\n```json\n{\n  \"compilerOptions\": {\n    \"target\": \"ES2022\",\n    \"module\": \"Node16\",\n    \"moduleResolution\": \"Node16\",\n    \"lib\": [\"ES2022\"],\n    \"outDir\": \"./dist\",\n    \"rootDir\": \"./src\",\n    \"strict\": true,\n    \"esModuleInterop\": true,\n    \"skipLibCheck\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"declaration\": true,\n    \"declarationMap\": true,\n    \"sourceMap\": true,\n    \"allowSyntheticDefaultImports\": true\n  },\n  \"include\": [\"src/**/*\"],\n  \"exclude\": [\"node_modules\", \"dist\"]\n}\n```\n\n## Complete Example\n\n```typescript\n#!/usr/bin/env node\n/**\n * MCP Server for Example Service.\n *\n * This server provides tools to interact with Example API, including user search,\n * project management, and data export capabilities.\n */\n\nimport { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { z } from \"zod\";\nimport axios, { AxiosError } from \"axios\";\n\n// Constants\nconst API_BASE_URL = \"https://api.example.com/v1\";\nconst CHARACTER_LIMIT = 25000;\n\n// Enums\nenum ResponseFormat {\n  MARKDOWN = \"markdown\",\n  JSON = \"json\"\n}\n\n// Zod schemas\nconst UserSearchInputSchema = z.object({\n  query: z.string()\n    .min(2, \"Query must be at least 2 characters\")\n    .max(200, \"Query must not exceed 200 characters\")\n    .describe(\"Search string to match against names/emails\"),\n  limit: z.number()\n    .int()\n    .min(1)\n    .max(100)\n    .default(20)\n    .describe(\"Maximum results to return\"),\n  offset: z.number()\n    .int()\n    .min(0)\n    .default(0)\n    .describe(\"Number of results to skip for pagination\"),\n  response_format: z.nativeEnum(ResponseFormat)\n    .default(ResponseFormat.MARKDOWN)\n    .describe(\"Output format: 'markdown' for human-readable or 'json' for machine-readable\")\n}).strict();\n\ntype UserSearchInput = z.infer<typeof UserSearchInputSchema>;\n\n// Shared utility functions\nasync function makeApiRequest<T>(\n  endpoint: string,\n  method: \"GET\" | \"POST\" | \"PUT\" | \"DELETE\" = \"GET\",\n  data?: any,\n  params?: any\n): Promise<T> {\n  try {\n    const response = await axios({\n      method,\n      url: `${API_BASE_URL}/${endpoint}`,\n      data,\n      params,\n      timeout: 30000,\n      headers: {\n        \"Content-Type\": \"application/json\",\n        \"Accept\": \"application/json\"\n      }\n    });\n    return response.data;\n  } catch (error) {\n    throw error;\n  }\n}\n\nfunction handleApiError(error: unknown): string {\n  if (error instanceof AxiosError) {\n    if (error.response) {\n      switch (error.response.status) {\n        case 404:\n          return \"Error: Resource not found. Please check the ID is correct.\";\n        case 403:\n          return \"Error: Permission denied. You don't have access to this resource.\";\n        case 429:\n          return \"Error: Rate limit exceeded. Please wait before making more requests.\";\n        default:\n          return `Error: API request failed with status ${error.response.status}`;\n      }\n    } else if (error.code === \"ECONNABORTED\") {\n      return \"Error: Request timed out. Please try again.\";\n    }\n  }\n  return `Error: Unexpected error occurred: ${error instanceof Error ? error.message : String(error)}`;\n}\n\n// Create MCP server instance\nconst server = new McpServer({\n  name: \"example-mcp\",\n  version: \"1.0.0\"\n});\n\n// Register tools\nserver.registerTool(\n  \"example_search_users\",\n  {\n    title: \"Search Example Users\",\n    description: `[Full description as shown above]`,\n    inputSchema: UserSearchInputSchema,\n    annotations: {\n      readOnlyHint: true,\n      destructiveHint: false,\n      idempotentHint: true,\n      openWorldHint: true\n    }\n  },\n  async (params: UserSearchInput) => {\n    // Implementation as shown above\n  }\n);\n\n// Main function\n// For stdio (local):\nasync function runStdio() {\n  if (!process.env.EXAMPLE_API_KEY) {\n    console.error(\"ERROR: EXAMPLE_API_KEY environment variable is required\");\n    process.exit(1);\n  }\n\n  const transport = new StdioServerTransport();\n  await server.connect(transport);\n  console.error(\"MCP server running via stdio\");\n}\n\n// For streamable HTTP (remote):\nasync function runHTTP() {\n  if (!process.env.EXAMPLE_API_KEY) {\n    console.error(\"ERROR: EXAMPLE_API_KEY environment variable is required\");\n    process.exit(1);\n  }\n\n  const app = express();\n  app.use(express.json());\n\n  app.post('/mcp', async (req, res) => {\n    const transport = new StreamableHTTPServerTransport({\n      sessionIdGenerator: undefined,\n      enableJsonResponse: true\n    });\n    res.on('close', () => transport.close());\n    await server.connect(transport);\n    await transport.handleRequest(req, res, req.body);\n  });\n\n  const port = parseInt(process.env.PORT || '3000');\n  app.listen(port, () => {\n    console.error(`MCP server running on http://localhost:${port}/mcp`);\n  });\n}\n\n// Choose transport based on environment\nconst transport = process.env.TRANSPORT || 'stdio';\nif (transport === 'http') {\n  runHTTP().catch(error => {\n    console.error(\"Server error:\", error);\n    process.exit(1);\n  });\n} else {\n  runStdio().catch(error => {\n    console.error(\"Server error:\", error);\n    process.exit(1);\n  });\n}\n```\n\n---\n\n## Advanced MCP Features\n\n### Resource Registration\n\nExpose data as resources for efficient, URI-based access:\n\n```typescript\nimport { ResourceTemplate } from \"@modelcontextprotocol/sdk/types.js\";\n\n// Register a resource with URI template\nserver.registerResource(\n  {\n    uri: \"file://documents/{name}\",\n    name: \"Document Resource\",\n    description: \"Access documents by name\",\n    mimeType: \"text/plain\"\n  },\n  async (uri: string) => {\n    // Extract parameter from URI\n    const match = uri.match(/^file:\\/\\/documents\\/(.+)$/);\n    if (!match) {\n      throw new Error(\"Invalid URI format\");\n    }\n\n    const documentName = match[1];\n    const content = await loadDocument(documentName);\n\n    return {\n      contents: [{\n        uri,\n        mimeType: \"text/plain\",\n        text: content\n      }]\n    };\n  }\n);\n\n// List available resources dynamically\nserver.registerResourceList(async () => {\n  const documents = await getAvailableDocuments();\n  return {\n    resources: documents.map(doc => ({\n      uri: `file://documents/${doc.name}`,\n      name: doc.name,\n      mimeType: \"text/plain\",\n      description: doc.description\n    }))\n  };\n});\n```\n\n**When to use Resources vs Tools:**\n- **Resources**: For data access with simple URI-based parameters\n- **Tools**: For complex operations requiring validation and business logic\n- **Resources**: When data is relatively static or template-based\n- **Tools**: When operations have side effects or complex workflows\n\n### Transport Options\n\nThe TypeScript SDK supports two main transport mechanisms:\n\n#### Streamable HTTP (Recommended for Remote Servers)\n\n```typescript\nimport { StreamableHTTPServerTransport } from \"@modelcontextprotocol/sdk/server/streamableHttp.js\";\nimport express from \"express\";\n\nconst app = express();\napp.use(express.json());\n\napp.post('/mcp', async (req, res) => {\n  // Create new transport for each request (stateless, prevents request ID collisions)\n  const transport = new StreamableHTTPServerTransport({\n    sessionIdGenerator: undefined,\n    enableJsonResponse: true\n  });\n\n  res.on('close', () => transport.close());\n\n  await server.connect(transport);\n  await transport.handleRequest(req, res, req.body);\n});\n\napp.listen(3000);\n```\n\n#### stdio (For Local Integrations)\n\n```typescript\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\n\nconst transport = new StdioServerTransport();\nawait server.connect(transport);\n```\n\n**Transport selection:**\n- **Streamable HTTP**: Web services, remote access, multiple clients\n- **stdio**: Command-line tools, local development, subprocess integration\n\n### Notification Support\n\nNotify clients when server state changes:\n\n```typescript\n// Notify when tools list changes\nserver.notification({\n  method: \"notifications/tools/list_changed\"\n});\n\n// Notify when resources change\nserver.notification({\n  method: \"notifications/resources/list_changed\"\n});\n```\n\nUse notifications sparingly - only when server capabilities genuinely change.\n\n---\n\n## Code Best Practices\n\n### Code Composability and Reusability\n\nYour implementation MUST prioritize composability and code reuse:\n\n1. **Extract Common Functionality**:\n   - Create reusable helper functions for operations used across multiple tools\n   - Build shared API clients for HTTP requests instead of duplicating code\n   - Centralize error handling logic in utility functions\n   - Extract business logic into dedicated functions that can be composed\n   - Extract shared markdown or JSON field selection & formatting functionality\n\n2. **Avoid Duplication**:\n   - NEVER copy-paste similar code between tools\n   - If you find yourself writing similar logic twice, extract it into a function\n   - Common operations like pagination, filtering, field selection, and formatting should be shared\n   - Authentication/authorization logic should be centralized\n\n## Building and Running\n\nAlways build your TypeScript code before running:\n\n```bash\n# Build the project\nnpm run build\n\n# Run the server\nnpm start\n\n# Development with auto-reload\nnpm run dev\n```\n\nAlways ensure `npm run build` completes successfully before considering the implementation complete.\n\n## Quality Checklist\n\nBefore finalizing your Node/TypeScript MCP server implementation, ensure:\n\n### Strategic Design\n- [ ] Tools enable complete workflows, not just API endpoint wrappers\n- [ ] Tool names reflect natural task subdivisions\n- [ ] Response formats optimize for agent context efficiency\n- [ ] Human-readable identifiers used where appropriate\n- [ ] Error messages guide agents toward correct usage\n\n### Implementation Quality\n- [ ] FOCUSED IMPLEMENTATION: Most important and valuable tools implemented\n- [ ] All tools registered using `registerTool` with complete configuration\n- [ ] All tools include `title`, `description`, `inputSchema`, and `annotations`\n- [ ] Annotations correctly set (readOnlyHint, destructiveHint, idempotentHint, openWorldHint)\n- [ ] All tools use Zod schemas for runtime input validation with `.strict()` enforcement\n- [ ] All Zod schemas have proper constraints and descriptive error messages\n- [ ] All tools have comprehensive descriptions with explicit input/output types\n- [ ] Descriptions include return value examples and complete schema documentation\n- [ ] Error messages are clear, actionable, and educational\n\n### TypeScript Quality\n- [ ] TypeScript interfaces are defined for all data structures\n- [ ] Strict TypeScript is enabled in tsconfig.json\n- [ ] No use of `any` type - use `unknown` or proper types instead\n- [ ] All async functions have explicit Promise<T> return types\n- [ ] Error handling uses proper type guards (e.g., `axios.isAxiosError`, `z.ZodError`)\n\n### Advanced Features (where applicable)\n- [ ] Resources registered for appropriate data endpoints\n- [ ] Appropriate transport configured (stdio or streamable HTTP)\n- [ ] Notifications implemented for dynamic server capabilities\n- [ ] Type-safe with SDK interfaces\n\n### Project Configuration\n- [ ] Package.json includes all necessary dependencies\n- [ ] Build script produces working JavaScript in dist/ directory\n- [ ] Main entry point is properly configured as dist/index.js\n- [ ] Server name follows format: `{service}-mcp-server`\n- [ ] tsconfig.json properly configured with strict mode\n\n### Code Quality\n- [ ] Pagination is properly implemented where applicable\n- [ ] Large responses check CHARACTER_LIMIT constant and truncate with clear messages\n- [ ] Filtering options are provided for potentially large result sets\n- [ ] All network operations handle timeouts and connection errors gracefully\n- [ ] Common functionality is extracted into reusable functions\n- [ ] Return types are consistent across similar operations\n\n### Testing and Build\n- [ ] `npm run build` completes successfully without errors\n- [ ] dist/index.js created and executable\n- [ ] Server runs: `node dist/index.js --help`\n- [ ] All imports resolve correctly\n- [ ] Sample tool calls work as expected"
  },
  {
    "path": "skills/mcp-builder/reference/python_mcp_server.md",
    "content": "# Python MCP Server Implementation Guide\n\n## Overview\n\nThis document provides Python-specific best practices and examples for implementing MCP servers using the MCP Python SDK. It covers server setup, tool registration patterns, input validation with Pydantic, error handling, and complete working examples.\n\n---\n\n## Quick Reference\n\n### Key Imports\n```python\nfrom mcp.server.fastmcp import FastMCP\nfrom pydantic import BaseModel, Field, field_validator, ConfigDict\nfrom typing import Optional, List, Dict, Any\nfrom enum import Enum\nimport httpx\n```\n\n### Server Initialization\n```python\nmcp = FastMCP(\"service_mcp\")\n```\n\n### Tool Registration Pattern\n```python\n@mcp.tool(name=\"tool_name\", annotations={...})\nasync def tool_function(params: InputModel) -> str:\n    # Implementation\n    pass\n```\n\n---\n\n## MCP Python SDK and FastMCP\n\nThe official MCP Python SDK provides FastMCP, a high-level framework for building MCP servers. It provides:\n- Automatic description and inputSchema generation from function signatures and docstrings\n- Pydantic model integration for input validation\n- Decorator-based tool registration with `@mcp.tool`\n\n**For complete SDK documentation, use WebFetch to load:**\n`https://raw.githubusercontent.com/modelcontextprotocol/python-sdk/main/README.md`\n\n## Server Naming Convention\n\nPython MCP servers must follow this naming pattern:\n- **Format**: `{service}_mcp` (lowercase with underscores)\n- **Examples**: `github_mcp`, `jira_mcp`, `stripe_mcp`\n\nThe name should be:\n- General (not tied to specific features)\n- Descriptive of the service/API being integrated\n- Easy to infer from the task description\n- Without version numbers or dates\n\n## Tool Implementation\n\n### Tool Naming\n\nUse snake_case for tool names (e.g., \"search_users\", \"create_project\", \"get_channel_info\") with clear, action-oriented names.\n\n**Avoid Naming Conflicts**: Include the service context to prevent overlaps:\n- Use \"slack_send_message\" instead of just \"send_message\"\n- Use \"github_create_issue\" instead of just \"create_issue\"\n- Use \"asana_list_tasks\" instead of just \"list_tasks\"\n\n### Tool Structure with FastMCP\n\nTools are defined using the `@mcp.tool` decorator with Pydantic models for input validation:\n\n```python\nfrom pydantic import BaseModel, Field, ConfigDict\nfrom mcp.server.fastmcp import FastMCP\n\n# Initialize the MCP server\nmcp = FastMCP(\"example_mcp\")\n\n# Define Pydantic model for input validation\nclass ServiceToolInput(BaseModel):\n    '''Input model for service tool operation.'''\n    model_config = ConfigDict(\n        str_strip_whitespace=True,  # Auto-strip whitespace from strings\n        validate_assignment=True,    # Validate on assignment\n        extra='forbid'              # Forbid extra fields\n    )\n\n    param1: str = Field(..., description=\"First parameter description (e.g., 'user123', 'project-abc')\", min_length=1, max_length=100)\n    param2: Optional[int] = Field(default=None, description=\"Optional integer parameter with constraints\", ge=0, le=1000)\n    tags: Optional[List[str]] = Field(default_factory=list, description=\"List of tags to apply\", max_items=10)\n\n@mcp.tool(\n    name=\"service_tool_name\",\n    annotations={\n        \"title\": \"Human-Readable Tool Title\",\n        \"readOnlyHint\": True,     # Tool does not modify environment\n        \"destructiveHint\": False,  # Tool does not perform destructive operations\n        \"idempotentHint\": True,    # Repeated calls have no additional effect\n        \"openWorldHint\": False     # Tool does not interact with external entities\n    }\n)\nasync def service_tool_name(params: ServiceToolInput) -> str:\n    '''Tool description automatically becomes the 'description' field.\n\n    This tool performs a specific operation on the service. It validates all inputs\n    using the ServiceToolInput Pydantic model before processing.\n\n    Args:\n        params (ServiceToolInput): Validated input parameters containing:\n            - param1 (str): First parameter description\n            - param2 (Optional[int]): Optional parameter with default\n            - tags (Optional[List[str]]): List of tags\n\n    Returns:\n        str: JSON-formatted response containing operation results\n    '''\n    # Implementation here\n    pass\n```\n\n## Pydantic v2 Key Features\n\n- Use `model_config` instead of nested `Config` class\n- Use `field_validator` instead of deprecated `validator`\n- Use `model_dump()` instead of deprecated `dict()`\n- Validators require `@classmethod` decorator\n- Type hints are required for validator methods\n\n```python\nfrom pydantic import BaseModel, Field, field_validator, ConfigDict\n\nclass CreateUserInput(BaseModel):\n    model_config = ConfigDict(\n        str_strip_whitespace=True,\n        validate_assignment=True\n    )\n\n    name: str = Field(..., description=\"User's full name\", min_length=1, max_length=100)\n    email: str = Field(..., description=\"User's email address\", pattern=r'^[\\w\\.-]+@[\\w\\.-]+\\.\\w+$')\n    age: int = Field(..., description=\"User's age\", ge=0, le=150)\n\n    @field_validator('email')\n    @classmethod\n    def validate_email(cls, v: str) -> str:\n        if not v.strip():\n            raise ValueError(\"Email cannot be empty\")\n        return v.lower()\n```\n\n## Response Format Options\n\nSupport multiple output formats for flexibility:\n\n```python\nfrom enum import Enum\n\nclass ResponseFormat(str, Enum):\n    '''Output format for tool responses.'''\n    MARKDOWN = \"markdown\"\n    JSON = \"json\"\n\nclass UserSearchInput(BaseModel):\n    query: str = Field(..., description=\"Search query\")\n    response_format: ResponseFormat = Field(\n        default=ResponseFormat.MARKDOWN,\n        description=\"Output format: 'markdown' for human-readable or 'json' for machine-readable\"\n    )\n```\n\n**Markdown format**:\n- Use headers, lists, and formatting for clarity\n- Convert timestamps to human-readable format (e.g., \"2024-01-15 10:30:00 UTC\" instead of epoch)\n- Show display names with IDs in parentheses (e.g., \"@john.doe (U123456)\")\n- Omit verbose metadata (e.g., show only one profile image URL, not all sizes)\n- Group related information logically\n\n**JSON format**:\n- Return complete, structured data suitable for programmatic processing\n- Include all available fields and metadata\n- Use consistent field names and types\n\n## Pagination Implementation\n\nFor tools that list resources:\n\n```python\nclass ListInput(BaseModel):\n    limit: Optional[int] = Field(default=20, description=\"Maximum results to return\", ge=1, le=100)\n    offset: Optional[int] = Field(default=0, description=\"Number of results to skip for pagination\", ge=0)\n\nasync def list_items(params: ListInput) -> str:\n    # Make API request with pagination\n    data = await api_request(limit=params.limit, offset=params.offset)\n\n    # Return pagination info\n    response = {\n        \"total\": data[\"total\"],\n        \"count\": len(data[\"items\"]),\n        \"offset\": params.offset,\n        \"items\": data[\"items\"],\n        \"has_more\": data[\"total\"] > params.offset + len(data[\"items\"]),\n        \"next_offset\": params.offset + len(data[\"items\"]) if data[\"total\"] > params.offset + len(data[\"items\"]) else None\n    }\n    return json.dumps(response, indent=2)\n```\n\n## Error Handling\n\nProvide clear, actionable error messages:\n\n```python\ndef _handle_api_error(e: Exception) -> str:\n    '''Consistent error formatting across all tools.'''\n    if isinstance(e, httpx.HTTPStatusError):\n        if e.response.status_code == 404:\n            return \"Error: Resource not found. Please check the ID is correct.\"\n        elif e.response.status_code == 403:\n            return \"Error: Permission denied. You don't have access to this resource.\"\n        elif e.response.status_code == 429:\n            return \"Error: Rate limit exceeded. Please wait before making more requests.\"\n        return f\"Error: API request failed with status {e.response.status_code}\"\n    elif isinstance(e, httpx.TimeoutException):\n        return \"Error: Request timed out. Please try again.\"\n    return f\"Error: Unexpected error occurred: {type(e).__name__}\"\n```\n\n## Shared Utilities\n\nExtract common functionality into reusable functions:\n\n```python\n# Shared API request function\nasync def _make_api_request(endpoint: str, method: str = \"GET\", **kwargs) -> dict:\n    '''Reusable function for all API calls.'''\n    async with httpx.AsyncClient() as client:\n        response = await client.request(\n            method,\n            f\"{API_BASE_URL}/{endpoint}\",\n            timeout=30.0,\n            **kwargs\n        )\n        response.raise_for_status()\n        return response.json()\n```\n\n## Async/Await Best Practices\n\nAlways use async/await for network requests and I/O operations:\n\n```python\n# Good: Async network request\nasync def fetch_data(resource_id: str) -> dict:\n    async with httpx.AsyncClient() as client:\n        response = await client.get(f\"{API_URL}/resource/{resource_id}\")\n        response.raise_for_status()\n        return response.json()\n\n# Bad: Synchronous request\ndef fetch_data(resource_id: str) -> dict:\n    response = requests.get(f\"{API_URL}/resource/{resource_id}\")  # Blocks\n    return response.json()\n```\n\n## Type Hints\n\nUse type hints throughout:\n\n```python\nfrom typing import Optional, List, Dict, Any\n\nasync def get_user(user_id: str) -> Dict[str, Any]:\n    data = await fetch_user(user_id)\n    return {\"id\": data[\"id\"], \"name\": data[\"name\"]}\n```\n\n## Tool Docstrings\n\nEvery tool must have comprehensive docstrings with explicit type information:\n\n```python\nasync def search_users(params: UserSearchInput) -> str:\n    '''\n    Search for users in the Example system by name, email, or team.\n\n    This tool searches across all user profiles in the Example platform,\n    supporting partial matches and various search filters. It does NOT\n    create or modify users, only searches existing ones.\n\n    Args:\n        params (UserSearchInput): Validated input parameters containing:\n            - query (str): Search string to match against names/emails (e.g., \"john\", \"@example.com\", \"team:marketing\")\n            - limit (Optional[int]): Maximum results to return, between 1-100 (default: 20)\n            - offset (Optional[int]): Number of results to skip for pagination (default: 0)\n\n    Returns:\n        str: JSON-formatted string containing search results with the following schema:\n\n        Success response:\n        {\n            \"total\": int,           # Total number of matches found\n            \"count\": int,           # Number of results in this response\n            \"offset\": int,          # Current pagination offset\n            \"users\": [\n                {\n                    \"id\": str,      # User ID (e.g., \"U123456789\")\n                    \"name\": str,    # Full name (e.g., \"John Doe\")\n                    \"email\": str,   # Email address (e.g., \"john@example.com\")\n                    \"team\": str     # Team name (e.g., \"Marketing\") - optional\n                }\n            ]\n        }\n\n        Error response:\n        \"Error: <error message>\" or \"No users found matching '<query>'\"\n\n    Examples:\n        - Use when: \"Find all marketing team members\" -> params with query=\"team:marketing\"\n        - Use when: \"Search for John's account\" -> params with query=\"john\"\n        - Don't use when: You need to create a user (use example_create_user instead)\n        - Don't use when: You have a user ID and need full details (use example_get_user instead)\n\n    Error Handling:\n        - Input validation errors are handled by Pydantic model\n        - Returns \"Error: Rate limit exceeded\" if too many requests (429 status)\n        - Returns \"Error: Invalid API authentication\" if API key is invalid (401 status)\n        - Returns formatted list of results or \"No users found matching 'query'\"\n    '''\n```\n\n## Complete Example\n\nSee below for a complete Python MCP server example:\n\n```python\n#!/usr/bin/env python3\n'''\nMCP Server for Example Service.\n\nThis server provides tools to interact with Example API, including user search,\nproject management, and data export capabilities.\n'''\n\nfrom typing import Optional, List, Dict, Any\nfrom enum import Enum\nimport httpx\nfrom pydantic import BaseModel, Field, field_validator, ConfigDict\nfrom mcp.server.fastmcp import FastMCP\n\n# Initialize the MCP server\nmcp = FastMCP(\"example_mcp\")\n\n# Constants\nAPI_BASE_URL = \"https://api.example.com/v1\"\n\n# Enums\nclass ResponseFormat(str, Enum):\n    '''Output format for tool responses.'''\n    MARKDOWN = \"markdown\"\n    JSON = \"json\"\n\n# Pydantic Models for Input Validation\nclass UserSearchInput(BaseModel):\n    '''Input model for user search operations.'''\n    model_config = ConfigDict(\n        str_strip_whitespace=True,\n        validate_assignment=True\n    )\n\n    query: str = Field(..., description=\"Search string to match against names/emails\", min_length=2, max_length=200)\n    limit: Optional[int] = Field(default=20, description=\"Maximum results to return\", ge=1, le=100)\n    offset: Optional[int] = Field(default=0, description=\"Number of results to skip for pagination\", ge=0)\n    response_format: ResponseFormat = Field(default=ResponseFormat.MARKDOWN, description=\"Output format\")\n\n    @field_validator('query')\n    @classmethod\n    def validate_query(cls, v: str) -> str:\n        if not v.strip():\n            raise ValueError(\"Query cannot be empty or whitespace only\")\n        return v.strip()\n\n# Shared utility functions\nasync def _make_api_request(endpoint: str, method: str = \"GET\", **kwargs) -> dict:\n    '''Reusable function for all API calls.'''\n    async with httpx.AsyncClient() as client:\n        response = await client.request(\n            method,\n            f\"{API_BASE_URL}/{endpoint}\",\n            timeout=30.0,\n            **kwargs\n        )\n        response.raise_for_status()\n        return response.json()\n\ndef _handle_api_error(e: Exception) -> str:\n    '''Consistent error formatting across all tools.'''\n    if isinstance(e, httpx.HTTPStatusError):\n        if e.response.status_code == 404:\n            return \"Error: Resource not found. Please check the ID is correct.\"\n        elif e.response.status_code == 403:\n            return \"Error: Permission denied. You don't have access to this resource.\"\n        elif e.response.status_code == 429:\n            return \"Error: Rate limit exceeded. Please wait before making more requests.\"\n        return f\"Error: API request failed with status {e.response.status_code}\"\n    elif isinstance(e, httpx.TimeoutException):\n        return \"Error: Request timed out. Please try again.\"\n    return f\"Error: Unexpected error occurred: {type(e).__name__}\"\n\n# Tool definitions\n@mcp.tool(\n    name=\"example_search_users\",\n    annotations={\n        \"title\": \"Search Example Users\",\n        \"readOnlyHint\": True,\n        \"destructiveHint\": False,\n        \"idempotentHint\": True,\n        \"openWorldHint\": True\n    }\n)\nasync def example_search_users(params: UserSearchInput) -> str:\n    '''Search for users in the Example system by name, email, or team.\n\n    [Full docstring as shown above]\n    '''\n    try:\n        # Make API request using validated parameters\n        data = await _make_api_request(\n            \"users/search\",\n            params={\n                \"q\": params.query,\n                \"limit\": params.limit,\n                \"offset\": params.offset\n            }\n        )\n\n        users = data.get(\"users\", [])\n        total = data.get(\"total\", 0)\n\n        if not users:\n            return f\"No users found matching '{params.query}'\"\n\n        # Format response based on requested format\n        if params.response_format == ResponseFormat.MARKDOWN:\n            lines = [f\"# User Search Results: '{params.query}'\", \"\"]\n            lines.append(f\"Found {total} users (showing {len(users)})\")\n            lines.append(\"\")\n\n            for user in users:\n                lines.append(f\"## {user['name']} ({user['id']})\")\n                lines.append(f\"- **Email**: {user['email']}\")\n                if user.get('team'):\n                    lines.append(f\"- **Team**: {user['team']}\")\n                lines.append(\"\")\n\n            return \"\\n\".join(lines)\n\n        else:\n            # Machine-readable JSON format\n            import json\n            response = {\n                \"total\": total,\n                \"count\": len(users),\n                \"offset\": params.offset,\n                \"users\": users\n            }\n            return json.dumps(response, indent=2)\n\n    except Exception as e:\n        return _handle_api_error(e)\n\nif __name__ == \"__main__\":\n    mcp.run()\n```\n\n---\n\n## Advanced FastMCP Features\n\n### Context Parameter Injection\n\nFastMCP can automatically inject a `Context` parameter into tools for advanced capabilities like logging, progress reporting, resource reading, and user interaction:\n\n```python\nfrom mcp.server.fastmcp import FastMCP, Context\n\nmcp = FastMCP(\"example_mcp\")\n\n@mcp.tool()\nasync def advanced_search(query: str, ctx: Context) -> str:\n    '''Advanced tool with context access for logging and progress.'''\n\n    # Report progress for long operations\n    await ctx.report_progress(0.25, \"Starting search...\")\n\n    # Log information for debugging\n    await ctx.log_info(\"Processing query\", {\"query\": query, \"timestamp\": datetime.now()})\n\n    # Perform search\n    results = await search_api(query)\n    await ctx.report_progress(0.75, \"Formatting results...\")\n\n    # Access server configuration\n    server_name = ctx.fastmcp.name\n\n    return format_results(results)\n\n@mcp.tool()\nasync def interactive_tool(resource_id: str, ctx: Context) -> str:\n    '''Tool that can request additional input from users.'''\n\n    # Request sensitive information when needed\n    api_key = await ctx.elicit(\n        prompt=\"Please provide your API key:\",\n        input_type=\"password\"\n    )\n\n    # Use the provided key\n    return await api_call(resource_id, api_key)\n```\n\n**Context capabilities:**\n- `ctx.report_progress(progress, message)` - Report progress for long operations\n- `ctx.log_info(message, data)` / `ctx.log_error()` / `ctx.log_debug()` - Logging\n- `ctx.elicit(prompt, input_type)` - Request input from users\n- `ctx.fastmcp.name` - Access server configuration\n- `ctx.read_resource(uri)` - Read MCP resources\n\n### Resource Registration\n\nExpose data as resources for efficient, template-based access:\n\n```python\n@mcp.resource(\"file://documents/{name}\")\nasync def get_document(name: str) -> str:\n    '''Expose documents as MCP resources.\n\n    Resources are useful for static or semi-static data that doesn't\n    require complex parameters. They use URI templates for flexible access.\n    '''\n    document_path = f\"./docs/{name}\"\n    with open(document_path, \"r\") as f:\n        return f.read()\n\n@mcp.resource(\"config://settings/{key}\")\nasync def get_setting(key: str, ctx: Context) -> str:\n    '''Expose configuration as resources with context.'''\n    settings = await load_settings()\n    return json.dumps(settings.get(key, {}))\n```\n\n**When to use Resources vs Tools:**\n- **Resources**: For data access with simple parameters (URI templates)\n- **Tools**: For complex operations with validation and business logic\n\n### Structured Output Types\n\nFastMCP supports multiple return types beyond strings:\n\n```python\nfrom typing import TypedDict\nfrom dataclasses import dataclass\nfrom pydantic import BaseModel\n\n# TypedDict for structured returns\nclass UserData(TypedDict):\n    id: str\n    name: str\n    email: str\n\n@mcp.tool()\nasync def get_user_typed(user_id: str) -> UserData:\n    '''Returns structured data - FastMCP handles serialization.'''\n    return {\"id\": user_id, \"name\": \"John Doe\", \"email\": \"john@example.com\"}\n\n# Pydantic models for complex validation\nclass DetailedUser(BaseModel):\n    id: str\n    name: str\n    email: str\n    created_at: datetime\n    metadata: Dict[str, Any]\n\n@mcp.tool()\nasync def get_user_detailed(user_id: str) -> DetailedUser:\n    '''Returns Pydantic model - automatically generates schema.'''\n    user = await fetch_user(user_id)\n    return DetailedUser(**user)\n```\n\n### Lifespan Management\n\nInitialize resources that persist across requests:\n\n```python\nfrom contextlib import asynccontextmanager\n\n@asynccontextmanager\nasync def app_lifespan():\n    '''Manage resources that live for the server's lifetime.'''\n    # Initialize connections, load config, etc.\n    db = await connect_to_database()\n    config = load_configuration()\n\n    # Make available to all tools\n    yield {\"db\": db, \"config\": config}\n\n    # Cleanup on shutdown\n    await db.close()\n\nmcp = FastMCP(\"example_mcp\", lifespan=app_lifespan)\n\n@mcp.tool()\nasync def query_data(query: str, ctx: Context) -> str:\n    '''Access lifespan resources through context.'''\n    db = ctx.request_context.lifespan_state[\"db\"]\n    results = await db.query(query)\n    return format_results(results)\n```\n\n### Transport Options\n\nFastMCP supports two main transport mechanisms:\n\n```python\n# stdio transport (for local tools) - default\nif __name__ == \"__main__\":\n    mcp.run()\n\n# Streamable HTTP transport (for remote servers)\nif __name__ == \"__main__\":\n    mcp.run(transport=\"streamable_http\", port=8000)\n```\n\n**Transport selection:**\n- **stdio**: Command-line tools, local integrations, subprocess execution\n- **Streamable HTTP**: Web services, remote access, multiple clients\n\n---\n\n## Code Best Practices\n\n### Code Composability and Reusability\n\nYour implementation MUST prioritize composability and code reuse:\n\n1. **Extract Common Functionality**:\n   - Create reusable helper functions for operations used across multiple tools\n   - Build shared API clients for HTTP requests instead of duplicating code\n   - Centralize error handling logic in utility functions\n   - Extract business logic into dedicated functions that can be composed\n   - Extract shared markdown or JSON field selection & formatting functionality\n\n2. **Avoid Duplication**:\n   - NEVER copy-paste similar code between tools\n   - If you find yourself writing similar logic twice, extract it into a function\n   - Common operations like pagination, filtering, field selection, and formatting should be shared\n   - Authentication/authorization logic should be centralized\n\n### Python-Specific Best Practices\n\n1. **Use Type Hints**: Always include type annotations for function parameters and return values\n2. **Pydantic Models**: Define clear Pydantic models for all input validation\n3. **Avoid Manual Validation**: Let Pydantic handle input validation with constraints\n4. **Proper Imports**: Group imports (standard library, third-party, local)\n5. **Error Handling**: Use specific exception types (httpx.HTTPStatusError, not generic Exception)\n6. **Async Context Managers**: Use `async with` for resources that need cleanup\n7. **Constants**: Define module-level constants in UPPER_CASE\n\n## Quality Checklist\n\nBefore finalizing your Python MCP server implementation, ensure:\n\n### Strategic Design\n- [ ] Tools enable complete workflows, not just API endpoint wrappers\n- [ ] Tool names reflect natural task subdivisions\n- [ ] Response formats optimize for agent context efficiency\n- [ ] Human-readable identifiers used where appropriate\n- [ ] Error messages guide agents toward correct usage\n\n### Implementation Quality\n- [ ] FOCUSED IMPLEMENTATION: Most important and valuable tools implemented\n- [ ] All tools have descriptive names and documentation\n- [ ] Return types are consistent across similar operations\n- [ ] Error handling is implemented for all external calls\n- [ ] Server name follows format: `{service}_mcp`\n- [ ] All network operations use async/await\n- [ ] Common functionality is extracted into reusable functions\n- [ ] Error messages are clear, actionable, and educational\n- [ ] Outputs are properly validated and formatted\n\n### Tool Configuration\n- [ ] All tools implement 'name' and 'annotations' in the decorator\n- [ ] Annotations correctly set (readOnlyHint, destructiveHint, idempotentHint, openWorldHint)\n- [ ] All tools use Pydantic BaseModel for input validation with Field() definitions\n- [ ] All Pydantic Fields have explicit types and descriptions with constraints\n- [ ] All tools have comprehensive docstrings with explicit input/output types\n- [ ] Docstrings include complete schema structure for dict/JSON returns\n- [ ] Pydantic models handle input validation (no manual validation needed)\n\n### Advanced Features (where applicable)\n- [ ] Context injection used for logging, progress, or elicitation\n- [ ] Resources registered for appropriate data endpoints\n- [ ] Lifespan management implemented for persistent connections\n- [ ] Structured output types used (TypedDict, Pydantic models)\n- [ ] Appropriate transport configured (stdio or streamable HTTP)\n\n### Code Quality\n- [ ] File includes proper imports including Pydantic imports\n- [ ] Pagination is properly implemented where applicable\n- [ ] Filtering options are provided for potentially large result sets\n- [ ] All async functions are properly defined with `async def`\n- [ ] HTTP client usage follows async patterns with proper context managers\n- [ ] Type hints are used throughout the code\n- [ ] Constants are defined at module level in UPPER_CASE\n\n### Testing\n- [ ] Server runs successfully: `python your_server.py --help`\n- [ ] All imports resolve correctly\n- [ ] Sample tool calls work as expected\n- [ ] Error scenarios handled gracefully"
  },
  {
    "path": "skills/mcp-builder/scripts/connections.py",
    "content": "\"\"\"Lightweight connection handling for MCP servers.\"\"\"\n\nfrom abc import ABC, abstractmethod\nfrom contextlib import AsyncExitStack\nfrom typing import Any\n\nfrom mcp import ClientSession, StdioServerParameters\nfrom mcp.client.sse import sse_client\nfrom mcp.client.stdio import stdio_client\nfrom mcp.client.streamable_http import streamablehttp_client\n\n\nclass MCPConnection(ABC):\n    \"\"\"Base class for MCP server connections.\"\"\"\n\n    def __init__(self):\n        self.session = None\n        self._stack = None\n\n    @abstractmethod\n    def _create_context(self):\n        \"\"\"Create the connection context based on connection type.\"\"\"\n\n    async def __aenter__(self):\n        \"\"\"Initialize MCP server connection.\"\"\"\n        self._stack = AsyncExitStack()\n        await self._stack.__aenter__()\n\n        try:\n            ctx = self._create_context()\n            result = await self._stack.enter_async_context(ctx)\n\n            if len(result) == 2:\n                read, write = result\n            elif len(result) == 3:\n                read, write, _ = result\n            else:\n                raise ValueError(f\"Unexpected context result: {result}\")\n\n            session_ctx = ClientSession(read, write)\n            self.session = await self._stack.enter_async_context(session_ctx)\n            await self.session.initialize()\n            return self\n        except BaseException:\n            await self._stack.__aexit__(None, None, None)\n            raise\n\n    async def __aexit__(self, exc_type, exc_val, exc_tb):\n        \"\"\"Clean up MCP server connection resources.\"\"\"\n        if self._stack:\n            await self._stack.__aexit__(exc_type, exc_val, exc_tb)\n        self.session = None\n        self._stack = None\n\n    async def list_tools(self) -> list[dict[str, Any]]:\n        \"\"\"Retrieve available tools from the MCP server.\"\"\"\n        response = await self.session.list_tools()\n        return [\n            {\n                \"name\": tool.name,\n                \"description\": tool.description,\n                \"input_schema\": tool.inputSchema,\n            }\n            for tool in response.tools\n        ]\n\n    async def call_tool(self, tool_name: str, arguments: dict[str, Any]) -> Any:\n        \"\"\"Call a tool on the MCP server with provided arguments.\"\"\"\n        result = await self.session.call_tool(tool_name, arguments=arguments)\n        return result.content\n\n\nclass MCPConnectionStdio(MCPConnection):\n    \"\"\"MCP connection using standard input/output.\"\"\"\n\n    def __init__(self, command: str, args: list[str] = None, env: dict[str, str] = None):\n        super().__init__()\n        self.command = command\n        self.args = args or []\n        self.env = env\n\n    def _create_context(self):\n        return stdio_client(\n            StdioServerParameters(command=self.command, args=self.args, env=self.env)\n        )\n\n\nclass MCPConnectionSSE(MCPConnection):\n    \"\"\"MCP connection using Server-Sent Events.\"\"\"\n\n    def __init__(self, url: str, headers: dict[str, str] = None):\n        super().__init__()\n        self.url = url\n        self.headers = headers or {}\n\n    def _create_context(self):\n        return sse_client(url=self.url, headers=self.headers)\n\n\nclass MCPConnectionHTTP(MCPConnection):\n    \"\"\"MCP connection using Streamable HTTP.\"\"\"\n\n    def __init__(self, url: str, headers: dict[str, str] = None):\n        super().__init__()\n        self.url = url\n        self.headers = headers or {}\n\n    def _create_context(self):\n        return streamablehttp_client(url=self.url, headers=self.headers)\n\n\ndef create_connection(\n    transport: str,\n    command: str = None,\n    args: list[str] = None,\n    env: dict[str, str] = None,\n    url: str = None,\n    headers: dict[str, str] = None,\n) -> MCPConnection:\n    \"\"\"Factory function to create the appropriate MCP connection.\n\n    Args:\n        transport: Connection type (\"stdio\", \"sse\", or \"http\")\n        command: Command to run (stdio only)\n        args: Command arguments (stdio only)\n        env: Environment variables (stdio only)\n        url: Server URL (sse and http only)\n        headers: HTTP headers (sse and http only)\n\n    Returns:\n        MCPConnection instance\n    \"\"\"\n    transport = transport.lower()\n\n    if transport == \"stdio\":\n        if not command:\n            raise ValueError(\"Command is required for stdio transport\")\n        return MCPConnectionStdio(command=command, args=args, env=env)\n\n    elif transport == \"sse\":\n        if not url:\n            raise ValueError(\"URL is required for sse transport\")\n        return MCPConnectionSSE(url=url, headers=headers)\n\n    elif transport in [\"http\", \"streamable_http\", \"streamable-http\"]:\n        if not url:\n            raise ValueError(\"URL is required for http transport\")\n        return MCPConnectionHTTP(url=url, headers=headers)\n\n    else:\n        raise ValueError(f\"Unsupported transport type: {transport}. Use 'stdio', 'sse', or 'http'\")\n"
  },
  {
    "path": "skills/mcp-builder/scripts/evaluation.py",
    "content": "\"\"\"MCP Server Evaluation Harness\n\nThis script evaluates MCP servers by running test questions against them using Claude.\n\"\"\"\n\nimport argparse\nimport asyncio\nimport json\nimport re\nimport sys\nimport time\nimport traceback\nimport xml.etree.ElementTree as ET\nfrom pathlib import Path\nfrom typing import Any\n\nfrom anthropic import Anthropic\n\nfrom connections import create_connection\n\nEVALUATION_PROMPT = \"\"\"You are an AI assistant with access to tools.\n\nWhen given a task, you MUST:\n1. Use the available tools to complete the task\n2. Provide summary of each step in your approach, wrapped in <summary> tags\n3. Provide feedback on the tools provided, wrapped in <feedback> tags\n4. Provide your final response, wrapped in <response> tags\n\nSummary Requirements:\n- In your <summary> tags, you must explain:\n  - The steps you took to complete the task\n  - Which tools you used, in what order, and why\n  - The inputs you provided to each tool\n  - The outputs you received from each tool\n  - A summary for how you arrived at the response\n\nFeedback Requirements:\n- In your <feedback> tags, provide constructive feedback on the tools:\n  - Comment on tool names: Are they clear and descriptive?\n  - Comment on input parameters: Are they well-documented? Are required vs optional parameters clear?\n  - Comment on descriptions: Do they accurately describe what the tool does?\n  - Comment on any errors encountered during tool usage: Did the tool fail to execute? Did the tool return too many tokens?\n  - Identify specific areas for improvement and explain WHY they would help\n  - Be specific and actionable in your suggestions\n\nResponse Requirements:\n- Your response should be concise and directly address what was asked\n- Always wrap your final response in <response> tags\n- If you cannot solve the task return <response>NOT_FOUND</response>\n- For numeric responses, provide just the number\n- For IDs, provide just the ID\n- For names or text, provide the exact text requested\n- Your response should go last\"\"\"\n\n\ndef parse_evaluation_file(file_path: Path) -> list[dict[str, Any]]:\n    \"\"\"Parse XML evaluation file with qa_pair elements.\"\"\"\n    try:\n        tree = ET.parse(file_path)\n        root = tree.getroot()\n        evaluations = []\n\n        for qa_pair in root.findall(\".//qa_pair\"):\n            question_elem = qa_pair.find(\"question\")\n            answer_elem = qa_pair.find(\"answer\")\n\n            if question_elem is not None and answer_elem is not None:\n                evaluations.append({\n                    \"question\": (question_elem.text or \"\").strip(),\n                    \"answer\": (answer_elem.text or \"\").strip(),\n                })\n\n        return evaluations\n    except Exception as e:\n        print(f\"Error parsing evaluation file {file_path}: {e}\")\n        return []\n\n\ndef extract_xml_content(text: str, tag: str) -> str | None:\n    \"\"\"Extract content from XML tags.\"\"\"\n    pattern = rf\"<{tag}>(.*?)</{tag}>\"\n    matches = re.findall(pattern, text, re.DOTALL)\n    return matches[-1].strip() if matches else None\n\n\nasync def agent_loop(\n    client: Anthropic,\n    model: str,\n    question: str,\n    tools: list[dict[str, Any]],\n    connection: Any,\n) -> tuple[str, dict[str, Any]]:\n    \"\"\"Run the agent loop with MCP tools.\"\"\"\n    messages = [{\"role\": \"user\", \"content\": question}]\n\n    response = await asyncio.to_thread(\n        client.messages.create,\n        model=model,\n        max_tokens=4096,\n        system=EVALUATION_PROMPT,\n        messages=messages,\n        tools=tools,\n    )\n\n    messages.append({\"role\": \"assistant\", \"content\": response.content})\n\n    tool_metrics = {}\n\n    while response.stop_reason == \"tool_use\":\n        tool_use = next(block for block in response.content if block.type == \"tool_use\")\n        tool_name = tool_use.name\n        tool_input = tool_use.input\n\n        tool_start_ts = time.time()\n        try:\n            tool_result = await connection.call_tool(tool_name, tool_input)\n            tool_response = json.dumps(tool_result) if isinstance(tool_result, (dict, list)) else str(tool_result)\n        except Exception as e:\n            tool_response = f\"Error executing tool {tool_name}: {str(e)}\\n\"\n            tool_response += traceback.format_exc()\n        tool_duration = time.time() - tool_start_ts\n\n        if tool_name not in tool_metrics:\n            tool_metrics[tool_name] = {\"count\": 0, \"durations\": []}\n        tool_metrics[tool_name][\"count\"] += 1\n        tool_metrics[tool_name][\"durations\"].append(tool_duration)\n\n        messages.append({\n            \"role\": \"user\",\n            \"content\": [{\n                \"type\": \"tool_result\",\n                \"tool_use_id\": tool_use.id,\n                \"content\": tool_response,\n            }]\n        })\n\n        response = await asyncio.to_thread(\n            client.messages.create,\n            model=model,\n            max_tokens=4096,\n            system=EVALUATION_PROMPT,\n            messages=messages,\n            tools=tools,\n        )\n        messages.append({\"role\": \"assistant\", \"content\": response.content})\n\n    response_text = next(\n        (block.text for block in response.content if hasattr(block, \"text\")),\n        None,\n    )\n    return response_text, tool_metrics\n\n\nasync def evaluate_single_task(\n    client: Anthropic,\n    model: str,\n    qa_pair: dict[str, Any],\n    tools: list[dict[str, Any]],\n    connection: Any,\n    task_index: int,\n) -> dict[str, Any]:\n    \"\"\"Evaluate a single QA pair with the given tools.\"\"\"\n    start_time = time.time()\n\n    print(f\"Task {task_index + 1}: Running task with question: {qa_pair['question']}\")\n    response, tool_metrics = await agent_loop(client, model, qa_pair[\"question\"], tools, connection)\n\n    response_value = extract_xml_content(response, \"response\")\n    summary = extract_xml_content(response, \"summary\")\n    feedback = extract_xml_content(response, \"feedback\")\n\n    duration_seconds = time.time() - start_time\n\n    return {\n        \"question\": qa_pair[\"question\"],\n        \"expected\": qa_pair[\"answer\"],\n        \"actual\": response_value,\n        \"score\": int(response_value == qa_pair[\"answer\"]) if response_value else 0,\n        \"total_duration\": duration_seconds,\n        \"tool_calls\": tool_metrics,\n        \"num_tool_calls\": sum(len(metrics[\"durations\"]) for metrics in tool_metrics.values()),\n        \"summary\": summary,\n        \"feedback\": feedback,\n    }\n\n\nREPORT_HEADER = \"\"\"\n# Evaluation Report\n\n## Summary\n\n- **Accuracy**: {correct}/{total} ({accuracy:.1f}%)\n- **Average Task Duration**: {average_duration_s:.2f}s\n- **Average Tool Calls per Task**: {average_tool_calls:.2f}\n- **Total Tool Calls**: {total_tool_calls}\n\n---\n\"\"\"\n\nTASK_TEMPLATE = \"\"\"\n### Task {task_num}\n\n**Question**: {question}\n**Ground Truth Answer**: `{expected_answer}`\n**Actual Answer**: `{actual_answer}`\n**Correct**: {correct_indicator}\n**Duration**: {total_duration:.2f}s\n**Tool Calls**: {tool_calls}\n\n**Summary**\n{summary}\n\n**Feedback**\n{feedback}\n\n---\n\"\"\"\n\n\nasync def run_evaluation(\n    eval_path: Path,\n    connection: Any,\n    model: str = \"claude-3-7-sonnet-20250219\",\n) -> str:\n    \"\"\"Run evaluation with MCP server tools.\"\"\"\n    print(\"🚀 Starting Evaluation\")\n\n    client = Anthropic()\n\n    tools = await connection.list_tools()\n    print(f\"📋 Loaded {len(tools)} tools from MCP server\")\n\n    qa_pairs = parse_evaluation_file(eval_path)\n    print(f\"📋 Loaded {len(qa_pairs)} evaluation tasks\")\n\n    results = []\n    for i, qa_pair in enumerate(qa_pairs):\n        print(f\"Processing task {i + 1}/{len(qa_pairs)}\")\n        result = await evaluate_single_task(client, model, qa_pair, tools, connection, i)\n        results.append(result)\n\n    correct = sum(r[\"score\"] for r in results)\n    accuracy = (correct / len(results)) * 100 if results else 0\n    average_duration_s = sum(r[\"total_duration\"] for r in results) / len(results) if results else 0\n    average_tool_calls = sum(r[\"num_tool_calls\"] for r in results) / len(results) if results else 0\n    total_tool_calls = sum(r[\"num_tool_calls\"] for r in results)\n\n    report = REPORT_HEADER.format(\n        correct=correct,\n        total=len(results),\n        accuracy=accuracy,\n        average_duration_s=average_duration_s,\n        average_tool_calls=average_tool_calls,\n        total_tool_calls=total_tool_calls,\n    )\n\n    report += \"\".join([\n        TASK_TEMPLATE.format(\n            task_num=i + 1,\n            question=qa_pair[\"question\"],\n            expected_answer=qa_pair[\"answer\"],\n            actual_answer=result[\"actual\"] or \"N/A\",\n            correct_indicator=\"✅\" if result[\"score\"] else \"❌\",\n            total_duration=result[\"total_duration\"],\n            tool_calls=json.dumps(result[\"tool_calls\"], indent=2),\n            summary=result[\"summary\"] or \"N/A\",\n            feedback=result[\"feedback\"] or \"N/A\",\n        )\n        for i, (qa_pair, result) in enumerate(zip(qa_pairs, results))\n    ])\n\n    return report\n\n\ndef parse_headers(header_list: list[str]) -> dict[str, str]:\n    \"\"\"Parse header strings in format 'Key: Value' into a dictionary.\"\"\"\n    headers = {}\n    if not header_list:\n        return headers\n\n    for header in header_list:\n        if \":\" in header:\n            key, value = header.split(\":\", 1)\n            headers[key.strip()] = value.strip()\n        else:\n            print(f\"Warning: Ignoring malformed header: {header}\")\n    return headers\n\n\ndef parse_env_vars(env_list: list[str]) -> dict[str, str]:\n    \"\"\"Parse environment variable strings in format 'KEY=VALUE' into a dictionary.\"\"\"\n    env = {}\n    if not env_list:\n        return env\n\n    for env_var in env_list:\n        if \"=\" in env_var:\n            key, value = env_var.split(\"=\", 1)\n            env[key.strip()] = value.strip()\n        else:\n            print(f\"Warning: Ignoring malformed environment variable: {env_var}\")\n    return env\n\n\nasync def main():\n    parser = argparse.ArgumentParser(\n        description=\"Evaluate MCP servers using test questions\",\n        formatter_class=argparse.RawDescriptionHelpFormatter,\n        epilog=\"\"\"\nExamples:\n  # Evaluate a local stdio MCP server\n  python evaluation.py -t stdio -c python -a my_server.py eval.xml\n\n  # Evaluate an SSE MCP server\n  python evaluation.py -t sse -u https://example.com/mcp -H \"Authorization: Bearer token\" eval.xml\n\n  # Evaluate an HTTP MCP server with custom model\n  python evaluation.py -t http -u https://example.com/mcp -m claude-3-5-sonnet-20241022 eval.xml\n        \"\"\",\n    )\n\n    parser.add_argument(\"eval_file\", type=Path, help=\"Path to evaluation XML file\")\n    parser.add_argument(\"-t\", \"--transport\", choices=[\"stdio\", \"sse\", \"http\"], default=\"stdio\", help=\"Transport type (default: stdio)\")\n    parser.add_argument(\"-m\", \"--model\", default=\"claude-3-7-sonnet-20250219\", help=\"Claude model to use (default: claude-3-7-sonnet-20250219)\")\n\n    stdio_group = parser.add_argument_group(\"stdio options\")\n    stdio_group.add_argument(\"-c\", \"--command\", help=\"Command to run MCP server (stdio only)\")\n    stdio_group.add_argument(\"-a\", \"--args\", nargs=\"+\", help=\"Arguments for the command (stdio only)\")\n    stdio_group.add_argument(\"-e\", \"--env\", nargs=\"+\", help=\"Environment variables in KEY=VALUE format (stdio only)\")\n\n    remote_group = parser.add_argument_group(\"sse/http options\")\n    remote_group.add_argument(\"-u\", \"--url\", help=\"MCP server URL (sse/http only)\")\n    remote_group.add_argument(\"-H\", \"--header\", nargs=\"+\", dest=\"headers\", help=\"HTTP headers in 'Key: Value' format (sse/http only)\")\n\n    parser.add_argument(\"-o\", \"--output\", type=Path, help=\"Output file for evaluation report (default: stdout)\")\n\n    args = parser.parse_args()\n\n    if not args.eval_file.exists():\n        print(f\"Error: Evaluation file not found: {args.eval_file}\")\n        sys.exit(1)\n\n    headers = parse_headers(args.headers) if args.headers else None\n    env_vars = parse_env_vars(args.env) if args.env else None\n\n    try:\n        connection = create_connection(\n            transport=args.transport,\n            command=args.command,\n            args=args.args,\n            env=env_vars,\n            url=args.url,\n            headers=headers,\n        )\n    except ValueError as e:\n        print(f\"Error: {e}\")\n        sys.exit(1)\n\n    print(f\"🔗 Connecting to MCP server via {args.transport}...\")\n\n    async with connection:\n        print(\"✅ Connected successfully\")\n        report = await run_evaluation(args.eval_file, connection, args.model)\n\n        if args.output:\n            args.output.write_text(report)\n            print(f\"\\n✅ Report saved to {args.output}\")\n        else:\n            print(\"\\n\" + report)\n\n\nif __name__ == \"__main__\":\n    asyncio.run(main())\n"
  },
  {
    "path": "skills/mcp-builder/scripts/example_evaluation.xml",
    "content": "<evaluation>\n   <qa_pair>\n      <question>Calculate the compound interest on $10,000 invested at 5% annual interest rate, compounded monthly for 3 years. What is the final amount in dollars (rounded to 2 decimal places)?</question>\n      <answer>11614.72</answer>\n   </qa_pair>\n   <qa_pair>\n      <question>A projectile is launched at a 45-degree angle with an initial velocity of 50 m/s. Calculate the total distance (in meters) it has traveled from the launch point after 2 seconds, assuming g=9.8 m/s². Round to 2 decimal places.</question>\n      <answer>87.25</answer>\n   </qa_pair>\n   <qa_pair>\n      <question>A sphere has a volume of 500 cubic meters. Calculate its surface area in square meters. Round to 2 decimal places.</question>\n      <answer>304.65</answer>\n   </qa_pair>\n   <qa_pair>\n      <question>Calculate the population standard deviation of this dataset: [12, 15, 18, 22, 25, 30, 35]. Round to 2 decimal places.</question>\n      <answer>7.61</answer>\n   </qa_pair>\n   <qa_pair>\n      <question>Calculate the pH of a solution with a hydrogen ion concentration of 3.5 × 10^-5 M. Round to 2 decimal places.</question>\n      <answer>4.46</answer>\n   </qa_pair>\n</evaluation>\n"
  },
  {
    "path": "skills/mcp-builder/scripts/requirements.txt",
    "content": "anthropic>=0.39.0\nmcp>=1.1.0\n"
  },
  {
    "path": "skills/pdf/LICENSE.txt",
    "content": "© 2025 Anthropic, PBC. All rights reserved.\n\nLICENSE: Use of these materials (including all code, prompts, assets, files,\nand other components of this Skill) is governed by your agreement with\nAnthropic regarding use of Anthropic's services. If no separate agreement\nexists, use is governed by Anthropic's Consumer Terms of Service or\nCommercial Terms of Service, as applicable:\nhttps://www.anthropic.com/legal/consumer-terms\nhttps://www.anthropic.com/legal/commercial-terms\nYour applicable agreement is referred to as the \"Agreement.\" \"Services\" are\nas defined in the Agreement.\n\nADDITIONAL RESTRICTIONS: Notwithstanding anything in the Agreement to the\ncontrary, users may not:\n\n- Extract these materials from the Services or retain copies of these\n  materials outside the Services\n- Reproduce or copy these materials, except for temporary copies created\n  automatically during authorized use of the Services\n- Create derivative works based on these materials\n- Distribute, sublicense, or transfer these materials to any third party\n- Make, offer to sell, sell, or import any inventions embodied in these\n  materials\n- Reverse engineer, decompile, or disassemble these materials\n\nThe receipt, viewing, or possession of these materials does not convey or\nimply any license or right beyond those expressly granted above.\n\nAnthropic retains all right, title, and interest in these materials,\nincluding all copyrights, patents, and other intellectual property rights.\n"
  },
  {
    "path": "skills/pdf/SKILL.md",
    "content": "---\nname: pdf\ndescription: Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting/decrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.\nlicense: Proprietary. LICENSE.txt has complete terms\n---\n\n# PDF Processing Guide\n\n## Overview\n\nThis guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions.\n\n## Quick Start\n\n```python\nfrom pypdf import PdfReader, PdfWriter\n\n# Read a PDF\nreader = PdfReader(\"document.pdf\")\nprint(f\"Pages: {len(reader.pages)}\")\n\n# Extract text\ntext = \"\"\nfor page in reader.pages:\n    text += page.extract_text()\n```\n\n## Python Libraries\n\n### pypdf - Basic Operations\n\n#### Merge PDFs\n```python\nfrom pypdf import PdfWriter, PdfReader\n\nwriter = PdfWriter()\nfor pdf_file in [\"doc1.pdf\", \"doc2.pdf\", \"doc3.pdf\"]:\n    reader = PdfReader(pdf_file)\n    for page in reader.pages:\n        writer.add_page(page)\n\nwith open(\"merged.pdf\", \"wb\") as output:\n    writer.write(output)\n```\n\n#### Split PDF\n```python\nreader = PdfReader(\"input.pdf\")\nfor i, page in enumerate(reader.pages):\n    writer = PdfWriter()\n    writer.add_page(page)\n    with open(f\"page_{i+1}.pdf\", \"wb\") as output:\n        writer.write(output)\n```\n\n#### Extract Metadata\n```python\nreader = PdfReader(\"document.pdf\")\nmeta = reader.metadata\nprint(f\"Title: {meta.title}\")\nprint(f\"Author: {meta.author}\")\nprint(f\"Subject: {meta.subject}\")\nprint(f\"Creator: {meta.creator}\")\n```\n\n#### Rotate Pages\n```python\nreader = PdfReader(\"input.pdf\")\nwriter = PdfWriter()\n\npage = reader.pages[0]\npage.rotate(90)  # Rotate 90 degrees clockwise\nwriter.add_page(page)\n\nwith open(\"rotated.pdf\", \"wb\") as output:\n    writer.write(output)\n```\n\n### pdfplumber - Text and Table Extraction\n\n#### Extract Text with Layout\n```python\nimport pdfplumber\n\nwith pdfplumber.open(\"document.pdf\") as pdf:\n    for page in pdf.pages:\n        text = page.extract_text()\n        print(text)\n```\n\n#### Extract Tables\n```python\nwith pdfplumber.open(\"document.pdf\") as pdf:\n    for i, page in enumerate(pdf.pages):\n        tables = page.extract_tables()\n        for j, table in enumerate(tables):\n            print(f\"Table {j+1} on page {i+1}:\")\n            for row in table:\n                print(row)\n```\n\n#### Advanced Table Extraction\n```python\nimport pandas as pd\n\nwith pdfplumber.open(\"document.pdf\") as pdf:\n    all_tables = []\n    for page in pdf.pages:\n        tables = page.extract_tables()\n        for table in tables:\n            if table:  # Check if table is not empty\n                df = pd.DataFrame(table[1:], columns=table[0])\n                all_tables.append(df)\n\n# Combine all tables\nif all_tables:\n    combined_df = pd.concat(all_tables, ignore_index=True)\n    combined_df.to_excel(\"extracted_tables.xlsx\", index=False)\n```\n\n### reportlab - Create PDFs\n\n#### Basic PDF Creation\n```python\nfrom reportlab.lib.pagesizes import letter\nfrom reportlab.pdfgen import canvas\n\nc = canvas.Canvas(\"hello.pdf\", pagesize=letter)\nwidth, height = letter\n\n# Add text\nc.drawString(100, height - 100, \"Hello World!\")\nc.drawString(100, height - 120, \"This is a PDF created with reportlab\")\n\n# Add a line\nc.line(100, height - 140, 400, height - 140)\n\n# Save\nc.save()\n```\n\n#### Create PDF with Multiple Pages\n```python\nfrom reportlab.lib.pagesizes import letter\nfrom reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer, PageBreak\nfrom reportlab.lib.styles import getSampleStyleSheet\n\ndoc = SimpleDocTemplate(\"report.pdf\", pagesize=letter)\nstyles = getSampleStyleSheet()\nstory = []\n\n# Add content\ntitle = Paragraph(\"Report Title\", styles['Title'])\nstory.append(title)\nstory.append(Spacer(1, 12))\n\nbody = Paragraph(\"This is the body of the report. \" * 20, styles['Normal'])\nstory.append(body)\nstory.append(PageBreak())\n\n# Page 2\nstory.append(Paragraph(\"Page 2\", styles['Heading1']))\nstory.append(Paragraph(\"Content for page 2\", styles['Normal']))\n\n# Build PDF\ndoc.build(story)\n```\n\n#### Subscripts and Superscripts\n\n**IMPORTANT**: Never use Unicode subscript/superscript characters (₀₁₂₃₄₅₆₇₈₉, ⁰¹²³⁴⁵⁶⁷⁸⁹) in ReportLab PDFs. The built-in fonts do not include these glyphs, causing them to render as solid black boxes.\n\nInstead, use ReportLab's XML markup tags in Paragraph objects:\n```python\nfrom reportlab.platypus import Paragraph\nfrom reportlab.lib.styles import getSampleStyleSheet\n\nstyles = getSampleStyleSheet()\n\n# Subscripts: use <sub> tag\nchemical = Paragraph(\"H<sub>2</sub>O\", styles['Normal'])\n\n# Superscripts: use <super> tag\nsquared = Paragraph(\"x<super>2</super> + y<super>2</super>\", styles['Normal'])\n```\n\nFor canvas-drawn text (not Paragraph objects), manually adjust font the size and position rather than using Unicode subscripts/superscripts.\n\n## Command-Line Tools\n\n### pdftotext (poppler-utils)\n```bash\n# Extract text\npdftotext input.pdf output.txt\n\n# Extract text preserving layout\npdftotext -layout input.pdf output.txt\n\n# Extract specific pages\npdftotext -f 1 -l 5 input.pdf output.txt  # Pages 1-5\n```\n\n### qpdf\n```bash\n# Merge PDFs\nqpdf --empty --pages file1.pdf file2.pdf -- merged.pdf\n\n# Split pages\nqpdf input.pdf --pages . 1-5 -- pages1-5.pdf\nqpdf input.pdf --pages . 6-10 -- pages6-10.pdf\n\n# Rotate pages\nqpdf input.pdf output.pdf --rotate=+90:1  # Rotate page 1 by 90 degrees\n\n# Remove password\nqpdf --password=mypassword --decrypt encrypted.pdf decrypted.pdf\n```\n\n### pdftk (if available)\n```bash\n# Merge\npdftk file1.pdf file2.pdf cat output merged.pdf\n\n# Split\npdftk input.pdf burst\n\n# Rotate\npdftk input.pdf rotate 1east output rotated.pdf\n```\n\n## Common Tasks\n\n### Extract Text from Scanned PDFs\n```python\n# Requires: pip install pytesseract pdf2image\nimport pytesseract\nfrom pdf2image import convert_from_path\n\n# Convert PDF to images\nimages = convert_from_path('scanned.pdf')\n\n# OCR each page\ntext = \"\"\nfor i, image in enumerate(images):\n    text += f\"Page {i+1}:\\n\"\n    text += pytesseract.image_to_string(image)\n    text += \"\\n\\n\"\n\nprint(text)\n```\n\n### Add Watermark\n```python\nfrom pypdf import PdfReader, PdfWriter\n\n# Create watermark (or load existing)\nwatermark = PdfReader(\"watermark.pdf\").pages[0]\n\n# Apply to all pages\nreader = PdfReader(\"document.pdf\")\nwriter = PdfWriter()\n\nfor page in reader.pages:\n    page.merge_page(watermark)\n    writer.add_page(page)\n\nwith open(\"watermarked.pdf\", \"wb\") as output:\n    writer.write(output)\n```\n\n### Extract Images\n```bash\n# Using pdfimages (poppler-utils)\npdfimages -j input.pdf output_prefix\n\n# This extracts all images as output_prefix-000.jpg, output_prefix-001.jpg, etc.\n```\n\n### Password Protection\n```python\nfrom pypdf import PdfReader, PdfWriter\n\nreader = PdfReader(\"input.pdf\")\nwriter = PdfWriter()\n\nfor page in reader.pages:\n    writer.add_page(page)\n\n# Add password\nwriter.encrypt(\"userpassword\", \"ownerpassword\")\n\nwith open(\"encrypted.pdf\", \"wb\") as output:\n    writer.write(output)\n```\n\n## Quick Reference\n\n| Task | Best Tool | Command/Code |\n|------|-----------|--------------|\n| Merge PDFs | pypdf | `writer.add_page(page)` |\n| Split PDFs | pypdf | One page per file |\n| Extract text | pdfplumber | `page.extract_text()` |\n| Extract tables | pdfplumber | `page.extract_tables()` |\n| Create PDFs | reportlab | Canvas or Platypus |\n| Command line merge | qpdf | `qpdf --empty --pages ...` |\n| OCR scanned PDFs | pytesseract | Convert to image first |\n| Fill PDF forms | pdf-lib or pypdf (see FORMS.md) | See FORMS.md |\n\n## Next Steps\n\n- For advanced pypdfium2 usage, see REFERENCE.md\n- For JavaScript libraries (pdf-lib), see REFERENCE.md\n- If you need to fill out a PDF form, follow the instructions in FORMS.md\n- For troubleshooting guides, see REFERENCE.md\n"
  },
  {
    "path": "skills/pdf/forms.md",
    "content": "**CRITICAL: You MUST complete these steps in order. Do not skip ahead to writing code.**\n\nIf you need to fill out a PDF form, first check to see if the PDF has fillable form fields. Run this script from this file's directory:\n `python scripts/check_fillable_fields <file.pdf>`, and depending on the result go to either the \"Fillable fields\" or \"Non-fillable fields\" and follow those instructions.\n\n# Fillable fields\nIf the PDF has fillable form fields:\n- Run this script from this file's directory: `python scripts/extract_form_field_info.py <input.pdf> <field_info.json>`. It will create a JSON file with a list of fields in this format:\n```\n[\n  {\n    \"field_id\": (unique ID for the field),\n    \"page\": (page number, 1-based),\n    \"rect\": ([left, bottom, right, top] bounding box in PDF coordinates, y=0 is the bottom of the page),\n    \"type\": (\"text\", \"checkbox\", \"radio_group\", or \"choice\"),\n  },\n  // Checkboxes have \"checked_value\" and \"unchecked_value\" properties:\n  {\n    \"field_id\": (unique ID for the field),\n    \"page\": (page number, 1-based),\n    \"type\": \"checkbox\",\n    \"checked_value\": (Set the field to this value to check the checkbox),\n    \"unchecked_value\": (Set the field to this value to uncheck the checkbox),\n  },\n  // Radio groups have a \"radio_options\" list with the possible choices.\n  {\n    \"field_id\": (unique ID for the field),\n    \"page\": (page number, 1-based),\n    \"type\": \"radio_group\",\n    \"radio_options\": [\n      {\n        \"value\": (set the field to this value to select this radio option),\n        \"rect\": (bounding box for the radio button for this option)\n      },\n      // Other radio options\n    ]\n  },\n  // Multiple choice fields have a \"choice_options\" list with the possible choices:\n  {\n    \"field_id\": (unique ID for the field),\n    \"page\": (page number, 1-based),\n    \"type\": \"choice\",\n    \"choice_options\": [\n      {\n        \"value\": (set the field to this value to select this option),\n        \"text\": (display text of the option)\n      },\n      // Other choice options\n    ],\n  }\n]\n```\n- Convert the PDF to PNGs (one image for each page) with this script (run from this file's directory):\n`python scripts/convert_pdf_to_images.py <file.pdf> <output_directory>`\nThen analyze the images to determine the purpose of each form field (make sure to convert the bounding box PDF coordinates to image coordinates).\n- Create a `field_values.json` file in this format with the values to be entered for each field:\n```\n[\n  {\n    \"field_id\": \"last_name\", // Must match the field_id from `extract_form_field_info.py`\n    \"description\": \"The user's last name\",\n    \"page\": 1, // Must match the \"page\" value in field_info.json\n    \"value\": \"Simpson\"\n  },\n  {\n    \"field_id\": \"Checkbox12\",\n    \"description\": \"Checkbox to be checked if the user is 18 or over\",\n    \"page\": 1,\n    \"value\": \"/On\" // If this is a checkbox, use its \"checked_value\" value to check it. If it's a radio button group, use one of the \"value\" values in \"radio_options\".\n  },\n  // more fields\n]\n```\n- Run the `fill_fillable_fields.py` script from this file's directory to create a filled-in PDF:\n`python scripts/fill_fillable_fields.py <input pdf> <field_values.json> <output pdf>`\nThis script will verify that the field IDs and values you provide are valid; if it prints error messages, correct the appropriate fields and try again.\n\n# Non-fillable fields\nIf the PDF doesn't have fillable form fields, you'll add text annotations. First try to extract coordinates from the PDF structure (more accurate), then fall back to visual estimation if needed.\n\n## Step 1: Try Structure Extraction First\n\nRun this script to extract text labels, lines, and checkboxes with their exact PDF coordinates:\n`python scripts/extract_form_structure.py <input.pdf> form_structure.json`\n\nThis creates a JSON file containing:\n- **labels**: Every text element with exact coordinates (x0, top, x1, bottom in PDF points)\n- **lines**: Horizontal lines that define row boundaries\n- **checkboxes**: Small square rectangles that are checkboxes (with center coordinates)\n- **row_boundaries**: Row top/bottom positions calculated from horizontal lines\n\n**Check the results**: If `form_structure.json` has meaningful labels (text elements that correspond to form fields), use **Approach A: Structure-Based Coordinates**. If the PDF is scanned/image-based and has few or no labels, use **Approach B: Visual Estimation**.\n\n---\n\n## Approach A: Structure-Based Coordinates (Preferred)\n\nUse this when `extract_form_structure.py` found text labels in the PDF.\n\n### A.1: Analyze the Structure\n\nRead form_structure.json and identify:\n\n1. **Label groups**: Adjacent text elements that form a single label (e.g., \"Last\" + \"Name\")\n2. **Row structure**: Labels with similar `top` values are in the same row\n3. **Field columns**: Entry areas start after label ends (x0 = label.x1 + gap)\n4. **Checkboxes**: Use the checkbox coordinates directly from the structure\n\n**Coordinate system**: PDF coordinates where y=0 is at TOP of page, y increases downward.\n\n### A.2: Check for Missing Elements\n\nThe structure extraction may not detect all form elements. Common cases:\n- **Circular checkboxes**: Only square rectangles are detected as checkboxes\n- **Complex graphics**: Decorative elements or non-standard form controls\n- **Faded or light-colored elements**: May not be extracted\n\nIf you see form fields in the PDF images that aren't in form_structure.json, you'll need to use **visual analysis** for those specific fields (see \"Hybrid Approach\" below).\n\n### A.3: Create fields.json with PDF Coordinates\n\nFor each field, calculate entry coordinates from the extracted structure:\n\n**Text fields:**\n- entry x0 = label x1 + 5 (small gap after label)\n- entry x1 = next label's x0, or row boundary\n- entry top = same as label top\n- entry bottom = row boundary line below, or label bottom + row_height\n\n**Checkboxes:**\n- Use the checkbox rectangle coordinates directly from form_structure.json\n- entry_bounding_box = [checkbox.x0, checkbox.top, checkbox.x1, checkbox.bottom]\n\nCreate fields.json using `pdf_width` and `pdf_height` (signals PDF coordinates):\n```json\n{\n  \"pages\": [\n    {\"page_number\": 1, \"pdf_width\": 612, \"pdf_height\": 792}\n  ],\n  \"form_fields\": [\n    {\n      \"page_number\": 1,\n      \"description\": \"Last name entry field\",\n      \"field_label\": \"Last Name\",\n      \"label_bounding_box\": [43, 63, 87, 73],\n      \"entry_bounding_box\": [92, 63, 260, 79],\n      \"entry_text\": {\"text\": \"Smith\", \"font_size\": 10}\n    },\n    {\n      \"page_number\": 1,\n      \"description\": \"US Citizen Yes checkbox\",\n      \"field_label\": \"Yes\",\n      \"label_bounding_box\": [260, 200, 280, 210],\n      \"entry_bounding_box\": [285, 197, 292, 205],\n      \"entry_text\": {\"text\": \"X\"}\n    }\n  ]\n}\n```\n\n**Important**: Use `pdf_width`/`pdf_height` and coordinates directly from form_structure.json.\n\n### A.4: Validate Bounding Boxes\n\nBefore filling, check your bounding boxes for errors:\n`python scripts/check_bounding_boxes.py fields.json`\n\nThis checks for intersecting bounding boxes and entry boxes that are too small for the font size. Fix any reported errors before filling.\n\n---\n\n## Approach B: Visual Estimation (Fallback)\n\nUse this when the PDF is scanned/image-based and structure extraction found no usable text labels (e.g., all text shows as \"(cid:X)\" patterns).\n\n### B.1: Convert PDF to Images\n\n`python scripts/convert_pdf_to_images.py <input.pdf> <images_dir/>`\n\n### B.2: Initial Field Identification\n\nExamine each page image to identify form sections and get **rough estimates** of field locations:\n- Form field labels and their approximate positions\n- Entry areas (lines, boxes, or blank spaces for text input)\n- Checkboxes and their approximate locations\n\nFor each field, note approximate pixel coordinates (they don't need to be precise yet).\n\n### B.3: Zoom Refinement (CRITICAL for accuracy)\n\nFor each field, crop a region around the estimated position to refine coordinates precisely.\n\n**Create a zoomed crop using ImageMagick:**\n```bash\nmagick <page_image> -crop <width>x<height>+<x>+<y> +repage <crop_output.png>\n```\n\nWhere:\n- `<x>, <y>` = top-left corner of crop region (use your rough estimate minus padding)\n- `<width>, <height>` = size of crop region (field area plus ~50px padding on each side)\n\n**Example:** To refine a \"Name\" field estimated around (100, 150):\n```bash\nmagick images_dir/page_1.png -crop 300x80+50+120 +repage crops/name_field.png\n```\n\n(Note: if the `magick` command isn't available, try `convert` with the same arguments).\n\n**Examine the cropped image** to determine precise coordinates:\n1. Identify the exact pixel where the entry area begins (after the label)\n2. Identify where the entry area ends (before next field or edge)\n3. Identify the top and bottom of the entry line/box\n\n**Convert crop coordinates back to full image coordinates:**\n- full_x = crop_x + crop_offset_x\n- full_y = crop_y + crop_offset_y\n\nExample: If the crop started at (50, 120) and the entry box starts at (52, 18) within the crop:\n- entry_x0 = 52 + 50 = 102\n- entry_top = 18 + 120 = 138\n\n**Repeat for each field**, grouping nearby fields into single crops when possible.\n\n### B.4: Create fields.json with Refined Coordinates\n\nCreate fields.json using `image_width` and `image_height` (signals image coordinates):\n```json\n{\n  \"pages\": [\n    {\"page_number\": 1, \"image_width\": 1700, \"image_height\": 2200}\n  ],\n  \"form_fields\": [\n    {\n      \"page_number\": 1,\n      \"description\": \"Last name entry field\",\n      \"field_label\": \"Last Name\",\n      \"label_bounding_box\": [120, 175, 242, 198],\n      \"entry_bounding_box\": [255, 175, 720, 218],\n      \"entry_text\": {\"text\": \"Smith\", \"font_size\": 10}\n    }\n  ]\n}\n```\n\n**Important**: Use `image_width`/`image_height` and the refined pixel coordinates from the zoom analysis.\n\n### B.5: Validate Bounding Boxes\n\nBefore filling, check your bounding boxes for errors:\n`python scripts/check_bounding_boxes.py fields.json`\n\nThis checks for intersecting bounding boxes and entry boxes that are too small for the font size. Fix any reported errors before filling.\n\n---\n\n## Hybrid Approach: Structure + Visual\n\nUse this when structure extraction works for most fields but misses some elements (e.g., circular checkboxes, unusual form controls).\n\n1. **Use Approach A** for fields that were detected in form_structure.json\n2. **Convert PDF to images** for visual analysis of missing fields\n3. **Use zoom refinement** (from Approach B) for the missing fields\n4. **Combine coordinates**: For fields from structure extraction, use `pdf_width`/`pdf_height`. For visually-estimated fields, you must convert image coordinates to PDF coordinates:\n   - pdf_x = image_x * (pdf_width / image_width)\n   - pdf_y = image_y * (pdf_height / image_height)\n5. **Use a single coordinate system** in fields.json - convert all to PDF coordinates with `pdf_width`/`pdf_height`\n\n---\n\n## Step 2: Validate Before Filling\n\n**Always validate bounding boxes before filling:**\n`python scripts/check_bounding_boxes.py fields.json`\n\nThis checks for:\n- Intersecting bounding boxes (which would cause overlapping text)\n- Entry boxes that are too small for the specified font size\n\nFix any reported errors in fields.json before proceeding.\n\n## Step 3: Fill the Form\n\nThe fill script auto-detects the coordinate system and handles conversion:\n`python scripts/fill_pdf_form_with_annotations.py <input.pdf> fields.json <output.pdf>`\n\n## Step 4: Verify Output\n\nConvert the filled PDF to images and verify text placement:\n`python scripts/convert_pdf_to_images.py <output.pdf> <verify_images/>`\n\nIf text is mispositioned:\n- **Approach A**: Check that you're using PDF coordinates from form_structure.json with `pdf_width`/`pdf_height`\n- **Approach B**: Check that image dimensions match and coordinates are accurate pixels\n- **Hybrid**: Ensure coordinate conversions are correct for visually-estimated fields\n"
  },
  {
    "path": "skills/pdf/reference.md",
    "content": "# PDF Processing Advanced Reference\n\nThis document contains advanced PDF processing features, detailed examples, and additional libraries not covered in the main skill instructions.\n\n## pypdfium2 Library (Apache/BSD License)\n\n### Overview\npypdfium2 is a Python binding for PDFium (Chromium's PDF library). It's excellent for fast PDF rendering, image generation, and serves as a PyMuPDF replacement.\n\n### Render PDF to Images\n```python\nimport pypdfium2 as pdfium\nfrom PIL import Image\n\n# Load PDF\npdf = pdfium.PdfDocument(\"document.pdf\")\n\n# Render page to image\npage = pdf[0]  # First page\nbitmap = page.render(\n    scale=2.0,  # Higher resolution\n    rotation=0  # No rotation\n)\n\n# Convert to PIL Image\nimg = bitmap.to_pil()\nimg.save(\"page_1.png\", \"PNG\")\n\n# Process multiple pages\nfor i, page in enumerate(pdf):\n    bitmap = page.render(scale=1.5)\n    img = bitmap.to_pil()\n    img.save(f\"page_{i+1}.jpg\", \"JPEG\", quality=90)\n```\n\n### Extract Text with pypdfium2\n```python\nimport pypdfium2 as pdfium\n\npdf = pdfium.PdfDocument(\"document.pdf\")\nfor i, page in enumerate(pdf):\n    text = page.get_text()\n    print(f\"Page {i+1} text length: {len(text)} chars\")\n```\n\n## JavaScript Libraries\n\n### pdf-lib (MIT License)\n\npdf-lib is a powerful JavaScript library for creating and modifying PDF documents in any JavaScript environment.\n\n#### Load and Manipulate Existing PDF\n```javascript\nimport { PDFDocument } from 'pdf-lib';\nimport fs from 'fs';\n\nasync function manipulatePDF() {\n    // Load existing PDF\n    const existingPdfBytes = fs.readFileSync('input.pdf');\n    const pdfDoc = await PDFDocument.load(existingPdfBytes);\n\n    // Get page count\n    const pageCount = pdfDoc.getPageCount();\n    console.log(`Document has ${pageCount} pages`);\n\n    // Add new page\n    const newPage = pdfDoc.addPage([600, 400]);\n    newPage.drawText('Added by pdf-lib', {\n        x: 100,\n        y: 300,\n        size: 16\n    });\n\n    // Save modified PDF\n    const pdfBytes = await pdfDoc.save();\n    fs.writeFileSync('modified.pdf', pdfBytes);\n}\n```\n\n#### Create Complex PDFs from Scratch\n```javascript\nimport { PDFDocument, rgb, StandardFonts } from 'pdf-lib';\nimport fs from 'fs';\n\nasync function createPDF() {\n    const pdfDoc = await PDFDocument.create();\n\n    // Add fonts\n    const helveticaFont = await pdfDoc.embedFont(StandardFonts.Helvetica);\n    const helveticaBold = await pdfDoc.embedFont(StandardFonts.HelveticaBold);\n\n    // Add page\n    const page = pdfDoc.addPage([595, 842]); // A4 size\n    const { width, height } = page.getSize();\n\n    // Add text with styling\n    page.drawText('Invoice #12345', {\n        x: 50,\n        y: height - 50,\n        size: 18,\n        font: helveticaBold,\n        color: rgb(0.2, 0.2, 0.8)\n    });\n\n    // Add rectangle (header background)\n    page.drawRectangle({\n        x: 40,\n        y: height - 100,\n        width: width - 80,\n        height: 30,\n        color: rgb(0.9, 0.9, 0.9)\n    });\n\n    // Add table-like content\n    const items = [\n        ['Item', 'Qty', 'Price', 'Total'],\n        ['Widget', '2', '$50', '$100'],\n        ['Gadget', '1', '$75', '$75']\n    ];\n\n    let yPos = height - 150;\n    items.forEach(row => {\n        let xPos = 50;\n        row.forEach(cell => {\n            page.drawText(cell, {\n                x: xPos,\n                y: yPos,\n                size: 12,\n                font: helveticaFont\n            });\n            xPos += 120;\n        });\n        yPos -= 25;\n    });\n\n    const pdfBytes = await pdfDoc.save();\n    fs.writeFileSync('created.pdf', pdfBytes);\n}\n```\n\n#### Advanced Merge and Split Operations\n```javascript\nimport { PDFDocument } from 'pdf-lib';\nimport fs from 'fs';\n\nasync function mergePDFs() {\n    // Create new document\n    const mergedPdf = await PDFDocument.create();\n\n    // Load source PDFs\n    const pdf1Bytes = fs.readFileSync('doc1.pdf');\n    const pdf2Bytes = fs.readFileSync('doc2.pdf');\n\n    const pdf1 = await PDFDocument.load(pdf1Bytes);\n    const pdf2 = await PDFDocument.load(pdf2Bytes);\n\n    // Copy pages from first PDF\n    const pdf1Pages = await mergedPdf.copyPages(pdf1, pdf1.getPageIndices());\n    pdf1Pages.forEach(page => mergedPdf.addPage(page));\n\n    // Copy specific pages from second PDF (pages 0, 2, 4)\n    const pdf2Pages = await mergedPdf.copyPages(pdf2, [0, 2, 4]);\n    pdf2Pages.forEach(page => mergedPdf.addPage(page));\n\n    const mergedPdfBytes = await mergedPdf.save();\n    fs.writeFileSync('merged.pdf', mergedPdfBytes);\n}\n```\n\n### pdfjs-dist (Apache License)\n\nPDF.js is Mozilla's JavaScript library for rendering PDFs in the browser.\n\n#### Basic PDF Loading and Rendering\n```javascript\nimport * as pdfjsLib from 'pdfjs-dist';\n\n// Configure worker (important for performance)\npdfjsLib.GlobalWorkerOptions.workerSrc = './pdf.worker.js';\n\nasync function renderPDF() {\n    // Load PDF\n    const loadingTask = pdfjsLib.getDocument('document.pdf');\n    const pdf = await loadingTask.promise;\n\n    console.log(`Loaded PDF with ${pdf.numPages} pages`);\n\n    // Get first page\n    const page = await pdf.getPage(1);\n    const viewport = page.getViewport({ scale: 1.5 });\n\n    // Render to canvas\n    const canvas = document.createElement('canvas');\n    const context = canvas.getContext('2d');\n    canvas.height = viewport.height;\n    canvas.width = viewport.width;\n\n    const renderContext = {\n        canvasContext: context,\n        viewport: viewport\n    };\n\n    await page.render(renderContext).promise;\n    document.body.appendChild(canvas);\n}\n```\n\n#### Extract Text with Coordinates\n```javascript\nimport * as pdfjsLib from 'pdfjs-dist';\n\nasync function extractText() {\n    const loadingTask = pdfjsLib.getDocument('document.pdf');\n    const pdf = await loadingTask.promise;\n\n    let fullText = '';\n\n    // Extract text from all pages\n    for (let i = 1; i <= pdf.numPages; i++) {\n        const page = await pdf.getPage(i);\n        const textContent = await page.getTextContent();\n\n        const pageText = textContent.items\n            .map(item => item.str)\n            .join(' ');\n\n        fullText += `\\n--- Page ${i} ---\\n${pageText}`;\n\n        // Get text with coordinates for advanced processing\n        const textWithCoords = textContent.items.map(item => ({\n            text: item.str,\n            x: item.transform[4],\n            y: item.transform[5],\n            width: item.width,\n            height: item.height\n        }));\n    }\n\n    console.log(fullText);\n    return fullText;\n}\n```\n\n#### Extract Annotations and Forms\n```javascript\nimport * as pdfjsLib from 'pdfjs-dist';\n\nasync function extractAnnotations() {\n    const loadingTask = pdfjsLib.getDocument('annotated.pdf');\n    const pdf = await loadingTask.promise;\n\n    for (let i = 1; i <= pdf.numPages; i++) {\n        const page = await pdf.getPage(i);\n        const annotations = await page.getAnnotations();\n\n        annotations.forEach(annotation => {\n            console.log(`Annotation type: ${annotation.subtype}`);\n            console.log(`Content: ${annotation.contents}`);\n            console.log(`Coordinates: ${JSON.stringify(annotation.rect)}`);\n        });\n    }\n}\n```\n\n## Advanced Command-Line Operations\n\n### poppler-utils Advanced Features\n\n#### Extract Text with Bounding Box Coordinates\n```bash\n# Extract text with bounding box coordinates (essential for structured data)\npdftotext -bbox-layout document.pdf output.xml\n\n# The XML output contains precise coordinates for each text element\n```\n\n#### Advanced Image Conversion\n```bash\n# Convert to PNG images with specific resolution\npdftoppm -png -r 300 document.pdf output_prefix\n\n# Convert specific page range with high resolution\npdftoppm -png -r 600 -f 1 -l 3 document.pdf high_res_pages\n\n# Convert to JPEG with quality setting\npdftoppm -jpeg -jpegopt quality=85 -r 200 document.pdf jpeg_output\n```\n\n#### Extract Embedded Images\n```bash\n# Extract all embedded images with metadata\npdfimages -j -p document.pdf page_images\n\n# List image info without extracting\npdfimages -list document.pdf\n\n# Extract images in their original format\npdfimages -all document.pdf images/img\n```\n\n### qpdf Advanced Features\n\n#### Complex Page Manipulation\n```bash\n# Split PDF into groups of pages\nqpdf --split-pages=3 input.pdf output_group_%02d.pdf\n\n# Extract specific pages with complex ranges\nqpdf input.pdf --pages input.pdf 1,3-5,8,10-end -- extracted.pdf\n\n# Merge specific pages from multiple PDFs\nqpdf --empty --pages doc1.pdf 1-3 doc2.pdf 5-7 doc3.pdf 2,4 -- combined.pdf\n```\n\n#### PDF Optimization and Repair\n```bash\n# Optimize PDF for web (linearize for streaming)\nqpdf --linearize input.pdf optimized.pdf\n\n# Remove unused objects and compress\nqpdf --optimize-level=all input.pdf compressed.pdf\n\n# Attempt to repair corrupted PDF structure\nqpdf --check input.pdf\nqpdf --fix-qdf damaged.pdf repaired.pdf\n\n# Show detailed PDF structure for debugging\nqpdf --show-all-pages input.pdf > structure.txt\n```\n\n#### Advanced Encryption\n```bash\n# Add password protection with specific permissions\nqpdf --encrypt user_pass owner_pass 256 --print=none --modify=none -- input.pdf encrypted.pdf\n\n# Check encryption status\nqpdf --show-encryption encrypted.pdf\n\n# Remove password protection (requires password)\nqpdf --password=secret123 --decrypt encrypted.pdf decrypted.pdf\n```\n\n## Advanced Python Techniques\n\n### pdfplumber Advanced Features\n\n#### Extract Text with Precise Coordinates\n```python\nimport pdfplumber\n\nwith pdfplumber.open(\"document.pdf\") as pdf:\n    page = pdf.pages[0]\n    \n    # Extract all text with coordinates\n    chars = page.chars\n    for char in chars[:10]:  # First 10 characters\n        print(f\"Char: '{char['text']}' at x:{char['x0']:.1f} y:{char['y0']:.1f}\")\n    \n    # Extract text by bounding box (left, top, right, bottom)\n    bbox_text = page.within_bbox((100, 100, 400, 200)).extract_text()\n```\n\n#### Advanced Table Extraction with Custom Settings\n```python\nimport pdfplumber\nimport pandas as pd\n\nwith pdfplumber.open(\"complex_table.pdf\") as pdf:\n    page = pdf.pages[0]\n    \n    # Extract tables with custom settings for complex layouts\n    table_settings = {\n        \"vertical_strategy\": \"lines\",\n        \"horizontal_strategy\": \"lines\",\n        \"snap_tolerance\": 3,\n        \"intersection_tolerance\": 15\n    }\n    tables = page.extract_tables(table_settings)\n    \n    # Visual debugging for table extraction\n    img = page.to_image(resolution=150)\n    img.save(\"debug_layout.png\")\n```\n\n### reportlab Advanced Features\n\n#### Create Professional Reports with Tables\n```python\nfrom reportlab.platypus import SimpleDocTemplate, Table, TableStyle, Paragraph\nfrom reportlab.lib.styles import getSampleStyleSheet\nfrom reportlab.lib import colors\n\n# Sample data\ndata = [\n    ['Product', 'Q1', 'Q2', 'Q3', 'Q4'],\n    ['Widgets', '120', '135', '142', '158'],\n    ['Gadgets', '85', '92', '98', '105']\n]\n\n# Create PDF with table\ndoc = SimpleDocTemplate(\"report.pdf\")\nelements = []\n\n# Add title\nstyles = getSampleStyleSheet()\ntitle = Paragraph(\"Quarterly Sales Report\", styles['Title'])\nelements.append(title)\n\n# Add table with advanced styling\ntable = Table(data)\ntable.setStyle(TableStyle([\n    ('BACKGROUND', (0, 0), (-1, 0), colors.grey),\n    ('TEXTCOLOR', (0, 0), (-1, 0), colors.whitesmoke),\n    ('ALIGN', (0, 0), (-1, -1), 'CENTER'),\n    ('FONTNAME', (0, 0), (-1, 0), 'Helvetica-Bold'),\n    ('FONTSIZE', (0, 0), (-1, 0), 14),\n    ('BOTTOMPADDING', (0, 0), (-1, 0), 12),\n    ('BACKGROUND', (0, 1), (-1, -1), colors.beige),\n    ('GRID', (0, 0), (-1, -1), 1, colors.black)\n]))\nelements.append(table)\n\ndoc.build(elements)\n```\n\n## Complex Workflows\n\n### Extract Figures/Images from PDF\n\n#### Method 1: Using pdfimages (fastest)\n```bash\n# Extract all images with original quality\npdfimages -all document.pdf images/img\n```\n\n#### Method 2: Using pypdfium2 + Image Processing\n```python\nimport pypdfium2 as pdfium\nfrom PIL import Image\nimport numpy as np\n\ndef extract_figures(pdf_path, output_dir):\n    pdf = pdfium.PdfDocument(pdf_path)\n    \n    for page_num, page in enumerate(pdf):\n        # Render high-resolution page\n        bitmap = page.render(scale=3.0)\n        img = bitmap.to_pil()\n        \n        # Convert to numpy for processing\n        img_array = np.array(img)\n        \n        # Simple figure detection (non-white regions)\n        mask = np.any(img_array != [255, 255, 255], axis=2)\n        \n        # Find contours and extract bounding boxes\n        # (This is simplified - real implementation would need more sophisticated detection)\n        \n        # Save detected figures\n        # ... implementation depends on specific needs\n```\n\n### Batch PDF Processing with Error Handling\n```python\nimport os\nimport glob\nfrom pypdf import PdfReader, PdfWriter\nimport logging\n\nlogging.basicConfig(level=logging.INFO)\nlogger = logging.getLogger(__name__)\n\ndef batch_process_pdfs(input_dir, operation='merge'):\n    pdf_files = glob.glob(os.path.join(input_dir, \"*.pdf\"))\n    \n    if operation == 'merge':\n        writer = PdfWriter()\n        for pdf_file in pdf_files:\n            try:\n                reader = PdfReader(pdf_file)\n                for page in reader.pages:\n                    writer.add_page(page)\n                logger.info(f\"Processed: {pdf_file}\")\n            except Exception as e:\n                logger.error(f\"Failed to process {pdf_file}: {e}\")\n                continue\n        \n        with open(\"batch_merged.pdf\", \"wb\") as output:\n            writer.write(output)\n    \n    elif operation == 'extract_text':\n        for pdf_file in pdf_files:\n            try:\n                reader = PdfReader(pdf_file)\n                text = \"\"\n                for page in reader.pages:\n                    text += page.extract_text()\n                \n                output_file = pdf_file.replace('.pdf', '.txt')\n                with open(output_file, 'w', encoding='utf-8') as f:\n                    f.write(text)\n                logger.info(f\"Extracted text from: {pdf_file}\")\n                \n            except Exception as e:\n                logger.error(f\"Failed to extract text from {pdf_file}: {e}\")\n                continue\n```\n\n### Advanced PDF Cropping\n```python\nfrom pypdf import PdfWriter, PdfReader\n\nreader = PdfReader(\"input.pdf\")\nwriter = PdfWriter()\n\n# Crop page (left, bottom, right, top in points)\npage = reader.pages[0]\npage.mediabox.left = 50\npage.mediabox.bottom = 50\npage.mediabox.right = 550\npage.mediabox.top = 750\n\nwriter.add_page(page)\nwith open(\"cropped.pdf\", \"wb\") as output:\n    writer.write(output)\n```\n\n## Performance Optimization Tips\n\n### 1. For Large PDFs\n- Use streaming approaches instead of loading entire PDF in memory\n- Use `qpdf --split-pages` for splitting large files\n- Process pages individually with pypdfium2\n\n### 2. For Text Extraction\n- `pdftotext -bbox-layout` is fastest for plain text extraction\n- Use pdfplumber for structured data and tables\n- Avoid `pypdf.extract_text()` for very large documents\n\n### 3. For Image Extraction\n- `pdfimages` is much faster than rendering pages\n- Use low resolution for previews, high resolution for final output\n\n### 4. For Form Filling\n- pdf-lib maintains form structure better than most alternatives\n- Pre-validate form fields before processing\n\n### 5. Memory Management\n```python\n# Process PDFs in chunks\ndef process_large_pdf(pdf_path, chunk_size=10):\n    reader = PdfReader(pdf_path)\n    total_pages = len(reader.pages)\n    \n    for start_idx in range(0, total_pages, chunk_size):\n        end_idx = min(start_idx + chunk_size, total_pages)\n        writer = PdfWriter()\n        \n        for i in range(start_idx, end_idx):\n            writer.add_page(reader.pages[i])\n        \n        # Process chunk\n        with open(f\"chunk_{start_idx//chunk_size}.pdf\", \"wb\") as output:\n            writer.write(output)\n```\n\n## Troubleshooting Common Issues\n\n### Encrypted PDFs\n```python\n# Handle password-protected PDFs\nfrom pypdf import PdfReader\n\ntry:\n    reader = PdfReader(\"encrypted.pdf\")\n    if reader.is_encrypted:\n        reader.decrypt(\"password\")\nexcept Exception as e:\n    print(f\"Failed to decrypt: {e}\")\n```\n\n### Corrupted PDFs\n```bash\n# Use qpdf to repair\nqpdf --check corrupted.pdf\nqpdf --replace-input corrupted.pdf\n```\n\n### Text Extraction Issues\n```python\n# Fallback to OCR for scanned PDFs\nimport pytesseract\nfrom pdf2image import convert_from_path\n\ndef extract_text_with_ocr(pdf_path):\n    images = convert_from_path(pdf_path)\n    text = \"\"\n    for i, image in enumerate(images):\n        text += pytesseract.image_to_string(image)\n    return text\n```\n\n## License Information\n\n- **pypdf**: BSD License\n- **pdfplumber**: MIT License\n- **pypdfium2**: Apache/BSD License\n- **reportlab**: BSD License\n- **poppler-utils**: GPL-2 License\n- **qpdf**: Apache License\n- **pdf-lib**: MIT License\n- **pdfjs-dist**: Apache License"
  },
  {
    "path": "skills/pdf/scripts/check_bounding_boxes.py",
    "content": "from dataclasses import dataclass\nimport json\nimport sys\n\n\n\n\n@dataclass\nclass RectAndField:\n    rect: list[float]\n    rect_type: str\n    field: dict\n\n\ndef get_bounding_box_messages(fields_json_stream) -> list[str]:\n    messages = []\n    fields = json.load(fields_json_stream)\n    messages.append(f\"Read {len(fields['form_fields'])} fields\")\n\n    def rects_intersect(r1, r2):\n        disjoint_horizontal = r1[0] >= r2[2] or r1[2] <= r2[0]\n        disjoint_vertical = r1[1] >= r2[3] or r1[3] <= r2[1]\n        return not (disjoint_horizontal or disjoint_vertical)\n\n    rects_and_fields = []\n    for f in fields[\"form_fields\"]:\n        rects_and_fields.append(RectAndField(f[\"label_bounding_box\"], \"label\", f))\n        rects_and_fields.append(RectAndField(f[\"entry_bounding_box\"], \"entry\", f))\n\n    has_error = False\n    for i, ri in enumerate(rects_and_fields):\n        for j in range(i + 1, len(rects_and_fields)):\n            rj = rects_and_fields[j]\n            if ri.field[\"page_number\"] == rj.field[\"page_number\"] and rects_intersect(ri.rect, rj.rect):\n                has_error = True\n                if ri.field is rj.field:\n                    messages.append(f\"FAILURE: intersection between label and entry bounding boxes for `{ri.field['description']}` ({ri.rect}, {rj.rect})\")\n                else:\n                    messages.append(f\"FAILURE: intersection between {ri.rect_type} bounding box for `{ri.field['description']}` ({ri.rect}) and {rj.rect_type} bounding box for `{rj.field['description']}` ({rj.rect})\")\n                if len(messages) >= 20:\n                    messages.append(\"Aborting further checks; fix bounding boxes and try again\")\n                    return messages\n        if ri.rect_type == \"entry\":\n            if \"entry_text\" in ri.field:\n                font_size = ri.field[\"entry_text\"].get(\"font_size\", 14)\n                entry_height = ri.rect[3] - ri.rect[1]\n                if entry_height < font_size:\n                    has_error = True\n                    messages.append(f\"FAILURE: entry bounding box height ({entry_height}) for `{ri.field['description']}` is too short for the text content (font size: {font_size}). Increase the box height or decrease the font size.\")\n                    if len(messages) >= 20:\n                        messages.append(\"Aborting further checks; fix bounding boxes and try again\")\n                        return messages\n\n    if not has_error:\n        messages.append(\"SUCCESS: All bounding boxes are valid\")\n    return messages\n\nif __name__ == \"__main__\":\n    if len(sys.argv) != 2:\n        print(\"Usage: check_bounding_boxes.py [fields.json]\")\n        sys.exit(1)\n    with open(sys.argv[1]) as f:\n        messages = get_bounding_box_messages(f)\n    for msg in messages:\n        print(msg)\n"
  },
  {
    "path": "skills/pdf/scripts/check_fillable_fields.py",
    "content": "import sys\nfrom pypdf import PdfReader\n\n\n\n\nreader = PdfReader(sys.argv[1])\nif (reader.get_fields()):\n    print(\"This PDF has fillable form fields\")\nelse:\n    print(\"This PDF does not have fillable form fields; you will need to visually determine where to enter data\")\n"
  },
  {
    "path": "skills/pdf/scripts/convert_pdf_to_images.py",
    "content": "import os\nimport sys\n\nfrom pdf2image import convert_from_path\n\n\n\n\ndef convert(pdf_path, output_dir, max_dim=1000):\n    images = convert_from_path(pdf_path, dpi=200)\n\n    for i, image in enumerate(images):\n        width, height = image.size\n        if width > max_dim or height > max_dim:\n            scale_factor = min(max_dim / width, max_dim / height)\n            new_width = int(width * scale_factor)\n            new_height = int(height * scale_factor)\n            image = image.resize((new_width, new_height))\n        \n        image_path = os.path.join(output_dir, f\"page_{i+1}.png\")\n        image.save(image_path)\n        print(f\"Saved page {i+1} as {image_path} (size: {image.size})\")\n\n    print(f\"Converted {len(images)} pages to PNG images\")\n\n\nif __name__ == \"__main__\":\n    if len(sys.argv) != 3:\n        print(\"Usage: convert_pdf_to_images.py [input pdf] [output directory]\")\n        sys.exit(1)\n    pdf_path = sys.argv[1]\n    output_directory = sys.argv[2]\n    convert(pdf_path, output_directory)\n"
  },
  {
    "path": "skills/pdf/scripts/create_validation_image.py",
    "content": "import json\nimport sys\n\nfrom PIL import Image, ImageDraw\n\n\n\n\ndef create_validation_image(page_number, fields_json_path, input_path, output_path):\n    with open(fields_json_path, 'r') as f:\n        data = json.load(f)\n\n        img = Image.open(input_path)\n        draw = ImageDraw.Draw(img)\n        num_boxes = 0\n        \n        for field in data[\"form_fields\"]:\n            if field[\"page_number\"] == page_number:\n                entry_box = field['entry_bounding_box']\n                label_box = field['label_bounding_box']\n                draw.rectangle(entry_box, outline='red', width=2)\n                draw.rectangle(label_box, outline='blue', width=2)\n                num_boxes += 2\n        \n        img.save(output_path)\n        print(f\"Created validation image at {output_path} with {num_boxes} bounding boxes\")\n\n\nif __name__ == \"__main__\":\n    if len(sys.argv) != 5:\n        print(\"Usage: create_validation_image.py [page number] [fields.json file] [input image path] [output image path]\")\n        sys.exit(1)\n    page_number = int(sys.argv[1])\n    fields_json_path = sys.argv[2]\n    input_image_path = sys.argv[3]\n    output_image_path = sys.argv[4]\n    create_validation_image(page_number, fields_json_path, input_image_path, output_image_path)\n"
  },
  {
    "path": "skills/pdf/scripts/extract_form_field_info.py",
    "content": "import json\nimport sys\n\nfrom pypdf import PdfReader\n\n\n\n\ndef get_full_annotation_field_id(annotation):\n    components = []\n    while annotation:\n        field_name = annotation.get('/T')\n        if field_name:\n            components.append(field_name)\n        annotation = annotation.get('/Parent')\n    return \".\".join(reversed(components)) if components else None\n\n\ndef make_field_dict(field, field_id):\n    field_dict = {\"field_id\": field_id}\n    ft = field.get('/FT')\n    if ft == \"/Tx\":\n        field_dict[\"type\"] = \"text\"\n    elif ft == \"/Btn\":\n        field_dict[\"type\"] = \"checkbox\"  \n        states = field.get(\"/_States_\", [])\n        if len(states) == 2:\n            if \"/Off\" in states:\n                field_dict[\"checked_value\"] = states[0] if states[0] != \"/Off\" else states[1]\n                field_dict[\"unchecked_value\"] = \"/Off\"\n            else:\n                print(f\"Unexpected state values for checkbox `${field_id}`. Its checked and unchecked values may not be correct; if you're trying to check it, visually verify the results.\")\n                field_dict[\"checked_value\"] = states[0]\n                field_dict[\"unchecked_value\"] = states[1]\n    elif ft == \"/Ch\":\n        field_dict[\"type\"] = \"choice\"\n        states = field.get(\"/_States_\", [])\n        field_dict[\"choice_options\"] = [{\n            \"value\": state[0],\n            \"text\": state[1],\n        } for state in states]\n    else:\n        field_dict[\"type\"] = f\"unknown ({ft})\"\n    return field_dict\n\n\ndef get_field_info(reader: PdfReader):\n    fields = reader.get_fields()\n\n    field_info_by_id = {}\n    possible_radio_names = set()\n\n    for field_id, field in fields.items():\n        if field.get(\"/Kids\"):\n            if field.get(\"/FT\") == \"/Btn\":\n                possible_radio_names.add(field_id)\n            continue\n        field_info_by_id[field_id] = make_field_dict(field, field_id)\n\n\n    radio_fields_by_id = {}\n\n    for page_index, page in enumerate(reader.pages):\n        annotations = page.get('/Annots', [])\n        for ann in annotations:\n            field_id = get_full_annotation_field_id(ann)\n            if field_id in field_info_by_id:\n                field_info_by_id[field_id][\"page\"] = page_index + 1\n                field_info_by_id[field_id][\"rect\"] = ann.get('/Rect')\n            elif field_id in possible_radio_names:\n                try:\n                    on_values = [v for v in ann[\"/AP\"][\"/N\"] if v != \"/Off\"]\n                except KeyError:\n                    continue\n                if len(on_values) == 1:\n                    rect = ann.get(\"/Rect\")\n                    if field_id not in radio_fields_by_id:\n                        radio_fields_by_id[field_id] = {\n                            \"field_id\": field_id,\n                            \"type\": \"radio_group\",\n                            \"page\": page_index + 1,\n                            \"radio_options\": [],\n                        }\n                    radio_fields_by_id[field_id][\"radio_options\"].append({\n                        \"value\": on_values[0],\n                        \"rect\": rect,\n                    })\n\n    fields_with_location = []\n    for field_info in field_info_by_id.values():\n        if \"page\" in field_info:\n            fields_with_location.append(field_info)\n        else:\n            print(f\"Unable to determine location for field id: {field_info.get('field_id')}, ignoring\")\n\n    def sort_key(f):\n        if \"radio_options\" in f:\n            rect = f[\"radio_options\"][0][\"rect\"] or [0, 0, 0, 0]\n        else:\n            rect = f.get(\"rect\") or [0, 0, 0, 0]\n        adjusted_position = [-rect[1], rect[0]]\n        return [f.get(\"page\"), adjusted_position]\n    \n    sorted_fields = fields_with_location + list(radio_fields_by_id.values())\n    sorted_fields.sort(key=sort_key)\n\n    return sorted_fields\n\n\ndef write_field_info(pdf_path: str, json_output_path: str):\n    reader = PdfReader(pdf_path)\n    field_info = get_field_info(reader)\n    with open(json_output_path, \"w\") as f:\n        json.dump(field_info, f, indent=2)\n    print(f\"Wrote {len(field_info)} fields to {json_output_path}\")\n\n\nif __name__ == \"__main__\":\n    if len(sys.argv) != 3:\n        print(\"Usage: extract_form_field_info.py [input pdf] [output json]\")\n        sys.exit(1)\n    write_field_info(sys.argv[1], sys.argv[2])\n"
  },
  {
    "path": "skills/pdf/scripts/extract_form_structure.py",
    "content": "\"\"\"\nExtract form structure from a non-fillable PDF.\n\nThis script analyzes the PDF to find:\n- Text labels with their exact coordinates\n- Horizontal lines (row boundaries)\n- Checkboxes (small rectangles)\n\nOutput: A JSON file with the form structure that can be used to generate\naccurate field coordinates for filling.\n\nUsage: python extract_form_structure.py <input.pdf> <output.json>\n\"\"\"\n\nimport json\nimport sys\nimport pdfplumber\n\n\ndef extract_form_structure(pdf_path):\n    structure = {\n        \"pages\": [],\n        \"labels\": [],\n        \"lines\": [],\n        \"checkboxes\": [],\n        \"row_boundaries\": []\n    }\n\n    with pdfplumber.open(pdf_path) as pdf:\n        for page_num, page in enumerate(pdf.pages, 1):\n            structure[\"pages\"].append({\n                \"page_number\": page_num,\n                \"width\": float(page.width),\n                \"height\": float(page.height)\n            })\n\n            words = page.extract_words()\n            for word in words:\n                structure[\"labels\"].append({\n                    \"page\": page_num,\n                    \"text\": word[\"text\"],\n                    \"x0\": round(float(word[\"x0\"]), 1),\n                    \"top\": round(float(word[\"top\"]), 1),\n                    \"x1\": round(float(word[\"x1\"]), 1),\n                    \"bottom\": round(float(word[\"bottom\"]), 1)\n                })\n\n            for line in page.lines:\n                if abs(float(line[\"x1\"]) - float(line[\"x0\"])) > page.width * 0.5:\n                    structure[\"lines\"].append({\n                        \"page\": page_num,\n                        \"y\": round(float(line[\"top\"]), 1),\n                        \"x0\": round(float(line[\"x0\"]), 1),\n                        \"x1\": round(float(line[\"x1\"]), 1)\n                    })\n\n            for rect in page.rects:\n                width = float(rect[\"x1\"]) - float(rect[\"x0\"])\n                height = float(rect[\"bottom\"]) - float(rect[\"top\"])\n                if 5 <= width <= 15 and 5 <= height <= 15 and abs(width - height) < 2:\n                    structure[\"checkboxes\"].append({\n                        \"page\": page_num,\n                        \"x0\": round(float(rect[\"x0\"]), 1),\n                        \"top\": round(float(rect[\"top\"]), 1),\n                        \"x1\": round(float(rect[\"x1\"]), 1),\n                        \"bottom\": round(float(rect[\"bottom\"]), 1),\n                        \"center_x\": round((float(rect[\"x0\"]) + float(rect[\"x1\"])) / 2, 1),\n                        \"center_y\": round((float(rect[\"top\"]) + float(rect[\"bottom\"])) / 2, 1)\n                    })\n\n    lines_by_page = {}\n    for line in structure[\"lines\"]:\n        page = line[\"page\"]\n        if page not in lines_by_page:\n            lines_by_page[page] = []\n        lines_by_page[page].append(line[\"y\"])\n\n    for page, y_coords in lines_by_page.items():\n        y_coords = sorted(set(y_coords))\n        for i in range(len(y_coords) - 1):\n            structure[\"row_boundaries\"].append({\n                \"page\": page,\n                \"row_top\": y_coords[i],\n                \"row_bottom\": y_coords[i + 1],\n                \"row_height\": round(y_coords[i + 1] - y_coords[i], 1)\n            })\n\n    return structure\n\n\ndef main():\n    if len(sys.argv) != 3:\n        print(\"Usage: extract_form_structure.py <input.pdf> <output.json>\")\n        sys.exit(1)\n\n    pdf_path = sys.argv[1]\n    output_path = sys.argv[2]\n\n    print(f\"Extracting structure from {pdf_path}...\")\n    structure = extract_form_structure(pdf_path)\n\n    with open(output_path, \"w\") as f:\n        json.dump(structure, f, indent=2)\n\n    print(f\"Found:\")\n    print(f\"  - {len(structure['pages'])} pages\")\n    print(f\"  - {len(structure['labels'])} text labels\")\n    print(f\"  - {len(structure['lines'])} horizontal lines\")\n    print(f\"  - {len(structure['checkboxes'])} checkboxes\")\n    print(f\"  - {len(structure['row_boundaries'])} row boundaries\")\n    print(f\"Saved to {output_path}\")\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "skills/pdf/scripts/fill_fillable_fields.py",
    "content": "import json\nimport sys\n\nfrom pypdf import PdfReader, PdfWriter\n\nfrom extract_form_field_info import get_field_info\n\n\n\n\ndef fill_pdf_fields(input_pdf_path: str, fields_json_path: str, output_pdf_path: str):\n    with open(fields_json_path) as f:\n        fields = json.load(f)\n    fields_by_page = {}\n    for field in fields:\n        if \"value\" in field:\n            field_id = field[\"field_id\"]\n            page = field[\"page\"]\n            if page not in fields_by_page:\n                fields_by_page[page] = {}\n            fields_by_page[page][field_id] = field[\"value\"]\n    \n    reader = PdfReader(input_pdf_path)\n\n    has_error = False\n    field_info = get_field_info(reader)\n    fields_by_ids = {f[\"field_id\"]: f for f in field_info}\n    for field in fields:\n        existing_field = fields_by_ids.get(field[\"field_id\"])\n        if not existing_field:\n            has_error = True\n            print(f\"ERROR: `{field['field_id']}` is not a valid field ID\")\n        elif field[\"page\"] != existing_field[\"page\"]:\n            has_error = True\n            print(f\"ERROR: Incorrect page number for `{field['field_id']}` (got {field['page']}, expected {existing_field['page']})\")\n        else:\n            if \"value\" in field:\n                err = validation_error_for_field_value(existing_field, field[\"value\"])\n                if err:\n                    print(err)\n                    has_error = True\n    if has_error:\n        sys.exit(1)\n\n    writer = PdfWriter(clone_from=reader)\n    for page, field_values in fields_by_page.items():\n        writer.update_page_form_field_values(writer.pages[page - 1], field_values, auto_regenerate=False)\n\n    writer.set_need_appearances_writer(True)\n    \n    with open(output_pdf_path, \"wb\") as f:\n        writer.write(f)\n\n\ndef validation_error_for_field_value(field_info, field_value):\n    field_type = field_info[\"type\"]\n    field_id = field_info[\"field_id\"]\n    if field_type == \"checkbox\":\n        checked_val = field_info[\"checked_value\"]\n        unchecked_val = field_info[\"unchecked_value\"]\n        if field_value != checked_val and field_value != unchecked_val:\n            return f'ERROR: Invalid value \"{field_value}\" for checkbox field \"{field_id}\". The checked value is \"{checked_val}\" and the unchecked value is \"{unchecked_val}\"'\n    elif field_type == \"radio_group\":\n        option_values = [opt[\"value\"] for opt in field_info[\"radio_options\"]]\n        if field_value not in option_values:\n            return f'ERROR: Invalid value \"{field_value}\" for radio group field \"{field_id}\". Valid values are: {option_values}' \n    elif field_type == \"choice\":\n        choice_values = [opt[\"value\"] for opt in field_info[\"choice_options\"]]\n        if field_value not in choice_values:\n            return f'ERROR: Invalid value \"{field_value}\" for choice field \"{field_id}\". Valid values are: {choice_values}'\n    return None\n\n\ndef monkeypatch_pydpf_method():\n    from pypdf.generic import DictionaryObject\n    from pypdf.constants import FieldDictionaryAttributes\n\n    original_get_inherited = DictionaryObject.get_inherited\n\n    def patched_get_inherited(self, key: str, default = None):\n        result = original_get_inherited(self, key, default)\n        if key == FieldDictionaryAttributes.Opt:\n            if isinstance(result, list) and all(isinstance(v, list) and len(v) == 2 for v in result):\n                result = [r[0] for r in result]\n        return result\n\n    DictionaryObject.get_inherited = patched_get_inherited\n\n\nif __name__ == \"__main__\":\n    if len(sys.argv) != 4:\n        print(\"Usage: fill_fillable_fields.py [input pdf] [field_values.json] [output pdf]\")\n        sys.exit(1)\n    monkeypatch_pydpf_method()\n    input_pdf = sys.argv[1]\n    fields_json = sys.argv[2]\n    output_pdf = sys.argv[3]\n    fill_pdf_fields(input_pdf, fields_json, output_pdf)\n"
  },
  {
    "path": "skills/pdf/scripts/fill_pdf_form_with_annotations.py",
    "content": "import json\nimport sys\n\nfrom pypdf import PdfReader, PdfWriter\nfrom pypdf.annotations import FreeText\n\n\n\n\ndef transform_from_image_coords(bbox, image_width, image_height, pdf_width, pdf_height):\n    x_scale = pdf_width / image_width\n    y_scale = pdf_height / image_height\n\n    left = bbox[0] * x_scale\n    right = bbox[2] * x_scale\n\n    top = pdf_height - (bbox[1] * y_scale)\n    bottom = pdf_height - (bbox[3] * y_scale)\n\n    return left, bottom, right, top\n\n\ndef transform_from_pdf_coords(bbox, pdf_height):\n    left = bbox[0]\n    right = bbox[2]\n\n    pypdf_top = pdf_height - bbox[1]      \n    pypdf_bottom = pdf_height - bbox[3]   \n\n    return left, pypdf_bottom, right, pypdf_top\n\n\ndef fill_pdf_form(input_pdf_path, fields_json_path, output_pdf_path):\n    \n    with open(fields_json_path, \"r\") as f:\n        fields_data = json.load(f)\n    \n    reader = PdfReader(input_pdf_path)\n    writer = PdfWriter()\n    \n    writer.append(reader)\n    \n    pdf_dimensions = {}\n    for i, page in enumerate(reader.pages):\n        mediabox = page.mediabox\n        pdf_dimensions[i + 1] = [mediabox.width, mediabox.height]\n    \n    annotations = []\n    for field in fields_data[\"form_fields\"]:\n        page_num = field[\"page_number\"]\n\n        page_info = next(p for p in fields_data[\"pages\"] if p[\"page_number\"] == page_num)\n        pdf_width, pdf_height = pdf_dimensions[page_num]\n\n        if \"pdf_width\" in page_info:\n            transformed_entry_box = transform_from_pdf_coords(\n                field[\"entry_bounding_box\"],\n                float(pdf_height)\n            )\n        else:\n            image_width = page_info[\"image_width\"]\n            image_height = page_info[\"image_height\"]\n            transformed_entry_box = transform_from_image_coords(\n                field[\"entry_bounding_box\"],\n                image_width, image_height,\n                float(pdf_width), float(pdf_height)\n            )\n        \n        if \"entry_text\" not in field or \"text\" not in field[\"entry_text\"]:\n            continue\n        entry_text = field[\"entry_text\"]\n        text = entry_text[\"text\"]\n        if not text:\n            continue\n        \n        font_name = entry_text.get(\"font\", \"Arial\")\n        font_size = str(entry_text.get(\"font_size\", 14)) + \"pt\"\n        font_color = entry_text.get(\"font_color\", \"000000\")\n\n        annotation = FreeText(\n            text=text,\n            rect=transformed_entry_box,\n            font=font_name,\n            font_size=font_size,\n            font_color=font_color,\n            border_color=None,\n            background_color=None,\n        )\n        annotations.append(annotation)\n        writer.add_annotation(page_number=page_num - 1, annotation=annotation)\n        \n    with open(output_pdf_path, \"wb\") as output:\n        writer.write(output)\n    \n    print(f\"Successfully filled PDF form and saved to {output_pdf_path}\")\n    print(f\"Added {len(annotations)} text annotations\")\n\n\nif __name__ == \"__main__\":\n    if len(sys.argv) != 4:\n        print(\"Usage: fill_pdf_form_with_annotations.py [input pdf] [fields.json] [output pdf]\")\n        sys.exit(1)\n    input_pdf = sys.argv[1]\n    fields_json = sys.argv[2]\n    output_pdf = sys.argv[3]\n    \n    fill_pdf_form(input_pdf, fields_json, output_pdf)\n"
  },
  {
    "path": "skills/pptx/LICENSE.txt",
    "content": "© 2025 Anthropic, PBC. All rights reserved.\n\nLICENSE: Use of these materials (including all code, prompts, assets, files,\nand other components of this Skill) is governed by your agreement with\nAnthropic regarding use of Anthropic's services. If no separate agreement\nexists, use is governed by Anthropic's Consumer Terms of Service or\nCommercial Terms of Service, as applicable:\nhttps://www.anthropic.com/legal/consumer-terms\nhttps://www.anthropic.com/legal/commercial-terms\nYour applicable agreement is referred to as the \"Agreement.\" \"Services\" are\nas defined in the Agreement.\n\nADDITIONAL RESTRICTIONS: Notwithstanding anything in the Agreement to the\ncontrary, users may not:\n\n- Extract these materials from the Services or retain copies of these\n  materials outside the Services\n- Reproduce or copy these materials, except for temporary copies created\n  automatically during authorized use of the Services\n- Create derivative works based on these materials\n- Distribute, sublicense, or transfer these materials to any third party\n- Make, offer to sell, sell, or import any inventions embodied in these\n  materials\n- Reverse engineer, decompile, or disassemble these materials\n\nThe receipt, viewing, or possession of these materials does not convey or\nimply any license or right beyond those expressly granted above.\n\nAnthropic retains all right, title, and interest in these materials,\nincluding all copyrights, patents, and other intellectual property rights.\n"
  },
  {
    "path": "skills/pptx/SKILL.md",
    "content": "---\nname: pptx\ndescription: \"Use this skill any time a .pptx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates, layouts, speaker notes, or comments. Trigger whenever the user mentions \\\"deck,\\\" \\\"slides,\\\" \\\"presentation,\\\" or references a .pptx filename, regardless of what they plan to do with the content afterward. If a .pptx file needs to be opened, created, or touched, use this skill.\"\nlicense: Proprietary. LICENSE.txt has complete terms\n---\n\n# PPTX Skill\n\n## Quick Reference\n\n| Task | Guide |\n|------|-------|\n| Read/analyze content | `python -m markitdown presentation.pptx` |\n| Edit or create from template | Read [editing.md](editing.md) |\n| Create from scratch | Read [pptxgenjs.md](pptxgenjs.md) |\n\n---\n\n## Reading Content\n\n```bash\n# Text extraction\npython -m markitdown presentation.pptx\n\n# Visual overview\npython scripts/thumbnail.py presentation.pptx\n\n# Raw XML\npython scripts/office/unpack.py presentation.pptx unpacked/\n```\n\n---\n\n## Editing Workflow\n\n**Read [editing.md](editing.md) for full details.**\n\n1. Analyze template with `thumbnail.py`\n2. Unpack → manipulate slides → edit content → clean → pack\n\n---\n\n## Creating from Scratch\n\n**Read [pptxgenjs.md](pptxgenjs.md) for full details.**\n\nUse when no template or reference presentation is available.\n\n---\n\n## Design Ideas\n\n**Don't create boring slides.** Plain bullets on a white background won't impress anyone. Consider ideas from this list for each slide.\n\n### Before Starting\n\n- **Pick a bold, content-informed color palette**: The palette should feel designed for THIS topic. If swapping your colors into a completely different presentation would still \"work,\" you haven't made specific enough choices.\n- **Dominance over equality**: One color should dominate (60-70% visual weight), with 1-2 supporting tones and one sharp accent. Never give all colors equal weight.\n- **Dark/light contrast**: Dark backgrounds for title + conclusion slides, light for content (\"sandwich\" structure). Or commit to dark throughout for a premium feel.\n- **Commit to a visual motif**: Pick ONE distinctive element and repeat it — rounded image frames, icons in colored circles, thick single-side borders. Carry it across every slide.\n\n### Color Palettes\n\nChoose colors that match your topic — don't default to generic blue. Use these palettes as inspiration:\n\n| Theme | Primary | Secondary | Accent |\n|-------|---------|-----------|--------|\n| **Midnight Executive** | `1E2761` (navy) | `CADCFC` (ice blue) | `FFFFFF` (white) |\n| **Forest & Moss** | `2C5F2D` (forest) | `97BC62` (moss) | `F5F5F5` (cream) |\n| **Coral Energy** | `F96167` (coral) | `F9E795` (gold) | `2F3C7E` (navy) |\n| **Warm Terracotta** | `B85042` (terracotta) | `E7E8D1` (sand) | `A7BEAE` (sage) |\n| **Ocean Gradient** | `065A82` (deep blue) | `1C7293` (teal) | `21295C` (midnight) |\n| **Charcoal Minimal** | `36454F` (charcoal) | `F2F2F2` (off-white) | `212121` (black) |\n| **Teal Trust** | `028090` (teal) | `00A896` (seafoam) | `02C39A` (mint) |\n| **Berry & Cream** | `6D2E46` (berry) | `A26769` (dusty rose) | `ECE2D0` (cream) |\n| **Sage Calm** | `84B59F` (sage) | `69A297` (eucalyptus) | `50808E` (slate) |\n| **Cherry Bold** | `990011` (cherry) | `FCF6F5` (off-white) | `2F3C7E` (navy) |\n\n### For Each Slide\n\n**Every slide needs a visual element** — image, chart, icon, or shape. Text-only slides are forgettable.\n\n**Layout options:**\n- Two-column (text left, illustration on right)\n- Icon + text rows (icon in colored circle, bold header, description below)\n- 2x2 or 2x3 grid (image on one side, grid of content blocks on other)\n- Half-bleed image (full left or right side) with content overlay\n\n**Data display:**\n- Large stat callouts (big numbers 60-72pt with small labels below)\n- Comparison columns (before/after, pros/cons, side-by-side options)\n- Timeline or process flow (numbered steps, arrows)\n\n**Visual polish:**\n- Icons in small colored circles next to section headers\n- Italic accent text for key stats or taglines\n\n### Typography\n\n**Choose an interesting font pairing** — don't default to Arial. Pick a header font with personality and pair it with a clean body font.\n\n| Header Font | Body Font |\n|-------------|-----------|\n| Georgia | Calibri |\n| Arial Black | Arial |\n| Calibri | Calibri Light |\n| Cambria | Calibri |\n| Trebuchet MS | Calibri |\n| Impact | Arial |\n| Palatino | Garamond |\n| Consolas | Calibri |\n\n| Element | Size |\n|---------|------|\n| Slide title | 36-44pt bold |\n| Section header | 20-24pt bold |\n| Body text | 14-16pt |\n| Captions | 10-12pt muted |\n\n### Spacing\n\n- 0.5\" minimum margins\n- 0.3-0.5\" between content blocks\n- Leave breathing room—don't fill every inch\n\n### Avoid (Common Mistakes)\n\n- **Don't repeat the same layout** — vary columns, cards, and callouts across slides\n- **Don't center body text** — left-align paragraphs and lists; center only titles\n- **Don't skimp on size contrast** — titles need 36pt+ to stand out from 14-16pt body\n- **Don't default to blue** — pick colors that reflect the specific topic\n- **Don't mix spacing randomly** — choose 0.3\" or 0.5\" gaps and use consistently\n- **Don't style one slide and leave the rest plain** — commit fully or keep it simple throughout\n- **Don't create text-only slides** — add images, icons, charts, or visual elements; avoid plain title + bullets\n- **Don't forget text box padding** — when aligning lines or shapes with text edges, set `margin: 0` on the text box or offset the shape to account for padding\n- **Don't use low-contrast elements** — icons AND text need strong contrast against the background; avoid light text on light backgrounds or dark text on dark backgrounds\n- **NEVER use accent lines under titles** — these are a hallmark of AI-generated slides; use whitespace or background color instead\n\n---\n\n## QA (Required)\n\n**Assume there are problems. Your job is to find them.**\n\nYour first render is almost never correct. Approach QA as a bug hunt, not a confirmation step. If you found zero issues on first inspection, you weren't looking hard enough.\n\n### Content QA\n\n```bash\npython -m markitdown output.pptx\n```\n\nCheck for missing content, typos, wrong order.\n\n**When using templates, check for leftover placeholder text:**\n\n```bash\npython -m markitdown output.pptx | grep -iE \"xxxx|lorem|ipsum|this.*(page|slide).*layout\"\n```\n\nIf grep returns results, fix them before declaring success.\n\n### Visual QA\n\n**⚠️ USE SUBAGENTS** — even for 2-3 slides. You've been staring at the code and will see what you expect, not what's there. Subagents have fresh eyes.\n\nConvert slides to images (see [Converting to Images](#converting-to-images)), then use this prompt:\n\n```\nVisually inspect these slides. Assume there are issues — find them.\n\nLook for:\n- Overlapping elements (text through shapes, lines through words, stacked elements)\n- Text overflow or cut off at edges/box boundaries\n- Decorative lines positioned for single-line text but title wrapped to two lines\n- Source citations or footers colliding with content above\n- Elements too close (< 0.3\" gaps) or cards/sections nearly touching\n- Uneven gaps (large empty area in one place, cramped in another)\n- Insufficient margin from slide edges (< 0.5\")\n- Columns or similar elements not aligned consistently\n- Low-contrast text (e.g., light gray text on cream-colored background)\n- Low-contrast icons (e.g., dark icons on dark backgrounds without a contrasting circle)\n- Text boxes too narrow causing excessive wrapping\n- Leftover placeholder content\n\nFor each slide, list issues or areas of concern, even if minor.\n\nRead and analyze these images:\n1. /path/to/slide-01.jpg (Expected: [brief description])\n2. /path/to/slide-02.jpg (Expected: [brief description])\n\nReport ALL issues found, including minor ones.\n```\n\n### Verification Loop\n\n1. Generate slides → Convert to images → Inspect\n2. **List issues found** (if none found, look again more critically)\n3. Fix issues\n4. **Re-verify affected slides** — one fix often creates another problem\n5. Repeat until a full pass reveals no new issues\n\n**Do not declare success until you've completed at least one fix-and-verify cycle.**\n\n---\n\n## Converting to Images\n\nConvert presentations to individual slide images for visual inspection:\n\n```bash\npython scripts/office/soffice.py --headless --convert-to pdf output.pptx\npdftoppm -jpeg -r 150 output.pdf slide\n```\n\nThis creates `slide-01.jpg`, `slide-02.jpg`, etc.\n\nTo re-render specific slides after fixes:\n\n```bash\npdftoppm -jpeg -r 150 -f N -l N output.pdf slide-fixed\n```\n\n---\n\n## Dependencies\n\n- `pip install \"markitdown[pptx]\"` - text extraction\n- `pip install Pillow` - thumbnail grids\n- `npm install -g pptxgenjs` - creating from scratch\n- LibreOffice (`soffice`) - PDF conversion (auto-configured for sandboxed environments via `scripts/office/soffice.py`)\n- Poppler (`pdftoppm`) - PDF to images\n"
  },
  {
    "path": "skills/pptx/editing.md",
    "content": "# Editing Presentations\n\n## Template-Based Workflow\n\nWhen using an existing presentation as a template:\n\n1. **Analyze existing slides**:\n   ```bash\n   python scripts/thumbnail.py template.pptx\n   python -m markitdown template.pptx\n   ```\n   Review `thumbnails.jpg` to see layouts, and markitdown output to see placeholder text.\n\n2. **Plan slide mapping**: For each content section, choose a template slide.\n\n   ⚠️ **USE VARIED LAYOUTS** — monotonous presentations are a common failure mode. Don't default to basic title + bullet slides. Actively seek out:\n   - Multi-column layouts (2-column, 3-column)\n   - Image + text combinations\n   - Full-bleed images with text overlay\n   - Quote or callout slides\n   - Section dividers\n   - Stat/number callouts\n   - Icon grids or icon + text rows\n\n   **Avoid:** Repeating the same text-heavy layout for every slide.\n\n   Match content type to layout style (e.g., key points → bullet slide, team info → multi-column, testimonials → quote slide).\n\n3. **Unpack**: `python scripts/office/unpack.py template.pptx unpacked/`\n\n4. **Build presentation** (do this yourself, not with subagents):\n   - Delete unwanted slides (remove from `<p:sldIdLst>`)\n   - Duplicate slides you want to reuse (`add_slide.py`)\n   - Reorder slides in `<p:sldIdLst>`\n   - **Complete all structural changes before step 5**\n\n5. **Edit content**: Update text in each `slide{N}.xml`.\n   **Use subagents here if available** — slides are separate XML files, so subagents can edit in parallel.\n\n6. **Clean**: `python scripts/clean.py unpacked/`\n\n7. **Pack**: `python scripts/office/pack.py unpacked/ output.pptx --original template.pptx`\n\n---\n\n## Scripts\n\n| Script | Purpose |\n|--------|---------|\n| `unpack.py` | Extract and pretty-print PPTX |\n| `add_slide.py` | Duplicate slide or create from layout |\n| `clean.py` | Remove orphaned files |\n| `pack.py` | Repack with validation |\n| `thumbnail.py` | Create visual grid of slides |\n\n### unpack.py\n\n```bash\npython scripts/office/unpack.py input.pptx unpacked/\n```\n\nExtracts PPTX, pretty-prints XML, escapes smart quotes.\n\n### add_slide.py\n\n```bash\npython scripts/add_slide.py unpacked/ slide2.xml      # Duplicate slide\npython scripts/add_slide.py unpacked/ slideLayout2.xml # From layout\n```\n\nPrints `<p:sldId>` to add to `<p:sldIdLst>` at desired position.\n\n### clean.py\n\n```bash\npython scripts/clean.py unpacked/\n```\n\nRemoves slides not in `<p:sldIdLst>`, unreferenced media, orphaned rels.\n\n### pack.py\n\n```bash\npython scripts/office/pack.py unpacked/ output.pptx --original input.pptx\n```\n\nValidates, repairs, condenses XML, re-encodes smart quotes.\n\n### thumbnail.py\n\n```bash\npython scripts/thumbnail.py input.pptx [output_prefix] [--cols N]\n```\n\nCreates `thumbnails.jpg` with slide filenames as labels. Default 3 columns, max 12 per grid.\n\n**Use for template analysis only** (choosing layouts). For visual QA, use `soffice` + `pdftoppm` to create full-resolution individual slide images—see SKILL.md.\n\n---\n\n## Slide Operations\n\nSlide order is in `ppt/presentation.xml` → `<p:sldIdLst>`.\n\n**Reorder**: Rearrange `<p:sldId>` elements.\n\n**Delete**: Remove `<p:sldId>`, then run `clean.py`.\n\n**Add**: Use `add_slide.py`. Never manually copy slide files—the script handles notes references, Content_Types.xml, and relationship IDs that manual copying misses.\n\n---\n\n## Editing Content\n\n**Subagents:** If available, use them here (after completing step 4). Each slide is a separate XML file, so subagents can edit in parallel. In your prompt to subagents, include:\n- The slide file path(s) to edit\n- **\"Use the Edit tool for all changes\"**\n- The formatting rules and common pitfalls below\n\nFor each slide:\n1. Read the slide's XML\n2. Identify ALL placeholder content—text, images, charts, icons, captions\n3. Replace each placeholder with final content\n\n**Use the Edit tool, not sed or Python scripts.** The Edit tool forces specificity about what to replace and where, yielding better reliability.\n\n### Formatting Rules\n\n- **Bold all headers, subheadings, and inline labels**: Use `b=\"1\"` on `<a:rPr>`. This includes:\n  - Slide titles\n  - Section headers within a slide\n  - Inline labels like (e.g.: \"Status:\", \"Description:\") at the start of a line\n- **Never use unicode bullets (•)**: Use proper list formatting with `<a:buChar>` or `<a:buAutoNum>`\n- **Bullet consistency**: Let bullets inherit from the layout. Only specify `<a:buChar>` or `<a:buNone>`.\n\n---\n\n## Common Pitfalls\n\n### Template Adaptation\n\nWhen source content has fewer items than the template:\n- **Remove excess elements entirely** (images, shapes, text boxes), don't just clear text\n- Check for orphaned visuals after clearing text content\n- Run visual QA to catch mismatched counts\n\nWhen replacing text with different length content:\n- **Shorter replacements**: Usually safe\n- **Longer replacements**: May overflow or wrap unexpectedly\n- Test with visual QA after text changes\n- Consider truncating or splitting content to fit the template's design constraints\n\n**Template slots ≠ Source items**: If template has 4 team members but source has 3 users, delete the 4th member's entire group (image + text boxes), not just the text.\n\n### Multi-Item Content\n\nIf source has multiple items (numbered lists, multiple sections), create separate `<a:p>` elements for each — **never concatenate into one string**.\n\n**❌ WRONG** — all items in one paragraph:\n```xml\n<a:p>\n  <a:r><a:rPr .../><a:t>Step 1: Do the first thing. Step 2: Do the second thing.</a:t></a:r>\n</a:p>\n```\n\n**✅ CORRECT** — separate paragraphs with bold headers:\n```xml\n<a:p>\n  <a:pPr algn=\"l\"><a:lnSpc><a:spcPts val=\"3919\"/></a:lnSpc></a:pPr>\n  <a:r><a:rPr lang=\"en-US\" sz=\"2799\" b=\"1\" .../><a:t>Step 1</a:t></a:r>\n</a:p>\n<a:p>\n  <a:pPr algn=\"l\"><a:lnSpc><a:spcPts val=\"3919\"/></a:lnSpc></a:pPr>\n  <a:r><a:rPr lang=\"en-US\" sz=\"2799\" .../><a:t>Do the first thing.</a:t></a:r>\n</a:p>\n<a:p>\n  <a:pPr algn=\"l\"><a:lnSpc><a:spcPts val=\"3919\"/></a:lnSpc></a:pPr>\n  <a:r><a:rPr lang=\"en-US\" sz=\"2799\" b=\"1\" .../><a:t>Step 2</a:t></a:r>\n</a:p>\n<!-- continue pattern -->\n```\n\nCopy `<a:pPr>` from the original paragraph to preserve line spacing. Use `b=\"1\"` on headers.\n\n### Smart Quotes\n\nHandled automatically by unpack/pack. But the Edit tool converts smart quotes to ASCII.\n\n**When adding new text with quotes, use XML entities:**\n\n```xml\n<a:t>the &#x201C;Agreement&#x201D;</a:t>\n```\n\n| Character | Name | Unicode | XML Entity |\n|-----------|------|---------|------------|\n| `“` | Left double quote | U+201C | `&#x201C;` |\n| `”` | Right double quote | U+201D | `&#x201D;` |\n| `‘` | Left single quote | U+2018 | `&#x2018;` |\n| `’` | Right single quote | U+2019 | `&#x2019;` |\n\n### Other\n\n- **Whitespace**: Use `xml:space=\"preserve\"` on `<a:t>` with leading/trailing spaces\n- **XML parsing**: Use `defusedxml.minidom`, not `xml.etree.ElementTree` (corrupts namespaces)\n"
  },
  {
    "path": "skills/pptx/pptxgenjs.md",
    "content": "# PptxGenJS Tutorial\n\n## Setup & Basic Structure\n\n```javascript\nconst pptxgen = require(\"pptxgenjs\");\n\nlet pres = new pptxgen();\npres.layout = 'LAYOUT_16x9';  // or 'LAYOUT_16x10', 'LAYOUT_4x3', 'LAYOUT_WIDE'\npres.author = 'Your Name';\npres.title = 'Presentation Title';\n\nlet slide = pres.addSlide();\nslide.addText(\"Hello World!\", { x: 0.5, y: 0.5, fontSize: 36, color: \"363636\" });\n\npres.writeFile({ fileName: \"Presentation.pptx\" });\n```\n\n## Layout Dimensions\n\nSlide dimensions (coordinates in inches):\n- `LAYOUT_16x9`: 10\" × 5.625\" (default)\n- `LAYOUT_16x10`: 10\" × 6.25\"\n- `LAYOUT_4x3`: 10\" × 7.5\"\n- `LAYOUT_WIDE`: 13.3\" × 7.5\"\n\n---\n\n## Text & Formatting\n\n```javascript\n// Basic text\nslide.addText(\"Simple Text\", {\n  x: 1, y: 1, w: 8, h: 2, fontSize: 24, fontFace: \"Arial\",\n  color: \"363636\", bold: true, align: \"center\", valign: \"middle\"\n});\n\n// Character spacing (use charSpacing, not letterSpacing which is silently ignored)\nslide.addText(\"SPACED TEXT\", { x: 1, y: 1, w: 8, h: 1, charSpacing: 6 });\n\n// Rich text arrays\nslide.addText([\n  { text: \"Bold \", options: { bold: true } },\n  { text: \"Italic \", options: { italic: true } }\n], { x: 1, y: 3, w: 8, h: 1 });\n\n// Multi-line text (requires breakLine: true)\nslide.addText([\n  { text: \"Line 1\", options: { breakLine: true } },\n  { text: \"Line 2\", options: { breakLine: true } },\n  { text: \"Line 3\" }  // Last item doesn't need breakLine\n], { x: 0.5, y: 0.5, w: 8, h: 2 });\n\n// Text box margin (internal padding)\nslide.addText(\"Title\", {\n  x: 0.5, y: 0.3, w: 9, h: 0.6,\n  margin: 0  // Use 0 when aligning text with other elements like shapes or icons\n});\n```\n\n**Tip:** Text boxes have internal margin by default. Set `margin: 0` when you need text to align precisely with shapes, lines, or icons at the same x-position.\n\n---\n\n## Lists & Bullets\n\n```javascript\n// ✅ CORRECT: Multiple bullets\nslide.addText([\n  { text: \"First item\", options: { bullet: true, breakLine: true } },\n  { text: \"Second item\", options: { bullet: true, breakLine: true } },\n  { text: \"Third item\", options: { bullet: true } }\n], { x: 0.5, y: 0.5, w: 8, h: 3 });\n\n// ❌ WRONG: Never use unicode bullets\nslide.addText(\"• First item\", { ... });  // Creates double bullets\n\n// Sub-items and numbered lists\n{ text: \"Sub-item\", options: { bullet: true, indentLevel: 1 } }\n{ text: \"First\", options: { bullet: { type: \"number\" }, breakLine: true } }\n```\n\n---\n\n## Shapes\n\n```javascript\nslide.addShape(pres.shapes.RECTANGLE, {\n  x: 0.5, y: 0.8, w: 1.5, h: 3.0,\n  fill: { color: \"FF0000\" }, line: { color: \"000000\", width: 2 }\n});\n\nslide.addShape(pres.shapes.OVAL, { x: 4, y: 1, w: 2, h: 2, fill: { color: \"0000FF\" } });\n\nslide.addShape(pres.shapes.LINE, {\n  x: 1, y: 3, w: 5, h: 0, line: { color: \"FF0000\", width: 3, dashType: \"dash\" }\n});\n\n// With transparency\nslide.addShape(pres.shapes.RECTANGLE, {\n  x: 1, y: 1, w: 3, h: 2,\n  fill: { color: \"0088CC\", transparency: 50 }\n});\n\n// Rounded rectangle (rectRadius only works with ROUNDED_RECTANGLE, not RECTANGLE)\n// ⚠️ Don't pair with rectangular accent overlays — they won't cover rounded corners. Use RECTANGLE instead.\nslide.addShape(pres.shapes.ROUNDED_RECTANGLE, {\n  x: 1, y: 1, w: 3, h: 2,\n  fill: { color: \"FFFFFF\" }, rectRadius: 0.1\n});\n\n// With shadow\nslide.addShape(pres.shapes.RECTANGLE, {\n  x: 1, y: 1, w: 3, h: 2,\n  fill: { color: \"FFFFFF\" },\n  shadow: { type: \"outer\", color: \"000000\", blur: 6, offset: 2, angle: 135, opacity: 0.15 }\n});\n```\n\nShadow options:\n\n| Property | Type | Range | Notes |\n|----------|------|-------|-------|\n| `type` | string | `\"outer\"`, `\"inner\"` | |\n| `color` | string | 6-char hex (e.g. `\"000000\"`) | No `#` prefix, no 8-char hex — see Common Pitfalls |\n| `blur` | number | 0-100 pt | |\n| `offset` | number | 0-200 pt | **Must be non-negative** — negative values corrupt the file |\n| `angle` | number | 0-359 degrees | Direction the shadow falls (135 = bottom-right, 270 = upward) |\n| `opacity` | number | 0.0-1.0 | Use this for transparency, never encode in color string |\n\nTo cast a shadow upward (e.g. on a footer bar), use `angle: 270` with a positive offset — do **not** use a negative offset.\n\n**Note**: Gradient fills are not natively supported. Use a gradient image as a background instead.\n\n---\n\n## Images\n\n### Image Sources\n\n```javascript\n// From file path\nslide.addImage({ path: \"images/chart.png\", x: 1, y: 1, w: 5, h: 3 });\n\n// From URL\nslide.addImage({ path: \"https://example.com/image.jpg\", x: 1, y: 1, w: 5, h: 3 });\n\n// From base64 (faster, no file I/O)\nslide.addImage({ data: \"image/png;base64,iVBORw0KGgo...\", x: 1, y: 1, w: 5, h: 3 });\n```\n\n### Image Options\n\n```javascript\nslide.addImage({\n  path: \"image.png\",\n  x: 1, y: 1, w: 5, h: 3,\n  rotate: 45,              // 0-359 degrees\n  rounding: true,          // Circular crop\n  transparency: 50,        // 0-100\n  flipH: true,             // Horizontal flip\n  flipV: false,            // Vertical flip\n  altText: \"Description\",  // Accessibility\n  hyperlink: { url: \"https://example.com\" }\n});\n```\n\n### Image Sizing Modes\n\n```javascript\n// Contain - fit inside, preserve ratio\n{ sizing: { type: 'contain', w: 4, h: 3 } }\n\n// Cover - fill area, preserve ratio (may crop)\n{ sizing: { type: 'cover', w: 4, h: 3 } }\n\n// Crop - cut specific portion\n{ sizing: { type: 'crop', x: 0.5, y: 0.5, w: 2, h: 2 } }\n```\n\n### Calculate Dimensions (preserve aspect ratio)\n\n```javascript\nconst origWidth = 1978, origHeight = 923, maxHeight = 3.0;\nconst calcWidth = maxHeight * (origWidth / origHeight);\nconst centerX = (10 - calcWidth) / 2;\n\nslide.addImage({ path: \"image.png\", x: centerX, y: 1.2, w: calcWidth, h: maxHeight });\n```\n\n### Supported Formats\n\n- **Standard**: PNG, JPG, GIF (animated GIFs work in Microsoft 365)\n- **SVG**: Works in modern PowerPoint/Microsoft 365\n\n---\n\n## Icons\n\nUse react-icons to generate SVG icons, then rasterize to PNG for universal compatibility.\n\n### Setup\n\n```javascript\nconst React = require(\"react\");\nconst ReactDOMServer = require(\"react-dom/server\");\nconst sharp = require(\"sharp\");\nconst { FaCheckCircle, FaChartLine } = require(\"react-icons/fa\");\n\nfunction renderIconSvg(IconComponent, color = \"#000000\", size = 256) {\n  return ReactDOMServer.renderToStaticMarkup(\n    React.createElement(IconComponent, { color, size: String(size) })\n  );\n}\n\nasync function iconToBase64Png(IconComponent, color, size = 256) {\n  const svg = renderIconSvg(IconComponent, color, size);\n  const pngBuffer = await sharp(Buffer.from(svg)).png().toBuffer();\n  return \"image/png;base64,\" + pngBuffer.toString(\"base64\");\n}\n```\n\n### Add Icon to Slide\n\n```javascript\nconst iconData = await iconToBase64Png(FaCheckCircle, \"#4472C4\", 256);\n\nslide.addImage({\n  data: iconData,\n  x: 1, y: 1, w: 0.5, h: 0.5  // Size in inches\n});\n```\n\n**Note**: Use size 256 or higher for crisp icons. The size parameter controls the rasterization resolution, not the display size on the slide (which is set by `w` and `h` in inches).\n\n### Icon Libraries\n\nInstall: `npm install -g react-icons react react-dom sharp`\n\nPopular icon sets in react-icons:\n- `react-icons/fa` - Font Awesome\n- `react-icons/md` - Material Design\n- `react-icons/hi` - Heroicons\n- `react-icons/bi` - Bootstrap Icons\n\n---\n\n## Slide Backgrounds\n\n```javascript\n// Solid color\nslide.background = { color: \"F1F1F1\" };\n\n// Color with transparency\nslide.background = { color: \"FF3399\", transparency: 50 };\n\n// Image from URL\nslide.background = { path: \"https://example.com/bg.jpg\" };\n\n// Image from base64\nslide.background = { data: \"image/png;base64,iVBORw0KGgo...\" };\n```\n\n---\n\n## Tables\n\n```javascript\nslide.addTable([\n  [\"Header 1\", \"Header 2\"],\n  [\"Cell 1\", \"Cell 2\"]\n], {\n  x: 1, y: 1, w: 8, h: 2,\n  border: { pt: 1, color: \"999999\" }, fill: { color: \"F1F1F1\" }\n});\n\n// Advanced with merged cells\nlet tableData = [\n  [{ text: \"Header\", options: { fill: { color: \"6699CC\" }, color: \"FFFFFF\", bold: true } }, \"Cell\"],\n  [{ text: \"Merged\", options: { colspan: 2 } }]\n];\nslide.addTable(tableData, { x: 1, y: 3.5, w: 8, colW: [4, 4] });\n```\n\n---\n\n## Charts\n\n```javascript\n// Bar chart\nslide.addChart(pres.charts.BAR, [{\n  name: \"Sales\", labels: [\"Q1\", \"Q2\", \"Q3\", \"Q4\"], values: [4500, 5500, 6200, 7100]\n}], {\n  x: 0.5, y: 0.6, w: 6, h: 3, barDir: 'col',\n  showTitle: true, title: 'Quarterly Sales'\n});\n\n// Line chart\nslide.addChart(pres.charts.LINE, [{\n  name: \"Temp\", labels: [\"Jan\", \"Feb\", \"Mar\"], values: [32, 35, 42]\n}], { x: 0.5, y: 4, w: 6, h: 3, lineSize: 3, lineSmooth: true });\n\n// Pie chart\nslide.addChart(pres.charts.PIE, [{\n  name: \"Share\", labels: [\"A\", \"B\", \"Other\"], values: [35, 45, 20]\n}], { x: 7, y: 1, w: 5, h: 4, showPercent: true });\n```\n\n### Better-Looking Charts\n\nDefault charts look dated. Apply these options for a modern, clean appearance:\n\n```javascript\nslide.addChart(pres.charts.BAR, chartData, {\n  x: 0.5, y: 1, w: 9, h: 4, barDir: \"col\",\n\n  // Custom colors (match your presentation palette)\n  chartColors: [\"0D9488\", \"14B8A6\", \"5EEAD4\"],\n\n  // Clean background\n  chartArea: { fill: { color: \"FFFFFF\" }, roundedCorners: true },\n\n  // Muted axis labels\n  catAxisLabelColor: \"64748B\",\n  valAxisLabelColor: \"64748B\",\n\n  // Subtle grid (value axis only)\n  valGridLine: { color: \"E2E8F0\", size: 0.5 },\n  catGridLine: { style: \"none\" },\n\n  // Data labels on bars\n  showValue: true,\n  dataLabelPosition: \"outEnd\",\n  dataLabelColor: \"1E293B\",\n\n  // Hide legend for single series\n  showLegend: false,\n});\n```\n\n**Key styling options:**\n- `chartColors: [...]` - hex colors for series/segments\n- `chartArea: { fill, border, roundedCorners }` - chart background\n- `catGridLine/valGridLine: { color, style, size }` - grid lines (`style: \"none\"` to hide)\n- `lineSmooth: true` - curved lines (line charts)\n- `legendPos: \"r\"` - legend position: \"b\", \"t\", \"l\", \"r\", \"tr\"\n\n---\n\n## Slide Masters\n\n```javascript\npres.defineSlideMaster({\n  title: 'TITLE_SLIDE', background: { color: '283A5E' },\n  objects: [{\n    placeholder: { options: { name: 'title', type: 'title', x: 1, y: 2, w: 8, h: 2 } }\n  }]\n});\n\nlet titleSlide = pres.addSlide({ masterName: \"TITLE_SLIDE\" });\ntitleSlide.addText(\"My Title\", { placeholder: \"title\" });\n```\n\n---\n\n## Common Pitfalls\n\n⚠️ These issues cause file corruption, visual bugs, or broken output. Avoid them.\n\n1. **NEVER use \"#\" with hex colors** - causes file corruption\n   ```javascript\n   color: \"FF0000\"      // ✅ CORRECT\n   color: \"#FF0000\"     // ❌ WRONG\n   ```\n\n2. **NEVER encode opacity in hex color strings** - 8-char colors (e.g., `\"00000020\"`) corrupt the file. Use the `opacity` property instead.\n   ```javascript\n   shadow: { type: \"outer\", blur: 6, offset: 2, color: \"00000020\" }          // ❌ CORRUPTS FILE\n   shadow: { type: \"outer\", blur: 6, offset: 2, color: \"000000\", opacity: 0.12 }  // ✅ CORRECT\n   ```\n\n3. **Use `bullet: true`** - NEVER unicode symbols like \"•\" (creates double bullets)\n\n4. **Use `breakLine: true`** between array items or text runs together\n\n5. **Avoid `lineSpacing` with bullets** - causes excessive gaps; use `paraSpaceAfter` instead\n\n6. **Each presentation needs fresh instance** - don't reuse `pptxgen()` objects\n\n7. **NEVER reuse option objects across calls** - PptxGenJS mutates objects in-place (e.g. converting shadow values to EMU). Sharing one object between multiple calls corrupts the second shape.\n   ```javascript\n   const shadow = { type: \"outer\", blur: 6, offset: 2, color: \"000000\", opacity: 0.15 };\n   slide.addShape(pres.shapes.RECTANGLE, { shadow, ... });  // ❌ second call gets already-converted values\n   slide.addShape(pres.shapes.RECTANGLE, { shadow, ... });\n\n   const makeShadow = () => ({ type: \"outer\", blur: 6, offset: 2, color: \"000000\", opacity: 0.15 });\n   slide.addShape(pres.shapes.RECTANGLE, { shadow: makeShadow(), ... });  // ✅ fresh object each time\n   slide.addShape(pres.shapes.RECTANGLE, { shadow: makeShadow(), ... });\n   ```\n\n8. **Don't use `ROUNDED_RECTANGLE` with accent borders** - rectangular overlay bars won't cover rounded corners. Use `RECTANGLE` instead.\n   ```javascript\n   // ❌ WRONG: Accent bar doesn't cover rounded corners\n   slide.addShape(pres.shapes.ROUNDED_RECTANGLE, { x: 1, y: 1, w: 3, h: 1.5, fill: { color: \"FFFFFF\" } });\n   slide.addShape(pres.shapes.RECTANGLE, { x: 1, y: 1, w: 0.08, h: 1.5, fill: { color: \"0891B2\" } });\n\n   // ✅ CORRECT: Use RECTANGLE for clean alignment\n   slide.addShape(pres.shapes.RECTANGLE, { x: 1, y: 1, w: 3, h: 1.5, fill: { color: \"FFFFFF\" } });\n   slide.addShape(pres.shapes.RECTANGLE, { x: 1, y: 1, w: 0.08, h: 1.5, fill: { color: \"0891B2\" } });\n   ```\n\n---\n\n## Quick Reference\n\n- **Shapes**: RECTANGLE, OVAL, LINE, ROUNDED_RECTANGLE\n- **Charts**: BAR, LINE, PIE, DOUGHNUT, SCATTER, BUBBLE, RADAR\n- **Layouts**: LAYOUT_16x9 (10\"×5.625\"), LAYOUT_16x10, LAYOUT_4x3, LAYOUT_WIDE\n- **Alignment**: \"left\", \"center\", \"right\"\n- **Chart data labels**: \"outEnd\", \"inEnd\", \"center\"\n"
  },
  {
    "path": "skills/pptx/scripts/__init__.py",
    "content": ""
  },
  {
    "path": "skills/pptx/scripts/add_slide.py",
    "content": "\"\"\"Add a new slide to an unpacked PPTX directory.\n\nUsage: python add_slide.py <unpacked_dir> <source>\n\nThe source can be:\n  - A slide file (e.g., slide2.xml) - duplicates the slide\n  - A layout file (e.g., slideLayout2.xml) - creates from layout\n\nExamples:\n    python add_slide.py unpacked/ slide2.xml\n    # Duplicates slide2, creates slide5.xml\n\n    python add_slide.py unpacked/ slideLayout2.xml\n    # Creates slide5.xml from slideLayout2.xml\n\nTo see available layouts: ls unpacked/ppt/slideLayouts/\n\nPrints the <p:sldId> element to add to presentation.xml.\n\"\"\"\n\nimport re\nimport shutil\nimport sys\nfrom pathlib import Path\n\n\ndef get_next_slide_number(slides_dir: Path) -> int:\n    existing = [int(m.group(1)) for f in slides_dir.glob(\"slide*.xml\")\n                if (m := re.match(r\"slide(\\d+)\\.xml\", f.name))]\n    return max(existing) + 1 if existing else 1\n\n\ndef create_slide_from_layout(unpacked_dir: Path, layout_file: str) -> None:\n    slides_dir = unpacked_dir / \"ppt\" / \"slides\"\n    rels_dir = slides_dir / \"_rels\"\n    layouts_dir = unpacked_dir / \"ppt\" / \"slideLayouts\"\n\n    layout_path = layouts_dir / layout_file\n    if not layout_path.exists():\n        print(f\"Error: {layout_path} not found\", file=sys.stderr)\n        sys.exit(1)\n\n    next_num = get_next_slide_number(slides_dir)\n    dest = f\"slide{next_num}.xml\"\n    dest_slide = slides_dir / dest\n    dest_rels = rels_dir / f\"{dest}.rels\"\n\n    slide_xml = '''<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<p:sld xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:p=\"http://schemas.openxmlformats.org/presentationml/2006/main\">\n  <p:cSld>\n    <p:spTree>\n      <p:nvGrpSpPr>\n        <p:cNvPr id=\"1\" name=\"\"/>\n        <p:cNvGrpSpPr/>\n        <p:nvPr/>\n      </p:nvGrpSpPr>\n      <p:grpSpPr>\n        <a:xfrm>\n          <a:off x=\"0\" y=\"0\"/>\n          <a:ext cx=\"0\" cy=\"0\"/>\n          <a:chOff x=\"0\" y=\"0\"/>\n          <a:chExt cx=\"0\" cy=\"0\"/>\n        </a:xfrm>\n      </p:grpSpPr>\n    </p:spTree>\n  </p:cSld>\n  <p:clrMapOvr>\n    <a:masterClrMapping/>\n  </p:clrMapOvr>\n</p:sld>'''\n    dest_slide.write_text(slide_xml, encoding=\"utf-8\")\n\n    rels_dir.mkdir(exist_ok=True)\n    rels_xml = f'''<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<Relationships xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\">\n  <Relationship Id=\"rId1\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout\" Target=\"../slideLayouts/{layout_file}\"/>\n</Relationships>'''\n    dest_rels.write_text(rels_xml, encoding=\"utf-8\")\n\n    _add_to_content_types(unpacked_dir, dest)\n\n    rid = _add_to_presentation_rels(unpacked_dir, dest)\n\n    next_slide_id = _get_next_slide_id(unpacked_dir)\n\n    print(f\"Created {dest} from {layout_file}\")\n    print(f'Add to presentation.xml <p:sldIdLst>: <p:sldId id=\"{next_slide_id}\" r:id=\"{rid}\"/>')\n\n\ndef duplicate_slide(unpacked_dir: Path, source: str) -> None:\n    slides_dir = unpacked_dir / \"ppt\" / \"slides\"\n    rels_dir = slides_dir / \"_rels\"\n\n    source_slide = slides_dir / source\n\n    if not source_slide.exists():\n        print(f\"Error: {source_slide} not found\", file=sys.stderr)\n        sys.exit(1)\n\n    next_num = get_next_slide_number(slides_dir)\n    dest = f\"slide{next_num}.xml\"\n    dest_slide = slides_dir / dest\n\n    source_rels = rels_dir / f\"{source}.rels\"\n    dest_rels = rels_dir / f\"{dest}.rels\"\n\n    shutil.copy2(source_slide, dest_slide)\n\n    if source_rels.exists():\n        shutil.copy2(source_rels, dest_rels)\n\n        rels_content = dest_rels.read_text(encoding=\"utf-8\")\n        rels_content = re.sub(\n            r'\\s*<Relationship[^>]*Type=\"[^\"]*notesSlide\"[^>]*/>\\s*',\n            \"\\n\",\n            rels_content,\n        )\n        dest_rels.write_text(rels_content, encoding=\"utf-8\")\n\n    _add_to_content_types(unpacked_dir, dest)\n\n    rid = _add_to_presentation_rels(unpacked_dir, dest)\n\n    next_slide_id = _get_next_slide_id(unpacked_dir)\n\n    print(f\"Created {dest} from {source}\")\n    print(f'Add to presentation.xml <p:sldIdLst>: <p:sldId id=\"{next_slide_id}\" r:id=\"{rid}\"/>')\n\n\ndef _add_to_content_types(unpacked_dir: Path, dest: str) -> None:\n    content_types_path = unpacked_dir / \"[Content_Types].xml\"\n    content_types = content_types_path.read_text(encoding=\"utf-8\")\n\n    new_override = f'<Override PartName=\"/ppt/slides/{dest}\" ContentType=\"application/vnd.openxmlformats-officedocument.presentationml.slide+xml\"/>'\n\n    if f\"/ppt/slides/{dest}\" not in content_types:\n        content_types = content_types.replace(\"</Types>\", f\"  {new_override}\\n</Types>\")\n        content_types_path.write_text(content_types, encoding=\"utf-8\")\n\n\ndef _add_to_presentation_rels(unpacked_dir: Path, dest: str) -> str:\n    pres_rels_path = unpacked_dir / \"ppt\" / \"_rels\" / \"presentation.xml.rels\"\n    pres_rels = pres_rels_path.read_text(encoding=\"utf-8\")\n\n    rids = [int(m) for m in re.findall(r'Id=\"rId(\\d+)\"', pres_rels)]\n    next_rid = max(rids) + 1 if rids else 1\n    rid = f\"rId{next_rid}\"\n\n    new_rel = f'<Relationship Id=\"{rid}\" Type=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slide\" Target=\"slides/{dest}\"/>'\n\n    if f\"slides/{dest}\" not in pres_rels:\n        pres_rels = pres_rels.replace(\"</Relationships>\", f\"  {new_rel}\\n</Relationships>\")\n        pres_rels_path.write_text(pres_rels, encoding=\"utf-8\")\n\n    return rid\n\n\ndef _get_next_slide_id(unpacked_dir: Path) -> int:\n    pres_path = unpacked_dir / \"ppt\" / \"presentation.xml\"\n    pres_content = pres_path.read_text(encoding=\"utf-8\")\n    slide_ids = [int(m) for m in re.findall(r'<p:sldId[^>]*id=\"(\\d+)\"', pres_content)]\n    return max(slide_ids) + 1 if slide_ids else 256\n\n\ndef parse_source(source: str) -> tuple[str, str | None]:\n    if source.startswith(\"slideLayout\") and source.endswith(\".xml\"):\n        return (\"layout\", source)\n\n    return (\"slide\", None)\n\n\nif __name__ == \"__main__\":\n    if len(sys.argv) != 3:\n        print(\"Usage: python add_slide.py <unpacked_dir> <source>\", file=sys.stderr)\n        print(\"\", file=sys.stderr)\n        print(\"Source can be:\", file=sys.stderr)\n        print(\"  slide2.xml        - duplicate an existing slide\", file=sys.stderr)\n        print(\"  slideLayout2.xml  - create from a layout template\", file=sys.stderr)\n        print(\"\", file=sys.stderr)\n        print(\"To see available layouts: ls <unpacked_dir>/ppt/slideLayouts/\", file=sys.stderr)\n        sys.exit(1)\n\n    unpacked_dir = Path(sys.argv[1])\n    source = sys.argv[2]\n\n    if not unpacked_dir.exists():\n        print(f\"Error: {unpacked_dir} not found\", file=sys.stderr)\n        sys.exit(1)\n\n    source_type, layout_file = parse_source(source)\n\n    if source_type == \"layout\" and layout_file is not None:\n        create_slide_from_layout(unpacked_dir, layout_file)\n    else:\n        duplicate_slide(unpacked_dir, source)\n"
  },
  {
    "path": "skills/pptx/scripts/clean.py",
    "content": "\"\"\"Remove unreferenced files from an unpacked PPTX directory.\n\nUsage: python clean.py <unpacked_dir>\n\nExample:\n    python clean.py unpacked/\n\nThis script removes:\n- Orphaned slides (not in sldIdLst) and their relationships\n- [trash] directory (unreferenced files)\n- Orphaned .rels files for deleted resources\n- Unreferenced media, embeddings, charts, diagrams, drawings, ink files\n- Unreferenced theme files\n- Unreferenced notes slides\n- Content-Type overrides for deleted files\n\"\"\"\n\nimport sys\nfrom pathlib import Path\n\nimport defusedxml.minidom\n\n\nimport re\n\n\ndef get_slides_in_sldidlst(unpacked_dir: Path) -> set[str]:\n    pres_path = unpacked_dir / \"ppt\" / \"presentation.xml\"\n    pres_rels_path = unpacked_dir / \"ppt\" / \"_rels\" / \"presentation.xml.rels\"\n\n    if not pres_path.exists() or not pres_rels_path.exists():\n        return set()\n\n    rels_dom = defusedxml.minidom.parse(str(pres_rels_path))\n    rid_to_slide = {}\n    for rel in rels_dom.getElementsByTagName(\"Relationship\"):\n        rid = rel.getAttribute(\"Id\")\n        target = rel.getAttribute(\"Target\")\n        rel_type = rel.getAttribute(\"Type\")\n        if \"slide\" in rel_type and target.startswith(\"slides/\"):\n            rid_to_slide[rid] = target.replace(\"slides/\", \"\")\n\n    pres_content = pres_path.read_text(encoding=\"utf-8\")\n    referenced_rids = set(re.findall(r'<p:sldId[^>]*r:id=\"([^\"]+)\"', pres_content))\n\n    return {rid_to_slide[rid] for rid in referenced_rids if rid in rid_to_slide}\n\n\ndef remove_orphaned_slides(unpacked_dir: Path) -> list[str]:\n    slides_dir = unpacked_dir / \"ppt\" / \"slides\"\n    slides_rels_dir = slides_dir / \"_rels\"\n    pres_rels_path = unpacked_dir / \"ppt\" / \"_rels\" / \"presentation.xml.rels\"\n\n    if not slides_dir.exists():\n        return []\n\n    referenced_slides = get_slides_in_sldidlst(unpacked_dir)\n    removed = []\n\n    for slide_file in slides_dir.glob(\"slide*.xml\"):\n        if slide_file.name not in referenced_slides:\n            rel_path = slide_file.relative_to(unpacked_dir)\n            slide_file.unlink()\n            removed.append(str(rel_path))\n\n            rels_file = slides_rels_dir / f\"{slide_file.name}.rels\"\n            if rels_file.exists():\n                rels_file.unlink()\n                removed.append(str(rels_file.relative_to(unpacked_dir)))\n\n    if removed and pres_rels_path.exists():\n        rels_dom = defusedxml.minidom.parse(str(pres_rels_path))\n        changed = False\n\n        for rel in list(rels_dom.getElementsByTagName(\"Relationship\")):\n            target = rel.getAttribute(\"Target\")\n            if target.startswith(\"slides/\"):\n                slide_name = target.replace(\"slides/\", \"\")\n                if slide_name not in referenced_slides:\n                    if rel.parentNode:\n                        rel.parentNode.removeChild(rel)\n                        changed = True\n\n        if changed:\n            with open(pres_rels_path, \"wb\") as f:\n                f.write(rels_dom.toxml(encoding=\"utf-8\"))\n\n    return removed\n\n\ndef remove_trash_directory(unpacked_dir: Path) -> list[str]:\n    trash_dir = unpacked_dir / \"[trash]\"\n    removed = []\n\n    if trash_dir.exists() and trash_dir.is_dir():\n        for file_path in trash_dir.iterdir():\n            if file_path.is_file():\n                rel_path = file_path.relative_to(unpacked_dir)\n                removed.append(str(rel_path))\n                file_path.unlink()\n        trash_dir.rmdir()\n\n    return removed\n\n\ndef get_slide_referenced_files(unpacked_dir: Path) -> set:\n    referenced = set()\n    slides_rels_dir = unpacked_dir / \"ppt\" / \"slides\" / \"_rels\"\n\n    if not slides_rels_dir.exists():\n        return referenced\n\n    for rels_file in slides_rels_dir.glob(\"*.rels\"):\n        dom = defusedxml.minidom.parse(str(rels_file))\n        for rel in dom.getElementsByTagName(\"Relationship\"):\n            target = rel.getAttribute(\"Target\")\n            if not target:\n                continue\n            target_path = (rels_file.parent.parent / target).resolve()\n            try:\n                referenced.add(target_path.relative_to(unpacked_dir.resolve()))\n            except ValueError:\n                pass\n\n    return referenced\n\n\ndef remove_orphaned_rels_files(unpacked_dir: Path) -> list[str]:\n    resource_dirs = [\"charts\", \"diagrams\", \"drawings\"]\n    removed = []\n    slide_referenced = get_slide_referenced_files(unpacked_dir)\n\n    for dir_name in resource_dirs:\n        rels_dir = unpacked_dir / \"ppt\" / dir_name / \"_rels\"\n        if not rels_dir.exists():\n            continue\n\n        for rels_file in rels_dir.glob(\"*.rels\"):\n            resource_file = rels_dir.parent / rels_file.name.replace(\".rels\", \"\")\n            try:\n                resource_rel_path = resource_file.resolve().relative_to(unpacked_dir.resolve())\n            except ValueError:\n                continue\n\n            if not resource_file.exists() or resource_rel_path not in slide_referenced:\n                rels_file.unlink()\n                rel_path = rels_file.relative_to(unpacked_dir)\n                removed.append(str(rel_path))\n\n    return removed\n\n\ndef get_referenced_files(unpacked_dir: Path) -> set:\n    referenced = set()\n\n    for rels_file in unpacked_dir.rglob(\"*.rels\"):\n        dom = defusedxml.minidom.parse(str(rels_file))\n        for rel in dom.getElementsByTagName(\"Relationship\"):\n            target = rel.getAttribute(\"Target\")\n            if not target:\n                continue\n            target_path = (rels_file.parent.parent / target).resolve()\n            try:\n                referenced.add(target_path.relative_to(unpacked_dir.resolve()))\n            except ValueError:\n                pass\n\n    return referenced\n\n\ndef remove_orphaned_files(unpacked_dir: Path, referenced: set) -> list[str]:\n    resource_dirs = [\"media\", \"embeddings\", \"charts\", \"diagrams\", \"tags\", \"drawings\", \"ink\"]\n    removed = []\n\n    for dir_name in resource_dirs:\n        dir_path = unpacked_dir / \"ppt\" / dir_name\n        if not dir_path.exists():\n            continue\n\n        for file_path in dir_path.glob(\"*\"):\n            if not file_path.is_file():\n                continue\n            rel_path = file_path.relative_to(unpacked_dir)\n            if rel_path not in referenced:\n                file_path.unlink()\n                removed.append(str(rel_path))\n\n    theme_dir = unpacked_dir / \"ppt\" / \"theme\"\n    if theme_dir.exists():\n        for file_path in theme_dir.glob(\"theme*.xml\"):\n            rel_path = file_path.relative_to(unpacked_dir)\n            if rel_path not in referenced:\n                file_path.unlink()\n                removed.append(str(rel_path))\n                theme_rels = theme_dir / \"_rels\" / f\"{file_path.name}.rels\"\n                if theme_rels.exists():\n                    theme_rels.unlink()\n                    removed.append(str(theme_rels.relative_to(unpacked_dir)))\n\n    notes_dir = unpacked_dir / \"ppt\" / \"notesSlides\"\n    if notes_dir.exists():\n        for file_path in notes_dir.glob(\"*.xml\"):\n            if not file_path.is_file():\n                continue\n            rel_path = file_path.relative_to(unpacked_dir)\n            if rel_path not in referenced:\n                file_path.unlink()\n                removed.append(str(rel_path))\n\n        notes_rels_dir = notes_dir / \"_rels\"\n        if notes_rels_dir.exists():\n            for file_path in notes_rels_dir.glob(\"*.rels\"):\n                notes_file = notes_dir / file_path.name.replace(\".rels\", \"\")\n                if not notes_file.exists():\n                    file_path.unlink()\n                    removed.append(str(file_path.relative_to(unpacked_dir)))\n\n    return removed\n\n\ndef update_content_types(unpacked_dir: Path, removed_files: list[str]) -> None:\n    ct_path = unpacked_dir / \"[Content_Types].xml\"\n    if not ct_path.exists():\n        return\n\n    dom = defusedxml.minidom.parse(str(ct_path))\n    changed = False\n\n    for override in list(dom.getElementsByTagName(\"Override\")):\n        part_name = override.getAttribute(\"PartName\").lstrip(\"/\")\n        if part_name in removed_files:\n            if override.parentNode:\n                override.parentNode.removeChild(override)\n                changed = True\n\n    if changed:\n        with open(ct_path, \"wb\") as f:\n            f.write(dom.toxml(encoding=\"utf-8\"))\n\n\ndef clean_unused_files(unpacked_dir: Path) -> list[str]:\n    all_removed = []\n\n    slides_removed = remove_orphaned_slides(unpacked_dir)\n    all_removed.extend(slides_removed)\n\n    trash_removed = remove_trash_directory(unpacked_dir)\n    all_removed.extend(trash_removed)\n\n    while True:\n        removed_rels = remove_orphaned_rels_files(unpacked_dir)\n        referenced = get_referenced_files(unpacked_dir)\n        removed_files = remove_orphaned_files(unpacked_dir, referenced)\n\n        total_removed = removed_rels + removed_files\n        if not total_removed:\n            break\n\n        all_removed.extend(total_removed)\n\n    if all_removed:\n        update_content_types(unpacked_dir, all_removed)\n\n    return all_removed\n\n\nif __name__ == \"__main__\":\n    if len(sys.argv) != 2:\n        print(\"Usage: python clean.py <unpacked_dir>\", file=sys.stderr)\n        print(\"Example: python clean.py unpacked/\", file=sys.stderr)\n        sys.exit(1)\n\n    unpacked_dir = Path(sys.argv[1])\n\n    if not unpacked_dir.exists():\n        print(f\"Error: {unpacked_dir} not found\", file=sys.stderr)\n        sys.exit(1)\n\n    removed = clean_unused_files(unpacked_dir)\n\n    if removed:\n        print(f\"Removed {len(removed)} unreferenced files:\")\n        for f in removed:\n            print(f\"  {f}\")\n    else:\n        print(\"No unreferenced files found\")\n"
  },
  {
    "path": "skills/pptx/scripts/office/helpers/__init__.py",
    "content": ""
  },
  {
    "path": "skills/pptx/scripts/office/helpers/merge_runs.py",
    "content": "\"\"\"Merge adjacent runs with identical formatting in DOCX.\n\nMerges adjacent <w:r> elements that have identical <w:rPr> properties.\nWorks on runs in paragraphs and inside tracked changes (<w:ins>, <w:del>).\n\nAlso:\n- Removes rsid attributes from runs (revision metadata that doesn't affect rendering)\n- Removes proofErr elements (spell/grammar markers that block merging)\n\"\"\"\n\nfrom pathlib import Path\n\nimport defusedxml.minidom\n\n\ndef merge_runs(input_dir: str) -> tuple[int, str]:\n    doc_xml = Path(input_dir) / \"word\" / \"document.xml\"\n\n    if not doc_xml.exists():\n        return 0, f\"Error: {doc_xml} not found\"\n\n    try:\n        dom = defusedxml.minidom.parseString(doc_xml.read_text(encoding=\"utf-8\"))\n        root = dom.documentElement\n\n        _remove_elements(root, \"proofErr\")\n        _strip_run_rsid_attrs(root)\n\n        containers = {run.parentNode for run in _find_elements(root, \"r\")}\n\n        merge_count = 0\n        for container in containers:\n            merge_count += _merge_runs_in(container)\n\n        doc_xml.write_bytes(dom.toxml(encoding=\"UTF-8\"))\n        return merge_count, f\"Merged {merge_count} runs\"\n\n    except Exception as e:\n        return 0, f\"Error: {e}\"\n\n\n\n\ndef _find_elements(root, tag: str) -> list:\n    results = []\n\n    def traverse(node):\n        if node.nodeType == node.ELEMENT_NODE:\n            name = node.localName or node.tagName\n            if name == tag or name.endswith(f\":{tag}\"):\n                results.append(node)\n            for child in node.childNodes:\n                traverse(child)\n\n    traverse(root)\n    return results\n\n\ndef _get_child(parent, tag: str):\n    for child in parent.childNodes:\n        if child.nodeType == child.ELEMENT_NODE:\n            name = child.localName or child.tagName\n            if name == tag or name.endswith(f\":{tag}\"):\n                return child\n    return None\n\n\ndef _get_children(parent, tag: str) -> list:\n    results = []\n    for child in parent.childNodes:\n        if child.nodeType == child.ELEMENT_NODE:\n            name = child.localName or child.tagName\n            if name == tag or name.endswith(f\":{tag}\"):\n                results.append(child)\n    return results\n\n\ndef _is_adjacent(elem1, elem2) -> bool:\n    node = elem1.nextSibling\n    while node:\n        if node == elem2:\n            return True\n        if node.nodeType == node.ELEMENT_NODE:\n            return False\n        if node.nodeType == node.TEXT_NODE and node.data.strip():\n            return False\n        node = node.nextSibling\n    return False\n\n\n\n\ndef _remove_elements(root, tag: str):\n    for elem in _find_elements(root, tag):\n        if elem.parentNode:\n            elem.parentNode.removeChild(elem)\n\n\ndef _strip_run_rsid_attrs(root):\n    for run in _find_elements(root, \"r\"):\n        for attr in list(run.attributes.values()):\n            if \"rsid\" in attr.name.lower():\n                run.removeAttribute(attr.name)\n\n\n\n\ndef _merge_runs_in(container) -> int:\n    merge_count = 0\n    run = _first_child_run(container)\n\n    while run:\n        while True:\n            next_elem = _next_element_sibling(run)\n            if next_elem and _is_run(next_elem) and _can_merge(run, next_elem):\n                _merge_run_content(run, next_elem)\n                container.removeChild(next_elem)\n                merge_count += 1\n            else:\n                break\n\n        _consolidate_text(run)\n        run = _next_sibling_run(run)\n\n    return merge_count\n\n\ndef _first_child_run(container):\n    for child in container.childNodes:\n        if child.nodeType == child.ELEMENT_NODE and _is_run(child):\n            return child\n    return None\n\n\ndef _next_element_sibling(node):\n    sibling = node.nextSibling\n    while sibling:\n        if sibling.nodeType == sibling.ELEMENT_NODE:\n            return sibling\n        sibling = sibling.nextSibling\n    return None\n\n\ndef _next_sibling_run(node):\n    sibling = node.nextSibling\n    while sibling:\n        if sibling.nodeType == sibling.ELEMENT_NODE:\n            if _is_run(sibling):\n                return sibling\n        sibling = sibling.nextSibling\n    return None\n\n\ndef _is_run(node) -> bool:\n    name = node.localName or node.tagName\n    return name == \"r\" or name.endswith(\":r\")\n\n\ndef _can_merge(run1, run2) -> bool:\n    rpr1 = _get_child(run1, \"rPr\")\n    rpr2 = _get_child(run2, \"rPr\")\n\n    if (rpr1 is None) != (rpr2 is None):\n        return False\n    if rpr1 is None:\n        return True\n    return rpr1.toxml() == rpr2.toxml()  \n\n\ndef _merge_run_content(target, source):\n    for child in list(source.childNodes):\n        if child.nodeType == child.ELEMENT_NODE:\n            name = child.localName or child.tagName\n            if name != \"rPr\" and not name.endswith(\":rPr\"):\n                target.appendChild(child)\n\n\ndef _consolidate_text(run):\n    t_elements = _get_children(run, \"t\")\n\n    for i in range(len(t_elements) - 1, 0, -1):\n        curr, prev = t_elements[i], t_elements[i - 1]\n\n        if _is_adjacent(prev, curr):\n            prev_text = prev.firstChild.data if prev.firstChild else \"\"\n            curr_text = curr.firstChild.data if curr.firstChild else \"\"\n            merged = prev_text + curr_text\n\n            if prev.firstChild:\n                prev.firstChild.data = merged\n            else:\n                prev.appendChild(run.ownerDocument.createTextNode(merged))\n\n            if merged.startswith(\" \") or merged.endswith(\" \"):\n                prev.setAttribute(\"xml:space\", \"preserve\")\n            elif prev.hasAttribute(\"xml:space\"):\n                prev.removeAttribute(\"xml:space\")\n\n            run.removeChild(curr)\n"
  },
  {
    "path": "skills/pptx/scripts/office/helpers/simplify_redlines.py",
    "content": "\"\"\"Simplify tracked changes by merging adjacent w:ins or w:del elements.\n\nMerges adjacent <w:ins> elements from the same author into a single element.\nSame for <w:del> elements. This makes heavily-redlined documents easier to\nwork with by reducing the number of tracked change wrappers.\n\nRules:\n- Only merges w:ins with w:ins, w:del with w:del (same element type)\n- Only merges if same author (ignores timestamp differences)\n- Only merges if truly adjacent (only whitespace between them)\n\"\"\"\n\nimport xml.etree.ElementTree as ET\nimport zipfile\nfrom pathlib import Path\n\nimport defusedxml.minidom\n\nWORD_NS = \"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n\n\ndef simplify_redlines(input_dir: str) -> tuple[int, str]:\n    doc_xml = Path(input_dir) / \"word\" / \"document.xml\"\n\n    if not doc_xml.exists():\n        return 0, f\"Error: {doc_xml} not found\"\n\n    try:\n        dom = defusedxml.minidom.parseString(doc_xml.read_text(encoding=\"utf-8\"))\n        root = dom.documentElement\n\n        merge_count = 0\n\n        containers = _find_elements(root, \"p\") + _find_elements(root, \"tc\")\n\n        for container in containers:\n            merge_count += _merge_tracked_changes_in(container, \"ins\")\n            merge_count += _merge_tracked_changes_in(container, \"del\")\n\n        doc_xml.write_bytes(dom.toxml(encoding=\"UTF-8\"))\n        return merge_count, f\"Simplified {merge_count} tracked changes\"\n\n    except Exception as e:\n        return 0, f\"Error: {e}\"\n\n\ndef _merge_tracked_changes_in(container, tag: str) -> int:\n    merge_count = 0\n\n    tracked = [\n        child\n        for child in container.childNodes\n        if child.nodeType == child.ELEMENT_NODE and _is_element(child, tag)\n    ]\n\n    if len(tracked) < 2:\n        return 0\n\n    i = 0\n    while i < len(tracked) - 1:\n        curr = tracked[i]\n        next_elem = tracked[i + 1]\n\n        if _can_merge_tracked(curr, next_elem):\n            _merge_tracked_content(curr, next_elem)\n            container.removeChild(next_elem)\n            tracked.pop(i + 1)\n            merge_count += 1\n        else:\n            i += 1\n\n    return merge_count\n\n\ndef _is_element(node, tag: str) -> bool:\n    name = node.localName or node.tagName\n    return name == tag or name.endswith(f\":{tag}\")\n\n\ndef _get_author(elem) -> str:\n    author = elem.getAttribute(\"w:author\")\n    if not author:\n        for attr in elem.attributes.values():\n            if attr.localName == \"author\" or attr.name.endswith(\":author\"):\n                return attr.value\n    return author\n\n\ndef _can_merge_tracked(elem1, elem2) -> bool:\n    if _get_author(elem1) != _get_author(elem2):\n        return False\n\n    node = elem1.nextSibling\n    while node and node != elem2:\n        if node.nodeType == node.ELEMENT_NODE:\n            return False\n        if node.nodeType == node.TEXT_NODE and node.data.strip():\n            return False\n        node = node.nextSibling\n\n    return True\n\n\ndef _merge_tracked_content(target, source):\n    while source.firstChild:\n        child = source.firstChild\n        source.removeChild(child)\n        target.appendChild(child)\n\n\ndef _find_elements(root, tag: str) -> list:\n    results = []\n\n    def traverse(node):\n        if node.nodeType == node.ELEMENT_NODE:\n            name = node.localName or node.tagName\n            if name == tag or name.endswith(f\":{tag}\"):\n                results.append(node)\n            for child in node.childNodes:\n                traverse(child)\n\n    traverse(root)\n    return results\n\n\ndef get_tracked_change_authors(doc_xml_path: Path) -> dict[str, int]:\n    if not doc_xml_path.exists():\n        return {}\n\n    try:\n        tree = ET.parse(doc_xml_path)\n        root = tree.getroot()\n    except ET.ParseError:\n        return {}\n\n    namespaces = {\"w\": WORD_NS}\n    author_attr = f\"{{{WORD_NS}}}author\"\n\n    authors: dict[str, int] = {}\n    for tag in [\"ins\", \"del\"]:\n        for elem in root.findall(f\".//w:{tag}\", namespaces):\n            author = elem.get(author_attr)\n            if author:\n                authors[author] = authors.get(author, 0) + 1\n\n    return authors\n\n\ndef _get_authors_from_docx(docx_path: Path) -> dict[str, int]:\n    try:\n        with zipfile.ZipFile(docx_path, \"r\") as zf:\n            if \"word/document.xml\" not in zf.namelist():\n                return {}\n            with zf.open(\"word/document.xml\") as f:\n                tree = ET.parse(f)\n                root = tree.getroot()\n\n                namespaces = {\"w\": WORD_NS}\n                author_attr = f\"{{{WORD_NS}}}author\"\n\n                authors: dict[str, int] = {}\n                for tag in [\"ins\", \"del\"]:\n                    for elem in root.findall(f\".//w:{tag}\", namespaces):\n                        author = elem.get(author_attr)\n                        if author:\n                            authors[author] = authors.get(author, 0) + 1\n                return authors\n    except (zipfile.BadZipFile, ET.ParseError):\n        return {}\n\n\ndef infer_author(modified_dir: Path, original_docx: Path, default: str = \"Claude\") -> str:\n    modified_xml = modified_dir / \"word\" / \"document.xml\"\n    modified_authors = get_tracked_change_authors(modified_xml)\n\n    if not modified_authors:\n        return default\n\n    original_authors = _get_authors_from_docx(original_docx)\n\n    new_changes: dict[str, int] = {}\n    for author, count in modified_authors.items():\n        original_count = original_authors.get(author, 0)\n        diff = count - original_count\n        if diff > 0:\n            new_changes[author] = diff\n\n    if not new_changes:\n        return default\n\n    if len(new_changes) == 1:\n        return next(iter(new_changes))\n\n    raise ValueError(\n        f\"Multiple authors added new changes: {new_changes}. \"\n        \"Cannot infer which author to validate.\"\n    )\n"
  },
  {
    "path": "skills/pptx/scripts/office/pack.py",
    "content": "\"\"\"Pack a directory into a DOCX, PPTX, or XLSX file.\n\nValidates with auto-repair, condenses XML formatting, and creates the Office file.\n\nUsage:\n    python pack.py <input_directory> <output_file> [--original <file>] [--validate true|false]\n\nExamples:\n    python pack.py unpacked/ output.docx --original input.docx\n    python pack.py unpacked/ output.pptx --validate false\n\"\"\"\n\nimport argparse\nimport sys\nimport shutil\nimport tempfile\nimport zipfile\nfrom pathlib import Path\n\nimport defusedxml.minidom\n\nfrom validators import DOCXSchemaValidator, PPTXSchemaValidator, RedliningValidator\n\ndef pack(\n    input_directory: str,\n    output_file: str,\n    original_file: str | None = None,\n    validate: bool = True,\n    infer_author_func=None,\n) -> tuple[None, str]:\n    input_dir = Path(input_directory)\n    output_path = Path(output_file)\n    suffix = output_path.suffix.lower()\n\n    if not input_dir.is_dir():\n        return None, f\"Error: {input_dir} is not a directory\"\n\n    if suffix not in {\".docx\", \".pptx\", \".xlsx\"}:\n        return None, f\"Error: {output_file} must be a .docx, .pptx, or .xlsx file\"\n\n    if validate and original_file:\n        original_path = Path(original_file)\n        if original_path.exists():\n            success, output = _run_validation(\n                input_dir, original_path, suffix, infer_author_func\n            )\n            if output:\n                print(output)\n            if not success:\n                return None, f\"Error: Validation failed for {input_dir}\"\n\n    with tempfile.TemporaryDirectory() as temp_dir:\n        temp_content_dir = Path(temp_dir) / \"content\"\n        shutil.copytree(input_dir, temp_content_dir)\n\n        for pattern in [\"*.xml\", \"*.rels\"]:\n            for xml_file in temp_content_dir.rglob(pattern):\n                _condense_xml(xml_file)\n\n        output_path.parent.mkdir(parents=True, exist_ok=True)\n        with zipfile.ZipFile(output_path, \"w\", zipfile.ZIP_DEFLATED) as zf:\n            for f in temp_content_dir.rglob(\"*\"):\n                if f.is_file():\n                    zf.write(f, f.relative_to(temp_content_dir))\n\n    return None, f\"Successfully packed {input_dir} to {output_file}\"\n\n\ndef _run_validation(\n    unpacked_dir: Path,\n    original_file: Path,\n    suffix: str,\n    infer_author_func=None,\n) -> tuple[bool, str | None]:\n    output_lines = []\n    validators = []\n\n    if suffix == \".docx\":\n        author = \"Claude\"\n        if infer_author_func:\n            try:\n                author = infer_author_func(unpacked_dir, original_file)\n            except ValueError as e:\n                print(f\"Warning: {e} Using default author 'Claude'.\", file=sys.stderr)\n\n        validators = [\n            DOCXSchemaValidator(unpacked_dir, original_file),\n            RedliningValidator(unpacked_dir, original_file, author=author),\n        ]\n    elif suffix == \".pptx\":\n        validators = [PPTXSchemaValidator(unpacked_dir, original_file)]\n\n    if not validators:\n        return True, None\n\n    total_repairs = sum(v.repair() for v in validators)\n    if total_repairs:\n        output_lines.append(f\"Auto-repaired {total_repairs} issue(s)\")\n\n    success = all(v.validate() for v in validators)\n\n    if success:\n        output_lines.append(\"All validations PASSED!\")\n\n    return success, \"\\n\".join(output_lines) if output_lines else None\n\n\ndef _condense_xml(xml_file: Path) -> None:\n    try:\n        with open(xml_file, encoding=\"utf-8\") as f:\n            dom = defusedxml.minidom.parse(f)\n\n        for element in dom.getElementsByTagName(\"*\"):\n            if element.tagName.endswith(\":t\"):\n                continue\n\n            for child in list(element.childNodes):\n                if (\n                    child.nodeType == child.TEXT_NODE\n                    and child.nodeValue\n                    and child.nodeValue.strip() == \"\"\n                ) or child.nodeType == child.COMMENT_NODE:\n                    element.removeChild(child)\n\n        xml_file.write_bytes(dom.toxml(encoding=\"UTF-8\"))\n    except Exception as e:\n        print(f\"ERROR: Failed to parse {xml_file.name}: {e}\", file=sys.stderr)\n        raise\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser(\n        description=\"Pack a directory into a DOCX, PPTX, or XLSX file\"\n    )\n    parser.add_argument(\"input_directory\", help=\"Unpacked Office document directory\")\n    parser.add_argument(\"output_file\", help=\"Output Office file (.docx/.pptx/.xlsx)\")\n    parser.add_argument(\n        \"--original\",\n        help=\"Original file for validation comparison\",\n    )\n    parser.add_argument(\n        \"--validate\",\n        type=lambda x: x.lower() == \"true\",\n        default=True,\n        metavar=\"true|false\",\n        help=\"Run validation with auto-repair (default: true)\",\n    )\n    args = parser.parse_args()\n\n    _, message = pack(\n        args.input_directory,\n        args.output_file,\n        original_file=args.original,\n        validate=args.validate,\n    )\n    print(message)\n\n    if \"Error\" in message:\n        sys.exit(1)\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/chart\"\n  xmlns:cdr=\"http://schemas.openxmlformats.org/drawingml/2006/chartDrawing\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/chart\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"unqualified\" blockDefault=\"#all\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/chartDrawing\"\n    schemaLocation=\"dml-chartDrawing.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:complexType name=\"CT_Boolean\">\n    <xsd:attribute name=\"val\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Double\">\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_UnsignedInt\">\n    <xsd:attribute name=\"val\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RelId\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Extension\">\n    <xsd:sequence>\n      <xsd:any processContents=\"lax\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"xsd:token\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExtensionList\">\n    <xsd:sequence>\n      <xsd:element name=\"ext\" type=\"CT_Extension\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumVal\">\n    <xsd:sequence>\n      <xsd:element name=\"v\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"idx\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"formatCode\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumData\">\n    <xsd:sequence>\n      <xsd:element name=\"formatCode\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ptCount\" type=\"CT_UnsignedInt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pt\" type=\"CT_NumVal\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumRef\">\n    <xsd:sequence>\n      <xsd:element name=\"f\" type=\"xsd:string\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"numCache\" type=\"CT_NumData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumDataSource\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"numRef\" type=\"CT_NumRef\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"numLit\" type=\"CT_NumData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StrVal\">\n    <xsd:sequence>\n      <xsd:element name=\"v\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"idx\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StrData\">\n    <xsd:sequence>\n      <xsd:element name=\"ptCount\" type=\"CT_UnsignedInt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pt\" type=\"CT_StrVal\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StrRef\">\n    <xsd:sequence>\n      <xsd:element name=\"f\" type=\"xsd:string\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"strCache\" type=\"CT_StrData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Tx\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"strRef\" type=\"CT_StrRef\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"rich\" type=\"a:CT_TextBody\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextLanguageID\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Lang\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Lvl\">\n    <xsd:sequence>\n      <xsd:element name=\"pt\" type=\"CT_StrVal\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MultiLvlStrData\">\n    <xsd:sequence>\n      <xsd:element name=\"ptCount\" type=\"CT_UnsignedInt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl\" type=\"CT_Lvl\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MultiLvlStrRef\">\n    <xsd:sequence>\n      <xsd:element name=\"f\" type=\"xsd:string\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"multiLvlStrCache\" type=\"CT_MultiLvlStrData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AxDataSource\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"multiLvlStrRef\" type=\"CT_MultiLvlStrRef\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"numRef\" type=\"CT_NumRef\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"numLit\" type=\"CT_NumData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"strRef\" type=\"CT_StrRef\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"strLit\" type=\"CT_StrData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SerTx\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"strRef\" type=\"CT_StrRef\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"v\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LayoutTarget\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"inner\"/>\n      <xsd:enumeration value=\"outer\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LayoutTarget\">\n    <xsd:attribute name=\"val\" type=\"ST_LayoutTarget\" default=\"outer\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LayoutMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"edge\"/>\n      <xsd:enumeration value=\"factor\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LayoutMode\">\n    <xsd:attribute name=\"val\" type=\"ST_LayoutMode\" default=\"factor\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ManualLayout\">\n    <xsd:sequence>\n      <xsd:element name=\"layoutTarget\" type=\"CT_LayoutTarget\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"xMode\" type=\"CT_LayoutMode\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"yMode\" type=\"CT_LayoutMode\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"wMode\" type=\"CT_LayoutMode\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hMode\" type=\"CT_LayoutMode\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"x\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"y\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"w\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"h\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Layout\">\n    <xsd:sequence>\n      <xsd:element name=\"manualLayout\" type=\"CT_ManualLayout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Title\">\n    <xsd:sequence>\n      <xsd:element name=\"tx\" type=\"CT_Tx\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"layout\" type=\"CT_Layout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"overlay\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RotX\">\n    <xsd:restriction base=\"xsd:byte\">\n      <xsd:minInclusive value=\"-90\"/>\n      <xsd:maxInclusive value=\"90\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_RotX\">\n    <xsd:attribute name=\"val\" type=\"ST_RotX\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HPercent\">\n    <xsd:union memberTypes=\"ST_HPercentWithSymbol ST_HPercentUShort\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HPercentWithSymbol\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(([5-9])|([1-9][0-9])|([1-4][0-9][0-9])|500)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HPercentUShort\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"5\"/>\n      <xsd:maxInclusive value=\"500\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_HPercent\">\n    <xsd:attribute name=\"val\" type=\"ST_HPercent\" default=\"100%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RotY\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"360\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_RotY\">\n    <xsd:attribute name=\"val\" type=\"ST_RotY\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DepthPercent\">\n    <xsd:union memberTypes=\"ST_DepthPercentWithSymbol ST_DepthPercentUShort\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DepthPercentWithSymbol\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(([2-9][0-9])|([1-9][0-9][0-9])|(1[0-9][0-9][0-9])|2000)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DepthPercentUShort\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"20\"/>\n      <xsd:maxInclusive value=\"2000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DepthPercent\">\n    <xsd:attribute name=\"val\" type=\"ST_DepthPercent\" default=\"100%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Perspective\">\n    <xsd:restriction base=\"xsd:unsignedByte\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"240\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Perspective\">\n    <xsd:attribute name=\"val\" type=\"ST_Perspective\" default=\"30\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_View3D\">\n    <xsd:sequence>\n      <xsd:element name=\"rotX\" type=\"CT_RotX\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hPercent\" type=\"CT_HPercent\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rotY\" type=\"CT_RotY\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"depthPercent\" type=\"CT_DepthPercent\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rAngAx\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"perspective\" type=\"CT_Perspective\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Surface\">\n    <xsd:sequence>\n      <xsd:element name=\"thickness\" type=\"CT_Thickness\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pictureOptions\" type=\"CT_PictureOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Thickness\">\n    <xsd:union memberTypes=\"ST_ThicknessPercent xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ThicknessPercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"([0-9]+)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Thickness\">\n    <xsd:attribute name=\"val\" type=\"ST_Thickness\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DTable\">\n    <xsd:sequence>\n      <xsd:element name=\"showHorzBorder\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showVertBorder\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showOutline\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showKeys\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_GapAmount\">\n    <xsd:union memberTypes=\"ST_GapAmountPercent ST_GapAmountUShort\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_GapAmountPercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(([0-9])|([1-9][0-9])|([1-4][0-9][0-9])|500)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_GapAmountUShort\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"500\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_GapAmount\">\n    <xsd:attribute name=\"val\" type=\"ST_GapAmount\" default=\"150%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Overlap\">\n    <xsd:union memberTypes=\"ST_OverlapPercent ST_OverlapByte\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OverlapPercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"(-?0*(([0-9])|([1-9][0-9])|100))%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OverlapByte\">\n    <xsd:restriction base=\"xsd:byte\">\n      <xsd:minInclusive value=\"-100\"/>\n      <xsd:maxInclusive value=\"100\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Overlap\">\n    <xsd:attribute name=\"val\" type=\"ST_Overlap\" default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BubbleScale\">\n    <xsd:union memberTypes=\"ST_BubbleScalePercent ST_BubbleScaleUInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BubbleScalePercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(([0-9])|([1-9][0-9])|([1-2][0-9][0-9])|300)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BubbleScaleUInt\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"300\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BubbleScale\">\n    <xsd:attribute name=\"val\" type=\"ST_BubbleScale\" default=\"100%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SizeRepresents\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"area\"/>\n      <xsd:enumeration value=\"w\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SizeRepresents\">\n    <xsd:attribute name=\"val\" type=\"ST_SizeRepresents\" default=\"area\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FirstSliceAng\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"360\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FirstSliceAng\">\n    <xsd:attribute name=\"val\" type=\"ST_FirstSliceAng\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HoleSize\">\n    <xsd:union memberTypes=\"ST_HoleSizePercent ST_HoleSizeUByte\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HoleSizePercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*([1-9]|([1-8][0-9])|90)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HoleSizeUByte\">\n    <xsd:restriction base=\"xsd:unsignedByte\">\n      <xsd:minInclusive value=\"1\"/>\n      <xsd:maxInclusive value=\"90\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_HoleSize\">\n    <xsd:attribute name=\"val\" type=\"ST_HoleSize\" default=\"10%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SplitType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"cust\"/>\n      <xsd:enumeration value=\"percent\"/>\n      <xsd:enumeration value=\"pos\"/>\n      <xsd:enumeration value=\"val\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SplitType\">\n    <xsd:attribute name=\"val\" type=\"ST_SplitType\" default=\"auto\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustSplit\">\n    <xsd:sequence>\n      <xsd:element name=\"secondPiePt\" type=\"CT_UnsignedInt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SecondPieSize\">\n    <xsd:union memberTypes=\"ST_SecondPieSizePercent ST_SecondPieSizeUShort\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_SecondPieSizePercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(([5-9])|([1-9][0-9])|(1[0-9][0-9])|200)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_SecondPieSizeUShort\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"5\"/>\n      <xsd:maxInclusive value=\"200\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SecondPieSize\">\n    <xsd:attribute name=\"val\" type=\"ST_SecondPieSize\" default=\"75%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumFmt\">\n    <xsd:attribute name=\"formatCode\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"sourceLinked\" type=\"xsd:boolean\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LblAlgn\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LblAlgn\">\n    <xsd:attribute name=\"val\" type=\"ST_LblAlgn\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DLblPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"bestFit\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"inBase\"/>\n      <xsd:enumeration value=\"inEnd\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"outEnd\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"t\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DLblPos\">\n    <xsd:attribute name=\"val\" type=\"ST_DLblPos\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_DLblShared\">\n    <xsd:sequence>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dLblPos\" type=\"CT_DLblPos\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showLegendKey\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showVal\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showCatName\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showSerName\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showPercent\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showBubbleSize\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"separator\" type=\"xsd:string\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:group name=\"Group_DLbl\">\n    <xsd:sequence>\n      <xsd:element name=\"layout\" type=\"CT_Layout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tx\" type=\"CT_Tx\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_DLblShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_DLbl\">\n    <xsd:sequence>\n      <xsd:element name=\"idx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice>\n        <xsd:element name=\"delete\" type=\"CT_Boolean\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:group ref=\"Group_DLbl\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"Group_DLbls\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_DLblShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showLeaderLines\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"leaderLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_DLbls\">\n    <xsd:sequence>\n      <xsd:element name=\"dLbl\" type=\"CT_DLbl\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:choice>\n        <xsd:element name=\"delete\" type=\"CT_Boolean\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:group ref=\"Group_DLbls\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MarkerStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"circle\"/>\n      <xsd:enumeration value=\"dash\"/>\n      <xsd:enumeration value=\"diamond\"/>\n      <xsd:enumeration value=\"dot\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"picture\"/>\n      <xsd:enumeration value=\"plus\"/>\n      <xsd:enumeration value=\"square\"/>\n      <xsd:enumeration value=\"star\"/>\n      <xsd:enumeration value=\"triangle\"/>\n      <xsd:enumeration value=\"x\"/>\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MarkerStyle\">\n    <xsd:attribute name=\"val\" type=\"ST_MarkerStyle\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MarkerSize\">\n    <xsd:restriction base=\"xsd:unsignedByte\">\n      <xsd:minInclusive value=\"2\"/>\n      <xsd:maxInclusive value=\"72\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MarkerSize\">\n    <xsd:attribute name=\"val\" type=\"ST_MarkerSize\" default=\"5\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Marker\">\n    <xsd:sequence>\n      <xsd:element name=\"symbol\" type=\"CT_MarkerStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"size\" type=\"CT_MarkerSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DPt\">\n    <xsd:sequence>\n      <xsd:element name=\"idx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"invertIfNegative\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"marker\" type=\"CT_Marker\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bubble3D\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"explosion\" type=\"CT_UnsignedInt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pictureOptions\" type=\"CT_PictureOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TrendlineType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"exp\"/>\n      <xsd:enumeration value=\"linear\"/>\n      <xsd:enumeration value=\"log\"/>\n      <xsd:enumeration value=\"movingAvg\"/>\n      <xsd:enumeration value=\"poly\"/>\n      <xsd:enumeration value=\"power\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TrendlineType\">\n    <xsd:attribute name=\"val\" type=\"ST_TrendlineType\" default=\"linear\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Order\">\n    <xsd:restriction base=\"xsd:unsignedByte\">\n      <xsd:minInclusive value=\"2\"/>\n      <xsd:maxInclusive value=\"6\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Order\">\n    <xsd:attribute name=\"val\" type=\"ST_Order\" default=\"2\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Period\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"2\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Period\">\n    <xsd:attribute name=\"val\" type=\"ST_Period\" default=\"2\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrendlineLbl\">\n    <xsd:sequence>\n      <xsd:element name=\"layout\" type=\"CT_Layout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tx\" type=\"CT_Tx\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Trendline\">\n    <xsd:sequence>\n      <xsd:element name=\"name\" type=\"xsd:string\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendlineType\" type=\"CT_TrendlineType\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"order\" type=\"CT_Order\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"period\" type=\"CT_Period\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"forward\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"backward\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"intercept\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dispRSqr\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dispEq\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendlineLbl\" type=\"CT_TrendlineLbl\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ErrDir\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"x\"/>\n      <xsd:enumeration value=\"y\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ErrDir\">\n    <xsd:attribute name=\"val\" type=\"ST_ErrDir\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ErrBarType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"both\"/>\n      <xsd:enumeration value=\"minus\"/>\n      <xsd:enumeration value=\"plus\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ErrBarType\">\n    <xsd:attribute name=\"val\" type=\"ST_ErrBarType\" default=\"both\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ErrValType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"cust\"/>\n      <xsd:enumeration value=\"fixedVal\"/>\n      <xsd:enumeration value=\"percentage\"/>\n      <xsd:enumeration value=\"stdDev\"/>\n      <xsd:enumeration value=\"stdErr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ErrValType\">\n    <xsd:attribute name=\"val\" type=\"ST_ErrValType\" default=\"fixedVal\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ErrBars\">\n    <xsd:sequence>\n      <xsd:element name=\"errDir\" type=\"CT_ErrDir\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"errBarType\" type=\"CT_ErrBarType\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"errValType\" type=\"CT_ErrValType\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"noEndCap\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"plus\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minus\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_UpDownBar\">\n    <xsd:sequence>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_UpDownBars\">\n    <xsd:sequence>\n      <xsd:element name=\"gapWidth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"upBars\" type=\"CT_UpDownBar\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"downBars\" type=\"CT_UpDownBar\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_SerShared\">\n    <xsd:sequence>\n      <xsd:element name=\"idx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"order\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tx\" type=\"CT_SerTx\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_LineSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"marker\" type=\"CT_Marker\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendline\" type=\"CT_Trendline\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"errBars\" type=\"CT_ErrBars\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cat\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smooth\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ScatterSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"marker\" type=\"CT_Marker\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendline\" type=\"CT_Trendline\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"errBars\" type=\"CT_ErrBars\" minOccurs=\"0\" maxOccurs=\"2\"/>\n      <xsd:element name=\"xVal\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"yVal\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smooth\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RadarSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"marker\" type=\"CT_Marker\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cat\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BarSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"invertIfNegative\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pictureOptions\" type=\"CT_PictureOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendline\" type=\"CT_Trendline\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"errBars\" type=\"CT_ErrBars\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cat\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shape\" type=\"CT_Shape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AreaSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pictureOptions\" type=\"CT_PictureOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendline\" type=\"CT_Trendline\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"errBars\" type=\"CT_ErrBars\" minOccurs=\"0\" maxOccurs=\"2\"/>\n      <xsd:element name=\"cat\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PieSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"explosion\" type=\"CT_UnsignedInt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cat\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BubbleSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"invertIfNegative\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendline\" type=\"CT_Trendline\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"errBars\" type=\"CT_ErrBars\" minOccurs=\"0\" maxOccurs=\"2\"/>\n      <xsd:element name=\"xVal\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"yVal\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bubbleSize\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bubble3D\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SurfaceSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cat\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Grouping\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"percentStacked\"/>\n      <xsd:enumeration value=\"standard\"/>\n      <xsd:enumeration value=\"stacked\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Grouping\">\n    <xsd:attribute name=\"val\" type=\"ST_Grouping\" default=\"standard\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartLines\">\n    <xsd:sequence>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_LineChartShared\">\n    <xsd:sequence>\n      <xsd:element name=\"grouping\" type=\"CT_Grouping\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_LineSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dropLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_LineChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_LineChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hiLowLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"upDownBars\" type=\"CT_UpDownBars\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"marker\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smooth\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Line3DChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_LineChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gapDepth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"3\" maxOccurs=\"3\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StockChart\">\n    <xsd:sequence>\n      <xsd:element name=\"ser\" type=\"CT_LineSer\" minOccurs=\"3\" maxOccurs=\"4\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dropLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hiLowLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"upDownBars\" type=\"CT_UpDownBars\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ScatterStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"line\"/>\n      <xsd:enumeration value=\"lineMarker\"/>\n      <xsd:enumeration value=\"marker\"/>\n      <xsd:enumeration value=\"smooth\"/>\n      <xsd:enumeration value=\"smoothMarker\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ScatterStyle\">\n    <xsd:attribute name=\"val\" type=\"ST_ScatterStyle\" default=\"marker\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ScatterChart\">\n    <xsd:sequence>\n      <xsd:element name=\"scatterStyle\" type=\"CT_ScatterStyle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_ScatterSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RadarStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"standard\"/>\n      <xsd:enumeration value=\"marker\"/>\n      <xsd:enumeration value=\"filled\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_RadarStyle\">\n    <xsd:attribute name=\"val\" type=\"ST_RadarStyle\" default=\"standard\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RadarChart\">\n    <xsd:sequence>\n      <xsd:element name=\"radarStyle\" type=\"CT_RadarStyle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_RadarSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BarGrouping\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"percentStacked\"/>\n      <xsd:enumeration value=\"clustered\"/>\n      <xsd:enumeration value=\"standard\"/>\n      <xsd:enumeration value=\"stacked\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BarGrouping\">\n    <xsd:attribute name=\"val\" type=\"ST_BarGrouping\" default=\"clustered\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BarDir\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"bar\"/>\n      <xsd:enumeration value=\"col\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BarDir\">\n    <xsd:attribute name=\"val\" type=\"ST_BarDir\" default=\"col\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Shape\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"cone\"/>\n      <xsd:enumeration value=\"coneToMax\"/>\n      <xsd:enumeration value=\"box\"/>\n      <xsd:enumeration value=\"cylinder\"/>\n      <xsd:enumeration value=\"pyramid\"/>\n      <xsd:enumeration value=\"pyramidToMax\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Shape\">\n    <xsd:attribute name=\"val\" type=\"ST_Shape\" default=\"box\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_BarChartShared\">\n    <xsd:sequence>\n      <xsd:element name=\"barDir\" type=\"CT_BarDir\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grouping\" type=\"CT_BarGrouping\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_BarSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_BarChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_BarChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gapWidth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"overlap\" type=\"CT_Overlap\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"serLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Bar3DChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_BarChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gapWidth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gapDepth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shape\" type=\"CT_Shape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"3\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_AreaChartShared\">\n    <xsd:sequence>\n      <xsd:element name=\"grouping\" type=\"CT_Grouping\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_AreaSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dropLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_AreaChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_AreaChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Area3DChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_AreaChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gapDepth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"3\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_PieChartShared\">\n    <xsd:sequence>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_PieSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_PieChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_PieChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstSliceAng\" type=\"CT_FirstSliceAng\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Pie3DChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_PieChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DoughnutChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_PieChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstSliceAng\" type=\"CT_FirstSliceAng\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"holeSize\" type=\"CT_HoleSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_OfPieType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"pie\"/>\n      <xsd:enumeration value=\"bar\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_OfPieType\">\n    <xsd:attribute name=\"val\" type=\"ST_OfPieType\" default=\"pie\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OfPieChart\">\n    <xsd:sequence>\n      <xsd:element name=\"ofPieType\" type=\"CT_OfPieType\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_PieChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gapWidth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"splitType\" type=\"CT_SplitType\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"splitPos\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custSplit\" type=\"CT_CustSplit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"secondPieSize\" type=\"CT_SecondPieSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"serLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BubbleChart\">\n    <xsd:sequence>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_BubbleSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bubble3D\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bubbleScale\" type=\"CT_BubbleScale\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showNegBubbles\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sizeRepresents\" type=\"CT_SizeRepresents\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BandFmt\">\n    <xsd:sequence>\n      <xsd:element name=\"idx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BandFmts\">\n    <xsd:sequence>\n      <xsd:element name=\"bandFmt\" type=\"CT_BandFmt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_SurfaceChartShared\">\n    <xsd:sequence>\n      <xsd:element name=\"wireframe\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_SurfaceSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"bandFmts\" type=\"CT_BandFmts\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_SurfaceChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SurfaceChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"3\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Surface3DChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SurfaceChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"3\" maxOccurs=\"3\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AxPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"t\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_AxPos\">\n    <xsd:attribute name=\"val\" type=\"ST_AxPos\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Crosses\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"autoZero\"/>\n      <xsd:enumeration value=\"max\"/>\n      <xsd:enumeration value=\"min\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Crosses\">\n    <xsd:attribute name=\"val\" type=\"ST_Crosses\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CrossBetween\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"between\"/>\n      <xsd:enumeration value=\"midCat\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_CrossBetween\">\n    <xsd:attribute name=\"val\" type=\"ST_CrossBetween\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TickMark\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"cross\"/>\n      <xsd:enumeration value=\"in\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"out\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TickMark\">\n    <xsd:attribute name=\"val\" type=\"ST_TickMark\" default=\"cross\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TickLblPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"high\"/>\n      <xsd:enumeration value=\"low\"/>\n      <xsd:enumeration value=\"nextTo\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TickLblPos\">\n    <xsd:attribute name=\"val\" type=\"ST_TickLblPos\" default=\"nextTo\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Skip\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"1\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Skip\">\n    <xsd:attribute name=\"val\" type=\"ST_Skip\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TimeUnit\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"days\"/>\n      <xsd:enumeration value=\"months\"/>\n      <xsd:enumeration value=\"years\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TimeUnit\">\n    <xsd:attribute name=\"val\" type=\"ST_TimeUnit\" default=\"days\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AxisUnit\">\n    <xsd:restriction base=\"xsd:double\">\n      <xsd:minExclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_AxisUnit\">\n    <xsd:attribute name=\"val\" type=\"ST_AxisUnit\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BuiltInUnit\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"hundreds\"/>\n      <xsd:enumeration value=\"thousands\"/>\n      <xsd:enumeration value=\"tenThousands\"/>\n      <xsd:enumeration value=\"hundredThousands\"/>\n      <xsd:enumeration value=\"millions\"/>\n      <xsd:enumeration value=\"tenMillions\"/>\n      <xsd:enumeration value=\"hundredMillions\"/>\n      <xsd:enumeration value=\"billions\"/>\n      <xsd:enumeration value=\"trillions\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BuiltInUnit\">\n    <xsd:attribute name=\"val\" type=\"ST_BuiltInUnit\" default=\"thousands\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PictureFormat\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"stretch\"/>\n      <xsd:enumeration value=\"stack\"/>\n      <xsd:enumeration value=\"stackScale\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PictureFormat\">\n    <xsd:attribute name=\"val\" type=\"ST_PictureFormat\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PictureStackUnit\">\n    <xsd:restriction base=\"xsd:double\">\n      <xsd:minExclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PictureStackUnit\">\n    <xsd:attribute name=\"val\" type=\"ST_PictureStackUnit\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PictureOptions\">\n    <xsd:sequence>\n      <xsd:element name=\"applyToFront\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"applyToSides\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"applyToEnd\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pictureFormat\" type=\"CT_PictureFormat\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pictureStackUnit\" type=\"CT_PictureStackUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DispUnitsLbl\">\n    <xsd:sequence>\n      <xsd:element name=\"layout\" type=\"CT_Layout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tx\" type=\"CT_Tx\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DispUnits\">\n    <xsd:sequence>\n      <xsd:choice>\n        <xsd:element name=\"custUnit\" type=\"CT_Double\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"builtInUnit\" type=\"CT_BuiltInUnit\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"dispUnitsLbl\" type=\"CT_DispUnitsLbl\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Orientation\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"maxMin\"/>\n      <xsd:enumeration value=\"minMax\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Orientation\">\n    <xsd:attribute name=\"val\" type=\"ST_Orientation\" default=\"minMax\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LogBase\">\n    <xsd:restriction base=\"xsd:double\">\n      <xsd:minInclusive value=\"2\"/>\n      <xsd:maxInclusive value=\"1000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LogBase\">\n    <xsd:attribute name=\"val\" type=\"ST_LogBase\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Scaling\">\n    <xsd:sequence>\n      <xsd:element name=\"logBase\" type=\"CT_LogBase\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"orientation\" type=\"CT_Orientation\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"max\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"min\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LblOffset\">\n    <xsd:union memberTypes=\"ST_LblOffsetPercent ST_LblOffsetUShort\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LblOffsetPercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(([0-9])|([1-9][0-9])|([1-9][0-9][0-9])|1000)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LblOffsetUShort\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"1000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LblOffset\">\n    <xsd:attribute name=\"val\" type=\"ST_LblOffset\" default=\"100%\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_AxShared\">\n    <xsd:sequence>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scaling\" type=\"CT_Scaling\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"delete\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axPos\" type=\"CT_AxPos\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"majorGridlines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minorGridlines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"title\" type=\"CT_Title\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"majorTickMark\" type=\"CT_TickMark\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minorTickMark\" type=\"CT_TickMark\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tickLblPos\" type=\"CT_TickLblPos\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"crossAx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n        <xsd:element name=\"crosses\" type=\"CT_Crosses\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"crossesAt\" type=\"CT_Double\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_CatAx\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_AxShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"auto\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lblAlgn\" type=\"CT_LblAlgn\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lblOffset\" type=\"CT_LblOffset\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tickLblSkip\" type=\"CT_Skip\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tickMarkSkip\" type=\"CT_Skip\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"noMultiLvlLbl\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DateAx\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_AxShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"auto\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lblOffset\" type=\"CT_LblOffset\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"baseTimeUnit\" type=\"CT_TimeUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"majorUnit\" type=\"CT_AxisUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"majorTimeUnit\" type=\"CT_TimeUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minorUnit\" type=\"CT_AxisUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minorTimeUnit\" type=\"CT_TimeUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SerAx\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_AxShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tickLblSkip\" type=\"CT_Skip\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tickMarkSkip\" type=\"CT_Skip\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ValAx\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_AxShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"crossBetween\" type=\"CT_CrossBetween\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"majorUnit\" type=\"CT_AxisUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minorUnit\" type=\"CT_AxisUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dispUnits\" type=\"CT_DispUnits\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PlotArea\">\n    <xsd:sequence>\n      <xsd:element name=\"layout\" type=\"CT_Layout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"areaChart\" type=\"CT_AreaChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"area3DChart\" type=\"CT_Area3DChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"lineChart\" type=\"CT_LineChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"line3DChart\" type=\"CT_Line3DChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"stockChart\" type=\"CT_StockChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"radarChart\" type=\"CT_RadarChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"scatterChart\" type=\"CT_ScatterChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"pieChart\" type=\"CT_PieChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"pie3DChart\" type=\"CT_Pie3DChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"doughnutChart\" type=\"CT_DoughnutChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"barChart\" type=\"CT_BarChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"bar3DChart\" type=\"CT_Bar3DChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"ofPieChart\" type=\"CT_OfPieChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"surfaceChart\" type=\"CT_SurfaceChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"surface3DChart\" type=\"CT_Surface3DChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"bubbleChart\" type=\"CT_BubbleChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"valAx\" type=\"CT_ValAx\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"catAx\" type=\"CT_CatAx\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"dateAx\" type=\"CT_DateAx\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"serAx\" type=\"CT_SerAx\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"dTable\" type=\"CT_DTable\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotFmt\">\n    <xsd:sequence>\n      <xsd:element name=\"idx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"marker\" type=\"CT_Marker\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dLbl\" type=\"CT_DLbl\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotFmts\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotFmt\" type=\"CT_PivotFmt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LegendPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"tr\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"t\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LegendPos\">\n    <xsd:attribute name=\"val\" type=\"ST_LegendPos\" default=\"r\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_LegendEntryData\">\n    <xsd:sequence>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_LegendEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"idx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice>\n        <xsd:element name=\"delete\" type=\"CT_Boolean\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:group ref=\"EG_LegendEntryData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Legend\">\n    <xsd:sequence>\n      <xsd:element name=\"legendPos\" type=\"CT_LegendPos\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legendEntry\" type=\"CT_LegendEntry\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"layout\" type=\"CT_Layout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"overlay\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DispBlanksAs\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"span\"/>\n      <xsd:enumeration value=\"gap\"/>\n      <xsd:enumeration value=\"zero\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DispBlanksAs\">\n    <xsd:attribute name=\"val\" type=\"ST_DispBlanksAs\" default=\"zero\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Chart\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_Title\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"autoTitleDeleted\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pivotFmts\" type=\"CT_PivotFmts\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"view3D\" type=\"CT_View3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"floor\" type=\"CT_Surface\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sideWall\" type=\"CT_Surface\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"backWall\" type=\"CT_Surface\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"plotArea\" type=\"CT_PlotArea\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legend\" type=\"CT_Legend\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"plotVisOnly\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dispBlanksAs\" type=\"CT_DispBlanksAs\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showDLblsOverMax\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Style\">\n    <xsd:restriction base=\"xsd:unsignedByte\">\n      <xsd:minInclusive value=\"1\"/>\n      <xsd:maxInclusive value=\"48\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Style\">\n    <xsd:attribute name=\"val\" type=\"ST_Style\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotSource\">\n    <xsd:sequence>\n      <xsd:element name=\"name\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fmtId\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Protection\">\n    <xsd:sequence>\n      <xsd:element name=\"chartObject\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"data\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"formatting\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"selection\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"userInterface\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HeaderFooter\">\n    <xsd:sequence>\n      <xsd:element name=\"oddHeader\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oddFooter\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"evenHeader\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"evenFooter\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstHeader\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstFooter\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"alignWithMargins\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"differentOddEven\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"differentFirst\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageMargins\">\n    <xsd:attribute name=\"l\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"r\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"t\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"header\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"footer\" type=\"xsd:double\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PageSetupOrientation\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"portrait\"/>\n      <xsd:enumeration value=\"landscape\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ExternalData\">\n    <xsd:sequence>\n      <xsd:element name=\"autoUpdate\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageSetup\">\n    <xsd:attribute name=\"paperSize\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"paperHeight\" type=\"s:ST_PositiveUniversalMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"paperWidth\" type=\"s:ST_PositiveUniversalMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"firstPageNumber\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"orientation\" type=\"ST_PageSetupOrientation\" use=\"optional\"\n      default=\"default\"/>\n    <xsd:attribute name=\"blackAndWhite\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"draft\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"useFirstPageNumber\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"horizontalDpi\" type=\"xsd:int\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"verticalDpi\" type=\"xsd:int\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"copies\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PrintSettings\">\n    <xsd:sequence>\n      <xsd:element name=\"headerFooter\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageMargins\" type=\"CT_PageMargins\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageSetup\" type=\"CT_PageSetup\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawingHF\" type=\"CT_RelId\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartSpace\">\n    <xsd:sequence>\n      <xsd:element name=\"date1904\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lang\" type=\"CT_TextLanguageID\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"roundedCorners\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_Style\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrMapOvr\" type=\"a:CT_ColorMapping\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pivotSource\" type=\"CT_PivotSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"protection\" type=\"CT_Protection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"chart\" type=\"CT_Chart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"externalData\" type=\"CT_ExternalData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"printSettings\" type=\"CT_PrintSettings\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"userShapes\" type=\"CT_RelId\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"chartSpace\" type=\"CT_ChartSpace\"/>\n  <xsd:element name=\"userShapes\" type=\"cdr:CT_Drawing\"/>\n  <xsd:element name=\"chart\" type=\"CT_RelId\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/chartDrawing\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/chartDrawing\"\n  elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:complexType name=\"CT_ShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvSpPr\" type=\"a:CT_NonVisualDrawingShapeProps\" minOccurs=\"1\" maxOccurs=\"1\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Shape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvSpPr\" type=\"CT_ShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txBody\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"textlink\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fLocksText\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConnectorNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvCxnSpPr\" type=\"a:CT_NonVisualConnectorProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Connector\">\n    <xsd:sequence>\n      <xsd:element name=\"nvCxnSpPr\" type=\"CT_ConnectorNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PictureNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvPicPr\" type=\"a:CT_NonVisualPictureProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Picture\">\n    <xsd:sequence>\n      <xsd:element name=\"nvPicPr\" type=\"CT_PictureNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blipFill\" type=\"a:CT_BlipFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicFrameNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGraphicFramePr\" type=\"a:CT_NonVisualGraphicFrameProperties\"\n        minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicFrame\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGraphicFramePr\" type=\"CT_GraphicFrameNonVisual\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"a:CT_Transform2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"a:graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGrpSpPr\" type=\"a:CT_NonVisualGroupDrawingShapeProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGrpSpPr\" type=\"CT_GroupShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grpSpPr\" type=\"a:CT_GroupShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"sp\" type=\"CT_Shape\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_GroupShape\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicFrame\"/>\n        <xsd:element name=\"cxnSp\" type=\"CT_Connector\"/>\n        <xsd:element name=\"pic\" type=\"CT_Picture\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ObjectChoices\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"sp\" type=\"CT_Shape\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_GroupShape\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicFrame\"/>\n        <xsd:element name=\"cxnSp\" type=\"CT_Connector\"/>\n        <xsd:element name=\"pic\" type=\"CT_Picture\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_MarkerCoordinate\">\n    <xsd:restriction base=\"xsd:double\">\n      <xsd:minInclusive value=\"0.0\"/>\n      <xsd:maxInclusive value=\"1.0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Marker\">\n    <xsd:sequence>\n      <xsd:element name=\"x\" type=\"ST_MarkerCoordinate\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"y\" type=\"ST_MarkerCoordinate\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RelSizeAnchor\">\n    <xsd:sequence>\n      <xsd:element name=\"from\" type=\"CT_Marker\"/>\n      <xsd:element name=\"to\" type=\"CT_Marker\"/>\n      <xsd:group ref=\"EG_ObjectChoices\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AbsSizeAnchor\">\n    <xsd:sequence>\n      <xsd:element name=\"from\" type=\"CT_Marker\"/>\n      <xsd:element name=\"ext\" type=\"a:CT_PositiveSize2D\"/>\n      <xsd:group ref=\"EG_ObjectChoices\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Anchor\">\n    <xsd:choice>\n      <xsd:element name=\"relSizeAnchor\" type=\"CT_RelSizeAnchor\"/>\n      <xsd:element name=\"absSizeAnchor\" type=\"CT_AbsSizeAnchor\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_Drawing\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_Anchor\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/diagram\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/diagram\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"unqualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:complexType name=\"CT_CTName\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CTDescription\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CTCategory\">\n    <xsd:attribute name=\"type\" type=\"xsd:anyURI\" use=\"required\"/>\n    <xsd:attribute name=\"pri\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CTCategories\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"cat\" type=\"CT_CTCategory\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ClrAppMethod\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"span\"/>\n      <xsd:enumeration value=\"cycle\"/>\n      <xsd:enumeration value=\"repeat\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HueDir\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"cw\"/>\n      <xsd:enumeration value=\"ccw\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Colors\">\n    <xsd:sequence>\n      <xsd:group ref=\"a:EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"meth\" type=\"ST_ClrAppMethod\" use=\"optional\" default=\"span\"/>\n    <xsd:attribute name=\"hueDir\" type=\"ST_HueDir\" use=\"optional\" default=\"cw\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CTStyleLabel\">\n    <xsd:sequence>\n      <xsd:element name=\"fillClrLst\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"linClrLst\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"effectClrLst\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txLinClrLst\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txFillClrLst\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txEffectClrLst\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorTransform\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_CTName\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"desc\" type=\"CT_CTDescription\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"catLst\" type=\"CT_CTCategories\" minOccurs=\"0\"/>\n      <xsd:element name=\"styleLbl\" type=\"CT_CTStyleLabel\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueId\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"minVer\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:element name=\"colorsDef\" type=\"CT_ColorTransform\"/>\n  <xsd:complexType name=\"CT_ColorTransformHeader\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_CTName\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"desc\" type=\"CT_CTDescription\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"catLst\" type=\"CT_CTCategories\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueId\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"minVer\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"resId\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:element name=\"colorsDefHdr\" type=\"CT_ColorTransformHeader\"/>\n  <xsd:complexType name=\"CT_ColorTransformHeaderLst\">\n    <xsd:sequence>\n      <xsd:element name=\"colorsDefHdr\" type=\"CT_ColorTransformHeader\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"colorsDefHdrLst\" type=\"CT_ColorTransformHeaderLst\"/>\n  <xsd:simpleType name=\"ST_PtType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"node\"/>\n      <xsd:enumeration value=\"asst\"/>\n      <xsd:enumeration value=\"doc\"/>\n      <xsd:enumeration value=\"pres\"/>\n      <xsd:enumeration value=\"parTrans\"/>\n      <xsd:enumeration value=\"sibTrans\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Pt\">\n    <xsd:sequence>\n      <xsd:element name=\"prSet\" type=\"CT_ElemPropSet\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"t\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"modelId\" type=\"ST_ModelId\" use=\"required\"/>\n    <xsd:attribute name=\"type\" type=\"ST_PtType\" use=\"optional\" default=\"node\"/>\n    <xsd:attribute name=\"cxnId\" type=\"ST_ModelId\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PtList\">\n    <xsd:sequence>\n      <xsd:element name=\"pt\" type=\"CT_Pt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CxnType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"parOf\"/>\n      <xsd:enumeration value=\"presOf\"/>\n      <xsd:enumeration value=\"presParOf\"/>\n      <xsd:enumeration value=\"unknownRelationship\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Cxn\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"modelId\" type=\"ST_ModelId\" use=\"required\"/>\n    <xsd:attribute name=\"type\" type=\"ST_CxnType\" use=\"optional\" default=\"parOf\"/>\n    <xsd:attribute name=\"srcId\" type=\"ST_ModelId\" use=\"required\"/>\n    <xsd:attribute name=\"destId\" type=\"ST_ModelId\" use=\"required\"/>\n    <xsd:attribute name=\"srcOrd\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"destOrd\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"parTransId\" type=\"ST_ModelId\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"sibTransId\" type=\"ST_ModelId\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"presId\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CxnList\">\n    <xsd:sequence>\n      <xsd:element name=\"cxn\" type=\"CT_Cxn\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataModel\">\n    <xsd:sequence>\n      <xsd:element name=\"ptLst\" type=\"CT_PtList\"/>\n      <xsd:element name=\"cxnLst\" type=\"CT_CxnList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bg\" type=\"a:CT_BackgroundFormatting\" minOccurs=\"0\"/>\n      <xsd:element name=\"whole\" type=\"a:CT_WholeE2oFormatting\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"dataModel\" type=\"CT_DataModel\"/>\n  <xsd:attributeGroup name=\"AG_IteratorAttributes\">\n    <xsd:attribute name=\"axis\" type=\"ST_AxisTypes\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"ptType\" type=\"ST_ElementTypes\" use=\"optional\" default=\"all\"/>\n    <xsd:attribute name=\"hideLastTrans\" type=\"ST_Booleans\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"st\" type=\"ST_Ints\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"cnt\" type=\"ST_UnsignedInts\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"step\" type=\"ST_Ints\" use=\"optional\" default=\"1\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_ConstraintAttributes\">\n    <xsd:attribute name=\"type\" type=\"ST_ConstraintType\" use=\"required\"/>\n    <xsd:attribute name=\"for\" type=\"ST_ConstraintRelationship\" use=\"optional\" default=\"self\"/>\n    <xsd:attribute name=\"forName\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"ptType\" type=\"ST_ElementType\" use=\"optional\" default=\"all\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_ConstraintRefAttributes\">\n    <xsd:attribute name=\"refType\" type=\"ST_ConstraintType\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"refFor\" type=\"ST_ConstraintRelationship\" use=\"optional\" default=\"self\"/>\n    <xsd:attribute name=\"refForName\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"refPtType\" type=\"ST_ElementType\" use=\"optional\" default=\"all\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_Constraint\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_ConstraintAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_ConstraintRefAttributes\"/>\n    <xsd:attribute name=\"op\" type=\"ST_BoolOperator\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"fact\" type=\"xsd:double\" use=\"optional\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Constraints\">\n    <xsd:sequence>\n      <xsd:element name=\"constr\" type=\"CT_Constraint\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumericRule\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_ConstraintAttributes\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"optional\" default=\"NaN\"/>\n    <xsd:attribute name=\"fact\" type=\"xsd:double\" use=\"optional\" default=\"NaN\"/>\n    <xsd:attribute name=\"max\" type=\"xsd:double\" use=\"optional\" default=\"NaN\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rules\">\n    <xsd:sequence>\n      <xsd:element name=\"rule\" type=\"CT_NumericRule\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PresentationOf\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_IteratorAttributes\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LayoutShapeType\" final=\"restriction\">\n    <xsd:union memberTypes=\"a:ST_ShapeType ST_OutputShapeType\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Index1\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"1\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Adj\">\n    <xsd:attribute name=\"idx\" type=\"ST_Index1\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AdjLst\">\n    <xsd:sequence>\n      <xsd:element name=\"adj\" type=\"CT_Adj\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Shape\">\n    <xsd:sequence>\n      <xsd:element name=\"adjLst\" type=\"CT_AdjLst\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rot\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"type\" type=\"ST_LayoutShapeType\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute ref=\"r:blip\" use=\"optional\"/>\n    <xsd:attribute name=\"zOrderOff\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"hideGeom\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"lkTxEntry\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"blipPhldr\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Parameter\">\n    <xsd:attribute name=\"type\" type=\"ST_ParameterId\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"ST_ParameterVal\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Algorithm\">\n    <xsd:sequence>\n      <xsd:element name=\"param\" type=\"CT_Parameter\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_AlgorithmType\" use=\"required\"/>\n    <xsd:attribute name=\"rev\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LayoutNode\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"alg\" type=\"CT_Algorithm\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shape\" type=\"CT_Shape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"presOf\" type=\"CT_PresentationOf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"constrLst\" type=\"CT_Constraints\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ruleLst\" type=\"CT_Rules\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"varLst\" type=\"CT_LayoutVariablePropertySet\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"forEach\" type=\"CT_ForEach\"/>\n      <xsd:element name=\"layoutNode\" type=\"CT_LayoutNode\"/>\n      <xsd:element name=\"choose\" type=\"CT_Choose\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"styleLbl\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"chOrder\" type=\"ST_ChildOrderType\" use=\"optional\" default=\"b\"/>\n    <xsd:attribute name=\"moveWith\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ForEach\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"alg\" type=\"CT_Algorithm\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shape\" type=\"CT_Shape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"presOf\" type=\"CT_PresentationOf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"constrLst\" type=\"CT_Constraints\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ruleLst\" type=\"CT_Rules\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"forEach\" type=\"CT_ForEach\"/>\n      <xsd:element name=\"layoutNode\" type=\"CT_LayoutNode\"/>\n      <xsd:element name=\"choose\" type=\"CT_Choose\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"ref\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attributeGroup ref=\"AG_IteratorAttributes\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_When\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"alg\" type=\"CT_Algorithm\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shape\" type=\"CT_Shape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"presOf\" type=\"CT_PresentationOf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"constrLst\" type=\"CT_Constraints\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ruleLst\" type=\"CT_Rules\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"forEach\" type=\"CT_ForEach\"/>\n      <xsd:element name=\"layoutNode\" type=\"CT_LayoutNode\"/>\n      <xsd:element name=\"choose\" type=\"CT_Choose\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attributeGroup ref=\"AG_IteratorAttributes\"/>\n    <xsd:attribute name=\"func\" type=\"ST_FunctionType\" use=\"required\"/>\n    <xsd:attribute name=\"arg\" type=\"ST_FunctionArgument\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"op\" type=\"ST_FunctionOperator\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"ST_FunctionValue\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Otherwise\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"alg\" type=\"CT_Algorithm\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shape\" type=\"CT_Shape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"presOf\" type=\"CT_PresentationOf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"constrLst\" type=\"CT_Constraints\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ruleLst\" type=\"CT_Rules\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"forEach\" type=\"CT_ForEach\"/>\n      <xsd:element name=\"layoutNode\" type=\"CT_LayoutNode\"/>\n      <xsd:element name=\"choose\" type=\"CT_Choose\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Choose\">\n    <xsd:sequence>\n      <xsd:element name=\"if\" type=\"CT_When\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"else\" type=\"CT_Otherwise\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SampleData\">\n    <xsd:sequence>\n      <xsd:element name=\"dataModel\" type=\"CT_DataModel\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"useDef\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Category\">\n    <xsd:attribute name=\"type\" type=\"xsd:anyURI\" use=\"required\"/>\n    <xsd:attribute name=\"pri\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Categories\">\n    <xsd:sequence>\n      <xsd:element name=\"cat\" type=\"CT_Category\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Name\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Description\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DiagramDefinition\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_Name\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"desc\" type=\"CT_Description\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"catLst\" type=\"CT_Categories\" minOccurs=\"0\"/>\n      <xsd:element name=\"sampData\" type=\"CT_SampleData\" minOccurs=\"0\"/>\n      <xsd:element name=\"styleData\" type=\"CT_SampleData\" minOccurs=\"0\"/>\n      <xsd:element name=\"clrData\" type=\"CT_SampleData\" minOccurs=\"0\"/>\n      <xsd:element name=\"layoutNode\" type=\"CT_LayoutNode\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueId\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"minVer\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"defStyle\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:element name=\"layoutDef\" type=\"CT_DiagramDefinition\"/>\n  <xsd:complexType name=\"CT_DiagramDefinitionHeader\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_Name\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"desc\" type=\"CT_Description\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"catLst\" type=\"CT_Categories\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueId\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"minVer\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"defStyle\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"resId\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:element name=\"layoutDefHdr\" type=\"CT_DiagramDefinitionHeader\"/>\n  <xsd:complexType name=\"CT_DiagramDefinitionHeaderLst\">\n    <xsd:sequence>\n      <xsd:element name=\"layoutDefHdr\" type=\"CT_DiagramDefinitionHeader\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"layoutDefHdrLst\" type=\"CT_DiagramDefinitionHeaderLst\"/>\n  <xsd:complexType name=\"CT_RelIds\">\n    <xsd:attribute ref=\"r:dm\" use=\"required\"/>\n    <xsd:attribute ref=\"r:lo\" use=\"required\"/>\n    <xsd:attribute ref=\"r:qs\" use=\"required\"/>\n    <xsd:attribute ref=\"r:cs\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"relIds\" type=\"CT_RelIds\"/>\n  <xsd:simpleType name=\"ST_ParameterVal\">\n    <xsd:union\n      memberTypes=\"ST_DiagramHorizontalAlignment ST_VerticalAlignment ST_ChildDirection ST_ChildAlignment ST_SecondaryChildAlignment ST_LinearDirection ST_SecondaryLinearDirection ST_StartingElement ST_BendPoint ST_ConnectorRouting ST_ArrowheadStyle ST_ConnectorDimension ST_RotationPath ST_CenterShapeMapping ST_NodeHorizontalAlignment ST_NodeVerticalAlignment ST_FallbackDimension ST_TextDirection ST_PyramidAccentPosition ST_PyramidAccentTextMargin ST_TextBlockDirection ST_TextAnchorHorizontal ST_TextAnchorVertical ST_DiagramTextAlignment ST_AutoTextRotation ST_GrowDirection ST_FlowDirection ST_ContinueDirection ST_Breakpoint ST_Offset ST_HierarchyAlignment xsd:int xsd:double xsd:boolean xsd:string ST_ConnectorPoint\"\n    />\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ModelId\">\n    <xsd:union memberTypes=\"xsd:int s:ST_Guid\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PrSetCustVal\">\n    <xsd:union memberTypes=\"s:ST_Percentage xsd:int\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ElemPropSet\">\n    <xsd:sequence>\n      <xsd:element name=\"presLayoutVars\" type=\"CT_LayoutVariablePropertySet\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"presAssocID\" type=\"ST_ModelId\" use=\"optional\"/>\n    <xsd:attribute name=\"presName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"presStyleLbl\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"presStyleIdx\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"presStyleCnt\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"loTypeId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"loCatId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"qsTypeId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"qsCatId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"csTypeId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"csCatId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"coherent3DOff\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"phldrT\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"phldr\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"custAng\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"custFlipVert\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"custFlipHor\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"custSzX\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"custSzY\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"custScaleX\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custScaleY\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custT\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"custLinFactX\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custLinFactY\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custLinFactNeighborX\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custLinFactNeighborY\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custRadScaleRad\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custRadScaleInc\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Direction\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"norm\"/>\n      <xsd:enumeration value=\"rev\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HierBranchStyle\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"hang\"/>\n      <xsd:enumeration value=\"std\"/>\n      <xsd:enumeration value=\"init\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AnimOneStr\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"one\"/>\n      <xsd:enumeration value=\"branch\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AnimLvlStr\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"lvl\"/>\n      <xsd:enumeration value=\"ctr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_OrgChart\">\n    <xsd:attribute name=\"val\" type=\"xsd:boolean\" default=\"false\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_NodeCount\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"-1\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ChildMax\">\n    <xsd:attribute name=\"val\" type=\"ST_NodeCount\" default=\"-1\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChildPref\">\n    <xsd:attribute name=\"val\" type=\"ST_NodeCount\" default=\"-1\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BulletEnabled\">\n    <xsd:attribute name=\"val\" type=\"xsd:boolean\" default=\"false\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Direction\">\n    <xsd:attribute name=\"val\" type=\"ST_Direction\" default=\"norm\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HierBranchStyle\">\n    <xsd:attribute name=\"val\" type=\"ST_HierBranchStyle\" default=\"std\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AnimOne\">\n    <xsd:attribute name=\"val\" type=\"ST_AnimOneStr\" default=\"one\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AnimLvl\">\n    <xsd:attribute name=\"val\" type=\"ST_AnimLvlStr\" default=\"none\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ResizeHandlesStr\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"exact\"/>\n      <xsd:enumeration value=\"rel\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ResizeHandles\">\n    <xsd:attribute name=\"val\" type=\"ST_ResizeHandlesStr\" default=\"rel\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LayoutVariablePropertySet\">\n    <xsd:sequence>\n      <xsd:element name=\"orgChart\" type=\"CT_OrgChart\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"chMax\" type=\"CT_ChildMax\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"chPref\" type=\"CT_ChildPref\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bulletEnabled\" type=\"CT_BulletEnabled\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dir\" type=\"CT_Direction\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hierBranch\" type=\"CT_HierBranchStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"animOne\" type=\"CT_AnimOne\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"animLvl\" type=\"CT_AnimLvl\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"resizeHandles\" type=\"CT_ResizeHandles\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SDName\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SDDescription\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SDCategory\">\n    <xsd:attribute name=\"type\" type=\"xsd:anyURI\" use=\"required\"/>\n    <xsd:attribute name=\"pri\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SDCategories\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"cat\" type=\"CT_SDCategory\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextProps\">\n    <xsd:sequence>\n      <xsd:group ref=\"a:EG_Text3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StyleLabel\">\n    <xsd:sequence>\n      <xsd:element name=\"scene3d\" type=\"a:CT_Scene3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sp3d\" type=\"a:CT_Shape3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"CT_TextProps\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StyleDefinition\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_SDName\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"desc\" type=\"CT_SDDescription\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"catLst\" type=\"CT_SDCategories\" minOccurs=\"0\"/>\n      <xsd:element name=\"scene3d\" type=\"a:CT_Scene3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"styleLbl\" type=\"CT_StyleLabel\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueId\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"minVer\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:element name=\"styleDef\" type=\"CT_StyleDefinition\"/>\n  <xsd:complexType name=\"CT_StyleDefinitionHeader\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_SDName\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"desc\" type=\"CT_SDDescription\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"catLst\" type=\"CT_SDCategories\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueId\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"minVer\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"resId\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:element name=\"styleDefHdr\" type=\"CT_StyleDefinitionHeader\"/>\n  <xsd:complexType name=\"CT_StyleDefinitionHeaderLst\">\n    <xsd:sequence>\n      <xsd:element name=\"styleDefHdr\" type=\"CT_StyleDefinitionHeader\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"styleDefHdrLst\" type=\"CT_StyleDefinitionHeaderLst\"/>\n  <xsd:simpleType name=\"ST_AlgorithmType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"composite\"/>\n      <xsd:enumeration value=\"conn\"/>\n      <xsd:enumeration value=\"cycle\"/>\n      <xsd:enumeration value=\"hierChild\"/>\n      <xsd:enumeration value=\"hierRoot\"/>\n      <xsd:enumeration value=\"pyra\"/>\n      <xsd:enumeration value=\"lin\"/>\n      <xsd:enumeration value=\"sp\"/>\n      <xsd:enumeration value=\"tx\"/>\n      <xsd:enumeration value=\"snake\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AxisType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"self\"/>\n      <xsd:enumeration value=\"ch\"/>\n      <xsd:enumeration value=\"des\"/>\n      <xsd:enumeration value=\"desOrSelf\"/>\n      <xsd:enumeration value=\"par\"/>\n      <xsd:enumeration value=\"ancst\"/>\n      <xsd:enumeration value=\"ancstOrSelf\"/>\n      <xsd:enumeration value=\"followSib\"/>\n      <xsd:enumeration value=\"precedSib\"/>\n      <xsd:enumeration value=\"follow\"/>\n      <xsd:enumeration value=\"preced\"/>\n      <xsd:enumeration value=\"root\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AxisTypes\">\n    <xsd:list itemType=\"ST_AxisType\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BoolOperator\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"equ\"/>\n      <xsd:enumeration value=\"gte\"/>\n      <xsd:enumeration value=\"lte\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ChildOrderType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"t\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConstraintType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"alignOff\"/>\n      <xsd:enumeration value=\"begMarg\"/>\n      <xsd:enumeration value=\"bendDist\"/>\n      <xsd:enumeration value=\"begPad\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"bMarg\"/>\n      <xsd:enumeration value=\"bOff\"/>\n      <xsd:enumeration value=\"ctrX\"/>\n      <xsd:enumeration value=\"ctrXOff\"/>\n      <xsd:enumeration value=\"ctrY\"/>\n      <xsd:enumeration value=\"ctrYOff\"/>\n      <xsd:enumeration value=\"connDist\"/>\n      <xsd:enumeration value=\"diam\"/>\n      <xsd:enumeration value=\"endMarg\"/>\n      <xsd:enumeration value=\"endPad\"/>\n      <xsd:enumeration value=\"h\"/>\n      <xsd:enumeration value=\"hArH\"/>\n      <xsd:enumeration value=\"hOff\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"lMarg\"/>\n      <xsd:enumeration value=\"lOff\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"rMarg\"/>\n      <xsd:enumeration value=\"rOff\"/>\n      <xsd:enumeration value=\"primFontSz\"/>\n      <xsd:enumeration value=\"pyraAcctRatio\"/>\n      <xsd:enumeration value=\"secFontSz\"/>\n      <xsd:enumeration value=\"sibSp\"/>\n      <xsd:enumeration value=\"secSibSp\"/>\n      <xsd:enumeration value=\"sp\"/>\n      <xsd:enumeration value=\"stemThick\"/>\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"tMarg\"/>\n      <xsd:enumeration value=\"tOff\"/>\n      <xsd:enumeration value=\"userA\"/>\n      <xsd:enumeration value=\"userB\"/>\n      <xsd:enumeration value=\"userC\"/>\n      <xsd:enumeration value=\"userD\"/>\n      <xsd:enumeration value=\"userE\"/>\n      <xsd:enumeration value=\"userF\"/>\n      <xsd:enumeration value=\"userG\"/>\n      <xsd:enumeration value=\"userH\"/>\n      <xsd:enumeration value=\"userI\"/>\n      <xsd:enumeration value=\"userJ\"/>\n      <xsd:enumeration value=\"userK\"/>\n      <xsd:enumeration value=\"userL\"/>\n      <xsd:enumeration value=\"userM\"/>\n      <xsd:enumeration value=\"userN\"/>\n      <xsd:enumeration value=\"userO\"/>\n      <xsd:enumeration value=\"userP\"/>\n      <xsd:enumeration value=\"userQ\"/>\n      <xsd:enumeration value=\"userR\"/>\n      <xsd:enumeration value=\"userS\"/>\n      <xsd:enumeration value=\"userT\"/>\n      <xsd:enumeration value=\"userU\"/>\n      <xsd:enumeration value=\"userV\"/>\n      <xsd:enumeration value=\"userW\"/>\n      <xsd:enumeration value=\"userX\"/>\n      <xsd:enumeration value=\"userY\"/>\n      <xsd:enumeration value=\"userZ\"/>\n      <xsd:enumeration value=\"w\"/>\n      <xsd:enumeration value=\"wArH\"/>\n      <xsd:enumeration value=\"wOff\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConstraintRelationship\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"self\"/>\n      <xsd:enumeration value=\"ch\"/>\n      <xsd:enumeration value=\"des\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ElementType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"all\"/>\n      <xsd:enumeration value=\"doc\"/>\n      <xsd:enumeration value=\"node\"/>\n      <xsd:enumeration value=\"norm\"/>\n      <xsd:enumeration value=\"nonNorm\"/>\n      <xsd:enumeration value=\"asst\"/>\n      <xsd:enumeration value=\"nonAsst\"/>\n      <xsd:enumeration value=\"parTrans\"/>\n      <xsd:enumeration value=\"pres\"/>\n      <xsd:enumeration value=\"sibTrans\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ElementTypes\">\n    <xsd:list itemType=\"ST_ElementType\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ParameterId\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"horzAlign\"/>\n      <xsd:enumeration value=\"vertAlign\"/>\n      <xsd:enumeration value=\"chDir\"/>\n      <xsd:enumeration value=\"chAlign\"/>\n      <xsd:enumeration value=\"secChAlign\"/>\n      <xsd:enumeration value=\"linDir\"/>\n      <xsd:enumeration value=\"secLinDir\"/>\n      <xsd:enumeration value=\"stElem\"/>\n      <xsd:enumeration value=\"bendPt\"/>\n      <xsd:enumeration value=\"connRout\"/>\n      <xsd:enumeration value=\"begSty\"/>\n      <xsd:enumeration value=\"endSty\"/>\n      <xsd:enumeration value=\"dim\"/>\n      <xsd:enumeration value=\"rotPath\"/>\n      <xsd:enumeration value=\"ctrShpMap\"/>\n      <xsd:enumeration value=\"nodeHorzAlign\"/>\n      <xsd:enumeration value=\"nodeVertAlign\"/>\n      <xsd:enumeration value=\"fallback\"/>\n      <xsd:enumeration value=\"txDir\"/>\n      <xsd:enumeration value=\"pyraAcctPos\"/>\n      <xsd:enumeration value=\"pyraAcctTxMar\"/>\n      <xsd:enumeration value=\"txBlDir\"/>\n      <xsd:enumeration value=\"txAnchorHorz\"/>\n      <xsd:enumeration value=\"txAnchorVert\"/>\n      <xsd:enumeration value=\"txAnchorHorzCh\"/>\n      <xsd:enumeration value=\"txAnchorVertCh\"/>\n      <xsd:enumeration value=\"parTxLTRAlign\"/>\n      <xsd:enumeration value=\"parTxRTLAlign\"/>\n      <xsd:enumeration value=\"shpTxLTRAlignCh\"/>\n      <xsd:enumeration value=\"shpTxRTLAlignCh\"/>\n      <xsd:enumeration value=\"autoTxRot\"/>\n      <xsd:enumeration value=\"grDir\"/>\n      <xsd:enumeration value=\"flowDir\"/>\n      <xsd:enumeration value=\"contDir\"/>\n      <xsd:enumeration value=\"bkpt\"/>\n      <xsd:enumeration value=\"off\"/>\n      <xsd:enumeration value=\"hierAlign\"/>\n      <xsd:enumeration value=\"bkPtFixedVal\"/>\n      <xsd:enumeration value=\"stBulletLvl\"/>\n      <xsd:enumeration value=\"stAng\"/>\n      <xsd:enumeration value=\"spanAng\"/>\n      <xsd:enumeration value=\"ar\"/>\n      <xsd:enumeration value=\"lnSpPar\"/>\n      <xsd:enumeration value=\"lnSpAfParP\"/>\n      <xsd:enumeration value=\"lnSpCh\"/>\n      <xsd:enumeration value=\"lnSpAfChP\"/>\n      <xsd:enumeration value=\"rtShortDist\"/>\n      <xsd:enumeration value=\"alignTx\"/>\n      <xsd:enumeration value=\"pyraLvlNode\"/>\n      <xsd:enumeration value=\"pyraAcctBkgdNode\"/>\n      <xsd:enumeration value=\"pyraAcctTxNode\"/>\n      <xsd:enumeration value=\"srcNode\"/>\n      <xsd:enumeration value=\"dstNode\"/>\n      <xsd:enumeration value=\"begPts\"/>\n      <xsd:enumeration value=\"endPts\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Ints\">\n    <xsd:list itemType=\"xsd:int\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UnsignedInts\">\n    <xsd:list itemType=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Booleans\">\n    <xsd:list itemType=\"xsd:boolean\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FunctionType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"cnt\"/>\n      <xsd:enumeration value=\"pos\"/>\n      <xsd:enumeration value=\"revPos\"/>\n      <xsd:enumeration value=\"posEven\"/>\n      <xsd:enumeration value=\"posOdd\"/>\n      <xsd:enumeration value=\"var\"/>\n      <xsd:enumeration value=\"depth\"/>\n      <xsd:enumeration value=\"maxDepth\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FunctionOperator\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"equ\"/>\n      <xsd:enumeration value=\"neq\"/>\n      <xsd:enumeration value=\"gt\"/>\n      <xsd:enumeration value=\"lt\"/>\n      <xsd:enumeration value=\"gte\"/>\n      <xsd:enumeration value=\"lte\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DiagramHorizontalAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VerticalAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"mid\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ChildDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"horz\"/>\n      <xsd:enumeration value=\"vert\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ChildAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_SecondaryChildAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LinearDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"fromL\"/>\n      <xsd:enumeration value=\"fromR\"/>\n      <xsd:enumeration value=\"fromT\"/>\n      <xsd:enumeration value=\"fromB\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_SecondaryLinearDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"fromL\"/>\n      <xsd:enumeration value=\"fromR\"/>\n      <xsd:enumeration value=\"fromT\"/>\n      <xsd:enumeration value=\"fromB\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StartingElement\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"node\"/>\n      <xsd:enumeration value=\"trans\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RotationPath\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"alongPath\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CenterShapeMapping\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"fNode\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BendPoint\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"beg\"/>\n      <xsd:enumeration value=\"def\"/>\n      <xsd:enumeration value=\"end\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConnectorRouting\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"stra\"/>\n      <xsd:enumeration value=\"bend\"/>\n      <xsd:enumeration value=\"curve\"/>\n      <xsd:enumeration value=\"longCurve\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ArrowheadStyle\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"arr\"/>\n      <xsd:enumeration value=\"noArr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConnectorDimension\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"1D\"/>\n      <xsd:enumeration value=\"2D\"/>\n      <xsd:enumeration value=\"cust\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConnectorPoint\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"bCtr\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"midL\"/>\n      <xsd:enumeration value=\"midR\"/>\n      <xsd:enumeration value=\"tCtr\"/>\n      <xsd:enumeration value=\"bL\"/>\n      <xsd:enumeration value=\"bR\"/>\n      <xsd:enumeration value=\"tL\"/>\n      <xsd:enumeration value=\"tR\"/>\n      <xsd:enumeration value=\"radial\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_NodeHorizontalAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"r\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_NodeVerticalAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"mid\"/>\n      <xsd:enumeration value=\"b\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FallbackDimension\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"1D\"/>\n      <xsd:enumeration value=\"2D\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"fromT\"/>\n      <xsd:enumeration value=\"fromB\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PyramidAccentPosition\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"bef\"/>\n      <xsd:enumeration value=\"aft\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PyramidAccentTextMargin\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"step\"/>\n      <xsd:enumeration value=\"stack\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextBlockDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"horz\"/>\n      <xsd:enumeration value=\"vert\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextAnchorHorizontal\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"ctr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextAnchorVertical\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"mid\"/>\n      <xsd:enumeration value=\"b\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DiagramTextAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"r\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AutoTextRotation\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"upr\"/>\n      <xsd:enumeration value=\"grav\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_GrowDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"tL\"/>\n      <xsd:enumeration value=\"tR\"/>\n      <xsd:enumeration value=\"bL\"/>\n      <xsd:enumeration value=\"bR\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FlowDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"row\"/>\n      <xsd:enumeration value=\"col\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ContinueDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"revDir\"/>\n      <xsd:enumeration value=\"sameDir\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Breakpoint\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"endCnv\"/>\n      <xsd:enumeration value=\"bal\"/>\n      <xsd:enumeration value=\"fixed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Offset\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"off\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HierarchyAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"tL\"/>\n      <xsd:enumeration value=\"tR\"/>\n      <xsd:enumeration value=\"tCtrCh\"/>\n      <xsd:enumeration value=\"tCtrDes\"/>\n      <xsd:enumeration value=\"bL\"/>\n      <xsd:enumeration value=\"bR\"/>\n      <xsd:enumeration value=\"bCtrCh\"/>\n      <xsd:enumeration value=\"bCtrDes\"/>\n      <xsd:enumeration value=\"lT\"/>\n      <xsd:enumeration value=\"lB\"/>\n      <xsd:enumeration value=\"lCtrCh\"/>\n      <xsd:enumeration value=\"lCtrDes\"/>\n      <xsd:enumeration value=\"rT\"/>\n      <xsd:enumeration value=\"rB\"/>\n      <xsd:enumeration value=\"rCtrCh\"/>\n      <xsd:enumeration value=\"rCtrDes\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FunctionValue\" final=\"restriction\">\n    <xsd:union\n      memberTypes=\"xsd:int xsd:boolean ST_Direction ST_HierBranchStyle ST_AnimOneStr ST_AnimLvlStr ST_ResizeHandlesStr\"\n    />\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VariableType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"orgChart\"/>\n      <xsd:enumeration value=\"chMax\"/>\n      <xsd:enumeration value=\"chPref\"/>\n      <xsd:enumeration value=\"bulEnabled\"/>\n      <xsd:enumeration value=\"dir\"/>\n      <xsd:enumeration value=\"hierBranch\"/>\n      <xsd:enumeration value=\"animOne\"/>\n      <xsd:enumeration value=\"animLvl\"/>\n      <xsd:enumeration value=\"resizeHandles\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FunctionArgument\" final=\"restriction\">\n    <xsd:union memberTypes=\"ST_VariableType\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OutputShapeType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"conn\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/lockedCanvas\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  elementFormDefault=\"qualified\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/lockedCanvas\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:element name=\"lockedCanvas\" type=\"a:CT_GvmlGroupShape\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/diagram\"\n    schemaLocation=\"dml-diagram.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/chart\"\n    schemaLocation=\"dml-chart.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/picture\"\n    schemaLocation=\"dml-picture.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/lockedCanvas\"\n    schemaLocation=\"dml-lockedCanvas.xsd\"/>\n  <xsd:complexType name=\"CT_AudioFile\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:link\" use=\"required\"/>\n    <xsd:attribute name=\"contentType\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VideoFile\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:link\" use=\"required\"/>\n    <xsd:attribute name=\"contentType\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_QuickTimeFile\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:link\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AudioCDTime\">\n    <xsd:attribute name=\"track\" type=\"xsd:unsignedByte\" use=\"required\"/>\n    <xsd:attribute name=\"time\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AudioCD\">\n    <xsd:sequence>\n      <xsd:element name=\"st\" type=\"CT_AudioCDTime\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"end\" type=\"CT_AudioCDTime\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Media\">\n    <xsd:choice>\n      <xsd:element name=\"audioCd\" type=\"CT_AudioCD\"/>\n      <xsd:element name=\"wavAudioFile\" type=\"CT_EmbeddedWAVAudioFile\"/>\n      <xsd:element name=\"audioFile\" type=\"CT_AudioFile\"/>\n      <xsd:element name=\"videoFile\" type=\"CT_VideoFile\"/>\n      <xsd:element name=\"quickTimeFile\" type=\"CT_QuickTimeFile\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:element name=\"videoFile\" type=\"CT_VideoFile\"/>\n  <xsd:simpleType name=\"ST_StyleMatrixColumnIndex\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FontCollectionIndex\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"major\"/>\n      <xsd:enumeration value=\"minor\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ColorSchemeIndex\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"dk1\"/>\n      <xsd:enumeration value=\"lt1\"/>\n      <xsd:enumeration value=\"dk2\"/>\n      <xsd:enumeration value=\"lt2\"/>\n      <xsd:enumeration value=\"accent1\"/>\n      <xsd:enumeration value=\"accent2\"/>\n      <xsd:enumeration value=\"accent3\"/>\n      <xsd:enumeration value=\"accent4\"/>\n      <xsd:enumeration value=\"accent5\"/>\n      <xsd:enumeration value=\"accent6\"/>\n      <xsd:enumeration value=\"hlink\"/>\n      <xsd:enumeration value=\"folHlink\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ColorScheme\">\n    <xsd:sequence>\n      <xsd:element name=\"dk1\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lt1\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dk2\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lt2\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"accent1\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"accent2\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"accent3\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"accent4\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"accent5\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"accent6\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hlink\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"folHlink\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SupplementalFont\">\n    <xsd:attribute name=\"script\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"typeface\" type=\"ST_TextTypeface\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomColorList\">\n    <xsd:sequence>\n      <xsd:element name=\"custClr\" type=\"CT_CustomColor\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontCollection\">\n    <xsd:sequence>\n      <xsd:element name=\"latin\" type=\"CT_TextFont\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ea\" type=\"CT_TextFont\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cs\" type=\"CT_TextFont\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"font\" type=\"CT_SupplementalFont\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EffectStyleItem\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scene3d\" type=\"CT_Scene3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sp3d\" type=\"CT_Shape3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontScheme\">\n    <xsd:sequence>\n      <xsd:element name=\"majorFont\" type=\"CT_FontCollection\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minorFont\" type=\"CT_FontCollection\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FillStyleList\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"3\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LineStyleList\">\n    <xsd:sequence>\n      <xsd:element name=\"ln\" type=\"CT_LineProperties\" minOccurs=\"3\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EffectStyleList\">\n    <xsd:sequence>\n      <xsd:element name=\"effectStyle\" type=\"CT_EffectStyleItem\" minOccurs=\"3\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BackgroundFillStyleList\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"3\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StyleMatrix\">\n    <xsd:sequence>\n      <xsd:element name=\"fillStyleLst\" type=\"CT_FillStyleList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnStyleLst\" type=\"CT_LineStyleList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"effectStyleLst\" type=\"CT_EffectStyleList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bgFillStyleLst\" type=\"CT_BackgroundFillStyleList\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BaseStyles\">\n    <xsd:sequence>\n      <xsd:element name=\"clrScheme\" type=\"CT_ColorScheme\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fontScheme\" type=\"CT_FontScheme\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fmtScheme\" type=\"CT_StyleMatrix\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OfficeArtExtension\">\n    <xsd:sequence>\n      <xsd:any processContents=\"lax\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"xsd:token\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Coordinate\">\n    <xsd:union memberTypes=\"ST_CoordinateUnqualified s:ST_UniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CoordinateUnqualified\">\n    <xsd:restriction base=\"xsd:long\">\n      <xsd:minInclusive value=\"-27273042329600\"/>\n      <xsd:maxInclusive value=\"27273042316900\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Coordinate32\">\n    <xsd:union memberTypes=\"ST_Coordinate32Unqualified s:ST_UniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Coordinate32Unqualified\">\n    <xsd:restriction base=\"xsd:int\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositiveCoordinate\">\n    <xsd:restriction base=\"xsd:long\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"27273042316900\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositiveCoordinate32\">\n    <xsd:restriction base=\"ST_Coordinate32Unqualified\">\n      <xsd:minInclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Angle\">\n    <xsd:restriction base=\"xsd:int\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Angle\">\n    <xsd:attribute name=\"val\" type=\"ST_Angle\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FixedAngle\">\n    <xsd:restriction base=\"ST_Angle\">\n      <xsd:minExclusive value=\"-5400000\"/>\n      <xsd:maxExclusive value=\"5400000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositiveFixedAngle\">\n    <xsd:restriction base=\"ST_Angle\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxExclusive value=\"21600000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PositiveFixedAngle\">\n    <xsd:attribute name=\"val\" type=\"ST_PositiveFixedAngle\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Percentage\">\n    <xsd:union memberTypes=\"ST_PercentageDecimal s:ST_Percentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PercentageDecimal\">\n    <xsd:restriction base=\"xsd:int\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Percentage\">\n    <xsd:attribute name=\"val\" type=\"ST_Percentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PositivePercentage\">\n    <xsd:union memberTypes=\"ST_PositivePercentageDecimal s:ST_PositivePercentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositivePercentageDecimal\">\n    <xsd:restriction base=\"ST_PercentageDecimal\">\n      <xsd:minInclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PositivePercentage\">\n    <xsd:attribute name=\"val\" type=\"ST_PositivePercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FixedPercentage\">\n    <xsd:union memberTypes=\"ST_FixedPercentageDecimal s:ST_FixedPercentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FixedPercentageDecimal\">\n    <xsd:restriction base=\"ST_PercentageDecimal\">\n      <xsd:minInclusive value=\"-100000\"/>\n      <xsd:maxInclusive value=\"100000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FixedPercentage\">\n    <xsd:attribute name=\"val\" type=\"ST_FixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PositiveFixedPercentage\">\n    <xsd:union memberTypes=\"ST_PositiveFixedPercentageDecimal s:ST_PositiveFixedPercentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositiveFixedPercentageDecimal\">\n    <xsd:restriction base=\"ST_PercentageDecimal\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"100000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PositiveFixedPercentage\">\n    <xsd:attribute name=\"val\" type=\"ST_PositiveFixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Ratio\">\n    <xsd:attribute name=\"n\" type=\"xsd:long\" use=\"required\"/>\n    <xsd:attribute name=\"d\" type=\"xsd:long\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Point2D\">\n    <xsd:attribute name=\"x\" type=\"ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"y\" type=\"ST_Coordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PositiveSize2D\">\n    <xsd:attribute name=\"cx\" type=\"ST_PositiveCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"cy\" type=\"ST_PositiveCoordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ComplementTransform\"/>\n  <xsd:complexType name=\"CT_InverseTransform\"/>\n  <xsd:complexType name=\"CT_GrayscaleTransform\"/>\n  <xsd:complexType name=\"CT_GammaTransform\"/>\n  <xsd:complexType name=\"CT_InverseGammaTransform\"/>\n  <xsd:group name=\"EG_ColorTransform\">\n    <xsd:choice>\n      <xsd:element name=\"tint\" type=\"CT_PositiveFixedPercentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shade\" type=\"CT_PositiveFixedPercentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"comp\" type=\"CT_ComplementTransform\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"inv\" type=\"CT_InverseTransform\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gray\" type=\"CT_GrayscaleTransform\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alpha\" type=\"CT_PositiveFixedPercentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaOff\" type=\"CT_FixedPercentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaMod\" type=\"CT_PositivePercentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hue\" type=\"CT_PositiveFixedAngle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hueOff\" type=\"CT_Angle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hueMod\" type=\"CT_PositivePercentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sat\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"satOff\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"satMod\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lum\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lumOff\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lumMod\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"red\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"redOff\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"redMod\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"green\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"greenOff\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"greenMod\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blue\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blueOff\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blueMod\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gamma\" type=\"CT_GammaTransform\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"invGamma\" type=\"CT_InverseGammaTransform\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_ScRgbColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"r\" type=\"ST_Percentage\" use=\"required\"/>\n    <xsd:attribute name=\"g\" type=\"ST_Percentage\" use=\"required\"/>\n    <xsd:attribute name=\"b\" type=\"ST_Percentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SRgbColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"val\" type=\"s:ST_HexColorRGB\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HslColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"hue\" type=\"ST_PositiveFixedAngle\" use=\"required\"/>\n    <xsd:attribute name=\"sat\" type=\"ST_Percentage\" use=\"required\"/>\n    <xsd:attribute name=\"lum\" type=\"ST_Percentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SystemColorVal\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"scrollBar\"/>\n      <xsd:enumeration value=\"background\"/>\n      <xsd:enumeration value=\"activeCaption\"/>\n      <xsd:enumeration value=\"inactiveCaption\"/>\n      <xsd:enumeration value=\"menu\"/>\n      <xsd:enumeration value=\"window\"/>\n      <xsd:enumeration value=\"windowFrame\"/>\n      <xsd:enumeration value=\"menuText\"/>\n      <xsd:enumeration value=\"windowText\"/>\n      <xsd:enumeration value=\"captionText\"/>\n      <xsd:enumeration value=\"activeBorder\"/>\n      <xsd:enumeration value=\"inactiveBorder\"/>\n      <xsd:enumeration value=\"appWorkspace\"/>\n      <xsd:enumeration value=\"highlight\"/>\n      <xsd:enumeration value=\"highlightText\"/>\n      <xsd:enumeration value=\"btnFace\"/>\n      <xsd:enumeration value=\"btnShadow\"/>\n      <xsd:enumeration value=\"grayText\"/>\n      <xsd:enumeration value=\"btnText\"/>\n      <xsd:enumeration value=\"inactiveCaptionText\"/>\n      <xsd:enumeration value=\"btnHighlight\"/>\n      <xsd:enumeration value=\"3dDkShadow\"/>\n      <xsd:enumeration value=\"3dLight\"/>\n      <xsd:enumeration value=\"infoText\"/>\n      <xsd:enumeration value=\"infoBk\"/>\n      <xsd:enumeration value=\"hotLight\"/>\n      <xsd:enumeration value=\"gradientActiveCaption\"/>\n      <xsd:enumeration value=\"gradientInactiveCaption\"/>\n      <xsd:enumeration value=\"menuHighlight\"/>\n      <xsd:enumeration value=\"menuBar\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SystemColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"val\" type=\"ST_SystemColorVal\" use=\"required\"/>\n    <xsd:attribute name=\"lastClr\" type=\"s:ST_HexColorRGB\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SchemeColorVal\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"bg1\"/>\n      <xsd:enumeration value=\"tx1\"/>\n      <xsd:enumeration value=\"bg2\"/>\n      <xsd:enumeration value=\"tx2\"/>\n      <xsd:enumeration value=\"accent1\"/>\n      <xsd:enumeration value=\"accent2\"/>\n      <xsd:enumeration value=\"accent3\"/>\n      <xsd:enumeration value=\"accent4\"/>\n      <xsd:enumeration value=\"accent5\"/>\n      <xsd:enumeration value=\"accent6\"/>\n      <xsd:enumeration value=\"hlink\"/>\n      <xsd:enumeration value=\"folHlink\"/>\n      <xsd:enumeration value=\"phClr\"/>\n      <xsd:enumeration value=\"dk1\"/>\n      <xsd:enumeration value=\"lt1\"/>\n      <xsd:enumeration value=\"dk2\"/>\n      <xsd:enumeration value=\"lt2\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SchemeColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"val\" type=\"ST_SchemeColorVal\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PresetColorVal\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"aliceBlue\"/>\n      <xsd:enumeration value=\"antiqueWhite\"/>\n      <xsd:enumeration value=\"aqua\"/>\n      <xsd:enumeration value=\"aquamarine\"/>\n      <xsd:enumeration value=\"azure\"/>\n      <xsd:enumeration value=\"beige\"/>\n      <xsd:enumeration value=\"bisque\"/>\n      <xsd:enumeration value=\"black\"/>\n      <xsd:enumeration value=\"blanchedAlmond\"/>\n      <xsd:enumeration value=\"blue\"/>\n      <xsd:enumeration value=\"blueViolet\"/>\n      <xsd:enumeration value=\"brown\"/>\n      <xsd:enumeration value=\"burlyWood\"/>\n      <xsd:enumeration value=\"cadetBlue\"/>\n      <xsd:enumeration value=\"chartreuse\"/>\n      <xsd:enumeration value=\"chocolate\"/>\n      <xsd:enumeration value=\"coral\"/>\n      <xsd:enumeration value=\"cornflowerBlue\"/>\n      <xsd:enumeration value=\"cornsilk\"/>\n      <xsd:enumeration value=\"crimson\"/>\n      <xsd:enumeration value=\"cyan\"/>\n      <xsd:enumeration value=\"darkBlue\"/>\n      <xsd:enumeration value=\"darkCyan\"/>\n      <xsd:enumeration value=\"darkGoldenrod\"/>\n      <xsd:enumeration value=\"darkGray\"/>\n      <xsd:enumeration value=\"darkGrey\"/>\n      <xsd:enumeration value=\"darkGreen\"/>\n      <xsd:enumeration value=\"darkKhaki\"/>\n      <xsd:enumeration value=\"darkMagenta\"/>\n      <xsd:enumeration value=\"darkOliveGreen\"/>\n      <xsd:enumeration value=\"darkOrange\"/>\n      <xsd:enumeration value=\"darkOrchid\"/>\n      <xsd:enumeration value=\"darkRed\"/>\n      <xsd:enumeration value=\"darkSalmon\"/>\n      <xsd:enumeration value=\"darkSeaGreen\"/>\n      <xsd:enumeration value=\"darkSlateBlue\"/>\n      <xsd:enumeration value=\"darkSlateGray\"/>\n      <xsd:enumeration value=\"darkSlateGrey\"/>\n      <xsd:enumeration value=\"darkTurquoise\"/>\n      <xsd:enumeration value=\"darkViolet\"/>\n      <xsd:enumeration value=\"dkBlue\"/>\n      <xsd:enumeration value=\"dkCyan\"/>\n      <xsd:enumeration value=\"dkGoldenrod\"/>\n      <xsd:enumeration value=\"dkGray\"/>\n      <xsd:enumeration value=\"dkGrey\"/>\n      <xsd:enumeration value=\"dkGreen\"/>\n      <xsd:enumeration value=\"dkKhaki\"/>\n      <xsd:enumeration value=\"dkMagenta\"/>\n      <xsd:enumeration value=\"dkOliveGreen\"/>\n      <xsd:enumeration value=\"dkOrange\"/>\n      <xsd:enumeration value=\"dkOrchid\"/>\n      <xsd:enumeration value=\"dkRed\"/>\n      <xsd:enumeration value=\"dkSalmon\"/>\n      <xsd:enumeration value=\"dkSeaGreen\"/>\n      <xsd:enumeration value=\"dkSlateBlue\"/>\n      <xsd:enumeration value=\"dkSlateGray\"/>\n      <xsd:enumeration value=\"dkSlateGrey\"/>\n      <xsd:enumeration value=\"dkTurquoise\"/>\n      <xsd:enumeration value=\"dkViolet\"/>\n      <xsd:enumeration value=\"deepPink\"/>\n      <xsd:enumeration value=\"deepSkyBlue\"/>\n      <xsd:enumeration value=\"dimGray\"/>\n      <xsd:enumeration value=\"dimGrey\"/>\n      <xsd:enumeration value=\"dodgerBlue\"/>\n      <xsd:enumeration value=\"firebrick\"/>\n      <xsd:enumeration value=\"floralWhite\"/>\n      <xsd:enumeration value=\"forestGreen\"/>\n      <xsd:enumeration value=\"fuchsia\"/>\n      <xsd:enumeration value=\"gainsboro\"/>\n      <xsd:enumeration value=\"ghostWhite\"/>\n      <xsd:enumeration value=\"gold\"/>\n      <xsd:enumeration value=\"goldenrod\"/>\n      <xsd:enumeration value=\"gray\"/>\n      <xsd:enumeration value=\"grey\"/>\n      <xsd:enumeration value=\"green\"/>\n      <xsd:enumeration value=\"greenYellow\"/>\n      <xsd:enumeration value=\"honeydew\"/>\n      <xsd:enumeration value=\"hotPink\"/>\n      <xsd:enumeration value=\"indianRed\"/>\n      <xsd:enumeration value=\"indigo\"/>\n      <xsd:enumeration value=\"ivory\"/>\n      <xsd:enumeration value=\"khaki\"/>\n      <xsd:enumeration value=\"lavender\"/>\n      <xsd:enumeration value=\"lavenderBlush\"/>\n      <xsd:enumeration value=\"lawnGreen\"/>\n      <xsd:enumeration value=\"lemonChiffon\"/>\n      <xsd:enumeration value=\"lightBlue\"/>\n      <xsd:enumeration value=\"lightCoral\"/>\n      <xsd:enumeration value=\"lightCyan\"/>\n      <xsd:enumeration value=\"lightGoldenrodYellow\"/>\n      <xsd:enumeration value=\"lightGray\"/>\n      <xsd:enumeration value=\"lightGrey\"/>\n      <xsd:enumeration value=\"lightGreen\"/>\n      <xsd:enumeration value=\"lightPink\"/>\n      <xsd:enumeration value=\"lightSalmon\"/>\n      <xsd:enumeration value=\"lightSeaGreen\"/>\n      <xsd:enumeration value=\"lightSkyBlue\"/>\n      <xsd:enumeration value=\"lightSlateGray\"/>\n      <xsd:enumeration value=\"lightSlateGrey\"/>\n      <xsd:enumeration value=\"lightSteelBlue\"/>\n      <xsd:enumeration value=\"lightYellow\"/>\n      <xsd:enumeration value=\"ltBlue\"/>\n      <xsd:enumeration value=\"ltCoral\"/>\n      <xsd:enumeration value=\"ltCyan\"/>\n      <xsd:enumeration value=\"ltGoldenrodYellow\"/>\n      <xsd:enumeration value=\"ltGray\"/>\n      <xsd:enumeration value=\"ltGrey\"/>\n      <xsd:enumeration value=\"ltGreen\"/>\n      <xsd:enumeration value=\"ltPink\"/>\n      <xsd:enumeration value=\"ltSalmon\"/>\n      <xsd:enumeration value=\"ltSeaGreen\"/>\n      <xsd:enumeration value=\"ltSkyBlue\"/>\n      <xsd:enumeration value=\"ltSlateGray\"/>\n      <xsd:enumeration value=\"ltSlateGrey\"/>\n      <xsd:enumeration value=\"ltSteelBlue\"/>\n      <xsd:enumeration value=\"ltYellow\"/>\n      <xsd:enumeration value=\"lime\"/>\n      <xsd:enumeration value=\"limeGreen\"/>\n      <xsd:enumeration value=\"linen\"/>\n      <xsd:enumeration value=\"magenta\"/>\n      <xsd:enumeration value=\"maroon\"/>\n      <xsd:enumeration value=\"medAquamarine\"/>\n      <xsd:enumeration value=\"medBlue\"/>\n      <xsd:enumeration value=\"medOrchid\"/>\n      <xsd:enumeration value=\"medPurple\"/>\n      <xsd:enumeration value=\"medSeaGreen\"/>\n      <xsd:enumeration value=\"medSlateBlue\"/>\n      <xsd:enumeration value=\"medSpringGreen\"/>\n      <xsd:enumeration value=\"medTurquoise\"/>\n      <xsd:enumeration value=\"medVioletRed\"/>\n      <xsd:enumeration value=\"mediumAquamarine\"/>\n      <xsd:enumeration value=\"mediumBlue\"/>\n      <xsd:enumeration value=\"mediumOrchid\"/>\n      <xsd:enumeration value=\"mediumPurple\"/>\n      <xsd:enumeration value=\"mediumSeaGreen\"/>\n      <xsd:enumeration value=\"mediumSlateBlue\"/>\n      <xsd:enumeration value=\"mediumSpringGreen\"/>\n      <xsd:enumeration value=\"mediumTurquoise\"/>\n      <xsd:enumeration value=\"mediumVioletRed\"/>\n      <xsd:enumeration value=\"midnightBlue\"/>\n      <xsd:enumeration value=\"mintCream\"/>\n      <xsd:enumeration value=\"mistyRose\"/>\n      <xsd:enumeration value=\"moccasin\"/>\n      <xsd:enumeration value=\"navajoWhite\"/>\n      <xsd:enumeration value=\"navy\"/>\n      <xsd:enumeration value=\"oldLace\"/>\n      <xsd:enumeration value=\"olive\"/>\n      <xsd:enumeration value=\"oliveDrab\"/>\n      <xsd:enumeration value=\"orange\"/>\n      <xsd:enumeration value=\"orangeRed\"/>\n      <xsd:enumeration value=\"orchid\"/>\n      <xsd:enumeration value=\"paleGoldenrod\"/>\n      <xsd:enumeration value=\"paleGreen\"/>\n      <xsd:enumeration value=\"paleTurquoise\"/>\n      <xsd:enumeration value=\"paleVioletRed\"/>\n      <xsd:enumeration value=\"papayaWhip\"/>\n      <xsd:enumeration value=\"peachPuff\"/>\n      <xsd:enumeration value=\"peru\"/>\n      <xsd:enumeration value=\"pink\"/>\n      <xsd:enumeration value=\"plum\"/>\n      <xsd:enumeration value=\"powderBlue\"/>\n      <xsd:enumeration value=\"purple\"/>\n      <xsd:enumeration value=\"red\"/>\n      <xsd:enumeration value=\"rosyBrown\"/>\n      <xsd:enumeration value=\"royalBlue\"/>\n      <xsd:enumeration value=\"saddleBrown\"/>\n      <xsd:enumeration value=\"salmon\"/>\n      <xsd:enumeration value=\"sandyBrown\"/>\n      <xsd:enumeration value=\"seaGreen\"/>\n      <xsd:enumeration value=\"seaShell\"/>\n      <xsd:enumeration value=\"sienna\"/>\n      <xsd:enumeration value=\"silver\"/>\n      <xsd:enumeration value=\"skyBlue\"/>\n      <xsd:enumeration value=\"slateBlue\"/>\n      <xsd:enumeration value=\"slateGray\"/>\n      <xsd:enumeration value=\"slateGrey\"/>\n      <xsd:enumeration value=\"snow\"/>\n      <xsd:enumeration value=\"springGreen\"/>\n      <xsd:enumeration value=\"steelBlue\"/>\n      <xsd:enumeration value=\"tan\"/>\n      <xsd:enumeration value=\"teal\"/>\n      <xsd:enumeration value=\"thistle\"/>\n      <xsd:enumeration value=\"tomato\"/>\n      <xsd:enumeration value=\"turquoise\"/>\n      <xsd:enumeration value=\"violet\"/>\n      <xsd:enumeration value=\"wheat\"/>\n      <xsd:enumeration value=\"white\"/>\n      <xsd:enumeration value=\"whiteSmoke\"/>\n      <xsd:enumeration value=\"yellow\"/>\n      <xsd:enumeration value=\"yellowGreen\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PresetColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"val\" type=\"ST_PresetColorVal\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_OfficeArtExtensionList\">\n    <xsd:sequence>\n      <xsd:element name=\"ext\" type=\"CT_OfficeArtExtension\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_OfficeArtExtensionList\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_OfficeArtExtensionList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Scale2D\">\n    <xsd:sequence>\n      <xsd:element name=\"sx\" type=\"CT_Ratio\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sy\" type=\"CT_Ratio\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Transform2D\">\n    <xsd:sequence>\n      <xsd:element name=\"off\" type=\"CT_Point2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ext\" type=\"CT_PositiveSize2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rot\" type=\"ST_Angle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"flipH\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"flipV\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupTransform2D\">\n    <xsd:sequence>\n      <xsd:element name=\"off\" type=\"CT_Point2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ext\" type=\"CT_PositiveSize2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"chOff\" type=\"CT_Point2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"chExt\" type=\"CT_PositiveSize2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rot\" type=\"ST_Angle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"flipH\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"flipV\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Point3D\">\n    <xsd:attribute name=\"x\" type=\"ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"y\" type=\"ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"z\" type=\"ST_Coordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Vector3D\">\n    <xsd:attribute name=\"dx\" type=\"ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"dy\" type=\"ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"dz\" type=\"ST_Coordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SphereCoords\">\n    <xsd:attribute name=\"lat\" type=\"ST_PositiveFixedAngle\" use=\"required\"/>\n    <xsd:attribute name=\"lon\" type=\"ST_PositiveFixedAngle\" use=\"required\"/>\n    <xsd:attribute name=\"rev\" type=\"ST_PositiveFixedAngle\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RelativeRect\">\n    <xsd:attribute name=\"l\" type=\"ST_Percentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"t\" type=\"ST_Percentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"r\" type=\"ST_Percentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"b\" type=\"ST_Percentage\" use=\"optional\" default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RectAlignment\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"tl\"/>\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"tr\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"bl\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"br\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:group name=\"EG_ColorChoice\">\n    <xsd:choice>\n      <xsd:element name=\"scrgbClr\" type=\"CT_ScRgbColor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"srgbClr\" type=\"CT_SRgbColor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hslClr\" type=\"CT_HslColor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sysClr\" type=\"CT_SystemColor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"schemeClr\" type=\"CT_SchemeColor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prstClr\" type=\"CT_PresetColor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_Color\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorMRU\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BlackWhiteMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"clr\"/>\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"gray\"/>\n      <xsd:enumeration value=\"ltGray\"/>\n      <xsd:enumeration value=\"invGray\"/>\n      <xsd:enumeration value=\"grayWhite\"/>\n      <xsd:enumeration value=\"blackGray\"/>\n      <xsd:enumeration value=\"blackWhite\"/>\n      <xsd:enumeration value=\"black\"/>\n      <xsd:enumeration value=\"white\"/>\n      <xsd:enumeration value=\"hidden\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:attributeGroup name=\"AG_Blob\">\n    <xsd:attribute ref=\"r:embed\" use=\"optional\" default=\"\"/>\n    <xsd:attribute ref=\"r:link\" use=\"optional\" default=\"\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_EmbeddedWAVAudioFile\">\n    <xsd:attribute ref=\"r:embed\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Hyperlink\">\n    <xsd:sequence>\n      <xsd:element name=\"snd\" type=\"CT_EmbeddedWAVAudioFile\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"invalidUrl\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"action\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"tgtFrame\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"tooltip\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"history\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"highlightClick\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"endSnd\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DrawingElementId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:attributeGroup name=\"AG_Locking\">\n    <xsd:attribute name=\"noGrp\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noSelect\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noRot\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noChangeAspect\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noMove\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noResize\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noEditPoints\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noAdjustHandles\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noChangeArrowheads\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noChangeShapeType\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_ConnectorLocking\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Locking\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShapeLocking\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Locking\"/>\n    <xsd:attribute name=\"noTextEdit\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PictureLocking\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Locking\"/>\n    <xsd:attribute name=\"noCrop\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupLocking\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"noGrp\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noUngrp\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noSelect\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noRot\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noChangeAspect\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noMove\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noResize\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObjectFrameLocking\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"noGrp\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noDrilldown\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noSelect\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noChangeAspect\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noMove\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noResize\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ContentPartLocking\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Locking\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualDrawingProps\">\n    <xsd:sequence>\n      <xsd:element name=\"hlinkClick\" type=\"CT_Hyperlink\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hlinkHover\" type=\"CT_Hyperlink\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"ST_DrawingElementId\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"descr\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"title\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualDrawingShapeProps\">\n    <xsd:sequence>\n      <xsd:element name=\"spLocks\" type=\"CT_ShapeLocking\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"txBox\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualConnectorProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"cxnSpLocks\" type=\"CT_ConnectorLocking\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"stCxn\" type=\"CT_Connection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"endCxn\" type=\"CT_Connection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualPictureProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"picLocks\" type=\"CT_PictureLocking\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"preferRelativeResize\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualGroupDrawingShapeProps\">\n    <xsd:sequence>\n      <xsd:element name=\"grpSpLocks\" type=\"CT_GroupLocking\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualGraphicFrameProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"graphicFrameLocks\" type=\"CT_GraphicalObjectFrameLocking\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualContentPartProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"cpLocks\" type=\"CT_ContentPartLocking\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"isComment\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObjectData\">\n    <xsd:sequence>\n      <xsd:any minOccurs=\"0\" maxOccurs=\"unbounded\" processContents=\"strict\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"xsd:token\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObject\">\n    <xsd:sequence>\n      <xsd:element name=\"graphicData\" type=\"CT_GraphicalObjectData\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"graphic\" type=\"CT_GraphicalObject\"/>\n  <xsd:simpleType name=\"ST_ChartBuildStep\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"category\"/>\n      <xsd:enumeration value=\"ptInCategory\"/>\n      <xsd:enumeration value=\"series\"/>\n      <xsd:enumeration value=\"ptInSeries\"/>\n      <xsd:enumeration value=\"allPts\"/>\n      <xsd:enumeration value=\"gridLegend\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DgmBuildStep\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sp\"/>\n      <xsd:enumeration value=\"bg\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_AnimationDgmElement\">\n    <xsd:attribute name=\"id\" type=\"s:ST_Guid\" use=\"optional\"\n      default=\"{00000000-0000-0000-0000-000000000000}\"/>\n    <xsd:attribute name=\"bldStep\" type=\"ST_DgmBuildStep\" use=\"optional\" default=\"sp\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AnimationChartElement\">\n    <xsd:attribute name=\"seriesIdx\" type=\"xsd:int\" use=\"optional\" default=\"-1\"/>\n    <xsd:attribute name=\"categoryIdx\" type=\"xsd:int\" use=\"optional\" default=\"-1\"/>\n    <xsd:attribute name=\"bldStep\" type=\"ST_ChartBuildStep\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AnimationElementChoice\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"dgm\" type=\"CT_AnimationDgmElement\"/>\n      <xsd:element name=\"chart\" type=\"CT_AnimationChartElement\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AnimationBuildType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"allAtOnce\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AnimationDgmOnlyBuildType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"one\"/>\n      <xsd:enumeration value=\"lvlOne\"/>\n      <xsd:enumeration value=\"lvlAtOnce\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AnimationDgmBuildType\">\n    <xsd:union memberTypes=\"ST_AnimationBuildType ST_AnimationDgmOnlyBuildType\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_AnimationDgmBuildProperties\">\n    <xsd:attribute name=\"bld\" type=\"ST_AnimationDgmBuildType\" use=\"optional\" default=\"allAtOnce\"/>\n    <xsd:attribute name=\"rev\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AnimationChartOnlyBuildType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"series\"/>\n      <xsd:enumeration value=\"category\"/>\n      <xsd:enumeration value=\"seriesEl\"/>\n      <xsd:enumeration value=\"categoryEl\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AnimationChartBuildType\">\n    <xsd:union memberTypes=\"ST_AnimationBuildType ST_AnimationChartOnlyBuildType\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_AnimationChartBuildProperties\">\n    <xsd:attribute name=\"bld\" type=\"ST_AnimationChartBuildType\" use=\"optional\" default=\"allAtOnce\"/>\n    <xsd:attribute name=\"animBg\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AnimationGraphicalObjectBuildProperties\">\n    <xsd:choice>\n      <xsd:element name=\"bldDgm\" type=\"CT_AnimationDgmBuildProperties\"/>\n      <xsd:element name=\"bldChart\" type=\"CT_AnimationChartBuildProperties\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BackgroundFormatting\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WholeE2oFormatting\">\n    <xsd:sequence>\n      <xsd:element name=\"ln\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlUseShapeRectangle\"/>\n  <xsd:complexType name=\"CT_GvmlTextShape\">\n    <xsd:sequence>\n      <xsd:element name=\"txBody\" type=\"CT_TextBody\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice>\n        <xsd:element name=\"useSpRect\" type=\"CT_GvmlUseShapeRectangle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"xfrm\" type=\"CT_Transform2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvSpPr\" type=\"CT_NonVisualDrawingShapeProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlShape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvSpPr\" type=\"CT_GvmlShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txSp\" type=\"CT_GvmlTextShape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlConnectorNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvCxnSpPr\" type=\"CT_NonVisualConnectorProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlConnector\">\n    <xsd:sequence>\n      <xsd:element name=\"nvCxnSpPr\" type=\"CT_GvmlConnectorNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlPictureNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvPicPr\" type=\"CT_NonVisualPictureProperties\" minOccurs=\"1\" maxOccurs=\"1\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlPicture\">\n    <xsd:sequence>\n      <xsd:element name=\"nvPicPr\" type=\"CT_GvmlPictureNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blipFill\" type=\"CT_BlipFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlGraphicFrameNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGraphicFramePr\" type=\"CT_NonVisualGraphicFrameProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlGraphicalObjectFrame\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGraphicFramePr\" type=\"CT_GvmlGraphicFrameNonVisual\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element ref=\"graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"CT_Transform2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlGroupShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGrpSpPr\" type=\"CT_NonVisualGroupDrawingShapeProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlGroupShape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGrpSpPr\" type=\"CT_GvmlGroupShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grpSpPr\" type=\"CT_GroupShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"txSp\" type=\"CT_GvmlTextShape\"/>\n        <xsd:element name=\"sp\" type=\"CT_GvmlShape\"/>\n        <xsd:element name=\"cxnSp\" type=\"CT_GvmlConnector\"/>\n        <xsd:element name=\"pic\" type=\"CT_GvmlPicture\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GvmlGraphicalObjectFrame\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_GvmlGroupShape\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PresetCameraType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"legacyObliqueTopLeft\"/>\n      <xsd:enumeration value=\"legacyObliqueTop\"/>\n      <xsd:enumeration value=\"legacyObliqueTopRight\"/>\n      <xsd:enumeration value=\"legacyObliqueLeft\"/>\n      <xsd:enumeration value=\"legacyObliqueFront\"/>\n      <xsd:enumeration value=\"legacyObliqueRight\"/>\n      <xsd:enumeration value=\"legacyObliqueBottomLeft\"/>\n      <xsd:enumeration value=\"legacyObliqueBottom\"/>\n      <xsd:enumeration value=\"legacyObliqueBottomRight\"/>\n      <xsd:enumeration value=\"legacyPerspectiveTopLeft\"/>\n      <xsd:enumeration value=\"legacyPerspectiveTop\"/>\n      <xsd:enumeration value=\"legacyPerspectiveTopRight\"/>\n      <xsd:enumeration value=\"legacyPerspectiveLeft\"/>\n      <xsd:enumeration value=\"legacyPerspectiveFront\"/>\n      <xsd:enumeration value=\"legacyPerspectiveRight\"/>\n      <xsd:enumeration value=\"legacyPerspectiveBottomLeft\"/>\n      <xsd:enumeration value=\"legacyPerspectiveBottom\"/>\n      <xsd:enumeration value=\"legacyPerspectiveBottomRight\"/>\n      <xsd:enumeration value=\"orthographicFront\"/>\n      <xsd:enumeration value=\"isometricTopUp\"/>\n      <xsd:enumeration value=\"isometricTopDown\"/>\n      <xsd:enumeration value=\"isometricBottomUp\"/>\n      <xsd:enumeration value=\"isometricBottomDown\"/>\n      <xsd:enumeration value=\"isometricLeftUp\"/>\n      <xsd:enumeration value=\"isometricLeftDown\"/>\n      <xsd:enumeration value=\"isometricRightUp\"/>\n      <xsd:enumeration value=\"isometricRightDown\"/>\n      <xsd:enumeration value=\"isometricOffAxis1Left\"/>\n      <xsd:enumeration value=\"isometricOffAxis1Right\"/>\n      <xsd:enumeration value=\"isometricOffAxis1Top\"/>\n      <xsd:enumeration value=\"isometricOffAxis2Left\"/>\n      <xsd:enumeration value=\"isometricOffAxis2Right\"/>\n      <xsd:enumeration value=\"isometricOffAxis2Top\"/>\n      <xsd:enumeration value=\"isometricOffAxis3Left\"/>\n      <xsd:enumeration value=\"isometricOffAxis3Right\"/>\n      <xsd:enumeration value=\"isometricOffAxis3Bottom\"/>\n      <xsd:enumeration value=\"isometricOffAxis4Left\"/>\n      <xsd:enumeration value=\"isometricOffAxis4Right\"/>\n      <xsd:enumeration value=\"isometricOffAxis4Bottom\"/>\n      <xsd:enumeration value=\"obliqueTopLeft\"/>\n      <xsd:enumeration value=\"obliqueTop\"/>\n      <xsd:enumeration value=\"obliqueTopRight\"/>\n      <xsd:enumeration value=\"obliqueLeft\"/>\n      <xsd:enumeration value=\"obliqueRight\"/>\n      <xsd:enumeration value=\"obliqueBottomLeft\"/>\n      <xsd:enumeration value=\"obliqueBottom\"/>\n      <xsd:enumeration value=\"obliqueBottomRight\"/>\n      <xsd:enumeration value=\"perspectiveFront\"/>\n      <xsd:enumeration value=\"perspectiveLeft\"/>\n      <xsd:enumeration value=\"perspectiveRight\"/>\n      <xsd:enumeration value=\"perspectiveAbove\"/>\n      <xsd:enumeration value=\"perspectiveBelow\"/>\n      <xsd:enumeration value=\"perspectiveAboveLeftFacing\"/>\n      <xsd:enumeration value=\"perspectiveAboveRightFacing\"/>\n      <xsd:enumeration value=\"perspectiveContrastingLeftFacing\"/>\n      <xsd:enumeration value=\"perspectiveContrastingRightFacing\"/>\n      <xsd:enumeration value=\"perspectiveHeroicLeftFacing\"/>\n      <xsd:enumeration value=\"perspectiveHeroicRightFacing\"/>\n      <xsd:enumeration value=\"perspectiveHeroicExtremeLeftFacing\"/>\n      <xsd:enumeration value=\"perspectiveHeroicExtremeRightFacing\"/>\n      <xsd:enumeration value=\"perspectiveRelaxed\"/>\n      <xsd:enumeration value=\"perspectiveRelaxedModerately\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FOVAngle\">\n    <xsd:restriction base=\"ST_Angle\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"10800000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Camera\">\n    <xsd:sequence>\n      <xsd:element name=\"rot\" type=\"CT_SphereCoords\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prst\" type=\"ST_PresetCameraType\" use=\"required\"/>\n    <xsd:attribute name=\"fov\" type=\"ST_FOVAngle\" use=\"optional\"/>\n    <xsd:attribute name=\"zoom\" type=\"ST_PositivePercentage\" use=\"optional\" default=\"100%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LightRigDirection\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"tl\"/>\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"tr\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"bl\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"br\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LightRigType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"legacyFlat1\"/>\n      <xsd:enumeration value=\"legacyFlat2\"/>\n      <xsd:enumeration value=\"legacyFlat3\"/>\n      <xsd:enumeration value=\"legacyFlat4\"/>\n      <xsd:enumeration value=\"legacyNormal1\"/>\n      <xsd:enumeration value=\"legacyNormal2\"/>\n      <xsd:enumeration value=\"legacyNormal3\"/>\n      <xsd:enumeration value=\"legacyNormal4\"/>\n      <xsd:enumeration value=\"legacyHarsh1\"/>\n      <xsd:enumeration value=\"legacyHarsh2\"/>\n      <xsd:enumeration value=\"legacyHarsh3\"/>\n      <xsd:enumeration value=\"legacyHarsh4\"/>\n      <xsd:enumeration value=\"threePt\"/>\n      <xsd:enumeration value=\"balanced\"/>\n      <xsd:enumeration value=\"soft\"/>\n      <xsd:enumeration value=\"harsh\"/>\n      <xsd:enumeration value=\"flood\"/>\n      <xsd:enumeration value=\"contrasting\"/>\n      <xsd:enumeration value=\"morning\"/>\n      <xsd:enumeration value=\"sunrise\"/>\n      <xsd:enumeration value=\"sunset\"/>\n      <xsd:enumeration value=\"chilly\"/>\n      <xsd:enumeration value=\"freezing\"/>\n      <xsd:enumeration value=\"flat\"/>\n      <xsd:enumeration value=\"twoPt\"/>\n      <xsd:enumeration value=\"glow\"/>\n      <xsd:enumeration value=\"brightRoom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LightRig\">\n    <xsd:sequence>\n      <xsd:element name=\"rot\" type=\"CT_SphereCoords\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rig\" type=\"ST_LightRigType\" use=\"required\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_LightRigDirection\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Scene3D\">\n    <xsd:sequence>\n      <xsd:element name=\"camera\" type=\"CT_Camera\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lightRig\" type=\"CT_LightRig\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"backdrop\" type=\"CT_Backdrop\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Backdrop\">\n    <xsd:sequence>\n      <xsd:element name=\"anchor\" type=\"CT_Point3D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"norm\" type=\"CT_Vector3D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"up\" type=\"CT_Vector3D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BevelPresetType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"relaxedInset\"/>\n      <xsd:enumeration value=\"circle\"/>\n      <xsd:enumeration value=\"slope\"/>\n      <xsd:enumeration value=\"cross\"/>\n      <xsd:enumeration value=\"angle\"/>\n      <xsd:enumeration value=\"softRound\"/>\n      <xsd:enumeration value=\"convex\"/>\n      <xsd:enumeration value=\"coolSlant\"/>\n      <xsd:enumeration value=\"divot\"/>\n      <xsd:enumeration value=\"riblet\"/>\n      <xsd:enumeration value=\"hardEdge\"/>\n      <xsd:enumeration value=\"artDeco\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Bevel\">\n    <xsd:attribute name=\"w\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"76200\"/>\n    <xsd:attribute name=\"h\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"76200\"/>\n    <xsd:attribute name=\"prst\" type=\"ST_BevelPresetType\" use=\"optional\" default=\"circle\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PresetMaterialType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"legacyMatte\"/>\n      <xsd:enumeration value=\"legacyPlastic\"/>\n      <xsd:enumeration value=\"legacyMetal\"/>\n      <xsd:enumeration value=\"legacyWireframe\"/>\n      <xsd:enumeration value=\"matte\"/>\n      <xsd:enumeration value=\"plastic\"/>\n      <xsd:enumeration value=\"metal\"/>\n      <xsd:enumeration value=\"warmMatte\"/>\n      <xsd:enumeration value=\"translucentPowder\"/>\n      <xsd:enumeration value=\"powder\"/>\n      <xsd:enumeration value=\"dkEdge\"/>\n      <xsd:enumeration value=\"softEdge\"/>\n      <xsd:enumeration value=\"clear\"/>\n      <xsd:enumeration value=\"flat\"/>\n      <xsd:enumeration value=\"softmetal\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Shape3D\">\n    <xsd:sequence>\n      <xsd:element name=\"bevelT\" type=\"CT_Bevel\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bevelB\" type=\"CT_Bevel\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extrusionClr\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"contourClr\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"z\" type=\"ST_Coordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"extrusionH\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"contourW\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"prstMaterial\" type=\"ST_PresetMaterialType\" use=\"optional\"\n      default=\"warmMatte\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FlatText\">\n    <xsd:attribute name=\"z\" type=\"ST_Coordinate\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Text3D\">\n    <xsd:choice>\n      <xsd:element name=\"sp3d\" type=\"CT_Shape3D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"flatTx\" type=\"CT_FlatText\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_AlphaBiLevelEffect\">\n    <xsd:attribute name=\"thresh\" type=\"ST_PositiveFixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AlphaCeilingEffect\"/>\n  <xsd:complexType name=\"CT_AlphaFloorEffect\"/>\n  <xsd:complexType name=\"CT_AlphaInverseEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AlphaModulateFixedEffect\">\n    <xsd:attribute name=\"amt\" type=\"ST_PositivePercentage\" use=\"optional\" default=\"100%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AlphaOutsetEffect\">\n    <xsd:attribute name=\"rad\" type=\"ST_Coordinate\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AlphaReplaceEffect\">\n    <xsd:attribute name=\"a\" type=\"ST_PositiveFixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BiLevelEffect\">\n    <xsd:attribute name=\"thresh\" type=\"ST_PositiveFixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BlurEffect\">\n    <xsd:attribute name=\"rad\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"grow\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorChangeEffect\">\n    <xsd:sequence>\n      <xsd:element name=\"clrFrom\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrTo\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"useA\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorReplaceEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DuotoneEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"2\" maxOccurs=\"2\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GlowEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rad\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GrayscaleEffect\"/>\n  <xsd:complexType name=\"CT_HSLEffect\">\n    <xsd:attribute name=\"hue\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"sat\" type=\"ST_FixedPercentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"lum\" type=\"ST_FixedPercentage\" use=\"optional\" default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_InnerShadowEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"blurRad\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"dist\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LuminanceEffect\">\n    <xsd:attribute name=\"bright\" type=\"ST_FixedPercentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"contrast\" type=\"ST_FixedPercentage\" use=\"optional\" default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OuterShadowEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"blurRad\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"dist\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"sx\" type=\"ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"sy\" type=\"ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"kx\" type=\"ST_FixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ky\" type=\"ST_FixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"algn\" type=\"ST_RectAlignment\" use=\"optional\" default=\"b\"/>\n    <xsd:attribute name=\"rotWithShape\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PresetShadowVal\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"shdw1\"/>\n      <xsd:enumeration value=\"shdw2\"/>\n      <xsd:enumeration value=\"shdw3\"/>\n      <xsd:enumeration value=\"shdw4\"/>\n      <xsd:enumeration value=\"shdw5\"/>\n      <xsd:enumeration value=\"shdw6\"/>\n      <xsd:enumeration value=\"shdw7\"/>\n      <xsd:enumeration value=\"shdw8\"/>\n      <xsd:enumeration value=\"shdw9\"/>\n      <xsd:enumeration value=\"shdw10\"/>\n      <xsd:enumeration value=\"shdw11\"/>\n      <xsd:enumeration value=\"shdw12\"/>\n      <xsd:enumeration value=\"shdw13\"/>\n      <xsd:enumeration value=\"shdw14\"/>\n      <xsd:enumeration value=\"shdw15\"/>\n      <xsd:enumeration value=\"shdw16\"/>\n      <xsd:enumeration value=\"shdw17\"/>\n      <xsd:enumeration value=\"shdw18\"/>\n      <xsd:enumeration value=\"shdw19\"/>\n      <xsd:enumeration value=\"shdw20\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PresetShadowEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prst\" type=\"ST_PresetShadowVal\" use=\"required\"/>\n    <xsd:attribute name=\"dist\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ReflectionEffect\">\n    <xsd:attribute name=\"blurRad\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"stA\" type=\"ST_PositiveFixedPercentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"stPos\" type=\"ST_PositiveFixedPercentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"endA\" type=\"ST_PositiveFixedPercentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"endPos\" type=\"ST_PositiveFixedPercentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"dist\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"fadeDir\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"5400000\"/>\n    <xsd:attribute name=\"sx\" type=\"ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"sy\" type=\"ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"kx\" type=\"ST_FixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ky\" type=\"ST_FixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"algn\" type=\"ST_RectAlignment\" use=\"optional\" default=\"b\"/>\n    <xsd:attribute name=\"rotWithShape\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RelativeOffsetEffect\">\n    <xsd:attribute name=\"tx\" type=\"ST_Percentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"ty\" type=\"ST_Percentage\" use=\"optional\" default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SoftEdgesEffect\">\n    <xsd:attribute name=\"rad\" type=\"ST_PositiveCoordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TintEffect\">\n    <xsd:attribute name=\"hue\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"amt\" type=\"ST_FixedPercentage\" use=\"optional\" default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TransformEffect\">\n    <xsd:attribute name=\"sx\" type=\"ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"sy\" type=\"ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"kx\" type=\"ST_FixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ky\" type=\"ST_FixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"tx\" type=\"ST_Coordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ty\" type=\"ST_Coordinate\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NoFillProperties\"/>\n  <xsd:complexType name=\"CT_SolidColorFillProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LinearShadeProperties\">\n    <xsd:attribute name=\"ang\" type=\"ST_PositiveFixedAngle\" use=\"optional\"/>\n    <xsd:attribute name=\"scaled\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PathShadeType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"shape\"/>\n      <xsd:enumeration value=\"circle\"/>\n      <xsd:enumeration value=\"rect\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PathShadeProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"fillToRect\" type=\"CT_RelativeRect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"path\" type=\"ST_PathShadeType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ShadeProperties\">\n    <xsd:choice>\n      <xsd:element name=\"lin\" type=\"CT_LinearShadeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"path\" type=\"CT_PathShadeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_TileFlipMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"x\"/>\n      <xsd:enumeration value=\"y\"/>\n      <xsd:enumeration value=\"xy\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_GradientStop\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"pos\" type=\"ST_PositiveFixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GradientStopList\">\n    <xsd:sequence>\n      <xsd:element name=\"gs\" type=\"CT_GradientStop\" minOccurs=\"2\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GradientFillProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"gsLst\" type=\"CT_GradientStopList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ShadeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tileRect\" type=\"CT_RelativeRect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"flip\" type=\"ST_TileFlipMode\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"rotWithShape\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TileInfoProperties\">\n    <xsd:attribute name=\"tx\" type=\"ST_Coordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"ty\" type=\"ST_Coordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"sx\" type=\"ST_Percentage\" use=\"optional\"/>\n    <xsd:attribute name=\"sy\" type=\"ST_Percentage\" use=\"optional\"/>\n    <xsd:attribute name=\"flip\" type=\"ST_TileFlipMode\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"algn\" type=\"ST_RectAlignment\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StretchInfoProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"fillRect\" type=\"CT_RelativeRect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_FillModeProperties\">\n    <xsd:choice>\n      <xsd:element name=\"tile\" type=\"CT_TileInfoProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"stretch\" type=\"CT_StretchInfoProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_BlipCompression\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"email\"/>\n      <xsd:enumeration value=\"screen\"/>\n      <xsd:enumeration value=\"print\"/>\n      <xsd:enumeration value=\"hqprint\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Blip\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"alphaBiLevel\" type=\"CT_AlphaBiLevelEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"alphaCeiling\" type=\"CT_AlphaCeilingEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"alphaFloor\" type=\"CT_AlphaFloorEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"alphaInv\" type=\"CT_AlphaInverseEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"alphaMod\" type=\"CT_AlphaModulateEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"alphaModFix\" type=\"CT_AlphaModulateFixedEffect\" minOccurs=\"1\"\n          maxOccurs=\"1\"/>\n        <xsd:element name=\"alphaRepl\" type=\"CT_AlphaReplaceEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"biLevel\" type=\"CT_BiLevelEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"blur\" type=\"CT_BlurEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"clrChange\" type=\"CT_ColorChangeEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"clrRepl\" type=\"CT_ColorReplaceEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"duotone\" type=\"CT_DuotoneEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"fillOverlay\" type=\"CT_FillOverlayEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"grayscl\" type=\"CT_GrayscaleEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"hsl\" type=\"CT_HSLEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"lum\" type=\"CT_LuminanceEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"tint\" type=\"CT_TintEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Blob\"/>\n    <xsd:attribute name=\"cstate\" type=\"ST_BlipCompression\" use=\"optional\" default=\"none\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BlipFillProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"blip\" type=\"CT_Blip\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"srcRect\" type=\"CT_RelativeRect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_FillModeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"dpi\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rotWithShape\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PresetPatternVal\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"pct5\"/>\n      <xsd:enumeration value=\"pct10\"/>\n      <xsd:enumeration value=\"pct20\"/>\n      <xsd:enumeration value=\"pct25\"/>\n      <xsd:enumeration value=\"pct30\"/>\n      <xsd:enumeration value=\"pct40\"/>\n      <xsd:enumeration value=\"pct50\"/>\n      <xsd:enumeration value=\"pct60\"/>\n      <xsd:enumeration value=\"pct70\"/>\n      <xsd:enumeration value=\"pct75\"/>\n      <xsd:enumeration value=\"pct80\"/>\n      <xsd:enumeration value=\"pct90\"/>\n      <xsd:enumeration value=\"horz\"/>\n      <xsd:enumeration value=\"vert\"/>\n      <xsd:enumeration value=\"ltHorz\"/>\n      <xsd:enumeration value=\"ltVert\"/>\n      <xsd:enumeration value=\"dkHorz\"/>\n      <xsd:enumeration value=\"dkVert\"/>\n      <xsd:enumeration value=\"narHorz\"/>\n      <xsd:enumeration value=\"narVert\"/>\n      <xsd:enumeration value=\"dashHorz\"/>\n      <xsd:enumeration value=\"dashVert\"/>\n      <xsd:enumeration value=\"cross\"/>\n      <xsd:enumeration value=\"dnDiag\"/>\n      <xsd:enumeration value=\"upDiag\"/>\n      <xsd:enumeration value=\"ltDnDiag\"/>\n      <xsd:enumeration value=\"ltUpDiag\"/>\n      <xsd:enumeration value=\"dkDnDiag\"/>\n      <xsd:enumeration value=\"dkUpDiag\"/>\n      <xsd:enumeration value=\"wdDnDiag\"/>\n      <xsd:enumeration value=\"wdUpDiag\"/>\n      <xsd:enumeration value=\"dashDnDiag\"/>\n      <xsd:enumeration value=\"dashUpDiag\"/>\n      <xsd:enumeration value=\"diagCross\"/>\n      <xsd:enumeration value=\"smCheck\"/>\n      <xsd:enumeration value=\"lgCheck\"/>\n      <xsd:enumeration value=\"smGrid\"/>\n      <xsd:enumeration value=\"lgGrid\"/>\n      <xsd:enumeration value=\"dotGrid\"/>\n      <xsd:enumeration value=\"smConfetti\"/>\n      <xsd:enumeration value=\"lgConfetti\"/>\n      <xsd:enumeration value=\"horzBrick\"/>\n      <xsd:enumeration value=\"diagBrick\"/>\n      <xsd:enumeration value=\"solidDmnd\"/>\n      <xsd:enumeration value=\"openDmnd\"/>\n      <xsd:enumeration value=\"dotDmnd\"/>\n      <xsd:enumeration value=\"plaid\"/>\n      <xsd:enumeration value=\"sphere\"/>\n      <xsd:enumeration value=\"weave\"/>\n      <xsd:enumeration value=\"divot\"/>\n      <xsd:enumeration value=\"shingle\"/>\n      <xsd:enumeration value=\"wave\"/>\n      <xsd:enumeration value=\"trellis\"/>\n      <xsd:enumeration value=\"zigZag\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PatternFillProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"fgClr\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bgClr\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prst\" type=\"ST_PresetPatternVal\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupFillProperties\"/>\n  <xsd:group name=\"EG_FillProperties\">\n    <xsd:choice>\n      <xsd:element name=\"noFill\" type=\"CT_NoFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"solidFill\" type=\"CT_SolidColorFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gradFill\" type=\"CT_GradientFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blipFill\" type=\"CT_BlipFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pattFill\" type=\"CT_PatternFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grpFill\" type=\"CT_GroupFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_FillProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FillEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BlendMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"over\"/>\n      <xsd:enumeration value=\"mult\"/>\n      <xsd:enumeration value=\"screen\"/>\n      <xsd:enumeration value=\"darken\"/>\n      <xsd:enumeration value=\"lighten\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FillOverlayEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"blend\" type=\"ST_BlendMode\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EffectReference\">\n    <xsd:attribute name=\"ref\" type=\"xsd:token\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Effect\">\n    <xsd:choice>\n      <xsd:element name=\"cont\" type=\"CT_EffectContainer\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"effect\" type=\"CT_EffectReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaBiLevel\" type=\"CT_AlphaBiLevelEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaCeiling\" type=\"CT_AlphaCeilingEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaFloor\" type=\"CT_AlphaFloorEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaInv\" type=\"CT_AlphaInverseEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaMod\" type=\"CT_AlphaModulateEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaModFix\" type=\"CT_AlphaModulateFixedEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaOutset\" type=\"CT_AlphaOutsetEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaRepl\" type=\"CT_AlphaReplaceEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"biLevel\" type=\"CT_BiLevelEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blend\" type=\"CT_BlendEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blur\" type=\"CT_BlurEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrChange\" type=\"CT_ColorChangeEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrRepl\" type=\"CT_ColorReplaceEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"duotone\" type=\"CT_DuotoneEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fill\" type=\"CT_FillEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fillOverlay\" type=\"CT_FillOverlayEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"glow\" type=\"CT_GlowEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grayscl\" type=\"CT_GrayscaleEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hsl\" type=\"CT_HSLEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"innerShdw\" type=\"CT_InnerShadowEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lum\" type=\"CT_LuminanceEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"outerShdw\" type=\"CT_OuterShadowEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prstShdw\" type=\"CT_PresetShadowEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"reflection\" type=\"CT_ReflectionEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"relOff\" type=\"CT_RelativeOffsetEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"softEdge\" type=\"CT_SoftEdgesEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tint\" type=\"CT_TintEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"CT_TransformEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_EffectContainerType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sib\"/>\n      <xsd:enumeration value=\"tree\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_EffectContainer\">\n    <xsd:group ref=\"EG_Effect\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    <xsd:attribute name=\"type\" type=\"ST_EffectContainerType\" use=\"optional\" default=\"sib\"/>\n    <xsd:attribute name=\"name\" type=\"xsd:token\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AlphaModulateEffect\">\n    <xsd:sequence>\n      <xsd:element name=\"cont\" type=\"CT_EffectContainer\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BlendEffect\">\n    <xsd:sequence>\n      <xsd:element name=\"cont\" type=\"CT_EffectContainer\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"blend\" type=\"ST_BlendMode\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EffectList\">\n    <xsd:sequence>\n      <xsd:element name=\"blur\" type=\"CT_BlurEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fillOverlay\" type=\"CT_FillOverlayEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"glow\" type=\"CT_GlowEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"innerShdw\" type=\"CT_InnerShadowEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"outerShdw\" type=\"CT_OuterShadowEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prstShdw\" type=\"CT_PresetShadowEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"reflection\" type=\"CT_ReflectionEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"softEdge\" type=\"CT_SoftEdgesEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_EffectProperties\">\n    <xsd:choice>\n      <xsd:element name=\"effectLst\" type=\"CT_EffectList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"effectDag\" type=\"CT_EffectContainer\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_EffectProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"blip\" type=\"CT_Blip\"/>\n  <xsd:simpleType name=\"ST_ShapeType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"line\"/>\n      <xsd:enumeration value=\"lineInv\"/>\n      <xsd:enumeration value=\"triangle\"/>\n      <xsd:enumeration value=\"rtTriangle\"/>\n      <xsd:enumeration value=\"rect\"/>\n      <xsd:enumeration value=\"diamond\"/>\n      <xsd:enumeration value=\"parallelogram\"/>\n      <xsd:enumeration value=\"trapezoid\"/>\n      <xsd:enumeration value=\"nonIsoscelesTrapezoid\"/>\n      <xsd:enumeration value=\"pentagon\"/>\n      <xsd:enumeration value=\"hexagon\"/>\n      <xsd:enumeration value=\"heptagon\"/>\n      <xsd:enumeration value=\"octagon\"/>\n      <xsd:enumeration value=\"decagon\"/>\n      <xsd:enumeration value=\"dodecagon\"/>\n      <xsd:enumeration value=\"star4\"/>\n      <xsd:enumeration value=\"star5\"/>\n      <xsd:enumeration value=\"star6\"/>\n      <xsd:enumeration value=\"star7\"/>\n      <xsd:enumeration value=\"star8\"/>\n      <xsd:enumeration value=\"star10\"/>\n      <xsd:enumeration value=\"star12\"/>\n      <xsd:enumeration value=\"star16\"/>\n      <xsd:enumeration value=\"star24\"/>\n      <xsd:enumeration value=\"star32\"/>\n      <xsd:enumeration value=\"roundRect\"/>\n      <xsd:enumeration value=\"round1Rect\"/>\n      <xsd:enumeration value=\"round2SameRect\"/>\n      <xsd:enumeration value=\"round2DiagRect\"/>\n      <xsd:enumeration value=\"snipRoundRect\"/>\n      <xsd:enumeration value=\"snip1Rect\"/>\n      <xsd:enumeration value=\"snip2SameRect\"/>\n      <xsd:enumeration value=\"snip2DiagRect\"/>\n      <xsd:enumeration value=\"plaque\"/>\n      <xsd:enumeration value=\"ellipse\"/>\n      <xsd:enumeration value=\"teardrop\"/>\n      <xsd:enumeration value=\"homePlate\"/>\n      <xsd:enumeration value=\"chevron\"/>\n      <xsd:enumeration value=\"pieWedge\"/>\n      <xsd:enumeration value=\"pie\"/>\n      <xsd:enumeration value=\"blockArc\"/>\n      <xsd:enumeration value=\"donut\"/>\n      <xsd:enumeration value=\"noSmoking\"/>\n      <xsd:enumeration value=\"rightArrow\"/>\n      <xsd:enumeration value=\"leftArrow\"/>\n      <xsd:enumeration value=\"upArrow\"/>\n      <xsd:enumeration value=\"downArrow\"/>\n      <xsd:enumeration value=\"stripedRightArrow\"/>\n      <xsd:enumeration value=\"notchedRightArrow\"/>\n      <xsd:enumeration value=\"bentUpArrow\"/>\n      <xsd:enumeration value=\"leftRightArrow\"/>\n      <xsd:enumeration value=\"upDownArrow\"/>\n      <xsd:enumeration value=\"leftUpArrow\"/>\n      <xsd:enumeration value=\"leftRightUpArrow\"/>\n      <xsd:enumeration value=\"quadArrow\"/>\n      <xsd:enumeration value=\"leftArrowCallout\"/>\n      <xsd:enumeration value=\"rightArrowCallout\"/>\n      <xsd:enumeration value=\"upArrowCallout\"/>\n      <xsd:enumeration value=\"downArrowCallout\"/>\n      <xsd:enumeration value=\"leftRightArrowCallout\"/>\n      <xsd:enumeration value=\"upDownArrowCallout\"/>\n      <xsd:enumeration value=\"quadArrowCallout\"/>\n      <xsd:enumeration value=\"bentArrow\"/>\n      <xsd:enumeration value=\"uturnArrow\"/>\n      <xsd:enumeration value=\"circularArrow\"/>\n      <xsd:enumeration value=\"leftCircularArrow\"/>\n      <xsd:enumeration value=\"leftRightCircularArrow\"/>\n      <xsd:enumeration value=\"curvedRightArrow\"/>\n      <xsd:enumeration value=\"curvedLeftArrow\"/>\n      <xsd:enumeration value=\"curvedUpArrow\"/>\n      <xsd:enumeration value=\"curvedDownArrow\"/>\n      <xsd:enumeration value=\"swooshArrow\"/>\n      <xsd:enumeration value=\"cube\"/>\n      <xsd:enumeration value=\"can\"/>\n      <xsd:enumeration value=\"lightningBolt\"/>\n      <xsd:enumeration value=\"heart\"/>\n      <xsd:enumeration value=\"sun\"/>\n      <xsd:enumeration value=\"moon\"/>\n      <xsd:enumeration value=\"smileyFace\"/>\n      <xsd:enumeration value=\"irregularSeal1\"/>\n      <xsd:enumeration value=\"irregularSeal2\"/>\n      <xsd:enumeration value=\"foldedCorner\"/>\n      <xsd:enumeration value=\"bevel\"/>\n      <xsd:enumeration value=\"frame\"/>\n      <xsd:enumeration value=\"halfFrame\"/>\n      <xsd:enumeration value=\"corner\"/>\n      <xsd:enumeration value=\"diagStripe\"/>\n      <xsd:enumeration value=\"chord\"/>\n      <xsd:enumeration value=\"arc\"/>\n      <xsd:enumeration value=\"leftBracket\"/>\n      <xsd:enumeration value=\"rightBracket\"/>\n      <xsd:enumeration value=\"leftBrace\"/>\n      <xsd:enumeration value=\"rightBrace\"/>\n      <xsd:enumeration value=\"bracketPair\"/>\n      <xsd:enumeration value=\"bracePair\"/>\n      <xsd:enumeration value=\"straightConnector1\"/>\n      <xsd:enumeration value=\"bentConnector2\"/>\n      <xsd:enumeration value=\"bentConnector3\"/>\n      <xsd:enumeration value=\"bentConnector4\"/>\n      <xsd:enumeration value=\"bentConnector5\"/>\n      <xsd:enumeration value=\"curvedConnector2\"/>\n      <xsd:enumeration value=\"curvedConnector3\"/>\n      <xsd:enumeration value=\"curvedConnector4\"/>\n      <xsd:enumeration value=\"curvedConnector5\"/>\n      <xsd:enumeration value=\"callout1\"/>\n      <xsd:enumeration value=\"callout2\"/>\n      <xsd:enumeration value=\"callout3\"/>\n      <xsd:enumeration value=\"accentCallout1\"/>\n      <xsd:enumeration value=\"accentCallout2\"/>\n      <xsd:enumeration value=\"accentCallout3\"/>\n      <xsd:enumeration value=\"borderCallout1\"/>\n      <xsd:enumeration value=\"borderCallout2\"/>\n      <xsd:enumeration value=\"borderCallout3\"/>\n      <xsd:enumeration value=\"accentBorderCallout1\"/>\n      <xsd:enumeration value=\"accentBorderCallout2\"/>\n      <xsd:enumeration value=\"accentBorderCallout3\"/>\n      <xsd:enumeration value=\"wedgeRectCallout\"/>\n      <xsd:enumeration value=\"wedgeRoundRectCallout\"/>\n      <xsd:enumeration value=\"wedgeEllipseCallout\"/>\n      <xsd:enumeration value=\"cloudCallout\"/>\n      <xsd:enumeration value=\"cloud\"/>\n      <xsd:enumeration value=\"ribbon\"/>\n      <xsd:enumeration value=\"ribbon2\"/>\n      <xsd:enumeration value=\"ellipseRibbon\"/>\n      <xsd:enumeration value=\"ellipseRibbon2\"/>\n      <xsd:enumeration value=\"leftRightRibbon\"/>\n      <xsd:enumeration value=\"verticalScroll\"/>\n      <xsd:enumeration value=\"horizontalScroll\"/>\n      <xsd:enumeration value=\"wave\"/>\n      <xsd:enumeration value=\"doubleWave\"/>\n      <xsd:enumeration value=\"plus\"/>\n      <xsd:enumeration value=\"flowChartProcess\"/>\n      <xsd:enumeration value=\"flowChartDecision\"/>\n      <xsd:enumeration value=\"flowChartInputOutput\"/>\n      <xsd:enumeration value=\"flowChartPredefinedProcess\"/>\n      <xsd:enumeration value=\"flowChartInternalStorage\"/>\n      <xsd:enumeration value=\"flowChartDocument\"/>\n      <xsd:enumeration value=\"flowChartMultidocument\"/>\n      <xsd:enumeration value=\"flowChartTerminator\"/>\n      <xsd:enumeration value=\"flowChartPreparation\"/>\n      <xsd:enumeration value=\"flowChartManualInput\"/>\n      <xsd:enumeration value=\"flowChartManualOperation\"/>\n      <xsd:enumeration value=\"flowChartConnector\"/>\n      <xsd:enumeration value=\"flowChartPunchedCard\"/>\n      <xsd:enumeration value=\"flowChartPunchedTape\"/>\n      <xsd:enumeration value=\"flowChartSummingJunction\"/>\n      <xsd:enumeration value=\"flowChartOr\"/>\n      <xsd:enumeration value=\"flowChartCollate\"/>\n      <xsd:enumeration value=\"flowChartSort\"/>\n      <xsd:enumeration value=\"flowChartExtract\"/>\n      <xsd:enumeration value=\"flowChartMerge\"/>\n      <xsd:enumeration value=\"flowChartOfflineStorage\"/>\n      <xsd:enumeration value=\"flowChartOnlineStorage\"/>\n      <xsd:enumeration value=\"flowChartMagneticTape\"/>\n      <xsd:enumeration value=\"flowChartMagneticDisk\"/>\n      <xsd:enumeration value=\"flowChartMagneticDrum\"/>\n      <xsd:enumeration value=\"flowChartDisplay\"/>\n      <xsd:enumeration value=\"flowChartDelay\"/>\n      <xsd:enumeration value=\"flowChartAlternateProcess\"/>\n      <xsd:enumeration value=\"flowChartOffpageConnector\"/>\n      <xsd:enumeration value=\"actionButtonBlank\"/>\n      <xsd:enumeration value=\"actionButtonHome\"/>\n      <xsd:enumeration value=\"actionButtonHelp\"/>\n      <xsd:enumeration value=\"actionButtonInformation\"/>\n      <xsd:enumeration value=\"actionButtonForwardNext\"/>\n      <xsd:enumeration value=\"actionButtonBackPrevious\"/>\n      <xsd:enumeration value=\"actionButtonEnd\"/>\n      <xsd:enumeration value=\"actionButtonBeginning\"/>\n      <xsd:enumeration value=\"actionButtonReturn\"/>\n      <xsd:enumeration value=\"actionButtonDocument\"/>\n      <xsd:enumeration value=\"actionButtonSound\"/>\n      <xsd:enumeration value=\"actionButtonMovie\"/>\n      <xsd:enumeration value=\"gear6\"/>\n      <xsd:enumeration value=\"gear9\"/>\n      <xsd:enumeration value=\"funnel\"/>\n      <xsd:enumeration value=\"mathPlus\"/>\n      <xsd:enumeration value=\"mathMinus\"/>\n      <xsd:enumeration value=\"mathMultiply\"/>\n      <xsd:enumeration value=\"mathDivide\"/>\n      <xsd:enumeration value=\"mathEqual\"/>\n      <xsd:enumeration value=\"mathNotEqual\"/>\n      <xsd:enumeration value=\"cornerTabs\"/>\n      <xsd:enumeration value=\"squareTabs\"/>\n      <xsd:enumeration value=\"plaqueTabs\"/>\n      <xsd:enumeration value=\"chartX\"/>\n      <xsd:enumeration value=\"chartStar\"/>\n      <xsd:enumeration value=\"chartPlus\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextShapeType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"textNoShape\"/>\n      <xsd:enumeration value=\"textPlain\"/>\n      <xsd:enumeration value=\"textStop\"/>\n      <xsd:enumeration value=\"textTriangle\"/>\n      <xsd:enumeration value=\"textTriangleInverted\"/>\n      <xsd:enumeration value=\"textChevron\"/>\n      <xsd:enumeration value=\"textChevronInverted\"/>\n      <xsd:enumeration value=\"textRingInside\"/>\n      <xsd:enumeration value=\"textRingOutside\"/>\n      <xsd:enumeration value=\"textArchUp\"/>\n      <xsd:enumeration value=\"textArchDown\"/>\n      <xsd:enumeration value=\"textCircle\"/>\n      <xsd:enumeration value=\"textButton\"/>\n      <xsd:enumeration value=\"textArchUpPour\"/>\n      <xsd:enumeration value=\"textArchDownPour\"/>\n      <xsd:enumeration value=\"textCirclePour\"/>\n      <xsd:enumeration value=\"textButtonPour\"/>\n      <xsd:enumeration value=\"textCurveUp\"/>\n      <xsd:enumeration value=\"textCurveDown\"/>\n      <xsd:enumeration value=\"textCanUp\"/>\n      <xsd:enumeration value=\"textCanDown\"/>\n      <xsd:enumeration value=\"textWave1\"/>\n      <xsd:enumeration value=\"textWave2\"/>\n      <xsd:enumeration value=\"textDoubleWave1\"/>\n      <xsd:enumeration value=\"textWave4\"/>\n      <xsd:enumeration value=\"textInflate\"/>\n      <xsd:enumeration value=\"textDeflate\"/>\n      <xsd:enumeration value=\"textInflateBottom\"/>\n      <xsd:enumeration value=\"textDeflateBottom\"/>\n      <xsd:enumeration value=\"textInflateTop\"/>\n      <xsd:enumeration value=\"textDeflateTop\"/>\n      <xsd:enumeration value=\"textDeflateInflate\"/>\n      <xsd:enumeration value=\"textDeflateInflateDeflate\"/>\n      <xsd:enumeration value=\"textFadeRight\"/>\n      <xsd:enumeration value=\"textFadeLeft\"/>\n      <xsd:enumeration value=\"textFadeUp\"/>\n      <xsd:enumeration value=\"textFadeDown\"/>\n      <xsd:enumeration value=\"textSlantUp\"/>\n      <xsd:enumeration value=\"textSlantDown\"/>\n      <xsd:enumeration value=\"textCascadeUp\"/>\n      <xsd:enumeration value=\"textCascadeDown\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_GeomGuideName\">\n    <xsd:restriction base=\"xsd:token\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_GeomGuideFormula\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_GeomGuide\">\n    <xsd:attribute name=\"name\" type=\"ST_GeomGuideName\" use=\"required\"/>\n    <xsd:attribute name=\"fmla\" type=\"ST_GeomGuideFormula\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GeomGuideList\">\n    <xsd:sequence>\n      <xsd:element name=\"gd\" type=\"CT_GeomGuide\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AdjCoordinate\">\n    <xsd:union memberTypes=\"ST_Coordinate ST_GeomGuideName\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AdjAngle\">\n    <xsd:union memberTypes=\"ST_Angle ST_GeomGuideName\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_AdjPoint2D\">\n    <xsd:attribute name=\"x\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"y\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GeomRect\">\n    <xsd:attribute name=\"l\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"t\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"r\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"b\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_XYAdjustHandle\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"CT_AdjPoint2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"gdRefX\" type=\"ST_GeomGuideName\" use=\"optional\"/>\n    <xsd:attribute name=\"minX\" type=\"ST_AdjCoordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"maxX\" type=\"ST_AdjCoordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"gdRefY\" type=\"ST_GeomGuideName\" use=\"optional\"/>\n    <xsd:attribute name=\"minY\" type=\"ST_AdjCoordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"maxY\" type=\"ST_AdjCoordinate\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PolarAdjustHandle\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"CT_AdjPoint2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"gdRefR\" type=\"ST_GeomGuideName\" use=\"optional\"/>\n    <xsd:attribute name=\"minR\" type=\"ST_AdjCoordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"maxR\" type=\"ST_AdjCoordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"gdRefAng\" type=\"ST_GeomGuideName\" use=\"optional\"/>\n    <xsd:attribute name=\"minAng\" type=\"ST_AdjAngle\" use=\"optional\"/>\n    <xsd:attribute name=\"maxAng\" type=\"ST_AdjAngle\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConnectionSite\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"CT_AdjPoint2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ang\" type=\"ST_AdjAngle\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AdjustHandleList\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"ahXY\" type=\"CT_XYAdjustHandle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ahPolar\" type=\"CT_PolarAdjustHandle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConnectionSiteList\">\n    <xsd:sequence>\n      <xsd:element name=\"cxn\" type=\"CT_ConnectionSite\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Connection\">\n    <xsd:attribute name=\"id\" type=\"ST_DrawingElementId\" use=\"required\"/>\n    <xsd:attribute name=\"idx\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DMoveTo\">\n    <xsd:sequence>\n      <xsd:element name=\"pt\" type=\"CT_AdjPoint2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DLineTo\">\n    <xsd:sequence>\n      <xsd:element name=\"pt\" type=\"CT_AdjPoint2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DArcTo\">\n    <xsd:attribute name=\"wR\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"hR\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"stAng\" type=\"ST_AdjAngle\" use=\"required\"/>\n    <xsd:attribute name=\"swAng\" type=\"ST_AdjAngle\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DQuadBezierTo\">\n    <xsd:sequence>\n      <xsd:element name=\"pt\" type=\"CT_AdjPoint2D\" minOccurs=\"2\" maxOccurs=\"2\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DCubicBezierTo\">\n    <xsd:sequence>\n      <xsd:element name=\"pt\" type=\"CT_AdjPoint2D\" minOccurs=\"3\" maxOccurs=\"3\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DClose\"/>\n  <xsd:simpleType name=\"ST_PathFillMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"norm\"/>\n      <xsd:enumeration value=\"lighten\"/>\n      <xsd:enumeration value=\"lightenLess\"/>\n      <xsd:enumeration value=\"darken\"/>\n      <xsd:enumeration value=\"darkenLess\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Path2D\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"close\" type=\"CT_Path2DClose\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"moveTo\" type=\"CT_Path2DMoveTo\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnTo\" type=\"CT_Path2DLineTo\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"arcTo\" type=\"CT_Path2DArcTo\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"quadBezTo\" type=\"CT_Path2DQuadBezierTo\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cubicBezTo\" type=\"CT_Path2DCubicBezierTo\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"w\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"h\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"fill\" type=\"ST_PathFillMode\" use=\"optional\" default=\"norm\"/>\n    <xsd:attribute name=\"stroke\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"extrusionOk\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DList\">\n    <xsd:sequence>\n      <xsd:element name=\"path\" type=\"CT_Path2D\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PresetGeometry2D\">\n    <xsd:sequence>\n      <xsd:element name=\"avLst\" type=\"CT_GeomGuideList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prst\" type=\"ST_ShapeType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PresetTextShape\">\n    <xsd:sequence>\n      <xsd:element name=\"avLst\" type=\"CT_GeomGuideList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prst\" type=\"ST_TextShapeType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomGeometry2D\">\n    <xsd:sequence>\n      <xsd:element name=\"avLst\" type=\"CT_GeomGuideList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gdLst\" type=\"CT_GeomGuideList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ahLst\" type=\"CT_AdjustHandleList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cxnLst\" type=\"CT_ConnectionSiteList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rect\" type=\"CT_GeomRect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pathLst\" type=\"CT_Path2DList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Geometry\">\n    <xsd:choice>\n      <xsd:element name=\"custGeom\" type=\"CT_CustomGeometry2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prstGeom\" type=\"CT_PresetGeometry2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_TextGeometry\">\n    <xsd:choice>\n      <xsd:element name=\"custGeom\" type=\"CT_CustomGeometry2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prstTxWarp\" type=\"CT_PresetTextShape\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_LineEndType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"triangle\"/>\n      <xsd:enumeration value=\"stealth\"/>\n      <xsd:enumeration value=\"diamond\"/>\n      <xsd:enumeration value=\"oval\"/>\n      <xsd:enumeration value=\"arrow\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LineEndWidth\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sm\"/>\n      <xsd:enumeration value=\"med\"/>\n      <xsd:enumeration value=\"lg\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LineEndLength\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sm\"/>\n      <xsd:enumeration value=\"med\"/>\n      <xsd:enumeration value=\"lg\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LineEndProperties\">\n    <xsd:attribute name=\"type\" type=\"ST_LineEndType\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"w\" type=\"ST_LineEndWidth\" use=\"optional\"/>\n    <xsd:attribute name=\"len\" type=\"ST_LineEndLength\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_LineFillProperties\">\n    <xsd:choice>\n      <xsd:element name=\"noFill\" type=\"CT_NoFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"solidFill\" type=\"CT_SolidColorFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gradFill\" type=\"CT_GradientFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pattFill\" type=\"CT_PatternFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_LineJoinBevel\"/>\n  <xsd:complexType name=\"CT_LineJoinRound\"/>\n  <xsd:complexType name=\"CT_LineJoinMiterProperties\">\n    <xsd:attribute name=\"lim\" type=\"ST_PositivePercentage\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_LineJoinProperties\">\n    <xsd:choice>\n      <xsd:element name=\"round\" type=\"CT_LineJoinRound\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bevel\" type=\"CT_LineJoinBevel\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"miter\" type=\"CT_LineJoinMiterProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_PresetLineDashVal\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"solid\"/>\n      <xsd:enumeration value=\"dot\"/>\n      <xsd:enumeration value=\"dash\"/>\n      <xsd:enumeration value=\"lgDash\"/>\n      <xsd:enumeration value=\"dashDot\"/>\n      <xsd:enumeration value=\"lgDashDot\"/>\n      <xsd:enumeration value=\"lgDashDotDot\"/>\n      <xsd:enumeration value=\"sysDash\"/>\n      <xsd:enumeration value=\"sysDot\"/>\n      <xsd:enumeration value=\"sysDashDot\"/>\n      <xsd:enumeration value=\"sysDashDotDot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PresetLineDashProperties\">\n    <xsd:attribute name=\"val\" type=\"ST_PresetLineDashVal\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DashStop\">\n    <xsd:attribute name=\"d\" type=\"ST_PositivePercentage\" use=\"required\"/>\n    <xsd:attribute name=\"sp\" type=\"ST_PositivePercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DashStopList\">\n    <xsd:sequence>\n      <xsd:element name=\"ds\" type=\"CT_DashStop\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_LineDashProperties\">\n    <xsd:choice>\n      <xsd:element name=\"prstDash\" type=\"CT_PresetLineDashProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custDash\" type=\"CT_DashStopList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_LineCap\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"rnd\"/>\n      <xsd:enumeration value=\"sq\"/>\n      <xsd:enumeration value=\"flat\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LineWidth\">\n    <xsd:restriction base=\"ST_Coordinate32Unqualified\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"20116800\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PenAlignment\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"in\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CompoundLine\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sng\"/>\n      <xsd:enumeration value=\"dbl\"/>\n      <xsd:enumeration value=\"thickThin\"/>\n      <xsd:enumeration value=\"thinThick\"/>\n      <xsd:enumeration value=\"tri\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LineProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_LineFillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_LineDashProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_LineJoinProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headEnd\" type=\"CT_LineEndProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tailEnd\" type=\"CT_LineEndProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"w\" type=\"ST_LineWidth\" use=\"optional\"/>\n    <xsd:attribute name=\"cap\" type=\"ST_LineCap\" use=\"optional\"/>\n    <xsd:attribute name=\"cmpd\" type=\"ST_CompoundLine\" use=\"optional\"/>\n    <xsd:attribute name=\"algn\" type=\"ST_PenAlignment\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ShapeID\">\n    <xsd:restriction base=\"xsd:token\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ShapeProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"xfrm\" type=\"CT_Transform2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_Geometry\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ln\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scene3d\" type=\"CT_Scene3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sp3d\" type=\"CT_Shape3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bwMode\" type=\"ST_BlackWhiteMode\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShapeProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"xfrm\" type=\"CT_GroupTransform2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scene3d\" type=\"CT_Scene3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bwMode\" type=\"ST_BlackWhiteMode\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StyleMatrixReference\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"idx\" type=\"ST_StyleMatrixColumnIndex\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontReference\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"idx\" type=\"ST_FontCollectionIndex\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShapeStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"lnRef\" type=\"CT_StyleMatrixReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fillRef\" type=\"CT_StyleMatrixReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"effectRef\" type=\"CT_StyleMatrixReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fontRef\" type=\"CT_FontReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DefaultShapeDefinition\">\n    <xsd:sequence>\n      <xsd:element name=\"spPr\" type=\"CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bodyPr\" type=\"CT_TextBodyProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lstStyle\" type=\"CT_TextListStyle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ObjectStyleDefaults\">\n    <xsd:sequence>\n      <xsd:element name=\"spDef\" type=\"CT_DefaultShapeDefinition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnDef\" type=\"CT_DefaultShapeDefinition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txDef\" type=\"CT_DefaultShapeDefinition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EmptyElement\"/>\n  <xsd:complexType name=\"CT_ColorMapping\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bg1\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"tx1\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"bg2\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"tx2\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"accent1\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"accent2\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"accent3\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"accent4\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"accent5\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"accent6\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"hlink\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"folHlink\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorMappingOverride\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"masterClrMapping\" type=\"CT_EmptyElement\"/>\n        <xsd:element name=\"overrideClrMapping\" type=\"CT_ColorMapping\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorSchemeAndMapping\">\n    <xsd:sequence>\n      <xsd:element name=\"clrScheme\" type=\"CT_ColorScheme\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrMap\" type=\"CT_ColorMapping\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorSchemeList\">\n    <xsd:sequence>\n      <xsd:element name=\"extraClrScheme\" type=\"CT_ColorSchemeAndMapping\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OfficeStyleSheet\">\n    <xsd:sequence>\n      <xsd:element name=\"themeElements\" type=\"CT_BaseStyles\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"objectDefaults\" type=\"CT_ObjectStyleDefaults\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extraClrSchemeLst\" type=\"CT_ColorSchemeList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custClrLst\" type=\"CT_CustomColorList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BaseStylesOverride\">\n    <xsd:sequence>\n      <xsd:element name=\"clrScheme\" type=\"CT_ColorScheme\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fontScheme\" type=\"CT_FontScheme\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fmtScheme\" type=\"CT_StyleMatrix\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ClipboardStyleSheet\">\n    <xsd:sequence>\n      <xsd:element name=\"themeElements\" type=\"CT_BaseStyles\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrMap\" type=\"CT_ColorMapping\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"theme\" type=\"CT_OfficeStyleSheet\"/>\n  <xsd:element name=\"themeOverride\" type=\"CT_BaseStylesOverride\"/>\n  <xsd:element name=\"themeManager\" type=\"CT_EmptyElement\"/>\n  <xsd:complexType name=\"CT_TableCellProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"lnL\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnR\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnT\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnB\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnTlToBr\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnBlToTr\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cell3D\" type=\"CT_Cell3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headers\" type=\"CT_Headers\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"marL\" type=\"ST_Coordinate32\" use=\"optional\" default=\"91440\"/>\n    <xsd:attribute name=\"marR\" type=\"ST_Coordinate32\" use=\"optional\" default=\"91440\"/>\n    <xsd:attribute name=\"marT\" type=\"ST_Coordinate32\" use=\"optional\" default=\"45720\"/>\n    <xsd:attribute name=\"marB\" type=\"ST_Coordinate32\" use=\"optional\" default=\"45720\"/>\n    <xsd:attribute name=\"vert\" type=\"ST_TextVerticalType\" use=\"optional\" default=\"horz\"/>\n    <xsd:attribute name=\"anchor\" type=\"ST_TextAnchoringType\" use=\"optional\" default=\"t\"/>\n    <xsd:attribute name=\"anchorCtr\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"horzOverflow\" type=\"ST_TextHorzOverflowType\" use=\"optional\" default=\"clip\"\n    />\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Headers\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"header\" type=\"xsd:string\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableCol\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"w\" type=\"ST_Coordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableGrid\">\n    <xsd:sequence>\n      <xsd:element name=\"gridCol\" type=\"CT_TableCol\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableCell\">\n    <xsd:sequence>\n      <xsd:element name=\"txBody\" type=\"CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tcPr\" type=\"CT_TableCellProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rowSpan\" type=\"xsd:int\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"gridSpan\" type=\"xsd:int\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"hMerge\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"vMerge\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"id\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableRow\">\n    <xsd:sequence>\n      <xsd:element name=\"tc\" type=\"CT_TableCell\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"h\" type=\"ST_Coordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n        <xsd:element name=\"tableStyle\" type=\"CT_TableStyle\"/>\n        <xsd:element name=\"tableStyleId\" type=\"s:ST_Guid\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rtl\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"firstRow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"firstCol\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"lastRow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"lastCol\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"bandRow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"bandCol\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Table\">\n    <xsd:sequence>\n      <xsd:element name=\"tblPr\" type=\"CT_TableProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblGrid\" type=\"CT_TableGrid\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tr\" type=\"CT_TableRow\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"tbl\" type=\"CT_Table\"/>\n  <xsd:complexType name=\"CT_Cell3D\">\n    <xsd:sequence>\n      <xsd:element name=\"bevel\" type=\"CT_Bevel\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lightRig\" type=\"CT_LightRig\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prstMaterial\" type=\"ST_PresetMaterialType\" use=\"optional\" default=\"plastic\"\n    />\n  </xsd:complexType>\n  <xsd:group name=\"EG_ThemeableFillStyle\">\n    <xsd:choice>\n      <xsd:element name=\"fill\" type=\"CT_FillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fillRef\" type=\"CT_StyleMatrixReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_ThemeableLineStyle\">\n    <xsd:choice>\n      <xsd:element name=\"ln\" type=\"CT_LineProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnRef\" type=\"CT_StyleMatrixReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ThemeableEffectStyle\">\n    <xsd:choice>\n      <xsd:element name=\"effect\" type=\"CT_EffectProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"effectRef\" type=\"CT_StyleMatrixReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_ThemeableFontStyles\">\n    <xsd:choice>\n      <xsd:element name=\"font\" type=\"CT_FontCollection\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fontRef\" type=\"CT_FontReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_OnOffStyleType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"on\"/>\n      <xsd:enumeration value=\"off\"/>\n      <xsd:enumeration value=\"def\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TableStyleTextStyle\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ThemeableFontStyles\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"b\" type=\"ST_OnOffStyleType\" use=\"optional\" default=\"def\"/>\n    <xsd:attribute name=\"i\" type=\"ST_OnOffStyleType\" use=\"optional\" default=\"def\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableCellBorderStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"left\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"right\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"top\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bottom\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"insideH\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"insideV\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tl2br\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tr2bl\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableBackgroundStyle\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ThemeableFillStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ThemeableEffectStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableStyleCellStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"tcBdr\" type=\"CT_TableCellBorderStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ThemeableFillStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cell3D\" type=\"CT_Cell3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TablePartStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"tcTxStyle\" type=\"CT_TableStyleTextStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tcStyle\" type=\"CT_TableStyleCellStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"tblBg\" type=\"CT_TableBackgroundStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"wholeTbl\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"band1H\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"band2H\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"band1V\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"band2V\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lastCol\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstCol\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lastRow\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"seCell\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"swCell\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstRow\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"neCell\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"nwCell\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"styleId\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"styleName\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableStyleList\">\n    <xsd:sequence>\n      <xsd:element name=\"tblStyle\" type=\"CT_TableStyle\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"def\" type=\"s:ST_Guid\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"tblStyleLst\" type=\"CT_TableStyleList\"/>\n  <xsd:complexType name=\"CT_TextParagraph\">\n    <xsd:sequence>\n      <xsd:element name=\"pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextRun\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"endParaRPr\" type=\"CT_TextCharacterProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextAnchoringType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"just\"/>\n      <xsd:enumeration value=\"dist\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextVertOverflowType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"overflow\"/>\n      <xsd:enumeration value=\"ellipsis\"/>\n      <xsd:enumeration value=\"clip\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextHorzOverflowType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"overflow\"/>\n      <xsd:enumeration value=\"clip\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextVerticalType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"horz\"/>\n      <xsd:enumeration value=\"vert\"/>\n      <xsd:enumeration value=\"vert270\"/>\n      <xsd:enumeration value=\"wordArtVert\"/>\n      <xsd:enumeration value=\"eaVert\"/>\n      <xsd:enumeration value=\"mongolianVert\"/>\n      <xsd:enumeration value=\"wordArtVertRtl\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextWrappingType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"square\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextColumnCount\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"1\"/>\n      <xsd:maxInclusive value=\"16\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextListStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"defPPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl1pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl2pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl3pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl4pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl5pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl6pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl7pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl8pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl9pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextFontScalePercentOrPercentString\">\n    <xsd:union memberTypes=\"ST_TextFontScalePercent s:ST_Percentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextFontScalePercent\">\n    <xsd:restriction base=\"ST_PercentageDecimal\">\n      <xsd:minInclusive value=\"1000\"/>\n      <xsd:maxInclusive value=\"100000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextNormalAutofit\">\n    <xsd:attribute name=\"fontScale\" type=\"ST_TextFontScalePercentOrPercentString\" use=\"optional\"\n      default=\"100%\"/>\n    <xsd:attribute name=\"lnSpcReduction\" type=\"ST_TextSpacingPercentOrPercentString\" use=\"optional\"\n      default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextShapeAutofit\"/>\n  <xsd:complexType name=\"CT_TextNoAutofit\"/>\n  <xsd:group name=\"EG_TextAutofit\">\n    <xsd:choice>\n      <xsd:element name=\"noAutofit\" type=\"CT_TextNoAutofit\"/>\n      <xsd:element name=\"normAutofit\" type=\"CT_TextNormalAutofit\"/>\n      <xsd:element name=\"spAutoFit\" type=\"CT_TextShapeAutofit\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_TextBodyProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"prstTxWarp\" type=\"CT_PresetTextShape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextAutofit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scene3d\" type=\"CT_Scene3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_Text3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rot\" type=\"ST_Angle\" use=\"optional\"/>\n    <xsd:attribute name=\"spcFirstLastPara\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"vertOverflow\" type=\"ST_TextVertOverflowType\" use=\"optional\"/>\n    <xsd:attribute name=\"horzOverflow\" type=\"ST_TextHorzOverflowType\" use=\"optional\"/>\n    <xsd:attribute name=\"vert\" type=\"ST_TextVerticalType\" use=\"optional\"/>\n    <xsd:attribute name=\"wrap\" type=\"ST_TextWrappingType\" use=\"optional\"/>\n    <xsd:attribute name=\"lIns\" type=\"ST_Coordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"tIns\" type=\"ST_Coordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"rIns\" type=\"ST_Coordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"bIns\" type=\"ST_Coordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"numCol\" type=\"ST_TextColumnCount\" use=\"optional\"/>\n    <xsd:attribute name=\"spcCol\" type=\"ST_PositiveCoordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"rtlCol\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"fromWordArt\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"anchor\" type=\"ST_TextAnchoringType\" use=\"optional\"/>\n    <xsd:attribute name=\"anchorCtr\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"forceAA\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"upright\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"compatLnSpc\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextBody\">\n    <xsd:sequence>\n      <xsd:element name=\"bodyPr\" type=\"CT_TextBodyProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lstStyle\" type=\"CT_TextListStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"p\" type=\"CT_TextParagraph\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextBulletStartAtNum\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"1\"/>\n      <xsd:maxInclusive value=\"32767\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextAutonumberScheme\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"alphaLcParenBoth\"/>\n      <xsd:enumeration value=\"alphaUcParenBoth\"/>\n      <xsd:enumeration value=\"alphaLcParenR\"/>\n      <xsd:enumeration value=\"alphaUcParenR\"/>\n      <xsd:enumeration value=\"alphaLcPeriod\"/>\n      <xsd:enumeration value=\"alphaUcPeriod\"/>\n      <xsd:enumeration value=\"arabicParenBoth\"/>\n      <xsd:enumeration value=\"arabicParenR\"/>\n      <xsd:enumeration value=\"arabicPeriod\"/>\n      <xsd:enumeration value=\"arabicPlain\"/>\n      <xsd:enumeration value=\"romanLcParenBoth\"/>\n      <xsd:enumeration value=\"romanUcParenBoth\"/>\n      <xsd:enumeration value=\"romanLcParenR\"/>\n      <xsd:enumeration value=\"romanUcParenR\"/>\n      <xsd:enumeration value=\"romanLcPeriod\"/>\n      <xsd:enumeration value=\"romanUcPeriod\"/>\n      <xsd:enumeration value=\"circleNumDbPlain\"/>\n      <xsd:enumeration value=\"circleNumWdBlackPlain\"/>\n      <xsd:enumeration value=\"circleNumWdWhitePlain\"/>\n      <xsd:enumeration value=\"arabicDbPeriod\"/>\n      <xsd:enumeration value=\"arabicDbPlain\"/>\n      <xsd:enumeration value=\"ea1ChsPeriod\"/>\n      <xsd:enumeration value=\"ea1ChsPlain\"/>\n      <xsd:enumeration value=\"ea1ChtPeriod\"/>\n      <xsd:enumeration value=\"ea1ChtPlain\"/>\n      <xsd:enumeration value=\"ea1JpnChsDbPeriod\"/>\n      <xsd:enumeration value=\"ea1JpnKorPlain\"/>\n      <xsd:enumeration value=\"ea1JpnKorPeriod\"/>\n      <xsd:enumeration value=\"arabic1Minus\"/>\n      <xsd:enumeration value=\"arabic2Minus\"/>\n      <xsd:enumeration value=\"hebrew2Minus\"/>\n      <xsd:enumeration value=\"thaiAlphaPeriod\"/>\n      <xsd:enumeration value=\"thaiAlphaParenR\"/>\n      <xsd:enumeration value=\"thaiAlphaParenBoth\"/>\n      <xsd:enumeration value=\"thaiNumPeriod\"/>\n      <xsd:enumeration value=\"thaiNumParenR\"/>\n      <xsd:enumeration value=\"thaiNumParenBoth\"/>\n      <xsd:enumeration value=\"hindiAlphaPeriod\"/>\n      <xsd:enumeration value=\"hindiNumPeriod\"/>\n      <xsd:enumeration value=\"hindiNumParenR\"/>\n      <xsd:enumeration value=\"hindiAlpha1Period\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextBulletColorFollowText\"/>\n  <xsd:group name=\"EG_TextBulletColor\">\n    <xsd:choice>\n      <xsd:element name=\"buClrTx\" type=\"CT_TextBulletColorFollowText\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"buClr\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_TextBulletSize\">\n    <xsd:union memberTypes=\"ST_TextBulletSizePercent ST_TextBulletSizeDecimal\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextBulletSizePercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*((2[5-9])|([3-9][0-9])|([1-3][0-9][0-9])|400)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextBulletSizeDecimal\">\n    <xsd:restriction base=\"ST_PercentageDecimal\">\n      <xsd:minInclusive value=\"25000\"/>\n      <xsd:maxInclusive value=\"400000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextBulletSizeFollowText\"/>\n  <xsd:complexType name=\"CT_TextBulletSizePercent\">\n    <xsd:attribute name=\"val\" type=\"ST_TextBulletSizePercent\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextBulletSizePoint\">\n    <xsd:attribute name=\"val\" type=\"ST_TextFontSize\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_TextBulletSize\">\n    <xsd:choice>\n      <xsd:element name=\"buSzTx\" type=\"CT_TextBulletSizeFollowText\"/>\n      <xsd:element name=\"buSzPct\" type=\"CT_TextBulletSizePercent\"/>\n      <xsd:element name=\"buSzPts\" type=\"CT_TextBulletSizePoint\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_TextBulletTypefaceFollowText\"/>\n  <xsd:group name=\"EG_TextBulletTypeface\">\n    <xsd:choice>\n      <xsd:element name=\"buFontTx\" type=\"CT_TextBulletTypefaceFollowText\"/>\n      <xsd:element name=\"buFont\" type=\"CT_TextFont\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_TextAutonumberBullet\">\n    <xsd:attribute name=\"type\" type=\"ST_TextAutonumberScheme\" use=\"required\"/>\n    <xsd:attribute name=\"startAt\" type=\"ST_TextBulletStartAtNum\" use=\"optional\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextCharBullet\">\n    <xsd:attribute name=\"char\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextBlipBullet\">\n    <xsd:sequence>\n      <xsd:element name=\"blip\" type=\"CT_Blip\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextNoBullet\"/>\n  <xsd:group name=\"EG_TextBullet\">\n    <xsd:choice>\n      <xsd:element name=\"buNone\" type=\"CT_TextNoBullet\"/>\n      <xsd:element name=\"buAutoNum\" type=\"CT_TextAutonumberBullet\"/>\n      <xsd:element name=\"buChar\" type=\"CT_TextCharBullet\"/>\n      <xsd:element name=\"buBlip\" type=\"CT_TextBlipBullet\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_TextPoint\">\n    <xsd:union memberTypes=\"ST_TextPointUnqualified s:ST_UniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextPointUnqualified\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"-400000\"/>\n      <xsd:maxInclusive value=\"400000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextNonNegativePoint\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"400000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextFontSize\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"100\"/>\n      <xsd:maxInclusive value=\"400000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextTypeface\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PitchFamily\">\n   <xsd:restriction base=\"xsd:byte\">\n     <xsd:enumeration value=\"00\"/>\n     <xsd:enumeration value=\"01\"/>\n     <xsd:enumeration value=\"02\"/>\n     <xsd:enumeration value=\"16\"/>\n     <xsd:enumeration value=\"17\"/>\n     <xsd:enumeration value=\"18\"/>\n     <xsd:enumeration value=\"32\"/>\n     <xsd:enumeration value=\"33\"/>\n     <xsd:enumeration value=\"34\"/>\n     <xsd:enumeration value=\"48\"/>\n     <xsd:enumeration value=\"49\"/>\n     <xsd:enumeration value=\"50\"/>\n     <xsd:enumeration value=\"64\"/>\n     <xsd:enumeration value=\"65\"/>\n     <xsd:enumeration value=\"66\"/>\n     <xsd:enumeration value=\"80\"/>\n     <xsd:enumeration value=\"81\"/>\n     <xsd:enumeration value=\"82\"/>\n   </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_TextFont\">\n    <xsd:attribute name=\"typeface\" type=\"ST_TextTypeface\" use=\"required\"/>\n    <xsd:attribute name=\"panose\" type=\"s:ST_Panose\" use=\"optional\"/>\n    <xsd:attribute name=\"pitchFamily\" type=\"ST_PitchFamily\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"charset\" type=\"xsd:byte\" use=\"optional\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextUnderlineType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"words\"/>\n      <xsd:enumeration value=\"sng\"/>\n      <xsd:enumeration value=\"dbl\"/>\n      <xsd:enumeration value=\"heavy\"/>\n      <xsd:enumeration value=\"dotted\"/>\n      <xsd:enumeration value=\"dottedHeavy\"/>\n      <xsd:enumeration value=\"dash\"/>\n      <xsd:enumeration value=\"dashHeavy\"/>\n      <xsd:enumeration value=\"dashLong\"/>\n      <xsd:enumeration value=\"dashLongHeavy\"/>\n      <xsd:enumeration value=\"dotDash\"/>\n      <xsd:enumeration value=\"dotDashHeavy\"/>\n      <xsd:enumeration value=\"dotDotDash\"/>\n      <xsd:enumeration value=\"dotDotDashHeavy\"/>\n      <xsd:enumeration value=\"wavy\"/>\n      <xsd:enumeration value=\"wavyHeavy\"/>\n      <xsd:enumeration value=\"wavyDbl\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextUnderlineLineFollowText\"/>\n  <xsd:complexType name=\"CT_TextUnderlineFillFollowText\"/>\n  <xsd:complexType name=\"CT_TextUnderlineFillGroupWrapper\">\n    <xsd:group ref=\"EG_FillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_TextUnderlineLine\">\n    <xsd:choice>\n      <xsd:element name=\"uLnTx\" type=\"CT_TextUnderlineLineFollowText\"/>\n      <xsd:element name=\"uLn\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_TextUnderlineFill\">\n    <xsd:choice>\n      <xsd:element name=\"uFillTx\" type=\"CT_TextUnderlineFillFollowText\"/>\n      <xsd:element name=\"uFill\" type=\"CT_TextUnderlineFillGroupWrapper\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_TextStrikeType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"noStrike\"/>\n      <xsd:enumeration value=\"sngStrike\"/>\n      <xsd:enumeration value=\"dblStrike\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextCapsType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"small\"/>\n      <xsd:enumeration value=\"all\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextCharacterProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"ln\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"highlight\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextUnderlineLine\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextUnderlineFill\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"latin\" type=\"CT_TextFont\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ea\" type=\"CT_TextFont\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cs\" type=\"CT_TextFont\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sym\" type=\"CT_TextFont\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hlinkClick\" type=\"CT_Hyperlink\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hlinkMouseOver\" type=\"CT_Hyperlink\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rtl\" type=\"CT_Boolean\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"kumimoji\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"lang\" type=\"s:ST_Lang\" use=\"optional\"/>\n    <xsd:attribute name=\"altLang\" type=\"s:ST_Lang\" use=\"optional\"/>\n    <xsd:attribute name=\"sz\" type=\"ST_TextFontSize\" use=\"optional\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"u\" type=\"ST_TextUnderlineType\" use=\"optional\"/>\n    <xsd:attribute name=\"strike\" type=\"ST_TextStrikeType\" use=\"optional\"/>\n    <xsd:attribute name=\"kern\" type=\"ST_TextNonNegativePoint\" use=\"optional\"/>\n    <xsd:attribute name=\"cap\" type=\"ST_TextCapsType\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"spc\" type=\"ST_TextPoint\" use=\"optional\"/>\n    <xsd:attribute name=\"normalizeH\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"baseline\" type=\"ST_Percentage\" use=\"optional\"/>\n    <xsd:attribute name=\"noProof\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"dirty\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"err\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"smtClean\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"smtId\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"bmk\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Boolean\">\n    <xsd:attribute name=\"val\" type=\"s:ST_OnOff\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextSpacingPoint\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"158400\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextSpacingPercentOrPercentString\">\n    <xsd:union memberTypes=\"ST_TextSpacingPercent s:ST_Percentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextSpacingPercent\">\n    <xsd:restriction base=\"ST_PercentageDecimal\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"13200000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextSpacingPercent\">\n    <xsd:attribute name=\"val\" type=\"ST_TextSpacingPercentOrPercentString\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextSpacingPoint\">\n    <xsd:attribute name=\"val\" type=\"ST_TextSpacingPoint\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextMargin\">\n    <xsd:restriction base=\"ST_Coordinate32Unqualified\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"51206400\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextIndent\">\n    <xsd:restriction base=\"ST_Coordinate32Unqualified\">\n      <xsd:minInclusive value=\"-51206400\"/>\n      <xsd:maxInclusive value=\"51206400\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextTabAlignType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"dec\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextTabStop\">\n    <xsd:attribute name=\"pos\" type=\"ST_Coordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"algn\" type=\"ST_TextTabAlignType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextTabStopList\">\n    <xsd:sequence>\n      <xsd:element name=\"tab\" type=\"CT_TextTabStop\" minOccurs=\"0\" maxOccurs=\"32\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextLineBreak\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_TextCharacterProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextSpacing\">\n    <xsd:choice>\n      <xsd:element name=\"spcPct\" type=\"CT_TextSpacingPercent\"/>\n      <xsd:element name=\"spcPts\" type=\"CT_TextSpacingPoint\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextAlignType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"just\"/>\n      <xsd:enumeration value=\"justLow\"/>\n      <xsd:enumeration value=\"dist\"/>\n      <xsd:enumeration value=\"thaiDist\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextFontAlignType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"base\"/>\n      <xsd:enumeration value=\"b\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextIndentLevelType\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"8\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextParagraphProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"lnSpc\" type=\"CT_TextSpacing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spcBef\" type=\"CT_TextSpacing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spcAft\" type=\"CT_TextSpacing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextBulletColor\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextBulletSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextBulletTypeface\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextBullet\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tabLst\" type=\"CT_TextTabStopList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"defRPr\" type=\"CT_TextCharacterProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"marL\" type=\"ST_TextMargin\" use=\"optional\"/>\n    <xsd:attribute name=\"marR\" type=\"ST_TextMargin\" use=\"optional\"/>\n    <xsd:attribute name=\"lvl\" type=\"ST_TextIndentLevelType\" use=\"optional\"/>\n    <xsd:attribute name=\"indent\" type=\"ST_TextIndent\" use=\"optional\"/>\n    <xsd:attribute name=\"algn\" type=\"ST_TextAlignType\" use=\"optional\"/>\n    <xsd:attribute name=\"defTabSz\" type=\"ST_Coordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"rtl\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"eaLnBrk\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"fontAlgn\" type=\"ST_TextFontAlignType\" use=\"optional\"/>\n    <xsd:attribute name=\"latinLnBrk\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"hangingPunct\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextField\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_TextCharacterProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"t\" type=\"xsd:string\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"type\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_TextRun\">\n    <xsd:choice>\n      <xsd:element name=\"r\" type=\"CT_RegularTextRun\"/>\n      <xsd:element name=\"br\" type=\"CT_TextLineBreak\"/>\n      <xsd:element name=\"fld\" type=\"CT_TextField\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_RegularTextRun\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_TextCharacterProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"t\" type=\"xsd:string\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/picture\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\" elementFormDefault=\"qualified\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/picture\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:complexType name=\"CT_PictureNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvPicPr\" type=\"a:CT_NonVisualPictureProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Picture\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"nvPicPr\" type=\"CT_PictureNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blipFill\" type=\"a:CT_BlipFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"pic\" type=\"CT_Picture\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing\"\n  elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:import schemaLocation=\"shared-relationshipReference.xsd\"\n    namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"/>\n  <xsd:element name=\"from\" type=\"CT_Marker\"/>\n  <xsd:element name=\"to\" type=\"CT_Marker\"/>\n  <xsd:complexType name=\"CT_AnchorClientData\">\n    <xsd:attribute name=\"fLocksWithSheet\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"fPrintsWithSheet\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvSpPr\" type=\"a:CT_NonVisualDrawingShapeProps\" minOccurs=\"1\" maxOccurs=\"1\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Shape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvSpPr\" type=\"CT_ShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txBody\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"textlink\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fLocksText\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConnectorNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvCxnSpPr\" type=\"a:CT_NonVisualConnectorProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Connector\">\n    <xsd:sequence>\n      <xsd:element name=\"nvCxnSpPr\" type=\"CT_ConnectorNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PictureNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvPicPr\" type=\"a:CT_NonVisualPictureProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Picture\">\n    <xsd:sequence>\n      <xsd:element name=\"nvPicPr\" type=\"CT_PictureNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blipFill\" type=\"a:CT_BlipFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObjectFrameNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGraphicFramePr\" type=\"a:CT_NonVisualGraphicFrameProperties\"\n        minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObjectFrame\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGraphicFramePr\" type=\"CT_GraphicalObjectFrameNonVisual\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"a:CT_Transform2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"a:graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGrpSpPr\" type=\"a:CT_NonVisualGroupDrawingShapeProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGrpSpPr\" type=\"CT_GroupShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grpSpPr\" type=\"a:CT_GroupShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"sp\" type=\"CT_Shape\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_GroupShape\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicalObjectFrame\"/>\n        <xsd:element name=\"cxnSp\" type=\"CT_Connector\"/>\n        <xsd:element name=\"pic\" type=\"CT_Picture\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ObjectChoices\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"sp\" type=\"CT_Shape\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_GroupShape\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicalObjectFrame\"/>\n        <xsd:element name=\"cxnSp\" type=\"CT_Connector\"/>\n        <xsd:element name=\"pic\" type=\"CT_Picture\"/>\n        <xsd:element name=\"contentPart\" type=\"CT_Rel\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_Rel\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ColID\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RowID\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Marker\">\n    <xsd:sequence>\n      <xsd:element name=\"col\" type=\"ST_ColID\"/>\n      <xsd:element name=\"colOff\" type=\"a:ST_Coordinate\"/>\n      <xsd:element name=\"row\" type=\"ST_RowID\"/>\n      <xsd:element name=\"rowOff\" type=\"a:ST_Coordinate\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_EditAs\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"twoCell\"/>\n      <xsd:enumeration value=\"oneCell\"/>\n      <xsd:enumeration value=\"absolute\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TwoCellAnchor\">\n    <xsd:sequence>\n      <xsd:element name=\"from\" type=\"CT_Marker\"/>\n      <xsd:element name=\"to\" type=\"CT_Marker\"/>\n      <xsd:group ref=\"EG_ObjectChoices\"/>\n      <xsd:element name=\"clientData\" type=\"CT_AnchorClientData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"editAs\" type=\"ST_EditAs\" use=\"optional\" default=\"twoCell\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OneCellAnchor\">\n    <xsd:sequence>\n      <xsd:element name=\"from\" type=\"CT_Marker\"/>\n      <xsd:element name=\"ext\" type=\"a:CT_PositiveSize2D\"/>\n      <xsd:group ref=\"EG_ObjectChoices\"/>\n      <xsd:element name=\"clientData\" type=\"CT_AnchorClientData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AbsoluteAnchor\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"a:CT_Point2D\"/>\n      <xsd:element name=\"ext\" type=\"a:CT_PositiveSize2D\"/>\n      <xsd:group ref=\"EG_ObjectChoices\"/>\n      <xsd:element name=\"clientData\" type=\"CT_AnchorClientData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Anchor\">\n    <xsd:choice>\n      <xsd:element name=\"twoCellAnchor\" type=\"CT_TwoCellAnchor\"/>\n      <xsd:element name=\"oneCellAnchor\" type=\"CT_OneCellAnchor\"/>\n      <xsd:element name=\"absoluteAnchor\" type=\"CT_AbsoluteAnchor\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_Drawing\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_Anchor\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"wsDr\" type=\"CT_Drawing\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n  xmlns:dpct=\"http://schemas.openxmlformats.org/drawingml/2006/picture\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\"\n  elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:import schemaLocation=\"wml.xsd\"\n    namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/picture\"\n    schemaLocation=\"dml-picture.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:complexType name=\"CT_EffectExtent\">\n    <xsd:attribute name=\"l\" type=\"a:ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"t\" type=\"a:ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"r\" type=\"a:ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"b\" type=\"a:ST_Coordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_WrapDistance\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Inline\">\n    <xsd:sequence>\n      <xsd:element name=\"extent\" type=\"a:CT_PositiveSize2D\"/>\n      <xsd:element name=\"effectExtent\" type=\"CT_EffectExtent\" minOccurs=\"0\"/>\n      <xsd:element name=\"docPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGraphicFramePr\" type=\"a:CT_NonVisualGraphicFrameProperties\"\n        minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"a:graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"distT\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distB\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distL\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distR\" type=\"ST_WrapDistance\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_WrapText\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"bothSides\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"largest\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_WrapPath\">\n    <xsd:sequence>\n      <xsd:element name=\"start\" type=\"a:CT_Point2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lineTo\" type=\"a:CT_Point2D\" minOccurs=\"2\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"edited\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WrapNone\"/>\n  <xsd:complexType name=\"CT_WrapSquare\">\n    <xsd:sequence>\n      <xsd:element name=\"effectExtent\" type=\"CT_EffectExtent\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"wrapText\" type=\"ST_WrapText\" use=\"required\"/>\n    <xsd:attribute name=\"distT\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distB\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distL\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distR\" type=\"ST_WrapDistance\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WrapTight\">\n    <xsd:sequence>\n      <xsd:element name=\"wrapPolygon\" type=\"CT_WrapPath\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"wrapText\" type=\"ST_WrapText\" use=\"required\"/>\n    <xsd:attribute name=\"distL\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distR\" type=\"ST_WrapDistance\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WrapThrough\">\n    <xsd:sequence>\n      <xsd:element name=\"wrapPolygon\" type=\"CT_WrapPath\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"wrapText\" type=\"ST_WrapText\" use=\"required\"/>\n    <xsd:attribute name=\"distL\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distR\" type=\"ST_WrapDistance\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WrapTopBottom\">\n    <xsd:sequence>\n      <xsd:element name=\"effectExtent\" type=\"CT_EffectExtent\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"distT\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distB\" type=\"ST_WrapDistance\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_WrapType\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"wrapNone\" type=\"CT_WrapNone\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"wrapSquare\" type=\"CT_WrapSquare\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"wrapTight\" type=\"CT_WrapTight\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"wrapThrough\" type=\"CT_WrapThrough\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"wrapTopAndBottom\" type=\"CT_WrapTopBottom\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_PositionOffset\">\n    <xsd:restriction base=\"xsd:int\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AlignH\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"inside\"/>\n      <xsd:enumeration value=\"outside\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RelFromH\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"page\"/>\n      <xsd:enumeration value=\"column\"/>\n      <xsd:enumeration value=\"character\"/>\n      <xsd:enumeration value=\"leftMargin\"/>\n      <xsd:enumeration value=\"rightMargin\"/>\n      <xsd:enumeration value=\"insideMargin\"/>\n      <xsd:enumeration value=\"outsideMargin\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PosH\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"align\" type=\"ST_AlignH\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"posOffset\" type=\"ST_PositionOffset\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n    <xsd:attribute name=\"relativeFrom\" type=\"ST_RelFromH\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AlignV\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"inside\"/>\n      <xsd:enumeration value=\"outside\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RelFromV\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"page\"/>\n      <xsd:enumeration value=\"paragraph\"/>\n      <xsd:enumeration value=\"line\"/>\n      <xsd:enumeration value=\"topMargin\"/>\n      <xsd:enumeration value=\"bottomMargin\"/>\n      <xsd:enumeration value=\"insideMargin\"/>\n      <xsd:enumeration value=\"outsideMargin\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PosV\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"align\" type=\"ST_AlignV\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"posOffset\" type=\"ST_PositionOffset\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n    <xsd:attribute name=\"relativeFrom\" type=\"ST_RelFromV\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Anchor\">\n    <xsd:sequence>\n      <xsd:element name=\"simplePos\" type=\"a:CT_Point2D\"/>\n      <xsd:element name=\"positionH\" type=\"CT_PosH\"/>\n      <xsd:element name=\"positionV\" type=\"CT_PosV\"/>\n      <xsd:element name=\"extent\" type=\"a:CT_PositiveSize2D\"/>\n      <xsd:element name=\"effectExtent\" type=\"CT_EffectExtent\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_WrapType\"/>\n      <xsd:element name=\"docPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGraphicFramePr\" type=\"a:CT_NonVisualGraphicFrameProperties\"\n        minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"a:graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"distT\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distB\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distL\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distR\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"simplePos\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"relativeHeight\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"behindDoc\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"locked\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"layoutInCell\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"allowOverlap\" type=\"xsd:boolean\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TxbxContent\">\n    <xsd:group ref=\"w:EG_BlockLevelElts\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextboxInfo\">\n    <xsd:sequence>\n      <xsd:element name=\"txbxContent\" type=\"CT_TxbxContent\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedShort\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LinkedTextboxInformation\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedShort\" use=\"required\"/>\n    <xsd:attribute name=\"seq\" type=\"xsd:unsignedShort\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WordprocessingShape\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"cNvSpPr\" type=\"a:CT_NonVisualDrawingShapeProps\" minOccurs=\"1\"\n          maxOccurs=\"1\"/>\n        <xsd:element name=\"cNvCnPr\" type=\"a:CT_NonVisualConnectorProperties\" minOccurs=\"1\"\n          maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n        <xsd:element name=\"txbx\" type=\"CT_TextboxInfo\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"linkedTxbx\" type=\"CT_LinkedTextboxInformation\" minOccurs=\"1\"\n          maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"bodyPr\" type=\"a:CT_TextBodyProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"normalEastAsianFlow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicFrame\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvFrPr\" type=\"a:CT_NonVisualGraphicFrameProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"a:CT_Transform2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"a:graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WordprocessingContentPartNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvContentPartPr\" type=\"a:CT_NonVisualContentPartProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WordprocessingContentPart\">\n    <xsd:sequence>\n      <xsd:element name=\"nvContentPartPr\" type=\"CT_WordprocessingContentPartNonVisual\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"a:CT_Transform2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bwMode\" type=\"a:ST_BlackWhiteMode\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WordprocessingGroup\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGrpSpPr\" type=\"a:CT_NonVisualGroupDrawingShapeProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"grpSpPr\" type=\"a:CT_GroupShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element ref=\"wsp\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_WordprocessingGroup\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicFrame\"/>\n        <xsd:element ref=\"dpct:pic\"/>\n        <xsd:element name=\"contentPart\" type=\"CT_WordprocessingContentPart\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WordprocessingCanvas\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"bg\" type=\"a:CT_BackgroundFormatting\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"whole\" type=\"a:CT_WholeE2oFormatting\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element ref=\"wsp\"/>\n        <xsd:element ref=\"dpct:pic\"/>\n        <xsd:element name=\"contentPart\" type=\"CT_WordprocessingContentPart\"/>\n        <xsd:element ref=\"wgp\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicFrame\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"wpc\" type=\"CT_WordprocessingCanvas\"/>\n  <xsd:element name=\"wgp\" type=\"CT_WordprocessingGroup\"/>\n  <xsd:element name=\"wsp\" type=\"CT_WordprocessingShape\"/>\n  <xsd:element name=\"inline\" type=\"CT_Inline\"/>\n  <xsd:element name=\"anchor\" type=\"CT_Anchor\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/presentationml/2006/main\"\n  xmlns:p=\"http://schemas.openxmlformats.org/presentationml/2006/main\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  elementFormDefault=\"qualified\"\n  targetNamespace=\"http://schemas.openxmlformats.org/presentationml/2006/main\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:simpleType name=\"ST_TransitionSideDirectionType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"u\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"d\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TransitionCornerDirectionType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"lu\"/>\n      <xsd:enumeration value=\"ru\"/>\n      <xsd:enumeration value=\"ld\"/>\n      <xsd:enumeration value=\"rd\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TransitionInOutDirectionType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"out\"/>\n      <xsd:enumeration value=\"in\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SideDirectionTransition\">\n    <xsd:attribute name=\"dir\" type=\"ST_TransitionSideDirectionType\" use=\"optional\" default=\"l\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CornerDirectionTransition\">\n    <xsd:attribute name=\"dir\" type=\"ST_TransitionCornerDirectionType\" use=\"optional\" default=\"lu\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TransitionEightDirectionType\">\n    <xsd:union memberTypes=\"ST_TransitionSideDirectionType ST_TransitionCornerDirectionType\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_EightDirectionTransition\">\n    <xsd:attribute name=\"dir\" type=\"ST_TransitionEightDirectionType\" use=\"optional\" default=\"l\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OrientationTransition\">\n    <xsd:attribute name=\"dir\" type=\"ST_Direction\" use=\"optional\" default=\"horz\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_InOutTransition\">\n    <xsd:attribute name=\"dir\" type=\"ST_TransitionInOutDirectionType\" use=\"optional\" default=\"out\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OptionalBlackTransition\">\n    <xsd:attribute name=\"thruBlk\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SplitTransition\">\n    <xsd:attribute name=\"orient\" type=\"ST_Direction\" use=\"optional\" default=\"horz\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_TransitionInOutDirectionType\" use=\"optional\" default=\"out\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WheelTransition\">\n    <xsd:attribute name=\"spokes\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"4\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TransitionStartSoundAction\">\n    <xsd:sequence>\n      <xsd:element minOccurs=\"1\" maxOccurs=\"1\" name=\"snd\" type=\"a:CT_EmbeddedWAVAudioFile\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"loop\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TransitionSoundAction\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"stSnd\" type=\"CT_TransitionStartSoundAction\"/>\n      <xsd:element name=\"endSnd\" type=\"CT_Empty\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TransitionSpeed\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"slow\"/>\n      <xsd:enumeration value=\"med\"/>\n      <xsd:enumeration value=\"fast\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SlideTransition\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n        <xsd:element name=\"blinds\" type=\"CT_OrientationTransition\"/>\n        <xsd:element name=\"checker\" type=\"CT_OrientationTransition\"/>\n        <xsd:element name=\"circle\" type=\"CT_Empty\"/>\n        <xsd:element name=\"dissolve\" type=\"CT_Empty\"/>\n        <xsd:element name=\"comb\" type=\"CT_OrientationTransition\"/>\n        <xsd:element name=\"cover\" type=\"CT_EightDirectionTransition\"/>\n        <xsd:element name=\"cut\" type=\"CT_OptionalBlackTransition\"/>\n        <xsd:element name=\"diamond\" type=\"CT_Empty\"/>\n        <xsd:element name=\"fade\" type=\"CT_OptionalBlackTransition\"/>\n        <xsd:element name=\"newsflash\" type=\"CT_Empty\"/>\n        <xsd:element name=\"plus\" type=\"CT_Empty\"/>\n        <xsd:element name=\"pull\" type=\"CT_EightDirectionTransition\"/>\n        <xsd:element name=\"push\" type=\"CT_SideDirectionTransition\"/>\n        <xsd:element name=\"random\" type=\"CT_Empty\"/>\n        <xsd:element name=\"randomBar\" type=\"CT_OrientationTransition\"/>\n        <xsd:element name=\"split\" type=\"CT_SplitTransition\"/>\n        <xsd:element name=\"strips\" type=\"CT_CornerDirectionTransition\"/>\n        <xsd:element name=\"wedge\" type=\"CT_Empty\"/>\n        <xsd:element name=\"wheel\" type=\"CT_WheelTransition\"/>\n        <xsd:element name=\"wipe\" type=\"CT_SideDirectionTransition\"/>\n        <xsd:element name=\"zoom\" type=\"CT_InOutTransition\"/>\n      </xsd:choice>\n      <xsd:element name=\"sndAc\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_TransitionSoundAction\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"spd\" type=\"ST_TransitionSpeed\" use=\"optional\" default=\"fast\"/>\n    <xsd:attribute name=\"advClick\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"advTm\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLTimeIndefinite\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"indefinite\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTime\">\n    <xsd:union memberTypes=\"xsd:unsignedInt ST_TLTimeIndefinite\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTimeNodeID\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLIterateIntervalTime\">\n    <xsd:attribute name=\"val\" type=\"ST_TLTime\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLIterateIntervalPercentage\">\n    <xsd:attribute name=\"val\" type=\"a:ST_PositivePercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_IterateType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"el\"/>\n      <xsd:enumeration value=\"wd\"/>\n      <xsd:enumeration value=\"lt\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLIterateData\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"tmAbs\" type=\"CT_TLIterateIntervalTime\"/>\n      <xsd:element name=\"tmPct\" type=\"CT_TLIterateIntervalPercentage\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"type\" type=\"ST_IterateType\" use=\"optional\" default=\"el\"/>\n    <xsd:attribute name=\"backwards\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLSubShapeId\">\n    <xsd:attribute name=\"spid\" type=\"a:ST_ShapeID\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTextTargetElement\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"charRg\" type=\"CT_IndexRange\"/>\n      <xsd:element name=\"pRg\" type=\"CT_IndexRange\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLChartSubelementType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"gridLegend\"/>\n      <xsd:enumeration value=\"series\"/>\n      <xsd:enumeration value=\"category\"/>\n      <xsd:enumeration value=\"ptInSeries\"/>\n      <xsd:enumeration value=\"ptInCategory\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLOleChartTargetElement\">\n    <xsd:attribute name=\"type\" type=\"ST_TLChartSubelementType\" use=\"required\"/>\n    <xsd:attribute name=\"lvl\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLShapeTargetElement\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"bg\" type=\"CT_Empty\"/>\n      <xsd:element name=\"subSp\" type=\"CT_TLSubShapeId\"/>\n      <xsd:element name=\"oleChartEl\" type=\"CT_TLOleChartTargetElement\"/>\n      <xsd:element name=\"txEl\" type=\"CT_TLTextTargetElement\"/>\n      <xsd:element name=\"graphicEl\" type=\"a:CT_AnimationElementChoice\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"spid\" type=\"a:ST_DrawingElementId\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTimeTargetElement\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"sldTgt\" type=\"CT_Empty\"/>\n      <xsd:element name=\"sndTgt\" type=\"a:CT_EmbeddedWAVAudioFile\"/>\n      <xsd:element name=\"spTgt\" type=\"CT_TLShapeTargetElement\"/>\n      <xsd:element name=\"inkTgt\" type=\"CT_TLSubShapeId\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTriggerTimeNodeID\">\n    <xsd:attribute name=\"val\" type=\"ST_TLTimeNodeID\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLTriggerRuntimeNode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"first\"/>\n      <xsd:enumeration value=\"last\"/>\n      <xsd:enumeration value=\"all\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLTriggerRuntimeNode\">\n    <xsd:attribute name=\"val\" type=\"ST_TLTriggerRuntimeNode\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLTriggerEvent\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"onBegin\"/>\n      <xsd:enumeration value=\"onEnd\"/>\n      <xsd:enumeration value=\"begin\"/>\n      <xsd:enumeration value=\"end\"/>\n      <xsd:enumeration value=\"onClick\"/>\n      <xsd:enumeration value=\"onDblClick\"/>\n      <xsd:enumeration value=\"onMouseOver\"/>\n      <xsd:enumeration value=\"onMouseOut\"/>\n      <xsd:enumeration value=\"onNext\"/>\n      <xsd:enumeration value=\"onPrev\"/>\n      <xsd:enumeration value=\"onStopAudio\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLTimeCondition\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"tgtEl\" type=\"CT_TLTimeTargetElement\"/>\n      <xsd:element name=\"tn\" type=\"CT_TLTriggerTimeNodeID\"/>\n      <xsd:element name=\"rtn\" type=\"CT_TLTriggerRuntimeNode\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"evt\" use=\"optional\" type=\"ST_TLTriggerEvent\"/>\n    <xsd:attribute name=\"delay\" type=\"ST_TLTime\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTimeConditionList\">\n    <xsd:sequence>\n      <xsd:element name=\"cond\" type=\"CT_TLTimeCondition\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TimeNodeList\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"par\" type=\"CT_TLTimeNodeParallel\"/>\n      <xsd:element name=\"seq\" type=\"CT_TLTimeNodeSequence\"/>\n      <xsd:element name=\"excl\" type=\"CT_TLTimeNodeExclusive\"/>\n      <xsd:element name=\"anim\" type=\"CT_TLAnimateBehavior\"/>\n      <xsd:element name=\"animClr\" type=\"CT_TLAnimateColorBehavior\"/>\n      <xsd:element name=\"animEffect\" type=\"CT_TLAnimateEffectBehavior\"/>\n      <xsd:element name=\"animMotion\" type=\"CT_TLAnimateMotionBehavior\"/>\n      <xsd:element name=\"animRot\" type=\"CT_TLAnimateRotationBehavior\"/>\n      <xsd:element name=\"animScale\" type=\"CT_TLAnimateScaleBehavior\"/>\n      <xsd:element name=\"cmd\" type=\"CT_TLCommandBehavior\"/>\n      <xsd:element name=\"set\" type=\"CT_TLSetBehavior\"/>\n      <xsd:element name=\"audio\" type=\"CT_TLMediaNodeAudio\"/>\n      <xsd:element name=\"video\" type=\"CT_TLMediaNodeVideo\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLTimeNodePresetClassType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"entr\"/>\n      <xsd:enumeration value=\"exit\"/>\n      <xsd:enumeration value=\"emph\"/>\n      <xsd:enumeration value=\"path\"/>\n      <xsd:enumeration value=\"verb\"/>\n      <xsd:enumeration value=\"mediacall\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTimeNodeRestartType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"always\"/>\n      <xsd:enumeration value=\"whenNotActive\"/>\n      <xsd:enumeration value=\"never\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTimeNodeFillType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"remove\"/>\n      <xsd:enumeration value=\"freeze\"/>\n      <xsd:enumeration value=\"hold\"/>\n      <xsd:enumeration value=\"transition\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTimeNodeSyncType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"canSlip\"/>\n      <xsd:enumeration value=\"locked\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTimeNodeMasterRelation\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sameClick\"/>\n      <xsd:enumeration value=\"lastClick\"/>\n      <xsd:enumeration value=\"nextClick\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTimeNodeType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"clickEffect\"/>\n      <xsd:enumeration value=\"withEffect\"/>\n      <xsd:enumeration value=\"afterEffect\"/>\n      <xsd:enumeration value=\"mainSeq\"/>\n      <xsd:enumeration value=\"interactiveSeq\"/>\n      <xsd:enumeration value=\"clickPar\"/>\n      <xsd:enumeration value=\"withGroup\"/>\n      <xsd:enumeration value=\"afterGroup\"/>\n      <xsd:enumeration value=\"tmRoot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLCommonTimeNodeData\">\n    <xsd:sequence>\n      <xsd:element name=\"stCondLst\" type=\"CT_TLTimeConditionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"endCondLst\" type=\"CT_TLTimeConditionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"endSync\" type=\"CT_TLTimeCondition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"iterate\" type=\"CT_TLIterateData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"childTnLst\" type=\"CT_TimeNodeList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"subTnLst\" type=\"CT_TimeNodeList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"ST_TLTimeNodeID\" use=\"optional\"/>\n    <xsd:attribute name=\"presetID\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"presetClass\" type=\"ST_TLTimeNodePresetClassType\" use=\"optional\"/>\n    <xsd:attribute name=\"presetSubtype\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"dur\" type=\"ST_TLTime\" use=\"optional\"/>\n    <xsd:attribute name=\"repeatCount\" type=\"ST_TLTime\" use=\"optional\" default=\"1000\"/>\n    <xsd:attribute name=\"repeatDur\" type=\"ST_TLTime\" use=\"optional\"/>\n    <xsd:attribute name=\"spd\" type=\"a:ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"accel\" type=\"a:ST_PositiveFixedPercentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"decel\" type=\"a:ST_PositiveFixedPercentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"autoRev\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"restart\" type=\"ST_TLTimeNodeRestartType\" use=\"optional\"/>\n    <xsd:attribute name=\"fill\" type=\"ST_TLTimeNodeFillType\" use=\"optional\"/>\n    <xsd:attribute name=\"syncBehavior\" type=\"ST_TLTimeNodeSyncType\" use=\"optional\"/>\n    <xsd:attribute name=\"tmFilter\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"evtFilter\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"display\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"masterRel\" type=\"ST_TLTimeNodeMasterRelation\" use=\"optional\"/>\n    <xsd:attribute name=\"bldLvl\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"grpId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"afterEffect\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"nodeType\" type=\"ST_TLTimeNodeType\" use=\"optional\"/>\n    <xsd:attribute name=\"nodePh\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTimeNodeParallel\">\n    <xsd:sequence>\n      <xsd:element name=\"cTn\" type=\"CT_TLCommonTimeNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLNextActionType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"seek\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLPreviousActionType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"skipTimed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLTimeNodeSequence\">\n    <xsd:sequence>\n      <xsd:element name=\"cTn\" type=\"CT_TLCommonTimeNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prevCondLst\" type=\"CT_TLTimeConditionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"nextCondLst\" type=\"CT_TLTimeConditionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"concurrent\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"prevAc\" type=\"ST_TLPreviousActionType\" use=\"optional\"/>\n    <xsd:attribute name=\"nextAc\" type=\"ST_TLNextActionType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTimeNodeExclusive\">\n    <xsd:sequence>\n      <xsd:element name=\"cTn\" type=\"CT_TLCommonTimeNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLBehaviorAttributeNameList\">\n    <xsd:sequence>\n      <xsd:element name=\"attrName\" type=\"xsd:string\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLBehaviorAdditiveType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"base\"/>\n      <xsd:enumeration value=\"sum\"/>\n      <xsd:enumeration value=\"repl\"/>\n      <xsd:enumeration value=\"mult\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLBehaviorAccumulateType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"always\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLBehaviorTransformType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"pt\"/>\n      <xsd:enumeration value=\"img\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLBehaviorOverrideType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"childStyle\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLCommonBehaviorData\">\n    <xsd:sequence>\n      <xsd:element name=\"cTn\" type=\"CT_TLCommonTimeNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tgtEl\" type=\"CT_TLTimeTargetElement\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"attrNameLst\" type=\"CT_TLBehaviorAttributeNameList\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"additive\" type=\"ST_TLBehaviorAdditiveType\" use=\"optional\"/>\n    <xsd:attribute name=\"accumulate\" type=\"ST_TLBehaviorAccumulateType\" use=\"optional\"/>\n    <xsd:attribute name=\"xfrmType\" type=\"ST_TLBehaviorTransformType\" use=\"optional\"/>\n    <xsd:attribute name=\"from\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"to\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"by\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"rctx\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"override\" type=\"ST_TLBehaviorOverrideType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimVariantBooleanVal\">\n    <xsd:attribute name=\"val\" type=\"xsd:boolean\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimVariantIntegerVal\">\n    <xsd:attribute name=\"val\" type=\"xsd:int\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimVariantFloatVal\">\n    <xsd:attribute name=\"val\" type=\"xsd:float\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimVariantStringVal\">\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimVariant\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"boolVal\" type=\"CT_TLAnimVariantBooleanVal\"/>\n      <xsd:element name=\"intVal\" type=\"CT_TLAnimVariantIntegerVal\"/>\n      <xsd:element name=\"fltVal\" type=\"CT_TLAnimVariantFloatVal\"/>\n      <xsd:element name=\"strVal\" type=\"CT_TLAnimVariantStringVal\"/>\n      <xsd:element name=\"clrVal\" type=\"a:CT_Color\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLTimeAnimateValueTime\">\n    <xsd:union memberTypes=\"a:ST_PositiveFixedPercentage ST_TLTimeIndefinite\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLTimeAnimateValue\">\n    <xsd:sequence>\n      <xsd:element name=\"val\" type=\"CT_TLAnimVariant\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"tm\" type=\"ST_TLTimeAnimateValueTime\" use=\"optional\" default=\"indefinite\"/>\n    <xsd:attribute name=\"fmla\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTimeAnimateValueList\">\n    <xsd:sequence>\n      <xsd:element name=\"tav\" type=\"CT_TLTimeAnimateValue\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLAnimateBehaviorCalcMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"discrete\"/>\n      <xsd:enumeration value=\"lin\"/>\n      <xsd:enumeration value=\"fmla\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLAnimateBehaviorValueType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"str\"/>\n      <xsd:enumeration value=\"num\"/>\n      <xsd:enumeration value=\"clr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLAnimateBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tavLst\" type=\"CT_TLTimeAnimateValueList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"by\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"from\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"to\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"calcmode\" type=\"ST_TLAnimateBehaviorCalcMode\" use=\"optional\"/>\n    <xsd:attribute name=\"valueType\" type=\"ST_TLAnimateBehaviorValueType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLByRgbColorTransform\">\n    <xsd:attribute name=\"r\" type=\"a:ST_FixedPercentage\" use=\"required\"/>\n    <xsd:attribute name=\"g\" type=\"a:ST_FixedPercentage\" use=\"required\"/>\n    <xsd:attribute name=\"b\" type=\"a:ST_FixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLByHslColorTransform\">\n    <xsd:attribute name=\"h\" type=\"a:ST_Angle\" use=\"required\"/>\n    <xsd:attribute name=\"s\" type=\"a:ST_FixedPercentage\" use=\"required\"/>\n    <xsd:attribute name=\"l\" type=\"a:ST_FixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLByAnimateColorTransform\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"rgb\" type=\"CT_TLByRgbColorTransform\"/>\n      <xsd:element name=\"hsl\" type=\"CT_TLByHslColorTransform\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLAnimateColorSpace\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"rgb\"/>\n      <xsd:enumeration value=\"hsl\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLAnimateColorDirection\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"cw\"/>\n      <xsd:enumeration value=\"ccw\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLAnimateColorBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"by\" type=\"CT_TLByAnimateColorTransform\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"from\" type=\"a:CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"to\" type=\"a:CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"clrSpc\" type=\"ST_TLAnimateColorSpace\" use=\"optional\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_TLAnimateColorDirection\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLAnimateEffectTransition\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"in\"/>\n      <xsd:enumeration value=\"out\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLAnimateEffectBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"progress\" type=\"CT_TLAnimVariant\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"transition\" type=\"ST_TLAnimateEffectTransition\" default=\"in\" use=\"optional\"/>\n    <xsd:attribute name=\"filter\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"prLst\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLAnimateMotionBehaviorOrigin\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"parent\"/>\n      <xsd:enumeration value=\"layout\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLAnimateMotionPathEditMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"relative\"/>\n      <xsd:enumeration value=\"fixed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLPoint\">\n    <xsd:attribute name=\"x\" type=\"a:ST_Percentage\" use=\"required\"/>\n    <xsd:attribute name=\"y\" type=\"a:ST_Percentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimateMotionBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"by\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"from\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"to\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rCtr\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"origin\" type=\"ST_TLAnimateMotionBehaviorOrigin\" use=\"optional\"/>\n    <xsd:attribute name=\"path\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"pathEditMode\" type=\"ST_TLAnimateMotionPathEditMode\" use=\"optional\"/>\n    <xsd:attribute name=\"rAng\" type=\"a:ST_Angle\" use=\"optional\"/>\n    <xsd:attribute name=\"ptsTypes\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimateRotationBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"by\" type=\"a:ST_Angle\" use=\"optional\"/>\n    <xsd:attribute name=\"from\" type=\"a:ST_Angle\" use=\"optional\"/>\n    <xsd:attribute name=\"to\" type=\"a:ST_Angle\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimateScaleBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"by\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"from\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"to\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"zoomContents\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLCommandType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"evt\"/>\n      <xsd:enumeration value=\"call\"/>\n      <xsd:enumeration value=\"verb\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLCommandBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute type=\"ST_TLCommandType\" name=\"type\" use=\"optional\"/>\n    <xsd:attribute name=\"cmd\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLSetBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"to\" type=\"CT_TLAnimVariant\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLCommonMediaNodeData\">\n    <xsd:sequence>\n      <xsd:element name=\"cTn\" type=\"CT_TLCommonTimeNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tgtEl\" type=\"CT_TLTimeTargetElement\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"vol\" type=\"a:ST_PositiveFixedPercentage\" default=\"50%\" use=\"optional\"/>\n    <xsd:attribute name=\"mute\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"numSld\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"showWhenStopped\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLMediaNodeAudio\">\n    <xsd:sequence>\n      <xsd:element name=\"cMediaNode\" type=\"CT_TLCommonMediaNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"isNarration\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLMediaNodeVideo\">\n    <xsd:sequence>\n      <xsd:element name=\"cMediaNode\" type=\"CT_TLCommonMediaNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"fullScrn\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:attributeGroup name=\"AG_TLBuild\">\n    <xsd:attribute name=\"spid\" type=\"a:ST_DrawingElementId\" use=\"required\"/>\n    <xsd:attribute name=\"grpId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"uiExpand\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_TLTemplate\">\n    <xsd:sequence>\n      <xsd:element name=\"tnLst\" type=\"CT_TimeNodeList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"lvl\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTemplateList\">\n    <xsd:sequence>\n      <xsd:element name=\"tmpl\" type=\"CT_TLTemplate\" minOccurs=\"0\" maxOccurs=\"9\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLParaBuildType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"allAtOnce\"/>\n      <xsd:enumeration value=\"p\"/>\n      <xsd:enumeration value=\"cust\"/>\n      <xsd:enumeration value=\"whole\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLBuildParagraph\">\n    <xsd:sequence>\n      <xsd:element name=\"tmplLst\" type=\"CT_TLTemplateList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_TLBuild\"/>\n    <xsd:attribute name=\"build\" type=\"ST_TLParaBuildType\" use=\"optional\" default=\"whole\"/>\n    <xsd:attribute name=\"bldLvl\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"animBg\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoUpdateAnimBg\" type=\"xsd:boolean\" default=\"true\" use=\"optional\"/>\n    <xsd:attribute name=\"rev\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"advAuto\" type=\"ST_TLTime\" use=\"optional\" default=\"indefinite\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLDiagramBuildType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"whole\"/>\n      <xsd:enumeration value=\"depthByNode\"/>\n      <xsd:enumeration value=\"depthByBranch\"/>\n      <xsd:enumeration value=\"breadthByNode\"/>\n      <xsd:enumeration value=\"breadthByLvl\"/>\n      <xsd:enumeration value=\"cw\"/>\n      <xsd:enumeration value=\"cwIn\"/>\n      <xsd:enumeration value=\"cwOut\"/>\n      <xsd:enumeration value=\"ccw\"/>\n      <xsd:enumeration value=\"ccwIn\"/>\n      <xsd:enumeration value=\"ccwOut\"/>\n      <xsd:enumeration value=\"inByRing\"/>\n      <xsd:enumeration value=\"outByRing\"/>\n      <xsd:enumeration value=\"up\"/>\n      <xsd:enumeration value=\"down\"/>\n      <xsd:enumeration value=\"allAtOnce\"/>\n      <xsd:enumeration value=\"cust\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLBuildDiagram\">\n    <xsd:attributeGroup ref=\"AG_TLBuild\"/>\n    <xsd:attribute name=\"bld\" type=\"ST_TLDiagramBuildType\" use=\"optional\" default=\"whole\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLOleChartBuildType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"allAtOnce\"/>\n      <xsd:enumeration value=\"series\"/>\n      <xsd:enumeration value=\"category\"/>\n      <xsd:enumeration value=\"seriesEl\"/>\n      <xsd:enumeration value=\"categoryEl\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLOleBuildChart\">\n    <xsd:attributeGroup ref=\"AG_TLBuild\"/>\n    <xsd:attribute name=\"bld\" type=\"ST_TLOleChartBuildType\" use=\"optional\" default=\"allAtOnce\"/>\n    <xsd:attribute name=\"animBg\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLGraphicalObjectBuild\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"bldAsOne\" type=\"CT_Empty\"/>\n      <xsd:element name=\"bldSub\" type=\"a:CT_AnimationGraphicalObjectBuildProperties\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_TLBuild\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BuildList\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"bldP\" type=\"CT_TLBuildParagraph\"/>\n      <xsd:element name=\"bldDgm\" type=\"CT_TLBuildDiagram\"/>\n      <xsd:element name=\"bldOleChart\" type=\"CT_TLOleBuildChart\"/>\n      <xsd:element name=\"bldGraphic\" type=\"CT_TLGraphicalObjectBuild\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideTiming\">\n    <xsd:sequence>\n      <xsd:element name=\"tnLst\" type=\"CT_TimeNodeList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bldLst\" type=\"CT_BuildList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Empty\"/>\n  <xsd:simpleType name=\"ST_Name\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Direction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"horz\"/>\n      <xsd:enumeration value=\"vert\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Index\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_IndexRange\">\n    <xsd:attribute name=\"st\" type=\"ST_Index\" use=\"required\"/>\n    <xsd:attribute name=\"end\" type=\"ST_Index\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideRelationshipListEntry\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideRelationshipList\">\n    <xsd:sequence>\n      <xsd:element name=\"sld\" type=\"CT_SlideRelationshipListEntry\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomShowId\">\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_SlideListChoice\">\n    <xsd:choice>\n      <xsd:element name=\"sldAll\" type=\"CT_Empty\"/>\n      <xsd:element name=\"sldRg\" type=\"CT_IndexRange\"/>\n      <xsd:element name=\"custShow\" type=\"CT_CustomShowId\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_CustomerData\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TagsData\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomerDataList\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"custData\" type=\"CT_CustomerData\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"tags\" type=\"CT_TagsData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Extension\">\n    <xsd:sequence>\n      <xsd:any processContents=\"lax\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"xsd:token\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ExtensionList\">\n    <xsd:sequence>\n      <xsd:element name=\"ext\" type=\"CT_Extension\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_ExtensionList\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExtensionListModify\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"mod\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommentAuthor\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"ST_Name\" use=\"required\"/>\n    <xsd:attribute name=\"initials\" type=\"ST_Name\" use=\"required\"/>\n    <xsd:attribute name=\"lastIdx\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"clrIdx\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommentAuthorList\">\n    <xsd:sequence>\n      <xsd:element name=\"cmAuthor\" type=\"CT_CommentAuthor\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"cmAuthorLst\" type=\"CT_CommentAuthorList\"/>\n  <xsd:complexType name=\"CT_Comment\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"a:CT_Point2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"text\" type=\"xsd:string\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"authorId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"dt\" type=\"xsd:dateTime\" use=\"optional\"/>\n    <xsd:attribute name=\"idx\" type=\"ST_Index\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommentList\">\n    <xsd:sequence>\n      <xsd:element name=\"cm\" type=\"CT_Comment\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"cmLst\" type=\"CT_CommentList\"/>\n  <xsd:attributeGroup name=\"AG_Ole\">\n    <xsd:attribute name=\"spid\" type=\"a:ST_ShapeID\" use=\"optional\"/>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"showAsIcon\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"imgW\" type=\"a:ST_PositiveCoordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"imgH\" type=\"a:ST_PositiveCoordinate32\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:simpleType name=\"ST_OleObjectFollowColorScheme\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"full\"/>\n      <xsd:enumeration value=\"textAndBackground\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_OleObjectEmbed\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"followColorScheme\" type=\"ST_OleObjectFollowColorScheme\" use=\"optional\"\n      default=\"none\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleObjectLink\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"updateAutomatic\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleObject\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"embed\" type=\"CT_OleObjectEmbed\"/>\n        <xsd:element name=\"link\" type=\"CT_OleObjectLink\"/>\n      </xsd:choice>\n      <xsd:element name=\"pic\" type=\"CT_Picture\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Ole\"/>\n    <xsd:attribute name=\"progId\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:element name=\"oleObj\" type=\"CT_OleObject\"/>\n  <xsd:complexType name=\"CT_Control\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pic\" type=\"CT_Picture\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Ole\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ControlList\">\n    <xsd:sequence>\n      <xsd:element name=\"control\" type=\"CT_Control\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SlideId\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"256\"/>\n      <xsd:maxExclusive value=\"2147483648\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SlideIdListEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"ST_SlideId\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideIdList\">\n    <xsd:sequence>\n      <xsd:element name=\"sldId\" type=\"CT_SlideIdListEntry\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SlideMasterId\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"2147483648\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SlideMasterIdListEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"ST_SlideMasterId\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideMasterIdList\">\n    <xsd:sequence>\n      <xsd:element name=\"sldMasterId\" type=\"CT_SlideMasterIdListEntry\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NotesMasterIdListEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NotesMasterIdList\">\n    <xsd:sequence>\n      <xsd:element name=\"notesMasterId\" type=\"CT_NotesMasterIdListEntry\" minOccurs=\"0\" maxOccurs=\"1\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HandoutMasterIdListEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HandoutMasterIdList\">\n    <xsd:sequence>\n      <xsd:element name=\"handoutMasterId\" type=\"CT_HandoutMasterIdListEntry\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EmbeddedFontDataId\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EmbeddedFontListEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"font\" type=\"a:CT_TextFont\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"regular\" type=\"CT_EmbeddedFontDataId\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bold\" type=\"CT_EmbeddedFontDataId\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"italic\" type=\"CT_EmbeddedFontDataId\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"boldItalic\" type=\"CT_EmbeddedFontDataId\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EmbeddedFontList\">\n    <xsd:sequence>\n      <xsd:element name=\"embeddedFont\" type=\"CT_EmbeddedFontListEntry\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SmartTags\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomShow\">\n    <xsd:sequence>\n      <xsd:element name=\"sldLst\" type=\"CT_SlideRelationshipList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"ST_Name\" use=\"required\"/>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomShowList\">\n    <xsd:sequence>\n      <xsd:element name=\"custShow\" type=\"CT_CustomShow\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PhotoAlbumLayout\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"fitToSlide\"/>\n      <xsd:enumeration value=\"1pic\"/>\n      <xsd:enumeration value=\"2pic\"/>\n      <xsd:enumeration value=\"4pic\"/>\n      <xsd:enumeration value=\"1picTitle\"/>\n      <xsd:enumeration value=\"2picTitle\"/>\n      <xsd:enumeration value=\"4picTitle\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PhotoAlbumFrameShape\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"frameStyle1\"/>\n      <xsd:enumeration value=\"frameStyle2\"/>\n      <xsd:enumeration value=\"frameStyle3\"/>\n      <xsd:enumeration value=\"frameStyle4\"/>\n      <xsd:enumeration value=\"frameStyle5\"/>\n      <xsd:enumeration value=\"frameStyle6\"/>\n      <xsd:enumeration value=\"frameStyle7\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PhotoAlbum\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bw\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showCaptions\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"layout\" type=\"ST_PhotoAlbumLayout\" use=\"optional\" default=\"fitToSlide\"/>\n    <xsd:attribute name=\"frame\" type=\"ST_PhotoAlbumFrameShape\" use=\"optional\" default=\"frameStyle1\"\n    />\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SlideSizeCoordinate\">\n    <xsd:restriction base=\"a:ST_PositiveCoordinate32\">\n      <xsd:minInclusive value=\"914400\"/>\n      <xsd:maxInclusive value=\"51206400\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_SlideSizeType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"screen4x3\"/>\n      <xsd:enumeration value=\"letter\"/>\n      <xsd:enumeration value=\"A4\"/>\n      <xsd:enumeration value=\"35mm\"/>\n      <xsd:enumeration value=\"overhead\"/>\n      <xsd:enumeration value=\"banner\"/>\n      <xsd:enumeration value=\"custom\"/>\n      <xsd:enumeration value=\"ledger\"/>\n      <xsd:enumeration value=\"A3\"/>\n      <xsd:enumeration value=\"B4ISO\"/>\n      <xsd:enumeration value=\"B5ISO\"/>\n      <xsd:enumeration value=\"B4JIS\"/>\n      <xsd:enumeration value=\"B5JIS\"/>\n      <xsd:enumeration value=\"hagakiCard\"/>\n      <xsd:enumeration value=\"screen16x9\"/>\n      <xsd:enumeration value=\"screen16x10\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SlideSize\">\n    <xsd:attribute name=\"cx\" type=\"ST_SlideSizeCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"cy\" type=\"ST_SlideSizeCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"type\" type=\"ST_SlideSizeType\" use=\"optional\" default=\"custom\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Kinsoku\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"invalStChars\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"invalEndChars\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BookmarkIdSeed\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"1\"/>\n      <xsd:maxExclusive value=\"2147483648\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ModifyVerifier\">\n    <xsd:attribute name=\"algorithmName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"hashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"saltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"spinValue\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptProviderType\" type=\"s:ST_CryptProv\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptAlgorithmClass\" type=\"s:ST_AlgClass\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptAlgorithmType\" type=\"s:ST_AlgType\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptAlgorithmSid\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"spinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"saltData\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"hashData\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptProvider\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"algIdExt\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"algIdExtSource\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptProviderTypeExt\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptProviderTypeExtSource\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Presentation\">\n    <xsd:sequence>\n      <xsd:element name=\"sldMasterIdLst\" type=\"CT_SlideMasterIdList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"notesMasterIdLst\" type=\"CT_NotesMasterIdList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"handoutMasterIdLst\" type=\"CT_HandoutMasterIdList\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"sldIdLst\" type=\"CT_SlideIdList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sldSz\" type=\"CT_SlideSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"notesSz\" type=\"a:CT_PositiveSize2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smartTags\" type=\"CT_SmartTags\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"embeddedFontLst\" type=\"CT_EmbeddedFontList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custShowLst\" type=\"CT_CustomShowList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"photoAlbum\" type=\"CT_PhotoAlbum\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custDataLst\" type=\"CT_CustomerDataList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"kinsoku\" type=\"CT_Kinsoku\" minOccurs=\"0\"/>\n      <xsd:element name=\"defaultTextStyle\" type=\"a:CT_TextListStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"modifyVerifier\" type=\"CT_ModifyVerifier\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"serverZoom\" type=\"a:ST_Percentage\" use=\"optional\" default=\"50%\"/>\n    <xsd:attribute name=\"firstSlideNum\" type=\"xsd:int\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"showSpecialPlsOnTitleSld\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"rtl\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"removePersonalInfoOnSave\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"compatMode\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"strictFirstAndLastChars\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"embedTrueTypeFonts\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"saveSubsetFonts\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoCompressPictures\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"bookmarkIdSeed\" type=\"ST_BookmarkIdSeed\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"conformance\" type=\"s:ST_ConformanceClass\"/>\n  </xsd:complexType>\n  <xsd:element name=\"presentation\" type=\"CT_Presentation\"/>\n  <xsd:complexType name=\"CT_HtmlPublishProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SlideListChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"showSpeakerNotes\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"target\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"title\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_WebColorType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"browser\"/>\n      <xsd:enumeration value=\"presentationText\"/>\n      <xsd:enumeration value=\"presentationAccent\"/>\n      <xsd:enumeration value=\"whiteTextOnBlack\"/>\n      <xsd:enumeration value=\"blackTextOnWhite\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_WebScreenSize\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"544x376\"/>\n      <xsd:enumeration value=\"640x480\"/>\n      <xsd:enumeration value=\"720x512\"/>\n      <xsd:enumeration value=\"800x600\"/>\n      <xsd:enumeration value=\"1024x768\"/>\n      <xsd:enumeration value=\"1152x882\"/>\n      <xsd:enumeration value=\"1152x900\"/>\n      <xsd:enumeration value=\"1280x1024\"/>\n      <xsd:enumeration value=\"1600x1200\"/>\n      <xsd:enumeration value=\"1800x1400\"/>\n      <xsd:enumeration value=\"1920x1200\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_WebEncoding\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_WebProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"showAnimation\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"resizeGraphics\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"allowPng\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"relyOnVml\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"organizeInFolders\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"useLongFilenames\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"imgSz\" type=\"ST_WebScreenSize\" use=\"optional\" default=\"800x600\"/>\n    <xsd:attribute name=\"encoding\" type=\"ST_WebEncoding\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"clr\" type=\"ST_WebColorType\" use=\"optional\" default=\"whiteTextOnBlack\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PrintWhat\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"slides\"/>\n      <xsd:enumeration value=\"handouts1\"/>\n      <xsd:enumeration value=\"handouts2\"/>\n      <xsd:enumeration value=\"handouts3\"/>\n      <xsd:enumeration value=\"handouts4\"/>\n      <xsd:enumeration value=\"handouts6\"/>\n      <xsd:enumeration value=\"handouts9\"/>\n      <xsd:enumeration value=\"notes\"/>\n      <xsd:enumeration value=\"outline\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PrintColorMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"bw\"/>\n      <xsd:enumeration value=\"gray\"/>\n      <xsd:enumeration value=\"clr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PrintProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prnWhat\" type=\"ST_PrintWhat\" use=\"optional\" default=\"slides\"/>\n    <xsd:attribute name=\"clrMode\" type=\"ST_PrintColorMode\" use=\"optional\" default=\"clr\"/>\n    <xsd:attribute name=\"hiddenSlides\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"scaleToFitPaper\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"frameSlides\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShowInfoBrowse\">\n    <xsd:attribute name=\"showScrollbar\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShowInfoKiosk\">\n    <xsd:attribute name=\"restart\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"300000\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ShowType\">\n    <xsd:choice>\n      <xsd:element name=\"present\" type=\"CT_Empty\"/>\n      <xsd:element name=\"browse\" type=\"CT_ShowInfoBrowse\"/>\n      <xsd:element name=\"kiosk\" type=\"CT_ShowInfoKiosk\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_ShowProperties\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:group ref=\"EG_ShowType\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_SlideListChoice\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"penClr\" type=\"a:CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"loop\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showNarration\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showAnimation\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"useTimings\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PresentationProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"htmlPubPr\" type=\"CT_HtmlPublishProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"webPr\" type=\"CT_WebProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prnPr\" type=\"CT_PrintProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showPr\" type=\"CT_ShowProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrMru\" type=\"a:CT_ColorMRU\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"presentationPr\" type=\"CT_PresentationProperties\"/>\n  <xsd:complexType name=\"CT_HeaderFooter\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"sldNum\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"hdr\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"ftr\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"dt\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PlaceholderType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"title\"/>\n      <xsd:enumeration value=\"body\"/>\n      <xsd:enumeration value=\"ctrTitle\"/>\n      <xsd:enumeration value=\"subTitle\"/>\n      <xsd:enumeration value=\"dt\"/>\n      <xsd:enumeration value=\"sldNum\"/>\n      <xsd:enumeration value=\"ftr\"/>\n      <xsd:enumeration value=\"hdr\"/>\n      <xsd:enumeration value=\"obj\"/>\n      <xsd:enumeration value=\"chart\"/>\n      <xsd:enumeration value=\"tbl\"/>\n      <xsd:enumeration value=\"clipArt\"/>\n      <xsd:enumeration value=\"dgm\"/>\n      <xsd:enumeration value=\"media\"/>\n      <xsd:enumeration value=\"sldImg\"/>\n      <xsd:enumeration value=\"pic\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PlaceholderSize\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"full\"/>\n      <xsd:enumeration value=\"half\"/>\n      <xsd:enumeration value=\"quarter\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Placeholder\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_PlaceholderType\" use=\"optional\" default=\"obj\"/>\n    <xsd:attribute name=\"orient\" type=\"ST_Direction\" use=\"optional\" default=\"horz\"/>\n    <xsd:attribute name=\"sz\" type=\"ST_PlaceholderSize\" use=\"optional\" default=\"full\"/>\n    <xsd:attribute name=\"idx\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"hasCustomPrompt\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ApplicationNonVisualDrawingProps\">\n    <xsd:sequence>\n      <xsd:element name=\"ph\" type=\"CT_Placeholder\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"a:EG_Media\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custDataLst\" type=\"CT_CustomerDataList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"isPhoto\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"userDrawn\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvSpPr\" type=\"a:CT_NonVisualDrawingShapeProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"nvPr\" type=\"CT_ApplicationNonVisualDrawingProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Shape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvSpPr\" type=\"CT_ShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txBody\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"useBgFill\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConnectorNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvCxnSpPr\" type=\"a:CT_NonVisualConnectorProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"nvPr\" type=\"CT_ApplicationNonVisualDrawingProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Connector\">\n    <xsd:sequence>\n      <xsd:element name=\"nvCxnSpPr\" type=\"CT_ConnectorNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PictureNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvPicPr\" type=\"a:CT_NonVisualPictureProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"nvPr\" type=\"CT_ApplicationNonVisualDrawingProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Picture\">\n    <xsd:sequence>\n      <xsd:element name=\"nvPicPr\" type=\"CT_PictureNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blipFill\" type=\"a:CT_BlipFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObjectFrameNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGraphicFramePr\" type=\"a:CT_NonVisualGraphicFrameProperties\"\n        minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"nvPr\" type=\"CT_ApplicationNonVisualDrawingProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObjectFrame\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGraphicFramePr\" type=\"CT_GraphicalObjectFrameNonVisual\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"a:CT_Transform2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"a:graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bwMode\" type=\"a:ST_BlackWhiteMode\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGrpSpPr\" type=\"a:CT_NonVisualGroupDrawingShapeProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"nvPr\" type=\"CT_ApplicationNonVisualDrawingProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGrpSpPr\" type=\"CT_GroupShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grpSpPr\" type=\"a:CT_GroupShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"sp\" type=\"CT_Shape\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_GroupShape\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicalObjectFrame\"/>\n        <xsd:element name=\"cxnSp\" type=\"CT_Connector\"/>\n        <xsd:element name=\"pic\" type=\"CT_Picture\"/>\n        <xsd:element name=\"contentPart\" type=\"CT_Rel\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rel\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_TopLevelSlide\">\n    <xsd:sequence>\n      <xsd:element name=\"clrMap\" type=\"a:CT_ColorMapping\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:group name=\"EG_ChildSlide\">\n    <xsd:sequence>\n      <xsd:element name=\"clrMapOvr\" type=\"a:CT_ColorMappingOverride\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:attributeGroup name=\"AG_ChildSlide\">\n    <xsd:attribute name=\"showMasterSp\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showMasterPhAnim\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_BackgroundProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"a:EG_FillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"a:EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"shadeToTitle\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Background\">\n    <xsd:choice>\n      <xsd:element name=\"bgPr\" type=\"CT_BackgroundProperties\"/>\n      <xsd:element name=\"bgRef\" type=\"a:CT_StyleMatrixReference\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_Background\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_Background\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bwMode\" type=\"a:ST_BlackWhiteMode\" use=\"optional\" default=\"white\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommonSlideData\">\n    <xsd:sequence>\n      <xsd:element name=\"bg\" type=\"CT_Background\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spTree\" type=\"CT_GroupShape\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custDataLst\" type=\"CT_CustomerDataList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"controls\" type=\"CT_ControlList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Slide\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cSld\" type=\"CT_CommonSlideData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ChildSlide\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"transition\" type=\"CT_SlideTransition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"timing\" type=\"CT_SlideTiming\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_ChildSlide\"/>\n    <xsd:attribute name=\"show\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:element name=\"sld\" type=\"CT_Slide\"/>\n  <xsd:simpleType name=\"ST_SlideLayoutType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"title\"/>\n      <xsd:enumeration value=\"tx\"/>\n      <xsd:enumeration value=\"twoColTx\"/>\n      <xsd:enumeration value=\"tbl\"/>\n      <xsd:enumeration value=\"txAndChart\"/>\n      <xsd:enumeration value=\"chartAndTx\"/>\n      <xsd:enumeration value=\"dgm\"/>\n      <xsd:enumeration value=\"chart\"/>\n      <xsd:enumeration value=\"txAndClipArt\"/>\n      <xsd:enumeration value=\"clipArtAndTx\"/>\n      <xsd:enumeration value=\"titleOnly\"/>\n      <xsd:enumeration value=\"blank\"/>\n      <xsd:enumeration value=\"txAndObj\"/>\n      <xsd:enumeration value=\"objAndTx\"/>\n      <xsd:enumeration value=\"objOnly\"/>\n      <xsd:enumeration value=\"obj\"/>\n      <xsd:enumeration value=\"txAndMedia\"/>\n      <xsd:enumeration value=\"mediaAndTx\"/>\n      <xsd:enumeration value=\"objOverTx\"/>\n      <xsd:enumeration value=\"txOverObj\"/>\n      <xsd:enumeration value=\"txAndTwoObj\"/>\n      <xsd:enumeration value=\"twoObjAndTx\"/>\n      <xsd:enumeration value=\"twoObjOverTx\"/>\n      <xsd:enumeration value=\"fourObj\"/>\n      <xsd:enumeration value=\"vertTx\"/>\n      <xsd:enumeration value=\"clipArtAndVertTx\"/>\n      <xsd:enumeration value=\"vertTitleAndTx\"/>\n      <xsd:enumeration value=\"vertTitleAndTxOverChart\"/>\n      <xsd:enumeration value=\"twoObj\"/>\n      <xsd:enumeration value=\"objAndTwoObj\"/>\n      <xsd:enumeration value=\"twoObjAndObj\"/>\n      <xsd:enumeration value=\"cust\"/>\n      <xsd:enumeration value=\"secHead\"/>\n      <xsd:enumeration value=\"twoTxTwoObj\"/>\n      <xsd:enumeration value=\"objTx\"/>\n      <xsd:enumeration value=\"picTx\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SlideLayout\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cSld\" type=\"CT_CommonSlideData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ChildSlide\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"transition\" type=\"CT_SlideTransition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"timing\" type=\"CT_SlideTiming\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hf\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_ChildSlide\"/>\n    <xsd:attribute name=\"matchingName\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"type\" type=\"ST_SlideLayoutType\" use=\"optional\" default=\"cust\"/>\n    <xsd:attribute name=\"preserve\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"userDrawn\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:element name=\"sldLayout\" type=\"CT_SlideLayout\"/>\n  <xsd:complexType name=\"CT_SlideMasterTextStyles\">\n    <xsd:sequence>\n      <xsd:element name=\"titleStyle\" type=\"a:CT_TextListStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bodyStyle\" type=\"a:CT_TextListStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"otherStyle\" type=\"a:CT_TextListStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SlideLayoutId\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"2147483648\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SlideLayoutIdListEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"ST_SlideLayoutId\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideLayoutIdList\">\n    <xsd:sequence>\n      <xsd:element name=\"sldLayoutId\" type=\"CT_SlideLayoutIdListEntry\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideMaster\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cSld\" type=\"CT_CommonSlideData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TopLevelSlide\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sldLayoutIdLst\" type=\"CT_SlideLayoutIdList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"transition\" type=\"CT_SlideTransition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"timing\" type=\"CT_SlideTiming\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hf\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txStyles\" type=\"CT_SlideMasterTextStyles\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"preserve\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:element name=\"sldMaster\" type=\"CT_SlideMaster\"/>\n  <xsd:complexType name=\"CT_HandoutMaster\">\n    <xsd:sequence>\n      <xsd:element name=\"cSld\" type=\"CT_CommonSlideData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TopLevelSlide\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hf\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"handoutMaster\" type=\"CT_HandoutMaster\"/>\n  <xsd:complexType name=\"CT_NotesMaster\">\n    <xsd:sequence>\n      <xsd:element name=\"cSld\" type=\"CT_CommonSlideData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TopLevelSlide\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hf\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"notesStyle\" type=\"a:CT_TextListStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"notesMaster\" type=\"CT_NotesMaster\"/>\n  <xsd:complexType name=\"CT_NotesSlide\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cSld\" type=\"CT_CommonSlideData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ChildSlide\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_ChildSlide\"/>\n  </xsd:complexType>\n  <xsd:element name=\"notes\" type=\"CT_NotesSlide\"/>\n  <xsd:complexType name=\"CT_SlideSyncProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"serverSldId\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"serverSldModifiedTime\" type=\"xsd:dateTime\" use=\"required\"/>\n    <xsd:attribute name=\"clientInsertedTime\" type=\"xsd:dateTime\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"sldSyncPr\" type=\"CT_SlideSyncProperties\"/>\n  <xsd:complexType name=\"CT_StringTag\">\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TagList\">\n    <xsd:sequence>\n      <xsd:element name=\"tag\" type=\"CT_StringTag\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"tagLst\" type=\"CT_TagList\"/>\n  <xsd:simpleType name=\"ST_SplitterBarState\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"minimized\"/>\n      <xsd:enumeration value=\"restored\"/>\n      <xsd:enumeration value=\"maximized\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ViewType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sldView\"/>\n      <xsd:enumeration value=\"sldMasterView\"/>\n      <xsd:enumeration value=\"notesView\"/>\n      <xsd:enumeration value=\"handoutView\"/>\n      <xsd:enumeration value=\"notesMasterView\"/>\n      <xsd:enumeration value=\"outlineView\"/>\n      <xsd:enumeration value=\"sldSorterView\"/>\n      <xsd:enumeration value=\"sldThumbnailView\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_NormalViewPortion\">\n    <xsd:attribute name=\"sz\" type=\"a:ST_PositiveFixedPercentage\" use=\"required\"/>\n    <xsd:attribute name=\"autoAdjust\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NormalViewProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"restoredLeft\" type=\"CT_NormalViewPortion\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"restoredTop\" type=\"CT_NormalViewPortion\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"showOutlineIcons\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"snapVertSplitter\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"vertBarState\" type=\"ST_SplitterBarState\" use=\"optional\" default=\"restored\"/>\n    <xsd:attribute name=\"horzBarState\" type=\"ST_SplitterBarState\" use=\"optional\" default=\"restored\"/>\n    <xsd:attribute name=\"preferSingleView\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommonViewProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"scale\" type=\"a:CT_Scale2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"origin\" type=\"a:CT_Point2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"varScale\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NotesTextViewProperties\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cViewPr\" type=\"CT_CommonViewProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OutlineViewSlideEntry\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n    <xsd:attribute name=\"collapse\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OutlineViewSlideList\">\n    <xsd:sequence>\n      <xsd:element name=\"sld\" type=\"CT_OutlineViewSlideEntry\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OutlineViewProperties\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cViewPr\" type=\"CT_CommonViewProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sldLst\" type=\"CT_OutlineViewSlideList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideSorterViewProperties\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cViewPr\" type=\"CT_CommonViewProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"showFormatting\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Guide\">\n    <xsd:attribute name=\"orient\" type=\"ST_Direction\" use=\"optional\" default=\"vert\"/>\n    <xsd:attribute name=\"pos\" type=\"a:ST_Coordinate32\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GuideList\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"guide\" type=\"CT_Guide\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommonSlideViewProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"cViewPr\" type=\"CT_CommonViewProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"guideLst\" type=\"CT_GuideList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"snapToGrid\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"snapToObjects\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showGuides\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideViewProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"cSldViewPr\" type=\"CT_CommonSlideViewProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NotesViewProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"cSldViewPr\" type=\"CT_CommonSlideViewProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ViewProperties\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"normalViewPr\" type=\"CT_NormalViewProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"slideViewPr\" type=\"CT_SlideViewProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"outlineViewPr\" type=\"CT_OutlineViewProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"notesTextViewPr\" type=\"CT_NotesTextViewProperties\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"sorterViewPr\" type=\"CT_SlideSorterViewProperties\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"notesViewPr\" type=\"CT_NotesViewProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gridSpacing\" type=\"a:CT_PositiveSize2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"lastView\" type=\"ST_ViewType\" use=\"optional\" default=\"sldView\"/>\n    <xsd:attribute name=\"showComments\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:element name=\"viewPr\" type=\"CT_ViewProperties\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/characteristics\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/characteristics\"\n  elementFormDefault=\"qualified\">\n  <xsd:complexType name=\"CT_AdditionalCharacteristics\">\n    <xsd:sequence>\n      <xsd:element name=\"characteristic\" type=\"CT_Characteristic\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Characteristic\">\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"relation\" type=\"ST_Relation\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"vocabulary\" type=\"xsd:anyURI\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Relation\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"ge\"/>\n      <xsd:enumeration value=\"le\"/>\n      <xsd:enumeration value=\"gt\"/>\n      <xsd:enumeration value=\"lt\"/>\n      <xsd:enumeration value=\"eq\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"additionalCharacteristics\" type=\"CT_AdditionalCharacteristics\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/bibliography\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/bibliography\"\n  elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:simpleType name=\"ST_SourceType\">\n    <xsd:restriction base=\"s:ST_String\">\n      <xsd:enumeration value=\"ArticleInAPeriodical\"/>\n      <xsd:enumeration value=\"Book\"/>\n      <xsd:enumeration value=\"BookSection\"/>\n      <xsd:enumeration value=\"JournalArticle\"/>\n      <xsd:enumeration value=\"ConferenceProceedings\"/>\n      <xsd:enumeration value=\"Report\"/>\n      <xsd:enumeration value=\"SoundRecording\"/>\n      <xsd:enumeration value=\"Performance\"/>\n      <xsd:enumeration value=\"Art\"/>\n      <xsd:enumeration value=\"DocumentFromInternetSite\"/>\n      <xsd:enumeration value=\"InternetSite\"/>\n      <xsd:enumeration value=\"Film\"/>\n      <xsd:enumeration value=\"Interview\"/>\n      <xsd:enumeration value=\"Patent\"/>\n      <xsd:enumeration value=\"ElectronicSource\"/>\n      <xsd:enumeration value=\"Case\"/>\n      <xsd:enumeration value=\"Misc\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_NameListType\">\n    <xsd:sequence>\n      <xsd:element name=\"Person\" type=\"CT_PersonType\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PersonType\">\n    <xsd:sequence>\n      <xsd:element name=\"Last\" type=\"s:ST_String\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"First\" type=\"s:ST_String\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"Middle\" type=\"s:ST_String\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NameType\">\n    <xsd:sequence>\n      <xsd:element name=\"NameList\" type=\"CT_NameListType\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NameOrCorporateType\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n        <xsd:element name=\"NameList\" type=\"CT_NameListType\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"Corporate\" minOccurs=\"1\" maxOccurs=\"1\" type=\"s:ST_String\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AuthorType\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"Artist\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Author\" type=\"CT_NameOrCorporateType\"/>\n        <xsd:element name=\"BookAuthor\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Compiler\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Composer\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Conductor\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Counsel\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Director\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Editor\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Interviewee\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Interviewer\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Inventor\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Performer\" type=\"CT_NameOrCorporateType\"/>\n        <xsd:element name=\"ProducerName\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Translator\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Writer\" type=\"CT_NameType\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SourceType\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"AbbreviatedCaseNumber\" type=\"s:ST_String\"/>\n        <xsd:element name=\"AlbumTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Author\" type=\"CT_AuthorType\"/>\n        <xsd:element name=\"BookTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Broadcaster\" type=\"s:ST_String\"/>\n        <xsd:element name=\"BroadcastTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"CaseNumber\" type=\"s:ST_String\"/>\n        <xsd:element name=\"ChapterNumber\" type=\"s:ST_String\"/>\n        <xsd:element name=\"City\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Comments\" type=\"s:ST_String\"/>\n        <xsd:element name=\"ConferenceName\" type=\"s:ST_String\"/>\n        <xsd:element name=\"CountryRegion\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Court\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Day\" type=\"s:ST_String\"/>\n        <xsd:element name=\"DayAccessed\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Department\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Distributor\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Edition\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Guid\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Institution\" type=\"s:ST_String\"/>\n        <xsd:element name=\"InternetSiteTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Issue\" type=\"s:ST_String\"/>\n        <xsd:element name=\"JournalName\" type=\"s:ST_String\"/>\n        <xsd:element name=\"LCID\" type=\"s:ST_Lang\"/>\n        <xsd:element name=\"Medium\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Month\" type=\"s:ST_String\"/>\n        <xsd:element name=\"MonthAccessed\" type=\"s:ST_String\"/>\n        <xsd:element name=\"NumberVolumes\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Pages\" type=\"s:ST_String\"/>\n        <xsd:element name=\"PatentNumber\" type=\"s:ST_String\"/>\n        <xsd:element name=\"PeriodicalTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"ProductionCompany\" type=\"s:ST_String\"/>\n        <xsd:element name=\"PublicationTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Publisher\" type=\"s:ST_String\"/>\n        <xsd:element name=\"RecordingNumber\" type=\"s:ST_String\"/>\n        <xsd:element name=\"RefOrder\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Reporter\" type=\"s:ST_String\"/>\n        <xsd:element name=\"SourceType\" type=\"ST_SourceType\"/>\n        <xsd:element name=\"ShortTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"StandardNumber\" type=\"s:ST_String\"/>\n        <xsd:element name=\"StateProvince\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Station\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Tag\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Theater\" type=\"s:ST_String\"/>\n        <xsd:element name=\"ThesisType\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Title\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Type\" type=\"s:ST_String\"/>\n        <xsd:element name=\"URL\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Version\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Volume\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Year\" type=\"s:ST_String\"/>\n        <xsd:element name=\"YearAccessed\" type=\"s:ST_String\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"Sources\" type=\"CT_Sources\"/>\n  <xsd:complexType name=\"CT_Sources\">\n    <xsd:sequence>\n      <xsd:element name=\"Source\" type=\"CT_SourceType\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"SelectedStyle\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"StyleName\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"URI\" type=\"s:ST_String\"/>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  elementFormDefault=\"qualified\">\n  <xsd:simpleType name=\"ST_Lang\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HexColorRGB\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"3\" fixed=\"true\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Panose\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"10\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CalendarType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"gregorian\"/>\n      <xsd:enumeration value=\"gregorianUs\"/>\n      <xsd:enumeration value=\"gregorianMeFrench\"/>\n      <xsd:enumeration value=\"gregorianArabic\"/>\n      <xsd:enumeration value=\"hijri\"/>\n      <xsd:enumeration value=\"hebrew\"/>\n      <xsd:enumeration value=\"taiwan\"/>\n      <xsd:enumeration value=\"japan\"/>\n      <xsd:enumeration value=\"thai\"/>\n      <xsd:enumeration value=\"korea\"/>\n      <xsd:enumeration value=\"saka\"/>\n      <xsd:enumeration value=\"gregorianXlitEnglish\"/>\n      <xsd:enumeration value=\"gregorianXlitFrench\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AlgClass\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"hash\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CryptProv\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"rsaAES\"/>\n      <xsd:enumeration value=\"rsaFull\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AlgType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"typeAny\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ColorType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Guid\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:pattern value=\"\\{[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}\\}\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OnOff\">\n    <xsd:union memberTypes=\"xsd:boolean ST_OnOff1\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OnOff1\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"on\"/>\n      <xsd:enumeration value=\"off\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_String\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_XmlName\">\n    <xsd:restriction base=\"xsd:NCName\">\n      <xsd:minLength value=\"1\"/>\n      <xsd:maxLength value=\"255\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TrueFalse\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"f\"/>\n      <xsd:enumeration value=\"true\"/>\n      <xsd:enumeration value=\"false\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TrueFalseBlank\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"f\"/>\n      <xsd:enumeration value=\"true\"/>\n      <xsd:enumeration value=\"false\"/>\n      <xsd:enumeration value=\"\"/>\n      <xsd:enumeration value=\"True\"/>\n      <xsd:enumeration value=\"False\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UnsignedDecimalNumber\">\n    <xsd:restriction base=\"xsd:decimal\">\n      <xsd:minInclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TwipsMeasure\">\n    <xsd:union memberTypes=\"ST_UnsignedDecimalNumber ST_PositiveUniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VerticalAlignRun\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"baseline\"/>\n      <xsd:enumeration value=\"superscript\"/>\n      <xsd:enumeration value=\"subscript\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Xstring\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_XAlign\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"inside\"/>\n      <xsd:enumeration value=\"outside\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_YAlign\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"inline\"/>\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"inside\"/>\n      <xsd:enumeration value=\"outside\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConformanceClass\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"strict\"/>\n      <xsd:enumeration value=\"transitional\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UniversalMeasure\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"-?[0-9]+(\\.[0-9]+)?(mm|cm|in|pt|pc|pi)\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositiveUniversalMeasure\">\n    <xsd:restriction base=\"ST_UniversalMeasure\">\n      <xsd:pattern value=\"[0-9]+(\\.[0-9]+)?(mm|cm|in|pt|pc|pi)\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Percentage\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"-?[0-9]+(\\.[0-9]+)?%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FixedPercentage\">\n    <xsd:restriction base=\"ST_Percentage\">\n      <xsd:pattern value=\"-?((100)|([0-9][0-9]?))(\\.[0-9][0-9]?)?%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositivePercentage\">\n    <xsd:restriction base=\"ST_Percentage\">\n      <xsd:pattern value=\"[0-9]+(\\.[0-9]+)?%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositiveFixedPercentage\">\n    <xsd:restriction base=\"ST_Percentage\">\n      <xsd:pattern value=\"((100)|([0-9][0-9]?))(\\.[0-9][0-9]?)?%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/customXml\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/customXml\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:complexType name=\"CT_DatastoreSchemaRef\">\n    <xsd:attribute name=\"uri\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DatastoreSchemaRefs\">\n    <xsd:sequence>\n      <xsd:element name=\"schemaRef\" type=\"CT_DatastoreSchemaRef\" minOccurs=\"0\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DatastoreItem\">\n    <xsd:sequence>\n      <xsd:element name=\"schemaRefs\" type=\"CT_DatastoreSchemaRefs\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"itemID\" type=\"s:ST_Guid\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"datastoreItem\" type=\"CT_DatastoreItem\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/schemaLibrary/2006/main\"\n  targetNamespace=\"http://schemas.openxmlformats.org/schemaLibrary/2006/main\"\n  attributeFormDefault=\"qualified\" elementFormDefault=\"qualified\">\n  <xsd:complexType name=\"CT_Schema\">\n    <xsd:attribute name=\"uri\" type=\"xsd:string\" default=\"\"/>\n    <xsd:attribute name=\"manifestLocation\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"schemaLocation\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"schemaLanguage\" type=\"xsd:token\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SchemaLibrary\">\n    <xsd:sequence>\n      <xsd:element name=\"schema\" type=\"CT_Schema\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"schemaLibrary\" type=\"CT_SchemaLibrary\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/custom-properties\"\n  xmlns:vt=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/custom-properties\"\n  blockDefault=\"#all\" elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"\n    schemaLocation=\"shared-documentPropertiesVariantTypes.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:element name=\"Properties\" type=\"CT_Properties\"/>\n  <xsd:complexType name=\"CT_Properties\">\n    <xsd:sequence>\n      <xsd:element name=\"property\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Property\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Property\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element ref=\"vt:vector\"/>\n      <xsd:element ref=\"vt:array\"/>\n      <xsd:element ref=\"vt:blob\"/>\n      <xsd:element ref=\"vt:oblob\"/>\n      <xsd:element ref=\"vt:empty\"/>\n      <xsd:element ref=\"vt:null\"/>\n      <xsd:element ref=\"vt:i1\"/>\n      <xsd:element ref=\"vt:i2\"/>\n      <xsd:element ref=\"vt:i4\"/>\n      <xsd:element ref=\"vt:i8\"/>\n      <xsd:element ref=\"vt:int\"/>\n      <xsd:element ref=\"vt:ui1\"/>\n      <xsd:element ref=\"vt:ui2\"/>\n      <xsd:element ref=\"vt:ui4\"/>\n      <xsd:element ref=\"vt:ui8\"/>\n      <xsd:element ref=\"vt:uint\"/>\n      <xsd:element ref=\"vt:r4\"/>\n      <xsd:element ref=\"vt:r8\"/>\n      <xsd:element ref=\"vt:decimal\"/>\n      <xsd:element ref=\"vt:lpstr\"/>\n      <xsd:element ref=\"vt:lpwstr\"/>\n      <xsd:element ref=\"vt:bstr\"/>\n      <xsd:element ref=\"vt:date\"/>\n      <xsd:element ref=\"vt:filetime\"/>\n      <xsd:element ref=\"vt:bool\"/>\n      <xsd:element ref=\"vt:cy\"/>\n      <xsd:element ref=\"vt:error\"/>\n      <xsd:element ref=\"vt:stream\"/>\n      <xsd:element ref=\"vt:ostream\"/>\n      <xsd:element ref=\"vt:storage\"/>\n      <xsd:element ref=\"vt:ostorage\"/>\n      <xsd:element ref=\"vt:vstream\"/>\n      <xsd:element ref=\"vt:clsid\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"fmtid\" use=\"required\" type=\"s:ST_Guid\"/>\n    <xsd:attribute name=\"pid\" use=\"required\" type=\"xsd:int\"/>\n    <xsd:attribute name=\"name\" use=\"optional\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"linkTarget\" use=\"optional\" type=\"xsd:string\"/>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/extended-properties\"\n  xmlns:vt=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/extended-properties\"\n  elementFormDefault=\"qualified\" blockDefault=\"#all\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"\n    schemaLocation=\"shared-documentPropertiesVariantTypes.xsd\"/>\n  <xsd:element name=\"Properties\" type=\"CT_Properties\"/>\n  <xsd:complexType name=\"CT_Properties\">\n    <xsd:all>\n      <xsd:element name=\"Template\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"Manager\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"Company\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"Pages\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"Words\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"Characters\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"PresentationFormat\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"Lines\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"Paragraphs\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"Slides\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"Notes\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"TotalTime\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"HiddenSlides\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"MMClips\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"ScaleCrop\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:boolean\"/>\n      <xsd:element name=\"HeadingPairs\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_VectorVariant\"/>\n      <xsd:element name=\"TitlesOfParts\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_VectorLpstr\"/>\n      <xsd:element name=\"LinksUpToDate\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:boolean\"/>\n      <xsd:element name=\"CharactersWithSpaces\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"SharedDoc\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:boolean\"/>\n      <xsd:element name=\"HyperlinkBase\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"HLinks\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_VectorVariant\"/>\n      <xsd:element name=\"HyperlinksChanged\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:boolean\"/>\n      <xsd:element name=\"DigSig\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_DigSigBlob\"/>\n      <xsd:element name=\"Application\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"AppVersion\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"DocSecurity\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n    </xsd:all>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VectorVariant\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element ref=\"vt:vector\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VectorLpstr\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element ref=\"vt:vector\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DigSigBlob\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element ref=\"vt:blob\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"\n  blockDefault=\"#all\" elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:simpleType name=\"ST_VectorBaseType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"variant\"/>\n      <xsd:enumeration value=\"i1\"/>\n      <xsd:enumeration value=\"i2\"/>\n      <xsd:enumeration value=\"i4\"/>\n      <xsd:enumeration value=\"i8\"/>\n      <xsd:enumeration value=\"ui1\"/>\n      <xsd:enumeration value=\"ui2\"/>\n      <xsd:enumeration value=\"ui4\"/>\n      <xsd:enumeration value=\"ui8\"/>\n      <xsd:enumeration value=\"r4\"/>\n      <xsd:enumeration value=\"r8\"/>\n      <xsd:enumeration value=\"lpstr\"/>\n      <xsd:enumeration value=\"lpwstr\"/>\n      <xsd:enumeration value=\"bstr\"/>\n      <xsd:enumeration value=\"date\"/>\n      <xsd:enumeration value=\"filetime\"/>\n      <xsd:enumeration value=\"bool\"/>\n      <xsd:enumeration value=\"cy\"/>\n      <xsd:enumeration value=\"error\"/>\n      <xsd:enumeration value=\"clsid\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ArrayBaseType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"variant\"/>\n      <xsd:enumeration value=\"i1\"/>\n      <xsd:enumeration value=\"i2\"/>\n      <xsd:enumeration value=\"i4\"/>\n      <xsd:enumeration value=\"int\"/>\n      <xsd:enumeration value=\"ui1\"/>\n      <xsd:enumeration value=\"ui2\"/>\n      <xsd:enumeration value=\"ui4\"/>\n      <xsd:enumeration value=\"uint\"/>\n      <xsd:enumeration value=\"r4\"/>\n      <xsd:enumeration value=\"r8\"/>\n      <xsd:enumeration value=\"decimal\"/>\n      <xsd:enumeration value=\"bstr\"/>\n      <xsd:enumeration value=\"date\"/>\n      <xsd:enumeration value=\"bool\"/>\n      <xsd:enumeration value=\"cy\"/>\n      <xsd:enumeration value=\"error\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Cy\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"\\s*[0-9]*\\.[0-9]{4}\\s*\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Error\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"\\s*0x[0-9A-Za-z]{8}\\s*\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Empty\"/>\n  <xsd:complexType name=\"CT_Null\"/>\n  <xsd:complexType name=\"CT_Vector\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element ref=\"variant\"/>\n      <xsd:element ref=\"i1\"/>\n      <xsd:element ref=\"i2\"/>\n      <xsd:element ref=\"i4\"/>\n      <xsd:element ref=\"i8\"/>\n      <xsd:element ref=\"ui1\"/>\n      <xsd:element ref=\"ui2\"/>\n      <xsd:element ref=\"ui4\"/>\n      <xsd:element ref=\"ui8\"/>\n      <xsd:element ref=\"r4\"/>\n      <xsd:element ref=\"r8\"/>\n      <xsd:element ref=\"lpstr\"/>\n      <xsd:element ref=\"lpwstr\"/>\n      <xsd:element ref=\"bstr\"/>\n      <xsd:element ref=\"date\"/>\n      <xsd:element ref=\"filetime\"/>\n      <xsd:element ref=\"bool\"/>\n      <xsd:element ref=\"cy\"/>\n      <xsd:element ref=\"error\"/>\n      <xsd:element ref=\"clsid\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"baseType\" type=\"ST_VectorBaseType\" use=\"required\"/>\n    <xsd:attribute name=\"size\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Array\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element ref=\"variant\"/>\n      <xsd:element ref=\"i1\"/>\n      <xsd:element ref=\"i2\"/>\n      <xsd:element ref=\"i4\"/>\n      <xsd:element ref=\"int\"/>\n      <xsd:element ref=\"ui1\"/>\n      <xsd:element ref=\"ui2\"/>\n      <xsd:element ref=\"ui4\"/>\n      <xsd:element ref=\"uint\"/>\n      <xsd:element ref=\"r4\"/>\n      <xsd:element ref=\"r8\"/>\n      <xsd:element ref=\"decimal\"/>\n      <xsd:element ref=\"bstr\"/>\n      <xsd:element ref=\"date\"/>\n      <xsd:element ref=\"bool\"/>\n      <xsd:element ref=\"error\"/>\n      <xsd:element ref=\"cy\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"lBounds\" type=\"xsd:int\" use=\"required\"/>\n    <xsd:attribute name=\"uBounds\" type=\"xsd:int\" use=\"required\"/>\n    <xsd:attribute name=\"baseType\" type=\"ST_ArrayBaseType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Variant\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element ref=\"variant\"/>\n      <xsd:element ref=\"vector\"/>\n      <xsd:element ref=\"array\"/>\n      <xsd:element ref=\"blob\"/>\n      <xsd:element ref=\"oblob\"/>\n      <xsd:element ref=\"empty\"/>\n      <xsd:element ref=\"null\"/>\n      <xsd:element ref=\"i1\"/>\n      <xsd:element ref=\"i2\"/>\n      <xsd:element ref=\"i4\"/>\n      <xsd:element ref=\"i8\"/>\n      <xsd:element ref=\"int\"/>\n      <xsd:element ref=\"ui1\"/>\n      <xsd:element ref=\"ui2\"/>\n      <xsd:element ref=\"ui4\"/>\n      <xsd:element ref=\"ui8\"/>\n      <xsd:element ref=\"uint\"/>\n      <xsd:element ref=\"r4\"/>\n      <xsd:element ref=\"r8\"/>\n      <xsd:element ref=\"decimal\"/>\n      <xsd:element ref=\"lpstr\"/>\n      <xsd:element ref=\"lpwstr\"/>\n      <xsd:element ref=\"bstr\"/>\n      <xsd:element ref=\"date\"/>\n      <xsd:element ref=\"filetime\"/>\n      <xsd:element ref=\"bool\"/>\n      <xsd:element ref=\"cy\"/>\n      <xsd:element ref=\"error\"/>\n      <xsd:element ref=\"stream\"/>\n      <xsd:element ref=\"ostream\"/>\n      <xsd:element ref=\"storage\"/>\n      <xsd:element ref=\"ostorage\"/>\n      <xsd:element ref=\"vstream\"/>\n      <xsd:element ref=\"clsid\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Vstream\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"xsd:base64Binary\">\n        <xsd:attribute name=\"version\" type=\"s:ST_Guid\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n  <xsd:element name=\"variant\" type=\"CT_Variant\"/>\n  <xsd:element name=\"vector\" type=\"CT_Vector\"/>\n  <xsd:element name=\"array\" type=\"CT_Array\"/>\n  <xsd:element name=\"blob\" type=\"xsd:base64Binary\"/>\n  <xsd:element name=\"oblob\" type=\"xsd:base64Binary\"/>\n  <xsd:element name=\"empty\" type=\"CT_Empty\"/>\n  <xsd:element name=\"null\" type=\"CT_Null\"/>\n  <xsd:element name=\"i1\" type=\"xsd:byte\"/>\n  <xsd:element name=\"i2\" type=\"xsd:short\"/>\n  <xsd:element name=\"i4\" type=\"xsd:int\"/>\n  <xsd:element name=\"i8\" type=\"xsd:long\"/>\n  <xsd:element name=\"int\" type=\"xsd:int\"/>\n  <xsd:element name=\"ui1\" type=\"xsd:unsignedByte\"/>\n  <xsd:element name=\"ui2\" type=\"xsd:unsignedShort\"/>\n  <xsd:element name=\"ui4\" type=\"xsd:unsignedInt\"/>\n  <xsd:element name=\"ui8\" type=\"xsd:unsignedLong\"/>\n  <xsd:element name=\"uint\" type=\"xsd:unsignedInt\"/>\n  <xsd:element name=\"r4\" type=\"xsd:float\"/>\n  <xsd:element name=\"r8\" type=\"xsd:double\"/>\n  <xsd:element name=\"decimal\" type=\"xsd:decimal\"/>\n  <xsd:element name=\"lpstr\" type=\"xsd:string\"/>\n  <xsd:element name=\"lpwstr\" type=\"xsd:string\"/>\n  <xsd:element name=\"bstr\" type=\"xsd:string\"/>\n  <xsd:element name=\"date\" type=\"xsd:dateTime\"/>\n  <xsd:element name=\"filetime\" type=\"xsd:dateTime\"/>\n  <xsd:element name=\"bool\" type=\"xsd:boolean\"/>\n  <xsd:element name=\"cy\" type=\"ST_Cy\"/>\n  <xsd:element name=\"error\" type=\"ST_Error\"/>\n  <xsd:element name=\"stream\" type=\"xsd:base64Binary\"/>\n  <xsd:element name=\"ostream\" type=\"xsd:base64Binary\"/>\n  <xsd:element name=\"storage\" type=\"xsd:base64Binary\"/>\n  <xsd:element name=\"ostorage\" type=\"xsd:base64Binary\"/>\n  <xsd:element name=\"vstream\" type=\"CT_Vstream\"/>\n  <xsd:element name=\"clsid\" type=\"s:ST_Guid\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/math\"\n  xmlns:m=\"http://schemas.openxmlformats.org/officeDocument/2006/math\"\n  xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/math\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n    schemaLocation=\"wml.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:import namespace=\"http://www.w3.org/XML/1998/namespace\" schemaLocation=\"xml.xsd\"/>\n  <xsd:simpleType name=\"ST_Integer255\">\n    <xsd:restriction base=\"xsd:integer\">\n      <xsd:minInclusive value=\"1\"/>\n      <xsd:maxInclusive value=\"255\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Integer255\">\n    <xsd:attribute name=\"val\" type=\"ST_Integer255\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Integer2\">\n    <xsd:restriction base=\"xsd:integer\">\n      <xsd:minInclusive value=\"-2\"/>\n      <xsd:maxInclusive value=\"2\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Integer2\">\n    <xsd:attribute name=\"val\" type=\"ST_Integer2\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SpacingRule\">\n    <xsd:restriction base=\"xsd:integer\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"4\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SpacingRule\">\n    <xsd:attribute name=\"val\" type=\"ST_SpacingRule\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_UnSignedInteger\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_UnSignedInteger\">\n    <xsd:attribute name=\"val\" type=\"ST_UnSignedInteger\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Char\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:maxLength value=\"1\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Char\">\n    <xsd:attribute name=\"val\" type=\"ST_Char\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OnOff\">\n    <xsd:attribute name=\"val\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_String\">\n    <xsd:attribute name=\"val\" type=\"s:ST_String\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_XAlign\">\n    <xsd:attribute name=\"val\" type=\"s:ST_XAlign\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_YAlign\">\n    <xsd:attribute name=\"val\" type=\"s:ST_YAlign\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Shp\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"centered\"/>\n      <xsd:enumeration value=\"match\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Shp\">\n    <xsd:attribute name=\"val\" type=\"ST_Shp\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"bar\"/>\n      <xsd:enumeration value=\"skw\"/>\n      <xsd:enumeration value=\"lin\"/>\n      <xsd:enumeration value=\"noBar\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FType\">\n    <xsd:attribute name=\"val\" type=\"ST_FType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LimLoc\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"undOvr\"/>\n      <xsd:enumeration value=\"subSup\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LimLoc\">\n    <xsd:attribute name=\"val\" type=\"ST_LimLoc\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TopBot\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"bot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TopBot\">\n    <xsd:attribute name=\"val\" type=\"ST_TopBot\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Script\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"roman\"/>\n      <xsd:enumeration value=\"script\"/>\n      <xsd:enumeration value=\"fraktur\"/>\n      <xsd:enumeration value=\"double-struck\"/>\n      <xsd:enumeration value=\"sans-serif\"/>\n      <xsd:enumeration value=\"monospace\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Script\">\n    <xsd:attribute name=\"val\" type=\"ST_Script\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Style\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"p\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"i\"/>\n      <xsd:enumeration value=\"bi\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Style\">\n    <xsd:attribute name=\"val\" type=\"ST_Style\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ManualBreak\">\n    <xsd:attribute name=\"alnAt\" type=\"ST_Integer255\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ScriptStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"scr\" minOccurs=\"0\" type=\"CT_Script\"/>\n      <xsd:element name=\"sty\" minOccurs=\"0\" type=\"CT_Style\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_RPR\">\n    <xsd:sequence>\n      <xsd:element name=\"lit\" minOccurs=\"0\" type=\"CT_OnOff\"/>\n      <xsd:choice>\n        <xsd:element name=\"nor\" minOccurs=\"0\" type=\"CT_OnOff\"/>\n        <xsd:sequence>\n          <xsd:group ref=\"EG_ScriptStyle\"/>\n        </xsd:sequence>\n      </xsd:choice>\n      <xsd:element name=\"brk\" minOccurs=\"0\" type=\"CT_ManualBreak\"/>\n      <xsd:element name=\"aln\" minOccurs=\"0\" type=\"CT_OnOff\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Text\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"s:ST_String\">\n        <xsd:attribute ref=\"xml:space\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_R\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_RPR\" minOccurs=\"0\"/>\n      <xsd:group ref=\"w:EG_RPr\" minOccurs=\"0\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:group ref=\"w:EG_RunInnerContent\"/>\n        <xsd:element name=\"t\" type=\"CT_Text\" minOccurs=\"0\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CtrlPr\">\n    <xsd:sequence>\n      <xsd:group ref=\"w:EG_RPrMath\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AccPr\">\n    <xsd:sequence>\n      <xsd:element name=\"chr\" type=\"CT_Char\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Acc\">\n    <xsd:sequence>\n      <xsd:element name=\"accPr\" type=\"CT_AccPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BarPr\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"CT_TopBot\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Bar\">\n    <xsd:sequence>\n      <xsd:element name=\"barPr\" type=\"CT_BarPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BoxPr\">\n    <xsd:sequence>\n      <xsd:element name=\"opEmu\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noBreak\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"diff\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"brk\" type=\"CT_ManualBreak\" minOccurs=\"0\"/>\n      <xsd:element name=\"aln\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Box\">\n    <xsd:sequence>\n      <xsd:element name=\"boxPr\" type=\"CT_BoxPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BorderBoxPr\">\n    <xsd:sequence>\n      <xsd:element name=\"hideTop\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hideBot\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hideLeft\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hideRight\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"strikeH\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"strikeV\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"strikeBLTR\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"strikeTLBR\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BorderBox\">\n    <xsd:sequence>\n      <xsd:element name=\"borderBoxPr\" type=\"CT_BorderBoxPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DPr\">\n    <xsd:sequence>\n      <xsd:element name=\"begChr\" type=\"CT_Char\" minOccurs=\"0\"/>\n      <xsd:element name=\"sepChr\" type=\"CT_Char\" minOccurs=\"0\"/>\n      <xsd:element name=\"endChr\" type=\"CT_Char\" minOccurs=\"0\"/>\n      <xsd:element name=\"grow\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"shp\" type=\"CT_Shp\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_D\">\n    <xsd:sequence>\n      <xsd:element name=\"dPr\" type=\"CT_DPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EqArrPr\">\n    <xsd:sequence>\n      <xsd:element name=\"baseJc\" type=\"CT_YAlign\" minOccurs=\"0\"/>\n      <xsd:element name=\"maxDist\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"objDist\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"rSpRule\" type=\"CT_SpacingRule\" minOccurs=\"0\"/>\n      <xsd:element name=\"rSp\" type=\"CT_UnSignedInteger\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EqArr\">\n    <xsd:sequence>\n      <xsd:element name=\"eqArrPr\" type=\"CT_EqArrPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FPr\">\n    <xsd:sequence>\n      <xsd:element name=\"type\" type=\"CT_FType\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_F\">\n    <xsd:sequence>\n      <xsd:element name=\"fPr\" type=\"CT_FPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"num\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"den\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FuncPr\">\n    <xsd:sequence>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Func\">\n    <xsd:sequence>\n      <xsd:element name=\"funcPr\" type=\"CT_FuncPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"fName\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupChrPr\">\n    <xsd:sequence>\n      <xsd:element name=\"chr\" type=\"CT_Char\" minOccurs=\"0\"/>\n      <xsd:element name=\"pos\" type=\"CT_TopBot\" minOccurs=\"0\"/>\n      <xsd:element name=\"vertJc\" type=\"CT_TopBot\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupChr\">\n    <xsd:sequence>\n      <xsd:element name=\"groupChrPr\" type=\"CT_GroupChrPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LimLowPr\">\n    <xsd:sequence>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LimLow\">\n    <xsd:sequence>\n      <xsd:element name=\"limLowPr\" type=\"CT_LimLowPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"lim\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LimUppPr\">\n    <xsd:sequence>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LimUpp\">\n    <xsd:sequence>\n      <xsd:element name=\"limUppPr\" type=\"CT_LimUppPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"lim\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MCPr\">\n    <xsd:sequence>\n      <xsd:element name=\"count\" type=\"CT_Integer255\" minOccurs=\"0\"/>\n      <xsd:element name=\"mcJc\" type=\"CT_XAlign\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MC\">\n    <xsd:sequence>\n      <xsd:element name=\"mcPr\" type=\"CT_MCPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MCS\">\n    <xsd:sequence>\n      <xsd:element name=\"mc\" type=\"CT_MC\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MPr\">\n    <xsd:sequence>\n      <xsd:element name=\"baseJc\" type=\"CT_YAlign\" minOccurs=\"0\"/>\n      <xsd:element name=\"plcHide\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"rSpRule\" type=\"CT_SpacingRule\" minOccurs=\"0\"/>\n      <xsd:element name=\"cGpRule\" type=\"CT_SpacingRule\" minOccurs=\"0\"/>\n      <xsd:element name=\"rSp\" type=\"CT_UnSignedInteger\" minOccurs=\"0\"/>\n      <xsd:element name=\"cSp\" type=\"CT_UnSignedInteger\" minOccurs=\"0\"/>\n      <xsd:element name=\"cGp\" type=\"CT_UnSignedInteger\" minOccurs=\"0\"/>\n      <xsd:element name=\"mcs\" type=\"CT_MCS\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MR\">\n    <xsd:sequence>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_M\">\n    <xsd:sequence>\n      <xsd:element name=\"mPr\" type=\"CT_MPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"mr\" type=\"CT_MR\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NaryPr\">\n    <xsd:sequence>\n      <xsd:element name=\"chr\" type=\"CT_Char\" minOccurs=\"0\"/>\n      <xsd:element name=\"limLoc\" type=\"CT_LimLoc\" minOccurs=\"0\"/>\n      <xsd:element name=\"grow\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"subHide\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"supHide\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Nary\">\n    <xsd:sequence>\n      <xsd:element name=\"naryPr\" type=\"CT_NaryPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"sub\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"sup\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PhantPr\">\n    <xsd:sequence>\n      <xsd:element name=\"show\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"zeroWid\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"zeroAsc\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"zeroDesc\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"transp\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Phant\">\n    <xsd:sequence>\n      <xsd:element name=\"phantPr\" type=\"CT_PhantPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RadPr\">\n    <xsd:sequence>\n      <xsd:element name=\"degHide\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rad\">\n    <xsd:sequence>\n      <xsd:element name=\"radPr\" type=\"CT_RadPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"deg\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SPrePr\">\n    <xsd:sequence>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SPre\">\n    <xsd:sequence>\n      <xsd:element name=\"sPrePr\" type=\"CT_SPrePr\" minOccurs=\"0\"/>\n      <xsd:element name=\"sub\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"sup\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SSubPr\">\n    <xsd:sequence>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SSub\">\n    <xsd:sequence>\n      <xsd:element name=\"sSubPr\" type=\"CT_SSubPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"sub\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SSubSupPr\">\n    <xsd:sequence>\n      <xsd:element name=\"alnScr\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SSubSup\">\n    <xsd:sequence>\n      <xsd:element name=\"sSubSupPr\" type=\"CT_SSubSupPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"sub\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"sup\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SSupPr\">\n    <xsd:sequence>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SSup\">\n    <xsd:sequence>\n      <xsd:element name=\"sSupPr\" type=\"CT_SSupPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"sup\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_OMathMathElements\">\n    <xsd:choice>\n      <xsd:element name=\"acc\" type=\"CT_Acc\"/>\n      <xsd:element name=\"bar\" type=\"CT_Bar\"/>\n      <xsd:element name=\"box\" type=\"CT_Box\"/>\n      <xsd:element name=\"borderBox\" type=\"CT_BorderBox\"/>\n      <xsd:element name=\"d\" type=\"CT_D\"/>\n      <xsd:element name=\"eqArr\" type=\"CT_EqArr\"/>\n      <xsd:element name=\"f\" type=\"CT_F\"/>\n      <xsd:element name=\"func\" type=\"CT_Func\"/>\n      <xsd:element name=\"groupChr\" type=\"CT_GroupChr\"/>\n      <xsd:element name=\"limLow\" type=\"CT_LimLow\"/>\n      <xsd:element name=\"limUpp\" type=\"CT_LimUpp\"/>\n      <xsd:element name=\"m\" type=\"CT_M\"/>\n      <xsd:element name=\"nary\" type=\"CT_Nary\"/>\n      <xsd:element name=\"phant\" type=\"CT_Phant\"/>\n      <xsd:element name=\"rad\" type=\"CT_Rad\"/>\n      <xsd:element name=\"sPre\" type=\"CT_SPre\"/>\n      <xsd:element name=\"sSub\" type=\"CT_SSub\"/>\n      <xsd:element name=\"sSubSup\" type=\"CT_SSubSup\"/>\n      <xsd:element name=\"sSup\" type=\"CT_SSup\"/>\n      <xsd:element name=\"r\" type=\"CT_R\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_OMathElements\">\n    <xsd:choice>\n      <xsd:group ref=\"EG_OMathMathElements\"/>\n      <xsd:group ref=\"w:EG_PContentMath\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_OMathArgPr\">\n    <xsd:sequence>\n      <xsd:element name=\"argSz\" type=\"CT_Integer2\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OMathArg\">\n    <xsd:sequence>\n      <xsd:element name=\"argPr\" type=\"CT_OMathArgPr\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_OMathElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Jc\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"centerGroup\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_OMathJc\">\n    <xsd:attribute name=\"val\" type=\"ST_Jc\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OMathParaPr\">\n    <xsd:sequence>\n      <xsd:element name=\"jc\" type=\"CT_OMathJc\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TwipsMeasure\">\n    <xsd:attribute name=\"val\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BreakBin\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"before\"/>\n      <xsd:enumeration value=\"after\"/>\n      <xsd:enumeration value=\"repeat\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BreakBin\">\n    <xsd:attribute name=\"val\" type=\"ST_BreakBin\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BreakBinSub\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"--\"/>\n      <xsd:enumeration value=\"-+\"/>\n      <xsd:enumeration value=\"+-\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BreakBinSub\">\n    <xsd:attribute name=\"val\" type=\"ST_BreakBinSub\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MathPr\">\n    <xsd:sequence>\n      <xsd:element name=\"mathFont\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"brkBin\" type=\"CT_BreakBin\" minOccurs=\"0\"/>\n      <xsd:element name=\"brkBinSub\" type=\"CT_BreakBinSub\" minOccurs=\"0\"/>\n      <xsd:element name=\"smallFrac\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"dispDef\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"lMargin\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"rMargin\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"defJc\" type=\"CT_OMathJc\" minOccurs=\"0\"/>\n      <xsd:element name=\"preSp\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"postSp\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"interSp\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"intraSp\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:choice minOccurs=\"0\">\n        <xsd:element name=\"wrapIndent\" type=\"CT_TwipsMeasure\"/>\n        <xsd:element name=\"wrapRight\" type=\"CT_OnOff\"/>\n      </xsd:choice>\n      <xsd:element name=\"intLim\" type=\"CT_LimLoc\" minOccurs=\"0\"/>\n      <xsd:element name=\"naryLim\" type=\"CT_LimLoc\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"mathPr\" type=\"CT_MathPr\"/>\n  <xsd:complexType name=\"CT_OMathPara\">\n    <xsd:sequence>\n      <xsd:element name=\"oMathParaPr\" type=\"CT_OMathParaPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"oMath\" type=\"CT_OMath\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OMath\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_OMathElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"oMathPara\" type=\"CT_OMathPara\"/>\n  <xsd:element name=\"oMath\" type=\"CT_OMath\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  elementFormDefault=\"qualified\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  blockDefault=\"#all\">\n  <xsd:simpleType name=\"ST_RelationshipId\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:attribute name=\"id\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"embed\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"link\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"dm\" type=\"ST_RelationshipId\" default=\"\"/>\n  <xsd:attribute name=\"lo\" type=\"ST_RelationshipId\" default=\"\"/>\n  <xsd:attribute name=\"qs\" type=\"ST_RelationshipId\" default=\"\"/>\n  <xsd:attribute name=\"cs\" type=\"ST_RelationshipId\" default=\"\"/>\n  <xsd:attribute name=\"blip\" type=\"ST_RelationshipId\" default=\"\"/>\n  <xsd:attribute name=\"pict\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"href\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"topLeft\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"topRight\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"bottomLeft\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"bottomRight\" type=\"ST_RelationshipId\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:xdr=\"http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\"\n  elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:import \n    namespace=\"http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing\"\n    schemaLocation=\"dml-spreadsheetDrawing.xsd\"/>\n  <xsd:complexType name=\"CT_AutoFilter\">\n    <xsd:sequence>\n      <xsd:element name=\"filterColumn\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_FilterColumn\"/>\n      <xsd:element name=\"sortState\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_SortState\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FilterColumn\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"filters\" type=\"CT_Filters\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"top10\" type=\"CT_Top10\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customFilters\" type=\"CT_CustomFilters\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dynamicFilter\" type=\"CT_DynamicFilter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"colorFilter\" type=\"CT_ColorFilter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"iconFilter\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_IconFilter\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"colId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"hiddenButton\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showButton\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Filters\">\n    <xsd:sequence>\n      <xsd:element name=\"filter\" type=\"CT_Filter\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dateGroupItem\" type=\"CT_DateGroupItem\" minOccurs=\"0\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n    <xsd:attribute name=\"blank\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"calendarType\" type=\"s:ST_CalendarType\" use=\"optional\" default=\"none\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Filter\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomFilters\">\n    <xsd:sequence>\n      <xsd:element name=\"customFilter\" type=\"CT_CustomFilter\" minOccurs=\"1\" maxOccurs=\"2\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"and\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomFilter\">\n    <xsd:attribute name=\"operator\" type=\"ST_FilterOperator\" default=\"equal\" use=\"optional\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Top10\">\n    <xsd:attribute name=\"top\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"percent\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"filterVal\" type=\"xsd:double\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorFilter\">\n    <xsd:attribute name=\"dxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"cellColor\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_IconFilter\">\n    <xsd:attribute name=\"iconSet\" type=\"ST_IconSetType\" use=\"required\"/>\n    <xsd:attribute name=\"iconId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FilterOperator\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"equal\"/>\n      <xsd:enumeration value=\"lessThan\"/>\n      <xsd:enumeration value=\"lessThanOrEqual\"/>\n      <xsd:enumeration value=\"notEqual\"/>\n      <xsd:enumeration value=\"greaterThanOrEqual\"/>\n      <xsd:enumeration value=\"greaterThan\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DynamicFilter\">\n    <xsd:attribute name=\"type\" type=\"ST_DynamicFilterType\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"valIso\" type=\"xsd:dateTime\" use=\"optional\"/>\n    <xsd:attribute name=\"maxVal\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"maxValIso\" type=\"xsd:dateTime\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DynamicFilterType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"null\"/>\n      <xsd:enumeration value=\"aboveAverage\"/>\n      <xsd:enumeration value=\"belowAverage\"/>\n      <xsd:enumeration value=\"tomorrow\"/>\n      <xsd:enumeration value=\"today\"/>\n      <xsd:enumeration value=\"yesterday\"/>\n      <xsd:enumeration value=\"nextWeek\"/>\n      <xsd:enumeration value=\"thisWeek\"/>\n      <xsd:enumeration value=\"lastWeek\"/>\n      <xsd:enumeration value=\"nextMonth\"/>\n      <xsd:enumeration value=\"thisMonth\"/>\n      <xsd:enumeration value=\"lastMonth\"/>\n      <xsd:enumeration value=\"nextQuarter\"/>\n      <xsd:enumeration value=\"thisQuarter\"/>\n      <xsd:enumeration value=\"lastQuarter\"/>\n      <xsd:enumeration value=\"nextYear\"/>\n      <xsd:enumeration value=\"thisYear\"/>\n      <xsd:enumeration value=\"lastYear\"/>\n      <xsd:enumeration value=\"yearToDate\"/>\n      <xsd:enumeration value=\"Q1\"/>\n      <xsd:enumeration value=\"Q2\"/>\n      <xsd:enumeration value=\"Q3\"/>\n      <xsd:enumeration value=\"Q4\"/>\n      <xsd:enumeration value=\"M1\"/>\n      <xsd:enumeration value=\"M2\"/>\n      <xsd:enumeration value=\"M3\"/>\n      <xsd:enumeration value=\"M4\"/>\n      <xsd:enumeration value=\"M5\"/>\n      <xsd:enumeration value=\"M6\"/>\n      <xsd:enumeration value=\"M7\"/>\n      <xsd:enumeration value=\"M8\"/>\n      <xsd:enumeration value=\"M9\"/>\n      <xsd:enumeration value=\"M10\"/>\n      <xsd:enumeration value=\"M11\"/>\n      <xsd:enumeration value=\"M12\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_IconSetType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"3Arrows\"/>\n      <xsd:enumeration value=\"3ArrowsGray\"/>\n      <xsd:enumeration value=\"3Flags\"/>\n      <xsd:enumeration value=\"3TrafficLights1\"/>\n      <xsd:enumeration value=\"3TrafficLights2\"/>\n      <xsd:enumeration value=\"3Signs\"/>\n      <xsd:enumeration value=\"3Symbols\"/>\n      <xsd:enumeration value=\"3Symbols2\"/>\n      <xsd:enumeration value=\"4Arrows\"/>\n      <xsd:enumeration value=\"4ArrowsGray\"/>\n      <xsd:enumeration value=\"4RedToBlack\"/>\n      <xsd:enumeration value=\"4Rating\"/>\n      <xsd:enumeration value=\"4TrafficLights\"/>\n      <xsd:enumeration value=\"5Arrows\"/>\n      <xsd:enumeration value=\"5ArrowsGray\"/>\n      <xsd:enumeration value=\"5Rating\"/>\n      <xsd:enumeration value=\"5Quarters\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SortState\">\n    <xsd:sequence>\n      <xsd:element name=\"sortCondition\" minOccurs=\"0\" maxOccurs=\"64\" type=\"CT_SortCondition\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"columnSort\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"caseSensitive\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"sortMethod\" type=\"ST_SortMethod\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SortCondition\">\n    <xsd:attribute name=\"descending\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"sortBy\" type=\"ST_SortBy\" use=\"optional\" default=\"value\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"customList\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"dxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"iconSet\" type=\"ST_IconSetType\" use=\"optional\" default=\"3Arrows\"/>\n    <xsd:attribute name=\"iconId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SortBy\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"value\"/>\n      <xsd:enumeration value=\"cellColor\"/>\n      <xsd:enumeration value=\"fontColor\"/>\n      <xsd:enumeration value=\"icon\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_SortMethod\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"stroke\"/>\n      <xsd:enumeration value=\"pinYin\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DateGroupItem\">\n    <xsd:attribute name=\"year\" type=\"xsd:unsignedShort\" use=\"required\"/>\n    <xsd:attribute name=\"month\" type=\"xsd:unsignedShort\" use=\"optional\"/>\n    <xsd:attribute name=\"day\" type=\"xsd:unsignedShort\" use=\"optional\"/>\n    <xsd:attribute name=\"hour\" type=\"xsd:unsignedShort\" use=\"optional\"/>\n    <xsd:attribute name=\"minute\" type=\"xsd:unsignedShort\" use=\"optional\"/>\n    <xsd:attribute name=\"second\" type=\"xsd:unsignedShort\" use=\"optional\"/>\n    <xsd:attribute name=\"dateTimeGrouping\" type=\"ST_DateTimeGrouping\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DateTimeGrouping\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"year\"/>\n      <xsd:enumeration value=\"month\"/>\n      <xsd:enumeration value=\"day\"/>\n      <xsd:enumeration value=\"hour\"/>\n      <xsd:enumeration value=\"minute\"/>\n      <xsd:enumeration value=\"second\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CellRef\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Ref\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RefA\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Sqref\">\n    <xsd:list itemType=\"ST_Ref\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Formula\">\n    <xsd:restriction base=\"s:ST_Xstring\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UnsignedIntHex\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"4\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UnsignedShortHex\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"2\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_XStringElement\">\n    <xsd:attribute name=\"v\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Extension\">\n    <xsd:sequence>\n      <xsd:any processContents=\"lax\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"xsd:token\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ObjectAnchor\">\n    <xsd:sequence>\n      <xsd:element ref=\"xdr:from\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"xdr:to\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"moveWithCells\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"sizeWithCells\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ExtensionList\">\n    <xsd:sequence>\n      <xsd:element name=\"ext\" type=\"CT_Extension\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_ExtensionList\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ExtensionList\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"calcChain\" type=\"CT_CalcChain\"/>\n  <xsd:complexType name=\"CT_CalcChain\">\n    <xsd:sequence>\n      <xsd:element name=\"c\" type=\"CT_CalcCell\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalcCell\">\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"l\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"t\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"a\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:element name=\"comments\" type=\"CT_Comments\"/>\n  <xsd:complexType name=\"CT_Comments\">\n    <xsd:sequence>\n      <xsd:element name=\"authors\" type=\"CT_Authors\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"commentList\" type=\"CT_CommentList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Authors\">\n    <xsd:sequence>\n      <xsd:element name=\"author\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommentList\">\n    <xsd:sequence>\n      <xsd:element name=\"comment\" type=\"CT_Comment\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Comment\">\n    <xsd:sequence>\n      <xsd:element name=\"text\" type=\"CT_Rst\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"commentPr\" type=\"CT_CommentPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"authorId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"optional\"/>\n    <xsd:attribute name=\"shapeId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommentPr\">\n    <xsd:sequence>\n      <xsd:element name=\"anchor\" type=\"CT_ObjectAnchor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"locked\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"defaultSize\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"print\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"disabled\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoFill\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"autoLine\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"altText\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"textHAlign\" type=\"ST_TextHAlign\" use=\"optional\" default=\"left\"/>\n    <xsd:attribute name=\"textVAlign\" type=\"ST_TextVAlign\" use=\"optional\" default=\"top\"/>\n    <xsd:attribute name=\"lockText\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"justLastX\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoScale\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextHAlign\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"justify\"/>\n      <xsd:enumeration value=\"distributed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextVAlign\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"justify\"/>\n      <xsd:enumeration value=\"distributed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"MapInfo\" type=\"CT_MapInfo\"/>\n  <xsd:complexType name=\"CT_MapInfo\">\n    <xsd:sequence>\n      <xsd:element name=\"Schema\" type=\"CT_Schema\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"Map\" type=\"CT_Map\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"SelectionNamespaces\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Schema\" mixed=\"true\">\n    <xsd:sequence>\n      <xsd:any/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ID\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"SchemaRef\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"Namespace\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"SchemaLanguage\" type=\"xsd:token\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Map\">\n    <xsd:sequence>\n      <xsd:element name=\"DataBinding\" type=\"CT_DataBinding\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ID\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"Name\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"RootElement\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"SchemaID\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"ShowImportExportValidationErrors\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"AutoFit\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"Append\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"PreserveSortAFLayout\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"PreserveFormat\" type=\"xsd:boolean\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataBinding\">\n    <xsd:sequence>\n      <xsd:any/>\n    </xsd:sequence>\n    <xsd:attribute name=\"DataBindingName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"FileBinding\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"ConnectionID\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"FileBindingName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"DataBindingLoadMode\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"connections\" type=\"CT_Connections\"/>\n  <xsd:complexType name=\"CT_Connections\">\n    <xsd:sequence>\n      <xsd:element name=\"connection\" minOccurs=\"1\" maxOccurs=\"unbounded\" type=\"CT_Connection\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Connection\">\n    <xsd:sequence>\n      <xsd:element name=\"dbPr\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_DbPr\"/>\n      <xsd:element name=\"olapPr\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_OlapPr\"/>\n      <xsd:element name=\"webPr\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_WebPr\"/>\n      <xsd:element name=\"textPr\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_TextPr\"/>\n      <xsd:element name=\"parameters\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_Parameters\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"sourceFile\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"odcFile\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"keepAlive\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"interval\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"name\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"description\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"type\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"reconnectionMethod\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"1\"/>\n    <xsd:attribute name=\"refreshedVersion\" use=\"required\" type=\"xsd:unsignedByte\"/>\n    <xsd:attribute name=\"minRefreshableVersion\" use=\"optional\" type=\"xsd:unsignedByte\" default=\"0\"/>\n    <xsd:attribute name=\"savePassword\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"new\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"deleted\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"onlyUseConnectionFile\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"background\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"refreshOnLoad\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"saveData\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"credentials\" use=\"optional\" type=\"ST_CredMethod\" default=\"integrated\"/>\n    <xsd:attribute name=\"singleSignOnId\" use=\"optional\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CredMethod\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"integrated\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"stored\"/>\n      <xsd:enumeration value=\"prompt\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DbPr\">\n    <xsd:attribute name=\"connection\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"command\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"serverCommand\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"commandType\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"2\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OlapPr\">\n    <xsd:attribute name=\"local\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"localConnection\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"localRefresh\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"sendLocale\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"rowDrillCount\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"serverFill\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"serverNumberFormat\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"serverFont\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"serverFontColor\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WebPr\">\n    <xsd:sequence>\n      <xsd:element name=\"tables\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_Tables\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"xml\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"sourceData\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"parsePre\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"consecutive\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"firstRow\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"xl97\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"textDates\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"xl2000\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"url\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"post\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"htmlTables\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"htmlFormat\" use=\"optional\" type=\"ST_HtmlFmt\" default=\"none\"/>\n    <xsd:attribute name=\"editPage\" use=\"optional\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HtmlFmt\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"rtf\"/>\n      <xsd:enumeration value=\"all\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Parameters\">\n    <xsd:sequence>\n      <xsd:element name=\"parameter\" minOccurs=\"1\" maxOccurs=\"unbounded\" type=\"CT_Parameter\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Parameter\">\n    <xsd:attribute name=\"name\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"sqlType\" use=\"optional\" type=\"xsd:int\" default=\"0\"/>\n    <xsd:attribute name=\"parameterType\" use=\"optional\" type=\"ST_ParameterType\" default=\"prompt\"/>\n    <xsd:attribute name=\"refreshOnChange\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"prompt\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"boolean\" use=\"optional\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"double\" use=\"optional\" type=\"xsd:double\"/>\n    <xsd:attribute name=\"integer\" use=\"optional\" type=\"xsd:int\"/>\n    <xsd:attribute name=\"string\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cell\" use=\"optional\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ParameterType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"prompt\"/>\n      <xsd:enumeration value=\"value\"/>\n      <xsd:enumeration value=\"cell\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Tables\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"m\" type=\"CT_TableMissing\"/>\n      <xsd:element name=\"s\" type=\"CT_XStringElement\"/>\n      <xsd:element name=\"x\" type=\"CT_Index\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"count\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableMissing\"/>\n  <xsd:complexType name=\"CT_TextPr\">\n    <xsd:sequence>\n      <xsd:element name=\"textFields\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_TextFields\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prompt\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"fileType\" use=\"optional\" type=\"ST_FileType\" default=\"win\"/>\n    <xsd:attribute name=\"codePage\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"1252\"/>\n    <xsd:attribute name=\"characterSet\" use=\"optional\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"firstRow\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"1\"/>\n    <xsd:attribute name=\"sourceFile\" use=\"optional\" type=\"s:ST_Xstring\" default=\"\"/>\n    <xsd:attribute name=\"delimited\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"decimal\" use=\"optional\" type=\"s:ST_Xstring\" default=\".\"/>\n    <xsd:attribute name=\"thousands\" use=\"optional\" type=\"s:ST_Xstring\" default=\",\"/>\n    <xsd:attribute name=\"tab\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"space\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"comma\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"semicolon\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"consecutive\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"qualifier\" use=\"optional\" type=\"ST_Qualifier\" default=\"doubleQuote\"/>\n    <xsd:attribute name=\"delimiter\" use=\"optional\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FileType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"mac\"/>\n      <xsd:enumeration value=\"win\"/>\n      <xsd:enumeration value=\"dos\"/>\n      <xsd:enumeration value=\"lin\"/>\n      <xsd:enumeration value=\"other\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Qualifier\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"doubleQuote\"/>\n      <xsd:enumeration value=\"singleQuote\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextFields\">\n    <xsd:sequence>\n      <xsd:element name=\"textField\" minOccurs=\"1\" maxOccurs=\"unbounded\" type=\"CT_TextField\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextField\">\n    <xsd:attribute name=\"type\" use=\"optional\" type=\"ST_ExternalConnectionType\" default=\"general\"/>\n    <xsd:attribute name=\"position\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ExternalConnectionType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"general\"/>\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"MDY\"/>\n      <xsd:enumeration value=\"DMY\"/>\n      <xsd:enumeration value=\"YMD\"/>\n      <xsd:enumeration value=\"MYD\"/>\n      <xsd:enumeration value=\"DYM\"/>\n      <xsd:enumeration value=\"YDM\"/>\n      <xsd:enumeration value=\"skip\"/>\n      <xsd:enumeration value=\"EMD\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"pivotCacheDefinition\" type=\"CT_PivotCacheDefinition\"/>\n  <xsd:element name=\"pivotCacheRecords\" type=\"CT_PivotCacheRecords\"/>\n  <xsd:element name=\"pivotTableDefinition\" type=\"CT_pivotTableDefinition\"/>\n  <xsd:complexType name=\"CT_PivotCacheDefinition\">\n    <xsd:sequence>\n      <xsd:element name=\"cacheSource\" type=\"CT_CacheSource\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cacheFields\" type=\"CT_CacheFields\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cacheHierarchies\" minOccurs=\"0\" type=\"CT_CacheHierarchies\"/>\n      <xsd:element name=\"kpis\" minOccurs=\"0\" type=\"CT_PCDKPIs\"/>\n      <xsd:element name=\"tupleCache\" minOccurs=\"0\" type=\"CT_TupleCache\"/>\n      <xsd:element name=\"calculatedItems\" minOccurs=\"0\" type=\"CT_CalculatedItems\"/>\n      <xsd:element name=\"calculatedMembers\" type=\"CT_CalculatedMembers\" minOccurs=\"0\"/>\n      <xsd:element name=\"dimensions\" type=\"CT_Dimensions\" minOccurs=\"0\"/>\n      <xsd:element name=\"measureGroups\" type=\"CT_MeasureGroups\" minOccurs=\"0\"/>\n      <xsd:element name=\"maps\" type=\"CT_MeasureDimensionMaps\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"invalid\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"saveData\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"refreshOnLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"optimizeMemory\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"enableRefresh\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"refreshedBy\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"refreshedDate\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"refreshedDateIso\" type=\"xsd:dateTime\" use=\"optional\"/>\n    <xsd:attribute name=\"backgroundQuery\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"missingItemsLimit\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"createdVersion\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"refreshedVersion\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"minRefreshableVersion\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"recordCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"upgradeOnRefresh\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"tupleCache\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"supportSubquery\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"supportAdvancedDrill\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CacheFields\">\n    <xsd:sequence>\n      <xsd:element name=\"cacheField\" type=\"CT_CacheField\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CacheField\">\n    <xsd:sequence>\n      <xsd:element name=\"sharedItems\" type=\"CT_SharedItems\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fieldGroup\" minOccurs=\"0\" type=\"CT_FieldGroup\"/>\n      <xsd:element name=\"mpMap\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"caption\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"propertyName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"serverField\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"uniqueList\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"optional\"/>\n    <xsd:attribute name=\"formula\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"sqlType\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"hierarchy\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"level\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"databaseField\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"mappingCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"memberPropertyField\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CacheSource\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"worksheetSource\" type=\"CT_WorksheetSource\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"consolidation\" type=\"CT_Consolidation\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"type\" type=\"ST_SourceType\" use=\"required\"/>\n    <xsd:attribute name=\"connectionId\" type=\"xsd:unsignedInt\" default=\"0\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SourceType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"worksheet\"/>\n      <xsd:enumeration value=\"external\"/>\n      <xsd:enumeration value=\"consolidation\"/>\n      <xsd:enumeration value=\"scenario\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_WorksheetSource\">\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"optional\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"sheet\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Consolidation\">\n    <xsd:sequence>\n      <xsd:element name=\"pages\" type=\"CT_Pages\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rangeSets\" type=\"CT_RangeSets\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"autoPage\" type=\"xsd:boolean\" default=\"true\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Pages\">\n    <xsd:sequence>\n      <xsd:element name=\"page\" type=\"CT_PCDSCPage\" minOccurs=\"1\" maxOccurs=\"4\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PCDSCPage\">\n    <xsd:sequence>\n      <xsd:element name=\"pageItem\" type=\"CT_PageItem\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageItem\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RangeSets\">\n    <xsd:sequence>\n      <xsd:element name=\"rangeSet\" type=\"CT_RangeSet\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RangeSet\">\n    <xsd:attribute name=\"i1\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"i2\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"i3\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"i4\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"optional\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"sheet\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SharedItems\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"m\" type=\"CT_Missing\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"n\" type=\"CT_Number\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"b\" type=\"CT_Boolean\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"e\" type=\"CT_Error\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"s\" type=\"CT_String\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"d\" type=\"CT_DateTime\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"containsSemiMixedTypes\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"containsNonDate\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"containsDate\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"containsString\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"containsBlank\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"containsMixedTypes\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"containsNumber\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"containsInteger\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"minValue\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"maxValue\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"minDate\" type=\"xsd:dateTime\" use=\"optional\"/>\n    <xsd:attribute name=\"maxDate\" type=\"xsd:dateTime\" use=\"optional\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"longText\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Missing\">\n    <xsd:sequence>\n      <xsd:element name=\"tpls\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Tuples\"/>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"c\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cp\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"in\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"bc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"fc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"un\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"st\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Number\">\n    <xsd:sequence>\n      <xsd:element name=\"tpls\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Tuples\"/>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"v\" use=\"required\" type=\"xsd:double\"/>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"c\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cp\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"in\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"bc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"fc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"un\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"st\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Boolean\">\n    <xsd:sequence>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"v\" use=\"required\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"c\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cp\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Error\">\n    <xsd:sequence>\n      <xsd:element name=\"tpls\" minOccurs=\"0\" type=\"CT_Tuples\"/>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"v\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"c\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cp\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"in\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"bc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"fc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"un\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"st\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_String\">\n    <xsd:sequence>\n      <xsd:element name=\"tpls\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Tuples\"/>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"v\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"c\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cp\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"in\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"bc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"fc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"un\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"st\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DateTime\">\n    <xsd:sequence>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"v\" use=\"required\" type=\"xsd:dateTime\"/>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"c\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cp\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FieldGroup\">\n    <xsd:sequence>\n      <xsd:element name=\"rangePr\" minOccurs=\"0\" type=\"CT_RangePr\"/>\n      <xsd:element name=\"discretePr\" minOccurs=\"0\" type=\"CT_DiscretePr\"/>\n      <xsd:element name=\"groupItems\" minOccurs=\"0\" type=\"CT_GroupItems\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"par\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"base\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RangePr\">\n    <xsd:attribute name=\"autoStart\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"autoEnd\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"groupBy\" type=\"ST_GroupBy\" default=\"range\"/>\n    <xsd:attribute name=\"startNum\" type=\"xsd:double\"/>\n    <xsd:attribute name=\"endNum\" type=\"xsd:double\"/>\n    <xsd:attribute name=\"startDate\" type=\"xsd:dateTime\"/>\n    <xsd:attribute name=\"endDate\" type=\"xsd:dateTime\"/>\n    <xsd:attribute name=\"groupInterval\" type=\"xsd:double\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_GroupBy\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"range\"/>\n      <xsd:enumeration value=\"seconds\"/>\n      <xsd:enumeration value=\"minutes\"/>\n      <xsd:enumeration value=\"hours\"/>\n      <xsd:enumeration value=\"days\"/>\n      <xsd:enumeration value=\"months\"/>\n      <xsd:enumeration value=\"quarters\"/>\n      <xsd:enumeration value=\"years\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DiscretePr\">\n    <xsd:sequence>\n      <xsd:element name=\"x\" maxOccurs=\"unbounded\" type=\"CT_Index\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupItems\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"m\" type=\"CT_Missing\"/>\n      <xsd:element name=\"n\" type=\"CT_Number\"/>\n      <xsd:element name=\"b\" type=\"CT_Boolean\"/>\n      <xsd:element name=\"e\" type=\"CT_Error\"/>\n      <xsd:element name=\"s\" type=\"CT_String\"/>\n      <xsd:element name=\"d\" type=\"CT_DateTime\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotCacheRecords\">\n    <xsd:sequence>\n      <xsd:element name=\"r\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Record\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Record\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"m\" type=\"CT_Missing\"/>\n      <xsd:element name=\"n\" type=\"CT_Number\"/>\n      <xsd:element name=\"b\" type=\"CT_Boolean\"/>\n      <xsd:element name=\"e\" type=\"CT_Error\"/>\n      <xsd:element name=\"s\" type=\"CT_String\"/>\n      <xsd:element name=\"d\" type=\"CT_DateTime\"/>\n      <xsd:element name=\"x\" type=\"CT_Index\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PCDKPIs\">\n    <xsd:sequence>\n      <xsd:element name=\"kpi\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_PCDKPI\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PCDKPI\">\n    <xsd:attribute name=\"uniqueName\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"caption\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"displayFolder\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"measureGroup\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"parent\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"value\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"goal\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"status\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"trend\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"weight\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"time\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CacheHierarchies\">\n    <xsd:sequence>\n      <xsd:element name=\"cacheHierarchy\" minOccurs=\"0\" maxOccurs=\"unbounded\"\n        type=\"CT_CacheHierarchy\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CacheHierarchy\">\n    <xsd:sequence>\n      <xsd:element name=\"fieldsUsage\" minOccurs=\"0\" type=\"CT_FieldsUsage\"/>\n      <xsd:element name=\"groupLevels\" minOccurs=\"0\" type=\"CT_GroupLevels\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueName\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"caption\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"measure\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"set\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"parentSet\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"iconSet\" type=\"xsd:int\" default=\"0\"/>\n    <xsd:attribute name=\"attribute\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"time\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"keyAttribute\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"defaultMemberUniqueName\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"allUniqueName\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"allCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"dimensionUniqueName\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"displayFolder\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"measureGroup\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"measures\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"count\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"oneField\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"memberValueDatatype\" use=\"optional\" type=\"xsd:unsignedShort\"/>\n    <xsd:attribute name=\"unbalanced\" use=\"optional\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"unbalancedGroup\" use=\"optional\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FieldsUsage\">\n    <xsd:sequence>\n      <xsd:element name=\"fieldUsage\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_FieldUsage\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FieldUsage\">\n    <xsd:attribute name=\"x\" use=\"required\" type=\"xsd:int\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupLevels\">\n    <xsd:sequence>\n      <xsd:element name=\"groupLevel\" maxOccurs=\"unbounded\" type=\"CT_GroupLevel\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupLevel\">\n    <xsd:sequence>\n      <xsd:element name=\"groups\" minOccurs=\"0\" type=\"CT_Groups\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueName\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"caption\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"user\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"customRollUp\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Groups\">\n    <xsd:sequence>\n      <xsd:element name=\"group\" maxOccurs=\"unbounded\" type=\"CT_LevelGroup\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LevelGroup\">\n    <xsd:sequence>\n      <xsd:element name=\"groupMembers\" type=\"CT_GroupMembers\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"uniqueName\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"caption\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"uniqueParent\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"id\" type=\"xsd:int\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupMembers\">\n    <xsd:sequence>\n      <xsd:element name=\"groupMember\" maxOccurs=\"unbounded\" type=\"CT_GroupMember\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupMember\">\n    <xsd:attribute name=\"uniqueName\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"group\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TupleCache\">\n    <xsd:sequence>\n      <xsd:element name=\"entries\" minOccurs=\"0\" type=\"CT_PCDSDTCEntries\"/>\n      <xsd:element name=\"sets\" minOccurs=\"0\" type=\"CT_Sets\"/>\n      <xsd:element name=\"queryCache\" minOccurs=\"0\" type=\"CT_QueryCache\"/>\n      <xsd:element name=\"serverFormats\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ServerFormats\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ServerFormat\">\n    <xsd:attribute name=\"culture\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"format\" use=\"optional\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ServerFormats\">\n    <xsd:sequence>\n      <xsd:element name=\"serverFormat\" type=\"CT_ServerFormat\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PCDSDTCEntries\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"m\" type=\"CT_Missing\"/>\n      <xsd:element name=\"n\" type=\"CT_Number\"/>\n      <xsd:element name=\"e\" type=\"CT_Error\"/>\n      <xsd:element name=\"s\" type=\"CT_String\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Tuples\">\n    <xsd:sequence>\n      <xsd:element name=\"tpl\" type=\"CT_Tuple\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"c\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Tuple\">\n    <xsd:attribute name=\"fld\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"hier\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"item\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Sets\">\n    <xsd:sequence>\n      <xsd:element name=\"set\" maxOccurs=\"unbounded\" type=\"CT_Set\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Set\">\n    <xsd:sequence>\n      <xsd:element name=\"tpls\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Tuples\"/>\n      <xsd:element name=\"sortByTuple\" minOccurs=\"0\" type=\"CT_Tuples\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"maxRank\" use=\"required\" type=\"xsd:int\"/>\n    <xsd:attribute name=\"setDefinition\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"sortType\" type=\"ST_SortType\" default=\"none\"/>\n    <xsd:attribute name=\"queryFailed\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SortType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"ascending\"/>\n      <xsd:enumeration value=\"descending\"/>\n      <xsd:enumeration value=\"ascendingAlpha\"/>\n      <xsd:enumeration value=\"descendingAlpha\"/>\n      <xsd:enumeration value=\"ascendingNatural\"/>\n      <xsd:enumeration value=\"descendingNatural\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_QueryCache\">\n    <xsd:sequence>\n      <xsd:element name=\"query\" maxOccurs=\"unbounded\" type=\"CT_Query\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Query\">\n    <xsd:sequence>\n      <xsd:element name=\"tpls\" minOccurs=\"0\" type=\"CT_Tuples\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"mdx\" use=\"required\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalculatedItems\">\n    <xsd:sequence>\n      <xsd:element name=\"calculatedItem\" maxOccurs=\"unbounded\" type=\"CT_CalculatedItem\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalculatedItem\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotArea\" type=\"CT_PivotArea\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"field\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"formula\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalculatedMembers\">\n    <xsd:sequence>\n      <xsd:element name=\"calculatedMember\" maxOccurs=\"unbounded\" type=\"CT_CalculatedMember\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalculatedMember\">\n    <xsd:sequence minOccurs=\"0\">\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"mdx\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"memberName\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"hierarchy\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"parent\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"solveOrder\" type=\"xsd:int\" default=\"0\"/>\n    <xsd:attribute name=\"set\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_pivotTableDefinition\">\n    <xsd:sequence>\n      <xsd:element name=\"location\" type=\"CT_Location\"/>\n      <xsd:element name=\"pivotFields\" type=\"CT_PivotFields\" minOccurs=\"0\"/>\n      <xsd:element name=\"rowFields\" type=\"CT_RowFields\" minOccurs=\"0\"/>\n      <xsd:element name=\"rowItems\" type=\"CT_rowItems\" minOccurs=\"0\"/>\n      <xsd:element name=\"colFields\" type=\"CT_ColFields\" minOccurs=\"0\"/>\n      <xsd:element name=\"colItems\" type=\"CT_colItems\" minOccurs=\"0\"/>\n      <xsd:element name=\"pageFields\" type=\"CT_PageFields\" minOccurs=\"0\"/>\n      <xsd:element name=\"dataFields\" type=\"CT_DataFields\" minOccurs=\"0\"/>\n      <xsd:element name=\"formats\" type=\"CT_Formats\" minOccurs=\"0\"/>\n      <xsd:element name=\"conditionalFormats\" type=\"CT_ConditionalFormats\" minOccurs=\"0\"/>\n      <xsd:element name=\"chartFormats\" type=\"CT_ChartFormats\" minOccurs=\"0\"/>\n      <xsd:element name=\"pivotHierarchies\" type=\"CT_PivotHierarchies\" minOccurs=\"0\"/>\n      <xsd:element name=\"pivotTableStyleInfo\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_PivotTableStyle\"/>\n      <xsd:element name=\"filters\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_PivotFilters\"/>\n      <xsd:element name=\"rowHierarchiesUsage\" type=\"CT_RowHierarchiesUsage\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"colHierarchiesUsage\" type=\"CT_ColHierarchiesUsage\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cacheId\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"dataOnRows\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"dataPosition\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attributeGroup ref=\"AG_AutoFormat\"/>\n    <xsd:attribute name=\"dataCaption\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"grandTotalCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"errorCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"showError\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"missingCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"showMissing\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"pageStyle\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"pivotTableStyle\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"vacatedStyle\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"tag\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"updatedVersion\" type=\"xsd:unsignedByte\" default=\"0\"/>\n    <xsd:attribute name=\"minRefreshableVersion\" type=\"xsd:unsignedByte\" default=\"0\"/>\n    <xsd:attribute name=\"asteriskTotals\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showItems\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"editData\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"disableFieldList\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showCalcMbrs\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"visualTotals\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"showMultipleLabel\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"showDataDropDown\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"showDrill\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"printDrill\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showMemberPropertyTips\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"showDataTips\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"enableWizard\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"enableDrill\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"enableFieldProperties\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"preserveFormatting\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"useAutoFormatting\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"pageWrap\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"pageOverThenDown\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"subtotalHiddenItems\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"rowGrandTotals\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"colGrandTotals\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"fieldPrintTitles\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"itemPrintTitles\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"mergeItem\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showDropZones\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"createdVersion\" type=\"xsd:unsignedByte\" default=\"0\"/>\n    <xsd:attribute name=\"indent\" type=\"xsd:unsignedInt\" default=\"1\"/>\n    <xsd:attribute name=\"showEmptyRow\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showEmptyCol\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showHeaders\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"compact\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"outline\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"outlineData\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"compactData\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"published\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"gridDropZones\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"immersive\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"multipleFieldFilters\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"chartFormat\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"rowHeaderCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"colHeaderCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"fieldListSortAscending\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"mdxSubqueries\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"customListSort\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Location\">\n    <xsd:attribute name=\"ref\" use=\"required\" type=\"ST_Ref\"/>\n    <xsd:attribute name=\"firstHeaderRow\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"firstDataRow\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"firstDataCol\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"rowPageCount\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"colPageCount\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotFields\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotField\" maxOccurs=\"unbounded\" type=\"CT_PivotField\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotField\">\n    <xsd:sequence>\n      <xsd:element name=\"items\" minOccurs=\"0\" type=\"CT_Items\"/>\n      <xsd:element name=\"autoSortScope\" minOccurs=\"0\" type=\"CT_AutoSortScope\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"axis\" use=\"optional\" type=\"ST_Axis\"/>\n    <xsd:attribute name=\"dataField\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"subtotalCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"showDropDowns\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"hiddenLevel\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"uniqueMemberProperty\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"compact\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"allDrilled\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"optional\"/>\n    <xsd:attribute name=\"outline\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"subtotalTop\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToRow\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToCol\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"multipleItemSelectionAllowed\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"dragToPage\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToData\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragOff\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"showAll\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"insertBlankRow\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"serverField\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"insertPageBreak\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"autoShow\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"topAutoShow\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"hideNewItems\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"measureFilter\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"includeNewItemsInFilter\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"itemPageCount\" type=\"xsd:unsignedInt\" default=\"10\"/>\n    <xsd:attribute name=\"sortType\" type=\"ST_FieldSortType\" default=\"manual\"/>\n    <xsd:attribute name=\"dataSourceSort\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"nonAutoSortDefault\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"rankBy\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"defaultSubtotal\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"sumSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"countASubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"avgSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"maxSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"minSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"productSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"countSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"stdDevSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"stdDevPSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"varSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"varPSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showPropCell\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showPropTip\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showPropAsCaption\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"defaultAttributeDrillState\" type=\"xsd:boolean\" use=\"optional\"\n      default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AutoSortScope\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotArea\" type=\"CT_PivotArea\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Items\">\n    <xsd:sequence>\n      <xsd:element name=\"item\" maxOccurs=\"unbounded\" type=\"CT_Item\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Item\">\n    <xsd:attribute name=\"n\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"t\" type=\"ST_ItemType\" default=\"data\"/>\n    <xsd:attribute name=\"h\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"sd\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"m\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"c\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"x\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"d\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"e\" type=\"xsd:boolean\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageFields\">\n    <xsd:sequence>\n      <xsd:element name=\"pageField\" maxOccurs=\"unbounded\" type=\"CT_PageField\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageField\">\n    <xsd:sequence minOccurs=\"0\">\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"fld\" use=\"required\" type=\"xsd:int\"/>\n    <xsd:attribute name=\"item\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"hier\" type=\"xsd:int\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cap\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataFields\">\n    <xsd:sequence>\n      <xsd:element name=\"dataField\" maxOccurs=\"unbounded\" type=\"CT_DataField\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataField\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"fld\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"subtotal\" type=\"ST_DataConsolidateFunction\" default=\"sum\"/>\n    <xsd:attribute name=\"showDataAs\" type=\"ST_ShowDataAs\" default=\"normal\"/>\n    <xsd:attribute name=\"baseField\" type=\"xsd:int\" default=\"-1\"/>\n    <xsd:attribute name=\"baseItem\" type=\"xsd:unsignedInt\" default=\"1048832\"/>\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_rowItems\">\n    <xsd:sequence>\n      <xsd:element name=\"i\" maxOccurs=\"unbounded\" type=\"CT_I\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_colItems\">\n    <xsd:sequence>\n      <xsd:element name=\"i\" maxOccurs=\"unbounded\" type=\"CT_I\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_I\">\n    <xsd:sequence>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"t\" type=\"ST_ItemType\" default=\"data\"/>\n    <xsd:attribute name=\"r\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_X\">\n    <xsd:attribute name=\"v\" type=\"xsd:int\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RowFields\">\n    <xsd:sequence>\n      <xsd:element name=\"field\" maxOccurs=\"unbounded\" type=\"CT_Field\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColFields\">\n    <xsd:sequence>\n      <xsd:element name=\"field\" maxOccurs=\"unbounded\" type=\"CT_Field\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Field\">\n    <xsd:attribute name=\"x\" type=\"xsd:int\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Formats\">\n    <xsd:sequence>\n      <xsd:element name=\"format\" maxOccurs=\"unbounded\" type=\"CT_Format\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Format\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotArea\" type=\"CT_PivotArea\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"action\" type=\"ST_FormatAction\" default=\"formatting\"/>\n    <xsd:attribute name=\"dxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConditionalFormats\">\n    <xsd:sequence>\n      <xsd:element name=\"conditionalFormat\" maxOccurs=\"unbounded\" type=\"CT_ConditionalFormat\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConditionalFormat\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotAreas\" type=\"CT_PivotAreas\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"scope\" type=\"ST_Scope\" default=\"selection\"/>\n    <xsd:attribute name=\"type\" type=\"ST_Type\" default=\"none\"/>\n    <xsd:attribute name=\"priority\" use=\"required\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotAreas\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotArea\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_PivotArea\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Scope\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"selection\"/>\n      <xsd:enumeration value=\"data\"/>\n      <xsd:enumeration value=\"field\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Type\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"all\"/>\n      <xsd:enumeration value=\"row\"/>\n      <xsd:enumeration value=\"column\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ChartFormats\">\n    <xsd:sequence>\n      <xsd:element name=\"chartFormat\" maxOccurs=\"unbounded\" type=\"CT_ChartFormat\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartFormat\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotArea\" type=\"CT_PivotArea\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"chart\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"format\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"series\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotHierarchies\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotHierarchy\" maxOccurs=\"unbounded\" type=\"CT_PivotHierarchy\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotHierarchy\">\n    <xsd:sequence>\n      <xsd:element name=\"mps\" minOccurs=\"0\" type=\"CT_MemberProperties\"/>\n      <xsd:element name=\"members\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Members\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"outline\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"multipleItemSelectionAllowed\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"subtotalTop\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showInFieldList\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToRow\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToCol\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToPage\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToData\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"dragOff\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"includeNewItemsInFilter\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"caption\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RowHierarchiesUsage\">\n    <xsd:sequence>\n      <xsd:element name=\"rowHierarchyUsage\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n        type=\"CT_HierarchyUsage\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColHierarchiesUsage\">\n    <xsd:sequence>\n      <xsd:element name=\"colHierarchyUsage\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n        type=\"CT_HierarchyUsage\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HierarchyUsage\">\n    <xsd:attribute name=\"hierarchyUsage\" type=\"xsd:int\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MemberProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"mp\" maxOccurs=\"unbounded\" type=\"CT_MemberProperty\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MemberProperty\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"showCell\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showTip\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showAsCaption\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"nameLen\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"pPos\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"pLen\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"level\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"field\" use=\"required\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Members\">\n    <xsd:sequence>\n      <xsd:element name=\"member\" maxOccurs=\"unbounded\" type=\"CT_Member\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"level\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Member\">\n    <xsd:attribute name=\"name\" use=\"required\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Dimensions\">\n    <xsd:sequence>\n      <xsd:element name=\"dimension\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_PivotDimension\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotDimension\">\n    <xsd:attribute name=\"measure\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"name\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"uniqueName\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"caption\" use=\"required\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MeasureGroups\">\n    <xsd:sequence>\n      <xsd:element name=\"measureGroup\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_MeasureGroup\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MeasureDimensionMaps\">\n    <xsd:sequence>\n      <xsd:element name=\"map\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_MeasureDimensionMap\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MeasureGroup\">\n    <xsd:attribute name=\"name\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"caption\" use=\"required\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MeasureDimensionMap\">\n    <xsd:attribute name=\"measureGroup\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"dimension\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotTableStyle\">\n    <xsd:attribute name=\"name\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"showRowHeaders\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"showColHeaders\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"showRowStripes\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"showColStripes\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"showLastColumn\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotFilters\">\n    <xsd:sequence>\n      <xsd:element name=\"filter\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_PivotFilter\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotFilter\">\n    <xsd:sequence>\n      <xsd:element name=\"autoFilter\" minOccurs=\"1\" maxOccurs=\"1\" type=\"CT_AutoFilter\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"fld\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"mpFld\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"type\" use=\"required\" type=\"ST_PivotFilterType\"/>\n    <xsd:attribute name=\"evalOrder\" use=\"optional\" type=\"xsd:int\" default=\"0\"/>\n    <xsd:attribute name=\"id\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"iMeasureHier\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"iMeasureFld\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"description\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"stringValue1\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"stringValue2\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ShowDataAs\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"difference\"/>\n      <xsd:enumeration value=\"percent\"/>\n      <xsd:enumeration value=\"percentDiff\"/>\n      <xsd:enumeration value=\"runTotal\"/>\n      <xsd:enumeration value=\"percentOfRow\"/>\n      <xsd:enumeration value=\"percentOfCol\"/>\n      <xsd:enumeration value=\"percentOfTotal\"/>\n      <xsd:enumeration value=\"index\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ItemType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"data\"/>\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"sum\"/>\n      <xsd:enumeration value=\"countA\"/>\n      <xsd:enumeration value=\"avg\"/>\n      <xsd:enumeration value=\"max\"/>\n      <xsd:enumeration value=\"min\"/>\n      <xsd:enumeration value=\"product\"/>\n      <xsd:enumeration value=\"count\"/>\n      <xsd:enumeration value=\"stdDev\"/>\n      <xsd:enumeration value=\"stdDevP\"/>\n      <xsd:enumeration value=\"var\"/>\n      <xsd:enumeration value=\"varP\"/>\n      <xsd:enumeration value=\"grand\"/>\n      <xsd:enumeration value=\"blank\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FormatAction\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"blank\"/>\n      <xsd:enumeration value=\"formatting\"/>\n      <xsd:enumeration value=\"drill\"/>\n      <xsd:enumeration value=\"formula\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FieldSortType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"manual\"/>\n      <xsd:enumeration value=\"ascending\"/>\n      <xsd:enumeration value=\"descending\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PivotFilterType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"unknown\"/>\n      <xsd:enumeration value=\"count\"/>\n      <xsd:enumeration value=\"percent\"/>\n      <xsd:enumeration value=\"sum\"/>\n      <xsd:enumeration value=\"captionEqual\"/>\n      <xsd:enumeration value=\"captionNotEqual\"/>\n      <xsd:enumeration value=\"captionBeginsWith\"/>\n      <xsd:enumeration value=\"captionNotBeginsWith\"/>\n      <xsd:enumeration value=\"captionEndsWith\"/>\n      <xsd:enumeration value=\"captionNotEndsWith\"/>\n      <xsd:enumeration value=\"captionContains\"/>\n      <xsd:enumeration value=\"captionNotContains\"/>\n      <xsd:enumeration value=\"captionGreaterThan\"/>\n      <xsd:enumeration value=\"captionGreaterThanOrEqual\"/>\n      <xsd:enumeration value=\"captionLessThan\"/>\n      <xsd:enumeration value=\"captionLessThanOrEqual\"/>\n      <xsd:enumeration value=\"captionBetween\"/>\n      <xsd:enumeration value=\"captionNotBetween\"/>\n      <xsd:enumeration value=\"valueEqual\"/>\n      <xsd:enumeration value=\"valueNotEqual\"/>\n      <xsd:enumeration value=\"valueGreaterThan\"/>\n      <xsd:enumeration value=\"valueGreaterThanOrEqual\"/>\n      <xsd:enumeration value=\"valueLessThan\"/>\n      <xsd:enumeration value=\"valueLessThanOrEqual\"/>\n      <xsd:enumeration value=\"valueBetween\"/>\n      <xsd:enumeration value=\"valueNotBetween\"/>\n      <xsd:enumeration value=\"dateEqual\"/>\n      <xsd:enumeration value=\"dateNotEqual\"/>\n      <xsd:enumeration value=\"dateOlderThan\"/>\n      <xsd:enumeration value=\"dateOlderThanOrEqual\"/>\n      <xsd:enumeration value=\"dateNewerThan\"/>\n      <xsd:enumeration value=\"dateNewerThanOrEqual\"/>\n      <xsd:enumeration value=\"dateBetween\"/>\n      <xsd:enumeration value=\"dateNotBetween\"/>\n      <xsd:enumeration value=\"tomorrow\"/>\n      <xsd:enumeration value=\"today\"/>\n      <xsd:enumeration value=\"yesterday\"/>\n      <xsd:enumeration value=\"nextWeek\"/>\n      <xsd:enumeration value=\"thisWeek\"/>\n      <xsd:enumeration value=\"lastWeek\"/>\n      <xsd:enumeration value=\"nextMonth\"/>\n      <xsd:enumeration value=\"thisMonth\"/>\n      <xsd:enumeration value=\"lastMonth\"/>\n      <xsd:enumeration value=\"nextQuarter\"/>\n      <xsd:enumeration value=\"thisQuarter\"/>\n      <xsd:enumeration value=\"lastQuarter\"/>\n      <xsd:enumeration value=\"nextYear\"/>\n      <xsd:enumeration value=\"thisYear\"/>\n      <xsd:enumeration value=\"lastYear\"/>\n      <xsd:enumeration value=\"yearToDate\"/>\n      <xsd:enumeration value=\"Q1\"/>\n      <xsd:enumeration value=\"Q2\"/>\n      <xsd:enumeration value=\"Q3\"/>\n      <xsd:enumeration value=\"Q4\"/>\n      <xsd:enumeration value=\"M1\"/>\n      <xsd:enumeration value=\"M2\"/>\n      <xsd:enumeration value=\"M3\"/>\n      <xsd:enumeration value=\"M4\"/>\n      <xsd:enumeration value=\"M5\"/>\n      <xsd:enumeration value=\"M6\"/>\n      <xsd:enumeration value=\"M7\"/>\n      <xsd:enumeration value=\"M8\"/>\n      <xsd:enumeration value=\"M9\"/>\n      <xsd:enumeration value=\"M10\"/>\n      <xsd:enumeration value=\"M11\"/>\n      <xsd:enumeration value=\"M12\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PivotArea\">\n    <xsd:sequence>\n      <xsd:element name=\"references\" minOccurs=\"0\" type=\"CT_PivotAreaReferences\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"field\" use=\"optional\" type=\"xsd:int\"/>\n    <xsd:attribute name=\"type\" type=\"ST_PivotAreaType\" default=\"normal\"/>\n    <xsd:attribute name=\"dataOnly\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"labelOnly\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"grandRow\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"grandCol\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"cacheIndex\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"outline\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"offset\" type=\"ST_Ref\"/>\n    <xsd:attribute name=\"collapsedLevelsAreSubtotals\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"axis\" type=\"ST_Axis\" use=\"optional\"/>\n    <xsd:attribute name=\"fieldPosition\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PivotAreaType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"data\"/>\n      <xsd:enumeration value=\"all\"/>\n      <xsd:enumeration value=\"origin\"/>\n      <xsd:enumeration value=\"button\"/>\n      <xsd:enumeration value=\"topEnd\"/>\n      <xsd:enumeration value=\"topRight\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PivotAreaReferences\">\n    <xsd:sequence>\n      <xsd:element name=\"reference\" maxOccurs=\"unbounded\" type=\"CT_PivotAreaReference\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotAreaReference\">\n    <xsd:sequence>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Index\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"field\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"selected\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"byPosition\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"relative\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"defaultSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"sumSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"countASubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"avgSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"maxSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"minSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"productSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"countSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"stdDevSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"stdDevPSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"varSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"varPSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Index\">\n    <xsd:attribute name=\"v\" use=\"required\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Axis\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"axisRow\"/>\n      <xsd:enumeration value=\"axisCol\"/>\n      <xsd:enumeration value=\"axisPage\"/>\n      <xsd:enumeration value=\"axisValues\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"queryTable\" type=\"CT_QueryTable\"/>\n  <xsd:complexType name=\"CT_QueryTable\">\n    <xsd:sequence>\n      <xsd:element name=\"queryTableRefresh\" type=\"CT_QueryTableRefresh\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"headers\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"rowNumbers\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"disableRefresh\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"backgroundRefresh\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"firstBackgroundRefresh\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"refreshOnLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"growShrinkType\" type=\"ST_GrowShrinkType\" use=\"optional\"\n      default=\"insertDelete\"/>\n    <xsd:attribute name=\"fillFormulas\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"removeDataOnSave\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"disableEdit\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"preserveFormatting\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"adjustColumnWidth\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"intermediate\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"connectionId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attributeGroup ref=\"AG_AutoFormat\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_QueryTableRefresh\">\n    <xsd:sequence>\n      <xsd:element name=\"queryTableFields\" type=\"CT_QueryTableFields\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"queryTableDeletedFields\" type=\"CT_QueryTableDeletedFields\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"sortState\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_SortState\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"preserveSortFilterLayout\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"fieldIdWrapped\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"headersInLastRefresh\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"minimumVersion\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"nextId\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"unboundColumnsLeft\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"unboundColumnsRight\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_QueryTableDeletedFields\">\n    <xsd:sequence>\n      <xsd:element name=\"deletedField\" type=\"CT_DeletedField\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DeletedField\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_QueryTableFields\">\n    <xsd:sequence>\n      <xsd:element name=\"queryTableField\" type=\"CT_QueryTableField\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_QueryTableField\">\n    <xsd:sequence minOccurs=\"0\">\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"dataBound\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"rowNumbers\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"fillFormulas\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"clipped\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"tableColumnId\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_GrowShrinkType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"insertDelete\"/>\n      <xsd:enumeration value=\"insertClear\"/>\n      <xsd:enumeration value=\"overwriteClear\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"sst\" type=\"CT_Sst\"/>\n  <xsd:complexType name=\"CT_Sst\">\n    <xsd:sequence>\n      <xsd:element name=\"si\" type=\"CT_Rst\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"uniqueCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PhoneticType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"halfwidthKatakana\"/>\n      <xsd:enumeration value=\"fullwidthKatakana\"/>\n      <xsd:enumeration value=\"Hiragana\"/>\n      <xsd:enumeration value=\"noConversion\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PhoneticAlignment\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"noControl\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"distributed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PhoneticRun\">\n    <xsd:sequence>\n      <xsd:element name=\"t\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"sb\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"eb\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RElt\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_RPrElt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"t\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RPrElt\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"rFont\" type=\"CT_FontName\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"charset\" type=\"CT_IntProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"family\" type=\"CT_IntProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"b\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"i\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"strike\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"outline\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shadow\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"condense\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extend\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sz\" type=\"CT_FontSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"u\" type=\"CT_UnderlineProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"vertAlign\" type=\"CT_VerticalAlignFontProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scheme\" type=\"CT_FontScheme\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rst\">\n    <xsd:sequence>\n      <xsd:element name=\"t\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"r\" type=\"CT_RElt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rPh\" type=\"CT_PhoneticRun\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"phoneticPr\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_PhoneticPr\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PhoneticPr\">\n    <xsd:attribute name=\"fontId\" type=\"ST_FontId\" use=\"required\"/>\n    <xsd:attribute name=\"type\" type=\"ST_PhoneticType\" use=\"optional\" default=\"fullwidthKatakana\"/>\n    <xsd:attribute name=\"alignment\" type=\"ST_PhoneticAlignment\" use=\"optional\" default=\"left\"/>\n  </xsd:complexType>\n  <xsd:element name=\"headers\" type=\"CT_RevisionHeaders\"/>\n  <xsd:element name=\"revisions\" type=\"CT_Revisions\"/>\n  <xsd:complexType name=\"CT_RevisionHeaders\">\n    <xsd:sequence>\n      <xsd:element name=\"header\" type=\"CT_RevisionHeader\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"lastGuid\" type=\"s:ST_Guid\" use=\"optional\"/>\n    <xsd:attribute name=\"shared\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"diskRevisions\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"history\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"trackRevisions\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"exclusive\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"revisionId\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"version\" type=\"xsd:int\" default=\"1\"/>\n    <xsd:attribute name=\"keepChangeHistory\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"protected\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"preserveHistory\" type=\"xsd:unsignedInt\" default=\"30\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Revisions\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"rrc\" type=\"CT_RevisionRowColumn\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rm\" type=\"CT_RevisionMove\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rcv\" type=\"CT_RevisionCustomView\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rsnm\" type=\"CT_RevisionSheetRename\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"ris\" type=\"CT_RevisionInsertSheet\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rcc\" type=\"CT_RevisionCellChange\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rfmt\" type=\"CT_RevisionFormatting\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"raf\" type=\"CT_RevisionAutoFormatting\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rdn\" type=\"CT_RevisionDefinedName\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rcmt\" type=\"CT_RevisionComment\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rqt\" type=\"CT_RevisionQueryTableField\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rcft\" type=\"CT_RevisionConflict\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:attributeGroup name=\"AG_RevData\">\n    <xsd:attribute name=\"rId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"ua\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"ra\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_RevisionHeader\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetIdMap\" minOccurs=\"1\" maxOccurs=\"1\" type=\"CT_SheetIdMap\"/>\n      <xsd:element name=\"reviewedList\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ReviewedRevisions\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"dateTime\" type=\"xsd:dateTime\" use=\"required\"/>\n    <xsd:attribute name=\"maxSheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"userName\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n    <xsd:attribute name=\"minRId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"maxRId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetIdMap\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetId\" type=\"CT_SheetId\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetId\">\n    <xsd:attribute name=\"val\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ReviewedRevisions\">\n    <xsd:sequence>\n      <xsd:element name=\"reviewed\" type=\"CT_Reviewed\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Reviewed\">\n    <xsd:attribute name=\"rId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_UndoInfo\">\n    <xsd:attribute name=\"index\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"exp\" type=\"ST_FormulaExpression\" use=\"required\"/>\n    <xsd:attribute name=\"ref3D\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"array\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"v\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"nf\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"cs\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"dr\" type=\"ST_RefA\" use=\"required\"/>\n    <xsd:attribute name=\"dn\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"sId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionRowColumn\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"undo\" type=\"CT_UndoInfo\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rcc\" type=\"CT_RevisionCellChange\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rfmt\" type=\"CT_RevisionFormatting\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"sId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"eol\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"action\" type=\"ST_rwColActionType\" use=\"required\"/>\n    <xsd:attribute name=\"edge\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionMove\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"undo\" type=\"CT_UndoInfo\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rcc\" type=\"CT_RevisionCellChange\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rfmt\" type=\"CT_RevisionFormatting\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"source\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"destination\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"sourceSheetId\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionCustomView\">\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"action\" type=\"ST_RevisionAction\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionSheetRename\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"oldName\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"newName\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionInsertSheet\">\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"sheetPosition\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionCellChange\">\n    <xsd:sequence>\n      <xsd:element name=\"oc\" type=\"CT_Cell\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"nc\" type=\"CT_Cell\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"odxf\" type=\"CT_Dxf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ndxf\" type=\"CT_Dxf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"sId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"odxf\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"xfDxf\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"dxf\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"optional\"/>\n    <xsd:attribute name=\"quotePrefix\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"oldQuotePrefix\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"ph\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"oldPh\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"endOfListFormulaUpdate\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionFormatting\">\n    <xsd:sequence>\n      <xsd:element name=\"dxf\" type=\"CT_Dxf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"xfDxf\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\" use=\"required\"/>\n    <xsd:attribute name=\"start\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"length\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionAutoFormatting\">\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attributeGroup ref=\"AG_AutoFormat\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionComment\">\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"cell\" type=\"ST_CellRef\" use=\"required\"/>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"action\" type=\"ST_RevisionAction\" default=\"add\"/>\n    <xsd:attribute name=\"alwaysShow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"old\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"hiddenRow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"hiddenColumn\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"author\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"oldLength\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"newLength\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionDefinedName\">\n    <xsd:sequence>\n      <xsd:element name=\"formula\" type=\"ST_Formula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oldFormula\" type=\"ST_Formula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"localSheetId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"customView\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"function\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"oldFunction\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"functionGroupId\" type=\"xsd:unsignedByte\" use=\"optional\"/>\n    <xsd:attribute name=\"oldFunctionGroupId\" type=\"xsd:unsignedByte\" use=\"optional\"/>\n    <xsd:attribute name=\"shortcutKey\" type=\"xsd:unsignedByte\" use=\"optional\"/>\n    <xsd:attribute name=\"oldShortcutKey\" type=\"xsd:unsignedByte\" use=\"optional\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"oldHidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"customMenu\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"oldCustomMenu\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"description\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"oldDescription\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"help\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"oldHelp\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"statusBar\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"oldStatusBar\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"comment\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"oldComment\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionConflict\">\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionQueryTableField\">\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"fieldId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_rwColActionType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"insertRow\"/>\n      <xsd:enumeration value=\"deleteRow\"/>\n      <xsd:enumeration value=\"insertCol\"/>\n      <xsd:enumeration value=\"deleteCol\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RevisionAction\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"add\"/>\n      <xsd:enumeration value=\"delete\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FormulaExpression\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"ref\"/>\n      <xsd:enumeration value=\"refError\"/>\n      <xsd:enumeration value=\"area\"/>\n      <xsd:enumeration value=\"areaError\"/>\n      <xsd:enumeration value=\"computedArea\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"users\" type=\"CT_Users\"/>\n  <xsd:complexType name=\"CT_Users\">\n    <xsd:sequence>\n      <xsd:element name=\"userInfo\" minOccurs=\"0\" maxOccurs=\"256\" type=\"CT_SharedUser\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SharedUser\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"id\" type=\"xsd:int\" use=\"required\"/>\n    <xsd:attribute name=\"dateTime\" type=\"xsd:dateTime\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"worksheet\" type=\"CT_Worksheet\"/>\n  <xsd:element name=\"chartsheet\" type=\"CT_Chartsheet\"/>\n  <xsd:element name=\"dialogsheet\" type=\"CT_Dialogsheet\"/>\n  <xsd:complexType name=\"CT_Macrosheet\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetPr\" type=\"CT_SheetPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dimension\" type=\"CT_SheetDimension\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetViews\" type=\"CT_SheetViews\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetFormatPr\" type=\"CT_SheetFormatPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cols\" type=\"CT_Cols\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"sheetData\" type=\"CT_SheetData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetProtection\" type=\"CT_SheetProtection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"autoFilter\" type=\"CT_AutoFilter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sortState\" type=\"CT_SortState\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dataConsolidate\" type=\"CT_DataConsolidate\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customSheetViews\" type=\"CT_CustomSheetViews\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"phoneticPr\" type=\"CT_PhoneticPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"conditionalFormatting\" type=\"CT_ConditionalFormatting\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"printOptions\" type=\"CT_PrintOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageMargins\" type=\"CT_PageMargins\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageSetup\" type=\"CT_PageSetup\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headerFooter\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rowBreaks\" type=\"CT_PageBreak\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"colBreaks\" type=\"CT_PageBreak\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customProperties\" type=\"CT_CustomProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawing\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawingHF\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"drawingHF\" type=\"CT_DrawingHF\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"picture\" type=\"CT_SheetBackgroundPicture\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oleObjects\" type=\"CT_OleObjects\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Dialogsheet\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetPr\" minOccurs=\"0\" type=\"CT_SheetPr\"/>\n      <xsd:element name=\"sheetViews\" minOccurs=\"0\" type=\"CT_SheetViews\"/>\n      <xsd:element name=\"sheetFormatPr\" minOccurs=\"0\" type=\"CT_SheetFormatPr\"/>\n      <xsd:element name=\"sheetProtection\" type=\"CT_SheetProtection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customSheetViews\" minOccurs=\"0\" type=\"CT_CustomSheetViews\"/>\n      <xsd:element name=\"printOptions\" minOccurs=\"0\" type=\"CT_PrintOptions\"/>\n      <xsd:element name=\"pageMargins\" minOccurs=\"0\" type=\"CT_PageMargins\"/>\n      <xsd:element name=\"pageSetup\" minOccurs=\"0\" type=\"CT_PageSetup\"/>\n      <xsd:element name=\"headerFooter\" minOccurs=\"0\" type=\"CT_HeaderFooter\"/>\n      <xsd:element name=\"drawing\" minOccurs=\"0\" type=\"CT_Drawing\"/>\n      <xsd:element name=\"legacyDrawing\" minOccurs=\"0\" type=\"CT_LegacyDrawing\"/>\n      <xsd:element name=\"legacyDrawingHF\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"drawingHF\" type=\"CT_DrawingHF\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oleObjects\" type=\"CT_OleObjects\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"controls\" type=\"CT_Controls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Worksheet\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetPr\" type=\"CT_SheetPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dimension\" type=\"CT_SheetDimension\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetViews\" type=\"CT_SheetViews\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetFormatPr\" type=\"CT_SheetFormatPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cols\" type=\"CT_Cols\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"sheetData\" type=\"CT_SheetData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetCalcPr\" type=\"CT_SheetCalcPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetProtection\" type=\"CT_SheetProtection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"protectedRanges\" type=\"CT_ProtectedRanges\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scenarios\" type=\"CT_Scenarios\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"autoFilter\" type=\"CT_AutoFilter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sortState\" type=\"CT_SortState\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dataConsolidate\" type=\"CT_DataConsolidate\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customSheetViews\" type=\"CT_CustomSheetViews\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"mergeCells\" type=\"CT_MergeCells\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"phoneticPr\" type=\"CT_PhoneticPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"conditionalFormatting\" type=\"CT_ConditionalFormatting\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dataValidations\" type=\"CT_DataValidations\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hyperlinks\" type=\"CT_Hyperlinks\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"printOptions\" type=\"CT_PrintOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageMargins\" type=\"CT_PageMargins\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageSetup\" type=\"CT_PageSetup\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headerFooter\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rowBreaks\" type=\"CT_PageBreak\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"colBreaks\" type=\"CT_PageBreak\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customProperties\" type=\"CT_CustomProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cellWatches\" type=\"CT_CellWatches\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ignoredErrors\" type=\"CT_IgnoredErrors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smartTags\" type=\"CT_SmartTags\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawing\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawingHF\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"drawingHF\" type=\"CT_DrawingHF\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"picture\" type=\"CT_SheetBackgroundPicture\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oleObjects\" type=\"CT_OleObjects\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"controls\" type=\"CT_Controls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"webPublishItems\" type=\"CT_WebPublishItems\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tableParts\" type=\"CT_TableParts\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetData\">\n    <xsd:sequence>\n      <xsd:element name=\"row\" type=\"CT_Row\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetCalcPr\">\n    <xsd:attribute name=\"fullCalcOnLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetFormatPr\">\n    <xsd:attribute name=\"baseColWidth\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"8\"/>\n    <xsd:attribute name=\"defaultColWidth\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"defaultRowHeight\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"customHeight\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"zeroHeight\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"thickTop\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"thickBottom\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"outlineLevelRow\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"outlineLevelCol\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Cols\">\n    <xsd:sequence>\n      <xsd:element name=\"col\" type=\"CT_Col\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Col\">\n    <xsd:attribute name=\"min\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"max\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"width\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"style\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"bestFit\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"customWidth\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"phonetic\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"outlineLevel\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"collapsed\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CellSpan\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CellSpans\">\n    <xsd:list itemType=\"ST_CellSpan\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Row\">\n    <xsd:sequence>\n      <xsd:element name=\"c\" type=\"CT_Cell\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"r\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"spans\" type=\"ST_CellSpans\" use=\"optional\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"customFormat\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"ht\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"customHeight\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"outlineLevel\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"collapsed\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"thickTop\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"thickBot\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"ph\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Cell\">\n    <xsd:sequence>\n      <xsd:element name=\"f\" type=\"CT_CellFormula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"v\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"is\" type=\"CT_Rst\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"t\" type=\"ST_CellType\" use=\"optional\" default=\"n\"/>\n    <xsd:attribute name=\"cm\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"vm\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ph\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CellType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"n\"/>\n      <xsd:enumeration value=\"e\"/>\n      <xsd:enumeration value=\"s\"/>\n      <xsd:enumeration value=\"str\"/>\n      <xsd:enumeration value=\"inlineStr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CellFormulaType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"array\"/>\n      <xsd:enumeration value=\"dataTable\"/>\n      <xsd:enumeration value=\"shared\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SheetPr\">\n    <xsd:sequence>\n      <xsd:element name=\"tabColor\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"outlinePr\" type=\"CT_OutlinePr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageSetUpPr\" type=\"CT_PageSetUpPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"syncHorizontal\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"syncVertical\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"syncRef\" type=\"ST_Ref\" use=\"optional\"/>\n    <xsd:attribute name=\"transitionEvaluation\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"transitionEntry\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"published\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"codeName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"filterMode\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"enableFormatConditionsCalculation\" type=\"xsd:boolean\" use=\"optional\"\n      default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetDimension\">\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetViews\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetView\" type=\"CT_SheetView\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetView\">\n    <xsd:sequence>\n      <xsd:element name=\"pane\" type=\"CT_Pane\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"selection\" type=\"CT_Selection\" minOccurs=\"0\" maxOccurs=\"4\"/>\n      <xsd:element name=\"pivotSelection\" type=\"CT_PivotSelection\" minOccurs=\"0\" maxOccurs=\"4\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"windowProtection\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showFormulas\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showGridLines\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showRowColHeaders\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showZeros\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"rightToLeft\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"tabSelected\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showRuler\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showOutlineSymbols\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"defaultGridColor\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showWhiteSpace\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"view\" type=\"ST_SheetViewType\" use=\"optional\" default=\"normal\"/>\n    <xsd:attribute name=\"topLeftCell\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"colorId\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"64\"/>\n    <xsd:attribute name=\"zoomScale\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"100\"/>\n    <xsd:attribute name=\"zoomScaleNormal\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"zoomScaleSheetLayoutView\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"zoomScalePageLayoutView\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"workbookViewId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Pane\">\n    <xsd:attribute name=\"xSplit\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ySplit\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"topLeftCell\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"activePane\" type=\"ST_Pane\" use=\"optional\" default=\"topLeft\"/>\n    <xsd:attribute name=\"state\" type=\"ST_PaneState\" use=\"optional\" default=\"split\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotSelection\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotArea\" type=\"CT_PivotArea\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"pane\" type=\"ST_Pane\" use=\"optional\" default=\"topLeft\"/>\n    <xsd:attribute name=\"showHeader\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"label\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"data\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"extendable\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"axis\" type=\"ST_Axis\" use=\"optional\"/>\n    <xsd:attribute name=\"dimension\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"start\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"min\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"max\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"activeRow\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"activeCol\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"previousRow\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"previousCol\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"click\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Selection\">\n    <xsd:attribute name=\"pane\" type=\"ST_Pane\" use=\"optional\" default=\"topLeft\"/>\n    <xsd:attribute name=\"activeCell\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"activeCellId\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\" use=\"optional\" default=\"A1\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Pane\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"bottomRight\"/>\n      <xsd:enumeration value=\"topRight\"/>\n      <xsd:enumeration value=\"bottomLeft\"/>\n      <xsd:enumeration value=\"topLeft\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PageBreak\">\n    <xsd:sequence>\n      <xsd:element name=\"brk\" type=\"CT_Break\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"manualBreakCount\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Break\">\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"min\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"max\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"man\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pt\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SheetViewType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"pageBreakPreview\"/>\n      <xsd:enumeration value=\"pageLayout\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_OutlinePr\">\n    <xsd:attribute name=\"applyStyles\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"summaryBelow\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"summaryRight\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showOutlineSymbols\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageSetUpPr\">\n    <xsd:attribute name=\"autoPageBreaks\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"fitToPage\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataConsolidate\">\n    <xsd:sequence>\n      <xsd:element name=\"dataRefs\" type=\"CT_DataRefs\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"function\" type=\"ST_DataConsolidateFunction\" use=\"optional\" default=\"sum\"/>\n    <xsd:attribute name=\"startLabels\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"leftLabels\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"topLabels\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"link\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DataConsolidateFunction\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"average\"/>\n      <xsd:enumeration value=\"count\"/>\n      <xsd:enumeration value=\"countNums\"/>\n      <xsd:enumeration value=\"max\"/>\n      <xsd:enumeration value=\"min\"/>\n      <xsd:enumeration value=\"product\"/>\n      <xsd:enumeration value=\"stdDev\"/>\n      <xsd:enumeration value=\"stdDevp\"/>\n      <xsd:enumeration value=\"sum\"/>\n      <xsd:enumeration value=\"var\"/>\n      <xsd:enumeration value=\"varp\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DataRefs\">\n    <xsd:sequence>\n      <xsd:element name=\"dataRef\" type=\"CT_DataRef\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataRef\">\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"optional\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"sheet\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MergeCells\">\n    <xsd:sequence>\n      <xsd:element name=\"mergeCell\" type=\"CT_MergeCell\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MergeCell\">\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SmartTags\">\n    <xsd:sequence>\n      <xsd:element name=\"cellSmartTags\" type=\"CT_CellSmartTags\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellSmartTags\">\n    <xsd:sequence>\n      <xsd:element name=\"cellSmartTag\" type=\"CT_CellSmartTag\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellSmartTag\">\n    <xsd:sequence>\n      <xsd:element name=\"cellSmartTagPr\" minOccurs=\"0\" maxOccurs=\"unbounded\"\n        type=\"CT_CellSmartTagPr\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"deleted\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"xmlBased\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellSmartTagPr\">\n    <xsd:attribute name=\"key\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Drawing\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LegacyDrawing\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DrawingHF\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n    <xsd:attribute name=\"lho\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"lhe\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"lhf\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"cho\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"che\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"chf\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rho\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rhe\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rhf\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"lfo\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"lfe\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"lff\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"cfo\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"cfe\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"cff\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rfo\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rfe\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rff\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomSheetViews\">\n    <xsd:sequence>\n      <xsd:element name=\"customSheetView\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n        type=\"CT_CustomSheetView\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomSheetView\">\n    <xsd:sequence>\n      <xsd:element name=\"pane\" type=\"CT_Pane\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"selection\" type=\"CT_Selection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rowBreaks\" type=\"CT_PageBreak\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"colBreaks\" type=\"CT_PageBreak\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageMargins\" type=\"CT_PageMargins\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"printOptions\" type=\"CT_PrintOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageSetup\" type=\"CT_PageSetup\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headerFooter\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"autoFilter\" type=\"CT_AutoFilter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"scale\" type=\"xsd:unsignedInt\" default=\"100\"/>\n    <xsd:attribute name=\"colorId\" type=\"xsd:unsignedInt\" default=\"64\"/>\n    <xsd:attribute name=\"showPageBreaks\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showFormulas\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showGridLines\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showRowCol\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"outlineSymbols\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"zeroValues\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"fitToPage\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"printArea\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"filter\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showAutoFilter\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"hiddenRows\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"hiddenColumns\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"state\" type=\"ST_SheetState\" default=\"visible\"/>\n    <xsd:attribute name=\"filterUnique\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"view\" type=\"ST_SheetViewType\" default=\"normal\"/>\n    <xsd:attribute name=\"showRuler\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"topLeftCell\" type=\"ST_CellRef\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataValidations\">\n    <xsd:sequence>\n      <xsd:element name=\"dataValidation\" type=\"CT_DataValidation\" minOccurs=\"1\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"disablePrompts\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"xWindow\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"yWindow\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataValidation\">\n    <xsd:sequence>\n      <xsd:element name=\"formula1\" type=\"ST_Formula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"formula2\" type=\"ST_Formula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_DataValidationType\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"errorStyle\" type=\"ST_DataValidationErrorStyle\" use=\"optional\"\n      default=\"stop\"/>\n    <xsd:attribute name=\"imeMode\" type=\"ST_DataValidationImeMode\" use=\"optional\" default=\"noControl\"/>\n    <xsd:attribute name=\"operator\" type=\"ST_DataValidationOperator\" use=\"optional\" default=\"between\"/>\n    <xsd:attribute name=\"allowBlank\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showDropDown\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showInputMessage\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showErrorMessage\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"errorTitle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"error\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"promptTitle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"prompt\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DataValidationType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"whole\"/>\n      <xsd:enumeration value=\"decimal\"/>\n      <xsd:enumeration value=\"list\"/>\n      <xsd:enumeration value=\"date\"/>\n      <xsd:enumeration value=\"time\"/>\n      <xsd:enumeration value=\"textLength\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DataValidationOperator\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"between\"/>\n      <xsd:enumeration value=\"notBetween\"/>\n      <xsd:enumeration value=\"equal\"/>\n      <xsd:enumeration value=\"notEqual\"/>\n      <xsd:enumeration value=\"lessThan\"/>\n      <xsd:enumeration value=\"lessThanOrEqual\"/>\n      <xsd:enumeration value=\"greaterThan\"/>\n      <xsd:enumeration value=\"greaterThanOrEqual\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DataValidationErrorStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"stop\"/>\n      <xsd:enumeration value=\"warning\"/>\n      <xsd:enumeration value=\"information\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DataValidationImeMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"noControl\"/>\n      <xsd:enumeration value=\"off\"/>\n      <xsd:enumeration value=\"on\"/>\n      <xsd:enumeration value=\"disabled\"/>\n      <xsd:enumeration value=\"hiragana\"/>\n      <xsd:enumeration value=\"fullKatakana\"/>\n      <xsd:enumeration value=\"halfKatakana\"/>\n      <xsd:enumeration value=\"fullAlpha\"/>\n      <xsd:enumeration value=\"halfAlpha\"/>\n      <xsd:enumeration value=\"fullHangul\"/>\n      <xsd:enumeration value=\"halfHangul\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CfType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"expression\"/>\n      <xsd:enumeration value=\"cellIs\"/>\n      <xsd:enumeration value=\"colorScale\"/>\n      <xsd:enumeration value=\"dataBar\"/>\n      <xsd:enumeration value=\"iconSet\"/>\n      <xsd:enumeration value=\"top10\"/>\n      <xsd:enumeration value=\"uniqueValues\"/>\n      <xsd:enumeration value=\"duplicateValues\"/>\n      <xsd:enumeration value=\"containsText\"/>\n      <xsd:enumeration value=\"notContainsText\"/>\n      <xsd:enumeration value=\"beginsWith\"/>\n      <xsd:enumeration value=\"endsWith\"/>\n      <xsd:enumeration value=\"containsBlanks\"/>\n      <xsd:enumeration value=\"notContainsBlanks\"/>\n      <xsd:enumeration value=\"containsErrors\"/>\n      <xsd:enumeration value=\"notContainsErrors\"/>\n      <xsd:enumeration value=\"timePeriod\"/>\n      <xsd:enumeration value=\"aboveAverage\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TimePeriod\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"today\"/>\n      <xsd:enumeration value=\"yesterday\"/>\n      <xsd:enumeration value=\"tomorrow\"/>\n      <xsd:enumeration value=\"last7Days\"/>\n      <xsd:enumeration value=\"thisMonth\"/>\n      <xsd:enumeration value=\"lastMonth\"/>\n      <xsd:enumeration value=\"nextMonth\"/>\n      <xsd:enumeration value=\"thisWeek\"/>\n      <xsd:enumeration value=\"lastWeek\"/>\n      <xsd:enumeration value=\"nextWeek\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConditionalFormattingOperator\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"lessThan\"/>\n      <xsd:enumeration value=\"lessThanOrEqual\"/>\n      <xsd:enumeration value=\"equal\"/>\n      <xsd:enumeration value=\"notEqual\"/>\n      <xsd:enumeration value=\"greaterThanOrEqual\"/>\n      <xsd:enumeration value=\"greaterThan\"/>\n      <xsd:enumeration value=\"between\"/>\n      <xsd:enumeration value=\"notBetween\"/>\n      <xsd:enumeration value=\"containsText\"/>\n      <xsd:enumeration value=\"notContains\"/>\n      <xsd:enumeration value=\"beginsWith\"/>\n      <xsd:enumeration value=\"endsWith\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CfvoType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"num\"/>\n      <xsd:enumeration value=\"percent\"/>\n      <xsd:enumeration value=\"max\"/>\n      <xsd:enumeration value=\"min\"/>\n      <xsd:enumeration value=\"formula\"/>\n      <xsd:enumeration value=\"percentile\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ConditionalFormatting\">\n    <xsd:sequence>\n      <xsd:element name=\"cfRule\" type=\"CT_CfRule\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"pivot\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CfRule\">\n    <xsd:sequence>\n      <xsd:element name=\"formula\" type=\"ST_Formula\" minOccurs=\"0\" maxOccurs=\"3\"/>\n      <xsd:element name=\"colorScale\" type=\"CT_ColorScale\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dataBar\" type=\"CT_DataBar\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"iconSet\" type=\"CT_IconSet\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_CfType\"/>\n    <xsd:attribute name=\"dxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"priority\" type=\"xsd:int\" use=\"required\"/>\n    <xsd:attribute name=\"stopIfTrue\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"aboveAverage\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"percent\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"bottom\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"operator\" type=\"ST_ConditionalFormattingOperator\" use=\"optional\"/>\n    <xsd:attribute name=\"text\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"timePeriod\" type=\"ST_TimePeriod\" use=\"optional\"/>\n    <xsd:attribute name=\"rank\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"stdDev\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"equalAverage\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Hyperlinks\">\n    <xsd:sequence>\n      <xsd:element name=\"hyperlink\" type=\"CT_Hyperlink\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Hyperlink\">\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"location\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"tooltip\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"display\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellFormula\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"ST_Formula\">\n        <xsd:attribute name=\"t\" type=\"ST_CellFormulaType\" use=\"optional\" default=\"normal\"/>\n        <xsd:attribute name=\"aca\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"optional\"/>\n        <xsd:attribute name=\"dt2D\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"dtr\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"del1\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"del2\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"r1\" type=\"ST_CellRef\" use=\"optional\"/>\n        <xsd:attribute name=\"r2\" type=\"ST_CellRef\" use=\"optional\"/>\n        <xsd:attribute name=\"ca\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"si\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n        <xsd:attribute name=\"bx\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorScale\">\n    <xsd:sequence>\n      <xsd:element name=\"cfvo\" type=\"CT_Cfvo\" minOccurs=\"2\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"2\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataBar\">\n    <xsd:sequence>\n      <xsd:element name=\"cfvo\" type=\"CT_Cfvo\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"minLength\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"10\"/>\n    <xsd:attribute name=\"maxLength\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"90\"/>\n    <xsd:attribute name=\"showValue\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_IconSet\">\n    <xsd:sequence>\n      <xsd:element name=\"cfvo\" type=\"CT_Cfvo\" minOccurs=\"2\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"iconSet\" type=\"ST_IconSetType\" use=\"optional\" default=\"3TrafficLights1\"/>\n    <xsd:attribute name=\"showValue\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"percent\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"reverse\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Cfvo\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_CfvoType\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"gte\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageMargins\">\n    <xsd:attribute name=\"left\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"right\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"top\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"bottom\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"header\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"footer\" type=\"xsd:double\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PrintOptions\">\n    <xsd:attribute name=\"horizontalCentered\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"verticalCentered\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"headings\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"gridLines\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"gridLinesSet\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageSetup\">\n    <xsd:attribute name=\"paperSize\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"paperHeight\" type=\"s:ST_PositiveUniversalMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"paperWidth\" type=\"s:ST_PositiveUniversalMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"scale\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"100\"/>\n    <xsd:attribute name=\"firstPageNumber\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"fitToWidth\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"fitToHeight\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"pageOrder\" type=\"ST_PageOrder\" use=\"optional\" default=\"downThenOver\"/>\n    <xsd:attribute name=\"orientation\" type=\"ST_Orientation\" use=\"optional\" default=\"default\"/>\n    <xsd:attribute name=\"usePrinterDefaults\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"blackAndWhite\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"draft\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"cellComments\" type=\"ST_CellComments\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"useFirstPageNumber\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"errors\" type=\"ST_PrintError\" use=\"optional\" default=\"displayed\"/>\n    <xsd:attribute name=\"horizontalDpi\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"verticalDpi\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"copies\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PageOrder\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"downThenOver\"/>\n      <xsd:enumeration value=\"overThenDown\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Orientation\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"portrait\"/>\n      <xsd:enumeration value=\"landscape\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CellComments\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"asDisplayed\"/>\n      <xsd:enumeration value=\"atEnd\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_HeaderFooter\">\n    <xsd:sequence>\n      <xsd:element name=\"oddHeader\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oddFooter\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"evenHeader\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"evenFooter\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstHeader\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstFooter\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"differentOddEven\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"differentFirst\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"scaleWithDoc\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"alignWithMargins\" type=\"xsd:boolean\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PrintError\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"displayed\"/>\n      <xsd:enumeration value=\"blank\"/>\n      <xsd:enumeration value=\"dash\"/>\n      <xsd:enumeration value=\"NA\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Scenarios\">\n    <xsd:sequence>\n      <xsd:element name=\"scenario\" type=\"CT_Scenario\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"current\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"show\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetProtection\">\n    <xsd:attribute name=\"password\" type=\"ST_UnsignedShortHex\" use=\"optional\"/>\n    <xsd:attribute name=\"algorithmName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"hashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"saltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"spinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"sheet\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"objects\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"scenarios\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"formatCells\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"formatColumns\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"formatRows\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"insertColumns\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"insertRows\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"insertHyperlinks\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"deleteColumns\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"deleteRows\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"selectLockedCells\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"sort\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"autoFilter\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"pivotTables\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"selectUnlockedCells\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ProtectedRanges\">\n    <xsd:sequence>\n      <xsd:element name=\"protectedRange\" type=\"CT_ProtectedRange\" minOccurs=\"1\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ProtectedRange\">\n    <xsd:sequence>\n      <xsd:element name=\"securityDescriptor\" type=\"xsd:string\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"password\" type=\"ST_UnsignedShortHex\" use=\"optional\"/>\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"securityDescriptor\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"algorithmName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"hashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"saltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"spinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Scenario\">\n    <xsd:sequence>\n      <xsd:element name=\"inputCells\" type=\"CT_InputCells\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"locked\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"user\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"comment\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_InputCells\">\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"required\"/>\n    <xsd:attribute name=\"deleted\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"undone\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellWatches\">\n    <xsd:sequence>\n      <xsd:element name=\"cellWatch\" type=\"CT_CellWatch\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellWatch\">\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Chartsheet\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetPr\" type=\"CT_ChartsheetPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetViews\" type=\"CT_ChartsheetViews\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetProtection\" type=\"CT_ChartsheetProtection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customSheetViews\" type=\"CT_CustomChartsheetViews\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"pageMargins\" minOccurs=\"0\" type=\"CT_PageMargins\"/>\n      <xsd:element name=\"pageSetup\" type=\"CT_CsPageSetup\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headerFooter\" minOccurs=\"0\" type=\"CT_HeaderFooter\"/>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawing\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawingHF\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"drawingHF\" type=\"CT_DrawingHF\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"picture\" type=\"CT_SheetBackgroundPicture\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"webPublishItems\" type=\"CT_WebPublishItems\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartsheetPr\">\n    <xsd:sequence>\n      <xsd:element name=\"tabColor\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"published\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"codeName\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartsheetViews\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetView\" type=\"CT_ChartsheetView\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartsheetView\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"tabSelected\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"zoomScale\" type=\"xsd:unsignedInt\" default=\"100\" use=\"optional\"/>\n    <xsd:attribute name=\"workbookViewId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"zoomToFit\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartsheetProtection\">\n    <xsd:attribute name=\"password\" type=\"ST_UnsignedShortHex\" use=\"optional\"/>\n    <xsd:attribute name=\"algorithmName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"hashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"saltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"spinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"content\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"objects\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CsPageSetup\">\n    <xsd:attribute name=\"paperSize\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"paperHeight\" type=\"s:ST_PositiveUniversalMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"paperWidth\" type=\"s:ST_PositiveUniversalMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"firstPageNumber\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"orientation\" type=\"ST_Orientation\" use=\"optional\" default=\"default\"/>\n    <xsd:attribute name=\"usePrinterDefaults\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"blackAndWhite\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"draft\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"useFirstPageNumber\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"horizontalDpi\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"verticalDpi\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"copies\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomChartsheetViews\">\n    <xsd:sequence>\n      <xsd:element name=\"customSheetView\" minOccurs=\"0\" maxOccurs=\"unbounded\"\n        type=\"CT_CustomChartsheetView\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomChartsheetView\">\n    <xsd:sequence>\n      <xsd:element name=\"pageMargins\" type=\"CT_PageMargins\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageSetup\" type=\"CT_CsPageSetup\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headerFooter\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"scale\" type=\"xsd:unsignedInt\" default=\"100\"/>\n    <xsd:attribute name=\"state\" type=\"ST_SheetState\" default=\"visible\"/>\n    <xsd:attribute name=\"zoomToFit\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"customPr\" type=\"CT_CustomProperty\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomProperty\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleObjects\">\n    <xsd:sequence>\n      <xsd:element name=\"oleObject\" type=\"CT_OleObject\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleObject\">\n    <xsd:sequence>\n      <xsd:element name=\"objectPr\" type=\"CT_ObjectPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"progId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"dvAspect\" type=\"ST_DvAspect\" use=\"optional\" default=\"DVASPECT_CONTENT\"/>\n    <xsd:attribute name=\"link\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"oleUpdate\" type=\"ST_OleUpdate\" use=\"optional\"/>\n    <xsd:attribute name=\"autoLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"shapeId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ObjectPr\">\n    <xsd:sequence>\n      <xsd:element name=\"anchor\" type=\"CT_ObjectAnchor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"locked\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"defaultSize\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"print\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"disabled\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"uiObject\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoFill\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"autoLine\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"autoPict\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"macro\" type=\"ST_Formula\" use=\"optional\"/>\n    <xsd:attribute name=\"altText\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"dde\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DvAspect\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"DVASPECT_CONTENT\"/>\n      <xsd:enumeration value=\"DVASPECT_ICON\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OleUpdate\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"OLEUPDATE_ALWAYS\"/>\n      <xsd:enumeration value=\"OLEUPDATE_ONCALL\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_WebPublishItems\">\n    <xsd:sequence>\n      <xsd:element name=\"webPublishItem\" type=\"CT_WebPublishItem\" minOccurs=\"1\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WebPublishItem\">\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"divId\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"sourceType\" type=\"ST_WebSourceType\" use=\"required\"/>\n    <xsd:attribute name=\"sourceRef\" type=\"ST_Ref\" use=\"optional\"/>\n    <xsd:attribute name=\"sourceObject\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"destinationFile\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"title\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"autoRepublish\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Controls\">\n    <xsd:sequence>\n      <xsd:element name=\"control\" type=\"CT_Control\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Control\">\n    <xsd:sequence>\n      <xsd:element name=\"controlPr\" type=\"CT_ControlPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"shapeId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ControlPr\">\n    <xsd:sequence>\n      <xsd:element name=\"anchor\" type=\"CT_ObjectAnchor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"locked\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"defaultSize\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"print\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"disabled\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"recalcAlways\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"uiObject\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoFill\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"autoLine\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"autoPict\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"macro\" type=\"ST_Formula\" use=\"optional\"/>\n    <xsd:attribute name=\"altText\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"linkedCell\" type=\"ST_Formula\" use=\"optional\"/>\n    <xsd:attribute name=\"listFillRange\" type=\"ST_Formula\" use=\"optional\"/>\n    <xsd:attribute name=\"cf\" type=\"s:ST_Xstring\" use=\"optional\" default=\"pict\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_WebSourceType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"sheet\"/>\n      <xsd:enumeration value=\"printArea\"/>\n      <xsd:enumeration value=\"autoFilter\"/>\n      <xsd:enumeration value=\"range\"/>\n      <xsd:enumeration value=\"chart\"/>\n      <xsd:enumeration value=\"pivotTable\"/>\n      <xsd:enumeration value=\"query\"/>\n      <xsd:enumeration value=\"label\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_IgnoredErrors\">\n    <xsd:sequence>\n      <xsd:element name=\"ignoredError\" type=\"CT_IgnoredError\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_IgnoredError\">\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\" use=\"required\"/>\n    <xsd:attribute name=\"evalError\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"twoDigitTextYear\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"numberStoredAsText\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"formula\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"formulaRange\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"unlockedFormula\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"emptyCellReference\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"listDataValidation\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"calculatedColumn\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PaneState\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"split\"/>\n      <xsd:enumeration value=\"frozen\"/>\n      <xsd:enumeration value=\"frozenSplit\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TableParts\">\n    <xsd:sequence>\n      <xsd:element name=\"tablePart\" type=\"CT_TablePart\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TablePart\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"metadata\" type=\"CT_Metadata\"/>\n  <xsd:complexType name=\"CT_Metadata\">\n    <xsd:sequence>\n      <xsd:element name=\"metadataTypes\" type=\"CT_MetadataTypes\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"metadataStrings\" type=\"CT_MetadataStrings\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"mdxMetadata\" type=\"CT_MdxMetadata\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"futureMetadata\" type=\"CT_FutureMetadata\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"cellMetadata\" type=\"CT_MetadataBlocks\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"valueMetadata\" type=\"CT_MetadataBlocks\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MetadataTypes\">\n    <xsd:sequence>\n      <xsd:element name=\"metadataType\" type=\"CT_MetadataType\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MetadataType\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"minSupportedVersion\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"ghostRow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"ghostCol\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"edit\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"delete\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"copy\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteAll\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteFormulas\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteValues\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteFormats\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteComments\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteDataValidation\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteBorders\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteColWidths\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteNumberFormats\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"merge\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"splitFirst\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"splitAll\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"rowColShift\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"clearAll\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"clearFormats\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"clearContents\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"clearComments\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"assign\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"coerce\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"adjust\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"cellMeta\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MetadataBlocks\">\n    <xsd:sequence>\n      <xsd:element name=\"bk\" type=\"CT_MetadataBlock\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MetadataBlock\">\n    <xsd:sequence>\n      <xsd:element name=\"rc\" type=\"CT_MetadataRecord\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MetadataRecord\">\n    <xsd:attribute name=\"t\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"v\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FutureMetadata\">\n    <xsd:sequence>\n      <xsd:element name=\"bk\" type=\"CT_FutureMetadataBlock\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FutureMetadataBlock\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MdxMetadata\">\n    <xsd:sequence>\n      <xsd:element name=\"mdx\" type=\"CT_Mdx\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Mdx\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"t\" type=\"CT_MdxTuple\"/>\n      <xsd:element name=\"ms\" type=\"CT_MdxSet\"/>\n      <xsd:element name=\"p\" type=\"CT_MdxMemeberProp\"/>\n      <xsd:element name=\"k\" type=\"CT_MdxKPI\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"n\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"f\" type=\"ST_MdxFunctionType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MdxFunctionType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"m\"/>\n      <xsd:enumeration value=\"v\"/>\n      <xsd:enumeration value=\"s\"/>\n      <xsd:enumeration value=\"c\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"p\"/>\n      <xsd:enumeration value=\"k\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MdxTuple\">\n    <xsd:sequence>\n      <xsd:element name=\"n\" type=\"CT_MetadataStringIndex\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"c\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ct\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"si\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"fi\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"bc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"fc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"st\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MdxSet\">\n    <xsd:sequence>\n      <xsd:element name=\"n\" type=\"CT_MetadataStringIndex\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ns\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"c\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"o\" type=\"ST_MdxSetOrder\" use=\"optional\" default=\"u\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MdxSetOrder\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"u\"/>\n      <xsd:enumeration value=\"a\"/>\n      <xsd:enumeration value=\"d\"/>\n      <xsd:enumeration value=\"aa\"/>\n      <xsd:enumeration value=\"ad\"/>\n      <xsd:enumeration value=\"na\"/>\n      <xsd:enumeration value=\"nd\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MdxMemeberProp\">\n    <xsd:attribute name=\"n\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"np\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MdxKPI\">\n    <xsd:attribute name=\"n\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"np\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"p\" type=\"ST_MdxKPIProperty\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MdxKPIProperty\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"v\"/>\n      <xsd:enumeration value=\"g\"/>\n      <xsd:enumeration value=\"s\"/>\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"w\"/>\n      <xsd:enumeration value=\"m\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MetadataStringIndex\">\n    <xsd:attribute name=\"x\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MetadataStrings\">\n    <xsd:sequence>\n      <xsd:element name=\"s\" type=\"CT_XStringElement\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:element name=\"singleXmlCells\" type=\"CT_SingleXmlCells\"/>\n  <xsd:complexType name=\"CT_SingleXmlCells\">\n    <xsd:sequence>\n      <xsd:element name=\"singleXmlCell\" type=\"CT_SingleXmlCell\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SingleXmlCell\">\n    <xsd:sequence>\n      <xsd:element name=\"xmlCellPr\" type=\"CT_XmlCellPr\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"required\"/>\n    <xsd:attribute name=\"connectionId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_XmlCellPr\">\n    <xsd:sequence>\n      <xsd:element name=\"xmlPr\" type=\"CT_XmlPr\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"uniqueName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_XmlPr\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"mapId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"xpath\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"xmlDataType\" type=\"ST_XmlDataType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"styleSheet\" type=\"CT_Stylesheet\"/>\n  <xsd:complexType name=\"CT_Stylesheet\">\n    <xsd:sequence>\n      <xsd:element name=\"numFmts\" type=\"CT_NumFmts\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fonts\" type=\"CT_Fonts\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fills\" type=\"CT_Fills\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"borders\" type=\"CT_Borders\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cellStyleXfs\" type=\"CT_CellStyleXfs\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cellXfs\" type=\"CT_CellXfs\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cellStyles\" type=\"CT_CellStyles\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dxfs\" type=\"CT_Dxfs\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tableStyles\" type=\"CT_TableStyles\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"colors\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellAlignment\">\n    <xsd:attribute name=\"horizontal\" type=\"ST_HorizontalAlignment\" use=\"optional\"/>\n    <xsd:attribute name=\"vertical\" type=\"ST_VerticalAlignment\" default=\"bottom\" use=\"optional\"/>\n    <xsd:attribute name=\"textRotation\" type=\"ST_TextRotation\" use=\"optional\"/>\n    <xsd:attribute name=\"wrapText\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"indent\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"relativeIndent\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"justifyLastLine\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"shrinkToFit\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"readingOrder\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextRotation\">\n    <xsd:union>\n      <xsd:simpleType>\n        <xsd:restriction base=\"xsd:nonNegativeInteger\">\n          <xsd:maxInclusive value=\"180\"/>\n        </xsd:restriction>\n      </xsd:simpleType>\n      <xsd:simpleType>\n        <xsd:restriction base=\"xsd:nonNegativeInteger\">\n          <xsd:enumeration value=\"255\"/>\n        </xsd:restriction>\n      </xsd:simpleType>\n    </xsd:union>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BorderStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"thin\"/>\n      <xsd:enumeration value=\"medium\"/>\n      <xsd:enumeration value=\"dashed\"/>\n      <xsd:enumeration value=\"dotted\"/>\n      <xsd:enumeration value=\"thick\"/>\n      <xsd:enumeration value=\"double\"/>\n      <xsd:enumeration value=\"hair\"/>\n      <xsd:enumeration value=\"mediumDashed\"/>\n      <xsd:enumeration value=\"dashDot\"/>\n      <xsd:enumeration value=\"mediumDashDot\"/>\n      <xsd:enumeration value=\"dashDotDot\"/>\n      <xsd:enumeration value=\"mediumDashDotDot\"/>\n      <xsd:enumeration value=\"slantDashDot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Borders\">\n    <xsd:sequence>\n      <xsd:element name=\"border\" type=\"CT_Border\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Border\">\n    <xsd:sequence>\n      <xsd:element name=\"start\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"end\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"left\" type=\"CT_BorderPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"right\" type=\"CT_BorderPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"top\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bottom\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"diagonal\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"vertical\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"horizontal\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"diagonalUp\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"diagonalDown\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"outline\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BorderPr\">\n    <xsd:sequence>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"style\" type=\"ST_BorderStyle\" use=\"optional\" default=\"none\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellProtection\">\n    <xsd:attribute name=\"locked\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Fonts\">\n    <xsd:sequence>\n      <xsd:element name=\"font\" type=\"CT_Font\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Fills\">\n    <xsd:sequence>\n      <xsd:element name=\"fill\" type=\"CT_Fill\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Fill\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"patternFill\" type=\"CT_PatternFill\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gradientFill\" type=\"CT_GradientFill\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PatternFill\">\n    <xsd:sequence>\n      <xsd:element name=\"fgColor\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bgColor\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"patternType\" type=\"ST_PatternType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Color\">\n    <xsd:attribute name=\"auto\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"indexed\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rgb\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"theme\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"tint\" type=\"xsd:double\" use=\"optional\" default=\"0.0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PatternType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"solid\"/>\n      <xsd:enumeration value=\"mediumGray\"/>\n      <xsd:enumeration value=\"darkGray\"/>\n      <xsd:enumeration value=\"lightGray\"/>\n      <xsd:enumeration value=\"darkHorizontal\"/>\n      <xsd:enumeration value=\"darkVertical\"/>\n      <xsd:enumeration value=\"darkDown\"/>\n      <xsd:enumeration value=\"darkUp\"/>\n      <xsd:enumeration value=\"darkGrid\"/>\n      <xsd:enumeration value=\"darkTrellis\"/>\n      <xsd:enumeration value=\"lightHorizontal\"/>\n      <xsd:enumeration value=\"lightVertical\"/>\n      <xsd:enumeration value=\"lightDown\"/>\n      <xsd:enumeration value=\"lightUp\"/>\n      <xsd:enumeration value=\"lightGrid\"/>\n      <xsd:enumeration value=\"lightTrellis\"/>\n      <xsd:enumeration value=\"gray125\"/>\n      <xsd:enumeration value=\"gray0625\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_GradientFill\">\n    <xsd:sequence>\n      <xsd:element name=\"stop\" type=\"CT_GradientStop\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_GradientType\" use=\"optional\" default=\"linear\"/>\n    <xsd:attribute name=\"degree\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"left\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"right\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"top\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"bottom\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GradientStop\">\n    <xsd:sequence>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"position\" type=\"xsd:double\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_GradientType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"linear\"/>\n      <xsd:enumeration value=\"path\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HorizontalAlignment\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"general\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"fill\"/>\n      <xsd:enumeration value=\"justify\"/>\n      <xsd:enumeration value=\"centerContinuous\"/>\n      <xsd:enumeration value=\"distributed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VerticalAlignment\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"justify\"/>\n      <xsd:enumeration value=\"distributed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_NumFmts\">\n    <xsd:sequence>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumFmt\">\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"required\"/>\n    <xsd:attribute name=\"formatCode\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellStyleXfs\">\n    <xsd:sequence>\n      <xsd:element name=\"xf\" type=\"CT_Xf\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellXfs\">\n    <xsd:sequence>\n      <xsd:element name=\"xf\" type=\"CT_Xf\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Xf\">\n    <xsd:sequence>\n      <xsd:element name=\"alignment\" type=\"CT_CellAlignment\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"protection\" type=\"CT_CellProtection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"optional\"/>\n    <xsd:attribute name=\"fontId\" type=\"ST_FontId\" use=\"optional\"/>\n    <xsd:attribute name=\"fillId\" type=\"ST_FillId\" use=\"optional\"/>\n    <xsd:attribute name=\"borderId\" type=\"ST_BorderId\" use=\"optional\"/>\n    <xsd:attribute name=\"xfId\" type=\"ST_CellStyleXfId\" use=\"optional\"/>\n    <xsd:attribute name=\"quotePrefix\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pivotButton\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"applyNumberFormat\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"applyFont\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"applyFill\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"applyBorder\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"applyAlignment\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"applyProtection\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellStyles\">\n    <xsd:sequence>\n      <xsd:element name=\"cellStyle\" type=\"CT_CellStyle\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"xfId\" type=\"ST_CellStyleXfId\" use=\"required\"/>\n    <xsd:attribute name=\"builtinId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"iLevel\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"customBuiltin\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Dxfs\">\n    <xsd:sequence>\n      <xsd:element name=\"dxf\" type=\"CT_Dxf\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Dxf\">\n    <xsd:sequence>\n      <xsd:element name=\"font\" type=\"CT_Font\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fill\" type=\"CT_Fill\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alignment\" type=\"CT_CellAlignment\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"border\" type=\"CT_Border\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"protection\" type=\"CT_CellProtection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_NumFmtId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FontId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FillId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BorderId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CellStyleXfId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DxfId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Colors\">\n    <xsd:sequence>\n      <xsd:element name=\"indexedColors\" type=\"CT_IndexedColors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"mruColors\" type=\"CT_MRUColors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_IndexedColors\">\n    <xsd:sequence>\n      <xsd:element name=\"rgbColor\" type=\"CT_RgbColor\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MRUColors\">\n    <xsd:sequence>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RgbColor\">\n    <xsd:attribute name=\"rgb\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableStyles\">\n    <xsd:sequence>\n      <xsd:element name=\"tableStyle\" type=\"CT_TableStyle\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"defaultTableStyle\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"defaultPivotStyle\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"tableStyleElement\" type=\"CT_TableStyleElement\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"pivot\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"table\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableStyleElement\">\n    <xsd:attribute name=\"type\" type=\"ST_TableStyleType\" use=\"required\"/>\n    <xsd:attribute name=\"size\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"dxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TableStyleType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"wholeTable\"/>\n      <xsd:enumeration value=\"headerRow\"/>\n      <xsd:enumeration value=\"totalRow\"/>\n      <xsd:enumeration value=\"firstColumn\"/>\n      <xsd:enumeration value=\"lastColumn\"/>\n      <xsd:enumeration value=\"firstRowStripe\"/>\n      <xsd:enumeration value=\"secondRowStripe\"/>\n      <xsd:enumeration value=\"firstColumnStripe\"/>\n      <xsd:enumeration value=\"secondColumnStripe\"/>\n      <xsd:enumeration value=\"firstHeaderCell\"/>\n      <xsd:enumeration value=\"lastHeaderCell\"/>\n      <xsd:enumeration value=\"firstTotalCell\"/>\n      <xsd:enumeration value=\"lastTotalCell\"/>\n      <xsd:enumeration value=\"firstSubtotalColumn\"/>\n      <xsd:enumeration value=\"secondSubtotalColumn\"/>\n      <xsd:enumeration value=\"thirdSubtotalColumn\"/>\n      <xsd:enumeration value=\"firstSubtotalRow\"/>\n      <xsd:enumeration value=\"secondSubtotalRow\"/>\n      <xsd:enumeration value=\"thirdSubtotalRow\"/>\n      <xsd:enumeration value=\"blankRow\"/>\n      <xsd:enumeration value=\"firstColumnSubheading\"/>\n      <xsd:enumeration value=\"secondColumnSubheading\"/>\n      <xsd:enumeration value=\"thirdColumnSubheading\"/>\n      <xsd:enumeration value=\"firstRowSubheading\"/>\n      <xsd:enumeration value=\"secondRowSubheading\"/>\n      <xsd:enumeration value=\"thirdRowSubheading\"/>\n      <xsd:enumeration value=\"pageFieldLabels\"/>\n      <xsd:enumeration value=\"pageFieldValues\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BooleanProperty\">\n    <xsd:attribute name=\"val\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontSize\">\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_IntProperty\">\n    <xsd:attribute name=\"val\" type=\"xsd:int\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontName\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VerticalAlignFontProperty\">\n    <xsd:attribute name=\"val\" type=\"s:ST_VerticalAlignRun\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontScheme\">\n    <xsd:attribute name=\"val\" type=\"ST_FontScheme\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FontScheme\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"major\"/>\n      <xsd:enumeration value=\"minor\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_UnderlineProperty\">\n    <xsd:attribute name=\"val\" type=\"ST_UnderlineValues\" use=\"optional\" default=\"single\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_UnderlineValues\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"single\"/>\n      <xsd:enumeration value=\"double\"/>\n      <xsd:enumeration value=\"singleAccounting\"/>\n      <xsd:enumeration value=\"doubleAccounting\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Font\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"name\" type=\"CT_FontName\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"charset\" type=\"CT_IntProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"family\" type=\"CT_FontFamily\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"b\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"i\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"strike\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"outline\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shadow\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"condense\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extend\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sz\" type=\"CT_FontSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"u\" type=\"CT_UnderlineProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"vertAlign\" type=\"CT_VerticalAlignFontProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scheme\" type=\"CT_FontScheme\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontFamily\">\n    <xsd:attribute name=\"val\" type=\"ST_FontFamily\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FontFamily\">\n    <xsd:restriction base=\"xsd:integer\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"14\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:attributeGroup name=\"AG_AutoFormat\">\n    <xsd:attribute name=\"autoFormatId\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"applyNumberFormats\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"applyBorderFormats\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"applyFontFormats\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"applyPatternFormats\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"applyAlignmentFormats\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"applyWidthHeightFormats\" type=\"xsd:boolean\"/>\n  </xsd:attributeGroup>\n  <xsd:element name=\"externalLink\" type=\"CT_ExternalLink\"/>\n  <xsd:complexType name=\"CT_ExternalLink\">\n    <xsd:sequence>\n      <xsd:choice>\n        <xsd:element name=\"externalBook\" type=\"CT_ExternalBook\" minOccurs=\"0\" maxOccurs=\"1\"/>\n        <xsd:element name=\"ddeLink\" type=\"CT_DdeLink\" minOccurs=\"0\" maxOccurs=\"1\"/>\n        <xsd:element name=\"oleLink\" type=\"CT_OleLink\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalBook\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetNames\" type=\"CT_ExternalSheetNames\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"definedNames\" type=\"CT_ExternalDefinedNames\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetDataSet\" type=\"CT_ExternalSheetDataSet\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalSheetNames\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetName\" minOccurs=\"1\" maxOccurs=\"unbounded\" type=\"CT_ExternalSheetName\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalSheetName\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalDefinedNames\">\n    <xsd:sequence>\n      <xsd:element name=\"definedName\" type=\"CT_ExternalDefinedName\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalDefinedName\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"refersTo\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalSheetDataSet\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetData\" type=\"CT_ExternalSheetData\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalSheetData\">\n    <xsd:sequence>\n      <xsd:element name=\"row\" type=\"CT_ExternalRow\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"refreshError\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalRow\">\n    <xsd:sequence>\n      <xsd:element name=\"cell\" type=\"CT_ExternalCell\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"r\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalCell\">\n    <xsd:sequence>\n      <xsd:element name=\"v\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"t\" type=\"ST_CellType\" use=\"optional\" default=\"n\"/>\n    <xsd:attribute name=\"vm\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DdeLink\">\n    <xsd:sequence>\n      <xsd:element name=\"ddeItems\" type=\"CT_DdeItems\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ddeService\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"ddeTopic\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DdeItems\">\n    <xsd:sequence>\n      <xsd:element name=\"ddeItem\" type=\"CT_DdeItem\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DdeItem\">\n    <xsd:sequence>\n      <xsd:element name=\"values\" type=\"CT_DdeValues\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" default=\"0\"/>\n    <xsd:attribute name=\"ole\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"advise\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"preferPic\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DdeValues\">\n    <xsd:sequence>\n      <xsd:element name=\"value\" minOccurs=\"1\" maxOccurs=\"unbounded\" type=\"CT_DdeValue\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rows\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"cols\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DdeValue\">\n    <xsd:sequence>\n      <xsd:element name=\"val\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"t\" type=\"ST_DdeValueType\" use=\"optional\" default=\"n\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DdeValueType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"nil\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"n\"/>\n      <xsd:enumeration value=\"e\"/>\n      <xsd:enumeration value=\"str\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_OleLink\">\n    <xsd:sequence>\n      <xsd:element name=\"oleItems\" type=\"CT_OleItems\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n    <xsd:attribute name=\"progId\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleItems\">\n    <xsd:sequence>\n      <xsd:element name=\"oleItem\" type=\"CT_OleItem\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleItem\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"icon\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"advise\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"preferPic\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:element name=\"table\" type=\"CT_Table\"/>\n  <xsd:complexType name=\"CT_Table\">\n    <xsd:sequence>\n      <xsd:element name=\"autoFilter\" type=\"CT_AutoFilter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sortState\" type=\"CT_SortState\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tableColumns\" type=\"CT_TableColumns\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tableStyleInfo\" type=\"CT_TableStyleInfo\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"displayName\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"comment\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"tableType\" type=\"ST_TableType\" use=\"optional\" default=\"worksheet\"/>\n    <xsd:attribute name=\"headerRowCount\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"insertRow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"insertRowShift\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"totalsRowCount\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"totalsRowShown\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"published\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"headerRowDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"dataDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"totalsRowDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"headerRowBorderDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"tableBorderDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"totalsRowBorderDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"headerRowCellStyle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"dataCellStyle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"totalsRowCellStyle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"connectionId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TableType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"worksheet\"/>\n      <xsd:enumeration value=\"xml\"/>\n      <xsd:enumeration value=\"queryTable\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TableStyleInfo\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"showFirstColumn\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"showLastColumn\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"showRowStripes\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"showColumnStripes\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableColumns\">\n    <xsd:sequence>\n      <xsd:element name=\"tableColumn\" type=\"CT_TableColumn\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableColumn\">\n    <xsd:sequence>\n      <xsd:element name=\"calculatedColumnFormula\" type=\"CT_TableFormula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"totalsRowFormula\" type=\"CT_TableFormula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"xmlColumnPr\" type=\"CT_XmlColumnPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"uniqueName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"totalsRowFunction\" type=\"ST_TotalsRowFunction\" use=\"optional\"\n      default=\"none\"/>\n    <xsd:attribute name=\"totalsRowLabel\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"queryTableFieldId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"headerRowDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"dataDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"totalsRowDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"headerRowCellStyle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"dataCellStyle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"totalsRowCellStyle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableFormula\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"ST_Formula\">\n        <xsd:attribute name=\"array\" type=\"xsd:boolean\" default=\"false\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TotalsRowFunction\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"sum\"/>\n      <xsd:enumeration value=\"min\"/>\n      <xsd:enumeration value=\"max\"/>\n      <xsd:enumeration value=\"average\"/>\n      <xsd:enumeration value=\"count\"/>\n      <xsd:enumeration value=\"countNums\"/>\n      <xsd:enumeration value=\"stdDev\"/>\n      <xsd:enumeration value=\"var\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_XmlColumnPr\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"mapId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"xpath\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"denormalized\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"xmlDataType\" type=\"ST_XmlDataType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_XmlDataType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:element name=\"volTypes\" type=\"CT_VolTypes\"/>\n  <xsd:complexType name=\"CT_VolTypes\">\n    <xsd:sequence>\n      <xsd:element name=\"volType\" type=\"CT_VolType\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VolType\">\n    <xsd:sequence>\n      <xsd:element name=\"main\" type=\"CT_VolMain\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_VolDepType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VolMain\">\n    <xsd:sequence>\n      <xsd:element name=\"tp\" type=\"CT_VolTopic\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"first\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VolTopic\">\n    <xsd:sequence>\n      <xsd:element name=\"v\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"stp\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"tr\" type=\"CT_VolTopicRef\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"t\" type=\"ST_VolValueType\" use=\"optional\" default=\"n\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VolTopicRef\">\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"required\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_VolDepType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"realTimeData\"/>\n      <xsd:enumeration value=\"olapFunctions\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VolValueType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"n\"/>\n      <xsd:enumeration value=\"e\"/>\n      <xsd:enumeration value=\"s\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"workbook\" type=\"CT_Workbook\"/>\n  <xsd:complexType name=\"CT_Workbook\">\n    <xsd:sequence>\n      <xsd:element name=\"fileVersion\" type=\"CT_FileVersion\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fileSharing\" type=\"CT_FileSharing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"workbookPr\" type=\"CT_WorkbookPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"workbookProtection\" type=\"CT_WorkbookProtection\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"bookViews\" type=\"CT_BookViews\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheets\" type=\"CT_Sheets\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"functionGroups\" type=\"CT_FunctionGroups\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"externalReferences\" type=\"CT_ExternalReferences\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"definedNames\" type=\"CT_DefinedNames\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"calcPr\" type=\"CT_CalcPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oleSize\" type=\"CT_OleSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customWorkbookViews\" type=\"CT_CustomWorkbookViews\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"pivotCaches\" type=\"CT_PivotCaches\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smartTagPr\" type=\"CT_SmartTagPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smartTagTypes\" type=\"CT_SmartTagTypes\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"webPublishing\" type=\"CT_WebPublishing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fileRecoveryPr\" type=\"CT_FileRecoveryPr\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"webPublishObjects\" type=\"CT_WebPublishObjects\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"conformance\" type=\"s:ST_ConformanceClass\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FileVersion\">\n    <xsd:attribute name=\"appName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lastEdited\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lowestEdited\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"rupBuild\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"codeName\" type=\"s:ST_Guid\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BookViews\">\n    <xsd:sequence>\n      <xsd:element name=\"workbookView\" type=\"CT_BookView\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BookView\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"visibility\" type=\"ST_Visibility\" use=\"optional\" default=\"visible\"/>\n    <xsd:attribute name=\"minimized\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showHorizontalScroll\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showVerticalScroll\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showSheetTabs\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"xWindow\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"yWindow\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"windowWidth\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"windowHeight\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"tabRatio\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"firstSheet\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"activeTab\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"autoFilterDateGrouping\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Visibility\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"visible\"/>\n      <xsd:enumeration value=\"hidden\"/>\n      <xsd:enumeration value=\"veryHidden\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_CustomWorkbookViews\">\n    <xsd:sequence>\n      <xsd:element name=\"customWorkbookView\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n        type=\"CT_CustomWorkbookView\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomWorkbookView\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"autoUpdate\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"mergeInterval\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"changesSavedWin\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"onlySync\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"personalView\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"includePrintSettings\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"includeHiddenRowCol\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"maximized\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"minimized\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showHorizontalScroll\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showVerticalScroll\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showSheetTabs\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"xWindow\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"yWindow\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"windowWidth\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"windowHeight\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"tabRatio\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"activeSheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"showFormulaBar\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showStatusbar\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showComments\" type=\"ST_Comments\" use=\"optional\" default=\"commIndicator\"/>\n    <xsd:attribute name=\"showObjects\" type=\"ST_Objects\" use=\"optional\" default=\"all\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Comments\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"commNone\"/>\n      <xsd:enumeration value=\"commIndicator\"/>\n      <xsd:enumeration value=\"commIndAndComment\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Objects\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"all\"/>\n      <xsd:enumeration value=\"placeholders\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Sheets\">\n    <xsd:sequence>\n      <xsd:element name=\"sheet\" type=\"CT_Sheet\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Sheet\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"state\" type=\"ST_SheetState\" use=\"optional\" default=\"visible\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SheetState\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"visible\"/>\n      <xsd:enumeration value=\"hidden\"/>\n      <xsd:enumeration value=\"veryHidden\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_WorkbookPr\">\n    <xsd:attribute name=\"date1904\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showObjects\" type=\"ST_Objects\" use=\"optional\" default=\"all\"/>\n    <xsd:attribute name=\"showBorderUnselectedTables\" type=\"xsd:boolean\" use=\"optional\"\n      default=\"true\"/>\n    <xsd:attribute name=\"filterPrivacy\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"promptedSolutions\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showInkAnnotation\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"backupFile\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"saveExternalLinkValues\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"updateLinks\" type=\"ST_UpdateLinks\" use=\"optional\" default=\"userSet\"/>\n    <xsd:attribute name=\"codeName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"hidePivotFieldList\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showPivotChartFilter\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"allowRefreshQuery\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"publishItems\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"checkCompatibility\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoCompressPictures\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"refreshAllConnections\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"defaultThemeVersion\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_UpdateLinks\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"userSet\"/>\n      <xsd:enumeration value=\"never\"/>\n      <xsd:enumeration value=\"always\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SmartTagPr\">\n    <xsd:attribute name=\"embed\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"show\" type=\"ST_SmartTagShow\" use=\"optional\" default=\"all\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SmartTagShow\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"all\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"noIndicator\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SmartTagTypes\">\n    <xsd:sequence>\n      <xsd:element name=\"smartTagType\" type=\"CT_SmartTagType\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SmartTagType\">\n    <xsd:attribute name=\"namespaceUri\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"url\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FileRecoveryPr\">\n    <xsd:attribute name=\"autoRecover\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"crashSave\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"dataExtractLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"repairLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalcPr\">\n    <xsd:attribute name=\"calcId\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"calcMode\" type=\"ST_CalcMode\" use=\"optional\" default=\"auto\"/>\n    <xsd:attribute name=\"fullCalcOnLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"refMode\" type=\"ST_RefMode\" use=\"optional\" default=\"A1\"/>\n    <xsd:attribute name=\"iterate\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"iterateCount\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"100\"/>\n    <xsd:attribute name=\"iterateDelta\" type=\"xsd:double\" use=\"optional\" default=\"0.001\"/>\n    <xsd:attribute name=\"fullPrecision\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"calcCompleted\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"calcOnSave\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"concurrentCalc\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"concurrentManualCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"forceFullCalc\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CalcMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"manual\"/>\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"autoNoTable\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RefMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"A1\"/>\n      <xsd:enumeration value=\"R1C1\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DefinedNames\">\n    <xsd:sequence>\n      <xsd:element name=\"definedName\" type=\"CT_DefinedName\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DefinedName\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"ST_Formula\">\n        <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n        <xsd:attribute name=\"comment\" type=\"s:ST_Xstring\" use=\"optional\"/>\n        <xsd:attribute name=\"customMenu\" type=\"s:ST_Xstring\" use=\"optional\"/>\n        <xsd:attribute name=\"description\" type=\"s:ST_Xstring\" use=\"optional\"/>\n        <xsd:attribute name=\"help\" type=\"s:ST_Xstring\" use=\"optional\"/>\n        <xsd:attribute name=\"statusBar\" type=\"s:ST_Xstring\" use=\"optional\"/>\n        <xsd:attribute name=\"localSheetId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n        <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"function\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"vbProcedure\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"xlm\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"functionGroupId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n        <xsd:attribute name=\"shortcutKey\" type=\"s:ST_Xstring\" use=\"optional\"/>\n        <xsd:attribute name=\"publishToServer\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"workbookParameter\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalReferences\">\n    <xsd:sequence>\n      <xsd:element name=\"externalReference\" type=\"CT_ExternalReference\" minOccurs=\"1\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalReference\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetBackgroundPicture\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotCaches\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotCache\" type=\"CT_PivotCache\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotCache\">\n    <xsd:attribute name=\"cacheId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FileSharing\">\n    <xsd:attribute name=\"readOnlyRecommended\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"userName\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"reservationPassword\" type=\"ST_UnsignedShortHex\"/>\n    <xsd:attribute name=\"algorithmName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"hashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"saltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"spinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleSize\">\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WorkbookProtection\">\n    <xsd:attribute name=\"workbookPassword\" type=\"ST_UnsignedShortHex\" use=\"optional\"/>\n    <xsd:attribute name=\"workbookPasswordCharacterSet\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"revisionsPassword\" type=\"ST_UnsignedShortHex\" use=\"optional\"/>\n    <xsd:attribute name=\"revisionsPasswordCharacterSet\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lockStructure\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"lockWindows\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"lockRevision\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"revisionsAlgorithmName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"revisionsHashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"revisionsSaltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"revisionsSpinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"workbookAlgorithmName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"workbookHashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"workbookSaltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"workbookSpinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WebPublishing\">\n    <xsd:attribute name=\"css\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"thicket\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"longFileNames\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"vml\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"allowPng\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"targetScreenSize\" type=\"ST_TargetScreenSize\" use=\"optional\"\n      default=\"800x600\"/>\n    <xsd:attribute name=\"dpi\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"96\"/>\n    <xsd:attribute name=\"codePage\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"characterSet\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TargetScreenSize\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"544x376\"/>\n      <xsd:enumeration value=\"640x480\"/>\n      <xsd:enumeration value=\"720x512\"/>\n      <xsd:enumeration value=\"800x600\"/>\n      <xsd:enumeration value=\"1024x768\"/>\n      <xsd:enumeration value=\"1152x882\"/>\n      <xsd:enumeration value=\"1152x900\"/>\n      <xsd:enumeration value=\"1280x1024\"/>\n      <xsd:enumeration value=\"1600x1200\"/>\n      <xsd:enumeration value=\"1800x1440\"/>\n      <xsd:enumeration value=\"1920x1200\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FunctionGroups\">\n    <xsd:sequence maxOccurs=\"unbounded\">\n      <xsd:element name=\"functionGroup\" type=\"CT_FunctionGroup\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"builtInGroupCount\" type=\"xsd:unsignedInt\" default=\"16\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FunctionGroup\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WebPublishObjects\">\n    <xsd:sequence>\n      <xsd:element name=\"webPublishObject\" type=\"CT_WebPublishObject\" minOccurs=\"1\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WebPublishObject\">\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"divId\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"sourceObject\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"destinationFile\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"title\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"autoRepublish\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns=\"urn:schemas-microsoft-com:vml\"\n  xmlns:pvml=\"urn:schemas-microsoft-com:office:powerpoint\"\n  xmlns:o=\"urn:schemas-microsoft-com:office:office\"\n  xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n  xmlns:w10=\"urn:schemas-microsoft-com:office:word\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:x=\"urn:schemas-microsoft-com:office:excel\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"urn:schemas-microsoft-com:vml\" elementFormDefault=\"qualified\"\n  attributeFormDefault=\"unqualified\">\n  <xsd:import namespace=\"urn:schemas-microsoft-com:office:office\"\n    schemaLocation=\"vml-officeDrawing.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n    schemaLocation=\"wml.xsd\"/>\n  <xsd:import namespace=\"urn:schemas-microsoft-com:office:word\"\n    schemaLocation=\"vml-wordprocessingDrawing.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"urn:schemas-microsoft-com:office:excel\"\n    schemaLocation=\"vml-spreadsheetDrawing.xsd\"/>\n  <xsd:import namespace=\"urn:schemas-microsoft-com:office:powerpoint\"\n    schemaLocation=\"vml-presentationDrawing.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:attributeGroup name=\"AG_Id\">\n    <xsd:attribute name=\"id\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Style\">\n    <xsd:attribute name=\"style\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Type\">\n    <xsd:attribute name=\"type\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Adj\">\n    <xsd:attribute name=\"adj\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Path\">\n    <xsd:attribute name=\"path\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Fill\">\n    <xsd:attribute name=\"filled\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"fillcolor\" type=\"s:ST_ColorType\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Chromakey\">\n    <xsd:attribute name=\"chromakey\" type=\"s:ST_ColorType\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Ext\">\n    <xsd:attribute name=\"ext\" form=\"qualified\" type=\"ST_Ext\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_CoreAttributes\">\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attributeGroup ref=\"AG_Style\"/>\n    <xsd:attribute name=\"href\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"target\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"class\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"title\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"alt\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"coordsize\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"coordorigin\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"wrapcoords\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"print\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_ShapeAttributes\">\n    <xsd:attributeGroup ref=\"AG_Chromakey\"/>\n    <xsd:attributeGroup ref=\"AG_Fill\"/>\n    <xsd:attribute name=\"opacity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"stroked\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"strokecolor\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"strokeweight\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"insetpen\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_OfficeCoreAttributes\">\n    <xsd:attribute ref=\"o:spid\"/>\n    <xsd:attribute ref=\"o:oned\"/>\n    <xsd:attribute ref=\"o:regroupid\"/>\n    <xsd:attribute ref=\"o:doubleclicknotify\"/>\n    <xsd:attribute ref=\"o:button\"/>\n    <xsd:attribute ref=\"o:userhidden\"/>\n    <xsd:attribute ref=\"o:bullet\"/>\n    <xsd:attribute ref=\"o:hr\"/>\n    <xsd:attribute ref=\"o:hrstd\"/>\n    <xsd:attribute ref=\"o:hrnoshade\"/>\n    <xsd:attribute ref=\"o:hrpct\"/>\n    <xsd:attribute ref=\"o:hralign\"/>\n    <xsd:attribute ref=\"o:allowincell\"/>\n    <xsd:attribute ref=\"o:allowoverlap\"/>\n    <xsd:attribute ref=\"o:userdrawn\"/>\n    <xsd:attribute ref=\"o:bordertopcolor\"/>\n    <xsd:attribute ref=\"o:borderleftcolor\"/>\n    <xsd:attribute ref=\"o:borderbottomcolor\"/>\n    <xsd:attribute ref=\"o:borderrightcolor\"/>\n    <xsd:attribute ref=\"o:dgmlayout\"/>\n    <xsd:attribute ref=\"o:dgmnodekind\"/>\n    <xsd:attribute ref=\"o:dgmlayoutmru\"/>\n    <xsd:attribute ref=\"o:insetmode\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_OfficeShapeAttributes\">\n    <xsd:attribute ref=\"o:spt\"/>\n    <xsd:attribute ref=\"o:connectortype\"/>\n    <xsd:attribute ref=\"o:bwmode\"/>\n    <xsd:attribute ref=\"o:bwpure\"/>\n    <xsd:attribute ref=\"o:bwnormal\"/>\n    <xsd:attribute ref=\"o:forcedash\"/>\n    <xsd:attribute ref=\"o:oleicon\"/>\n    <xsd:attribute ref=\"o:ole\"/>\n    <xsd:attribute ref=\"o:preferrelative\"/>\n    <xsd:attribute ref=\"o:cliptowrap\"/>\n    <xsd:attribute ref=\"o:clip\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_AllCoreAttributes\">\n    <xsd:attributeGroup ref=\"AG_CoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_OfficeCoreAttributes\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_AllShapeAttributes\">\n    <xsd:attributeGroup ref=\"AG_ShapeAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_OfficeShapeAttributes\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_ImageAttributes\">\n    <xsd:attribute name=\"src\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"cropleft\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"croptop\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"cropright\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"cropbottom\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"gain\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"blacklevel\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"gamma\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"grayscale\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"bilevel\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_StrokeAttributes\">\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"weight\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"color\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"opacity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"linestyle\" type=\"ST_StrokeLineStyle\" use=\"optional\"/>\n    <xsd:attribute name=\"miterlimit\" type=\"xsd:decimal\" use=\"optional\"/>\n    <xsd:attribute name=\"joinstyle\" type=\"ST_StrokeJoinStyle\" use=\"optional\"/>\n    <xsd:attribute name=\"endcap\" type=\"ST_StrokeEndCap\" use=\"optional\"/>\n    <xsd:attribute name=\"dashstyle\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"filltype\" type=\"ST_FillType\" use=\"optional\"/>\n    <xsd:attribute name=\"src\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"imageaspect\" type=\"ST_ImageAspect\" use=\"optional\"/>\n    <xsd:attribute name=\"imagesize\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"imagealignshape\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"color2\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"startarrow\" type=\"ST_StrokeArrowType\" use=\"optional\"/>\n    <xsd:attribute name=\"startarrowwidth\" type=\"ST_StrokeArrowWidth\" use=\"optional\"/>\n    <xsd:attribute name=\"startarrowlength\" type=\"ST_StrokeArrowLength\" use=\"optional\"/>\n    <xsd:attribute name=\"endarrow\" type=\"ST_StrokeArrowType\" use=\"optional\"/>\n    <xsd:attribute name=\"endarrowwidth\" type=\"ST_StrokeArrowWidth\" use=\"optional\"/>\n    <xsd:attribute name=\"endarrowlength\" type=\"ST_StrokeArrowLength\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:href\"/>\n    <xsd:attribute ref=\"o:althref\"/>\n    <xsd:attribute ref=\"o:title\"/>\n    <xsd:attribute ref=\"o:forcedash\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"insetpen\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:relid\"/>\n  </xsd:attributeGroup>\n  <xsd:group name=\"EG_ShapeElements\">\n    <xsd:choice>\n      <xsd:element ref=\"path\"/>\n      <xsd:element ref=\"formulas\"/>\n      <xsd:element ref=\"handles\"/>\n      <xsd:element ref=\"fill\"/>\n      <xsd:element ref=\"stroke\"/>\n      <xsd:element ref=\"shadow\"/>\n      <xsd:element ref=\"textbox\"/>\n      <xsd:element ref=\"textpath\"/>\n      <xsd:element ref=\"imagedata\"/>\n      <xsd:element ref=\"o:skew\"/>\n      <xsd:element ref=\"o:extrusion\"/>\n      <xsd:element ref=\"o:callout\"/>\n      <xsd:element ref=\"o:lock\"/>\n      <xsd:element ref=\"o:clippath\"/>\n      <xsd:element ref=\"o:signatureline\"/>\n      <xsd:element ref=\"w10:wrap\"/>\n      <xsd:element ref=\"w10:anchorlock\"/>\n      <xsd:element ref=\"w10:bordertop\"/>\n      <xsd:element ref=\"w10:borderbottom\"/>\n      <xsd:element ref=\"w10:borderleft\"/>\n      <xsd:element ref=\"w10:borderright\"/>\n      <xsd:element ref=\"x:ClientData\" minOccurs=\"0\"/>\n      <xsd:element ref=\"pvml:textdata\" minOccurs=\"0\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:element name=\"shape\" type=\"CT_Shape\"/>\n  <xsd:element name=\"shapetype\" type=\"CT_Shapetype\"/>\n  <xsd:element name=\"group\" type=\"CT_Group\"/>\n  <xsd:element name=\"background\" type=\"CT_Background\"/>\n  <xsd:complexType name=\"CT_Shape\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:group ref=\"EG_ShapeElements\"/>\n      <xsd:element ref=\"o:ink\"/>\n      <xsd:element ref=\"pvml:iscomment\"/>\n      <xsd:element ref=\"o:equationxml\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_Type\"/>\n    <xsd:attributeGroup ref=\"AG_Adj\"/>\n    <xsd:attributeGroup ref=\"AG_Path\"/>\n    <xsd:attribute ref=\"o:gfxdata\"/>\n    <xsd:attribute name=\"equationxml\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Shapetype\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element ref=\"o:complex\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_Adj\"/>\n    <xsd:attributeGroup ref=\"AG_Path\"/>\n    <xsd:attribute ref=\"o:master\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Group\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:group ref=\"EG_ShapeElements\"/>\n      <xsd:element ref=\"group\"/>\n      <xsd:element ref=\"shape\"/>\n      <xsd:element ref=\"shapetype\"/>\n      <xsd:element ref=\"arc\"/>\n      <xsd:element ref=\"curve\"/>\n      <xsd:element ref=\"image\"/>\n      <xsd:element ref=\"line\"/>\n      <xsd:element ref=\"oval\"/>\n      <xsd:element ref=\"polyline\"/>\n      <xsd:element ref=\"rect\"/>\n      <xsd:element ref=\"roundrect\"/>\n      <xsd:element ref=\"o:diagram\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_Fill\"/>\n    <xsd:attribute name=\"editas\" type=\"ST_EditAs\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:tableproperties\"/>\n    <xsd:attribute ref=\"o:tablelimits\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Background\">\n    <xsd:sequence>\n      <xsd:element ref=\"fill\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attributeGroup ref=\"AG_Fill\"/>\n    <xsd:attribute ref=\"o:bwmode\"/>\n    <xsd:attribute ref=\"o:bwpure\"/>\n    <xsd:attribute ref=\"o:bwnormal\"/>\n    <xsd:attribute ref=\"o:targetscreensize\"/>\n  </xsd:complexType>\n  <xsd:element name=\"fill\" type=\"CT_Fill\"/>\n  <xsd:element name=\"formulas\" type=\"CT_Formulas\"/>\n  <xsd:element name=\"handles\" type=\"CT_Handles\"/>\n  <xsd:element name=\"imagedata\" type=\"CT_ImageData\"/>\n  <xsd:element name=\"path\" type=\"CT_Path\"/>\n  <xsd:element name=\"textbox\" type=\"CT_Textbox\"/>\n  <xsd:element name=\"shadow\" type=\"CT_Shadow\"/>\n  <xsd:element name=\"stroke\" type=\"CT_Stroke\"/>\n  <xsd:element name=\"textpath\" type=\"CT_TextPath\"/>\n  <xsd:complexType name=\"CT_Fill\">\n    <xsd:sequence>\n      <xsd:element ref=\"o:fill\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attribute name=\"type\" type=\"ST_FillType\" use=\"optional\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"color\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"opacity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"color2\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"src\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:href\"/>\n    <xsd:attribute ref=\"o:althref\"/>\n    <xsd:attribute name=\"size\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"origin\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"position\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"aspect\" type=\"ST_ImageAspect\" use=\"optional\"/>\n    <xsd:attribute name=\"colors\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"angle\" type=\"xsd:decimal\" use=\"optional\"/>\n    <xsd:attribute name=\"alignshape\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"focus\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"focussize\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"focusposition\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"method\" type=\"ST_FillMethod\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:detectmouseclick\"/>\n    <xsd:attribute ref=\"o:title\"/>\n    <xsd:attribute ref=\"o:opacity2\"/>\n    <xsd:attribute name=\"recolor\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"rotate\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:relid\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Formulas\">\n    <xsd:sequence>\n      <xsd:element name=\"f\" type=\"CT_F\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_F\">\n    <xsd:attribute name=\"eqn\" type=\"xsd:string\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Handles\">\n    <xsd:sequence>\n      <xsd:element name=\"h\" type=\"CT_H\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_H\">\n    <xsd:attribute name=\"position\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"polar\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"map\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"invx\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"invy\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"switch\" type=\"s:ST_TrueFalseBlank\"/>\n    <xsd:attribute name=\"xrange\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"yrange\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"radiusrange\" type=\"xsd:string\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ImageData\">\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attributeGroup ref=\"AG_ImageAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_Chromakey\"/>\n    <xsd:attribute name=\"embosscolor\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"recolortarget\" type=\"s:ST_ColorType\"/>\n    <xsd:attribute ref=\"o:href\"/>\n    <xsd:attribute ref=\"o:althref\"/>\n    <xsd:attribute ref=\"o:title\"/>\n    <xsd:attribute ref=\"o:oleid\"/>\n    <xsd:attribute ref=\"o:detectmouseclick\"/>\n    <xsd:attribute ref=\"o:movie\"/>\n    <xsd:attribute ref=\"o:relid\"/>\n    <xsd:attribute ref=\"r:id\"/>\n    <xsd:attribute ref=\"r:pict\"/>\n    <xsd:attribute ref=\"r:href\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path\">\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attribute name=\"v\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"limo\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"textboxrect\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fillok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"strokeok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"shadowok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"arrowok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"gradientshapeok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"textpathok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"insetpenok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:connecttype\"/>\n    <xsd:attribute ref=\"o:connectlocs\"/>\n    <xsd:attribute ref=\"o:connectangles\"/>\n    <xsd:attribute ref=\"o:extrusionok\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Shadow\">\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"type\" type=\"ST_ShadowType\" use=\"optional\"/>\n    <xsd:attribute name=\"obscured\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"color\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"opacity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"offset\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"color2\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"offset2\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"origin\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"matrix\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Stroke\">\n    <xsd:sequence>\n      <xsd:element ref=\"o:left\" minOccurs=\"0\"/>\n      <xsd:element ref=\"o:top\" minOccurs=\"0\"/>\n      <xsd:element ref=\"o:right\" minOccurs=\"0\"/>\n      <xsd:element ref=\"o:bottom\" minOccurs=\"0\"/>\n      <xsd:element ref=\"o:column\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attributeGroup ref=\"AG_StrokeAttributes\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Textbox\">\n    <xsd:choice>\n      <xsd:element ref=\"w:txbxContent\" minOccurs=\"0\"/>\n      <xsd:any namespace=\"##local\" processContents=\"skip\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attributeGroup ref=\"AG_Style\"/>\n    <xsd:attribute name=\"inset\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:singleclick\"/>\n    <xsd:attribute ref=\"o:insetmode\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextPath\">\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attributeGroup ref=\"AG_Style\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"fitshape\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"fitpath\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"trim\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"xscale\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"string\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:element name=\"arc\" type=\"CT_Arc\"/>\n  <xsd:element name=\"curve\" type=\"CT_Curve\"/>\n  <xsd:element name=\"image\" type=\"CT_Image\"/>\n  <xsd:element name=\"line\" type=\"CT_Line\"/>\n  <xsd:element name=\"oval\" type=\"CT_Oval\"/>\n  <xsd:element name=\"polyline\" type=\"CT_PolyLine\"/>\n  <xsd:element name=\"rect\" type=\"CT_Rect\"/>\n  <xsd:element name=\"roundrect\" type=\"CT_RoundRect\"/>\n  <xsd:complexType name=\"CT_Arc\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attribute name=\"startAngle\" type=\"xsd:decimal\" use=\"optional\"/>\n    <xsd:attribute name=\"endAngle\" type=\"xsd:decimal\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Curve\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attribute name=\"from\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"control1\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"control2\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"to\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Image\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_ImageAttributes\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Line\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attribute name=\"from\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"to\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Oval\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PolyLine\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:group ref=\"EG_ShapeElements\"/>\n      <xsd:element ref=\"o:ink\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attribute name=\"points\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rect\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RoundRect\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attribute name=\"arcsize\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Ext\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"view\"/>\n      <xsd:enumeration value=\"edit\"/>\n      <xsd:enumeration value=\"backwardCompatible\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FillType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"solid\"/>\n      <xsd:enumeration value=\"gradient\"/>\n      <xsd:enumeration value=\"gradientRadial\"/>\n      <xsd:enumeration value=\"tile\"/>\n      <xsd:enumeration value=\"pattern\"/>\n      <xsd:enumeration value=\"frame\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FillMethod\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"linear\"/>\n      <xsd:enumeration value=\"sigma\"/>\n      <xsd:enumeration value=\"any\"/>\n      <xsd:enumeration value=\"linear sigma\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ShadowType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"single\"/>\n      <xsd:enumeration value=\"double\"/>\n      <xsd:enumeration value=\"emboss\"/>\n      <xsd:enumeration value=\"perspective\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StrokeLineStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"single\"/>\n      <xsd:enumeration value=\"thinThin\"/>\n      <xsd:enumeration value=\"thinThick\"/>\n      <xsd:enumeration value=\"thickThin\"/>\n      <xsd:enumeration value=\"thickBetweenThin\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StrokeJoinStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"round\"/>\n      <xsd:enumeration value=\"bevel\"/>\n      <xsd:enumeration value=\"miter\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StrokeEndCap\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"flat\"/>\n      <xsd:enumeration value=\"square\"/>\n      <xsd:enumeration value=\"round\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StrokeArrowLength\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"short\"/>\n      <xsd:enumeration value=\"medium\"/>\n      <xsd:enumeration value=\"long\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StrokeArrowWidth\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"narrow\"/>\n      <xsd:enumeration value=\"medium\"/>\n      <xsd:enumeration value=\"wide\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StrokeArrowType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"block\"/>\n      <xsd:enumeration value=\"classic\"/>\n      <xsd:enumeration value=\"oval\"/>\n      <xsd:enumeration value=\"diamond\"/>\n      <xsd:enumeration value=\"open\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ImageAspect\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"ignore\"/>\n      <xsd:enumeration value=\"atMost\"/>\n      <xsd:enumeration value=\"atLeast\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_EditAs\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"canvas\"/>\n      <xsd:enumeration value=\"orgchart\"/>\n      <xsd:enumeration value=\"radial\"/>\n      <xsd:enumeration value=\"cycle\"/>\n      <xsd:enumeration value=\"stacked\"/>\n      <xsd:enumeration value=\"venn\"/>\n      <xsd:enumeration value=\"bullseye\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"urn:schemas-microsoft-com:office:office\" xmlns:v=\"urn:schemas-microsoft-com:vml\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"urn:schemas-microsoft-com:office:office\" elementFormDefault=\"qualified\"\n  attributeFormDefault=\"unqualified\">\n  <xsd:import namespace=\"urn:schemas-microsoft-com:vml\" schemaLocation=\"vml-main.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:attribute name=\"bwmode\" type=\"ST_BWMode\"/>\n  <xsd:attribute name=\"bwpure\" type=\"ST_BWMode\"/>\n  <xsd:attribute name=\"bwnormal\" type=\"ST_BWMode\"/>\n  <xsd:attribute name=\"targetscreensize\" type=\"ST_ScreenSize\"/>\n  <xsd:attribute name=\"insetmode\" type=\"ST_InsetMode\" default=\"custom\"/>\n  <xsd:attribute name=\"spt\" type=\"xsd:float\"/>\n  <xsd:attribute name=\"wrapcoords\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"oned\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"regroupid\" type=\"xsd:integer\"/>\n  <xsd:attribute name=\"doubleclicknotify\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"connectortype\" type=\"ST_ConnectorType\" default=\"straight\"/>\n  <xsd:attribute name=\"button\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"userhidden\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"forcedash\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"oleicon\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"ole\" type=\"s:ST_TrueFalseBlank\"/>\n  <xsd:attribute name=\"preferrelative\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"cliptowrap\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"clip\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"bullet\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"hr\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"hrstd\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"hrnoshade\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"hrpct\" type=\"xsd:float\"/>\n  <xsd:attribute name=\"hralign\" type=\"ST_HrAlign\" default=\"left\"/>\n  <xsd:attribute name=\"allowincell\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"allowoverlap\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"userdrawn\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"bordertopcolor\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"borderleftcolor\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"borderbottomcolor\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"borderrightcolor\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"connecttype\" type=\"ST_ConnectType\"/>\n  <xsd:attribute name=\"connectlocs\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"connectangles\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"master\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"extrusionok\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"href\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"althref\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"title\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"singleclick\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"oleid\" type=\"xsd:float\"/>\n  <xsd:attribute name=\"detectmouseclick\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"movie\" type=\"xsd:float\"/>\n  <xsd:attribute name=\"spid\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"opacity2\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"relid\" type=\"r:ST_RelationshipId\"/>\n  <xsd:attribute name=\"dgmlayout\" type=\"ST_DiagramLayout\"/>\n  <xsd:attribute name=\"dgmnodekind\" type=\"xsd:integer\"/>\n  <xsd:attribute name=\"dgmlayoutmru\" type=\"ST_DiagramLayout\"/>\n  <xsd:attribute name=\"gfxdata\" type=\"xsd:base64Binary\"/>\n  <xsd:attribute name=\"tableproperties\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"tablelimits\" type=\"xsd:string\"/>\n  <xsd:element name=\"shapedefaults\" type=\"CT_ShapeDefaults\"/>\n  <xsd:element name=\"shapelayout\" type=\"CT_ShapeLayout\"/>\n  <xsd:element name=\"signatureline\" type=\"CT_SignatureLine\"/>\n  <xsd:element name=\"ink\" type=\"CT_Ink\"/>\n  <xsd:element name=\"diagram\" type=\"CT_Diagram\"/>\n  <xsd:element name=\"equationxml\" type=\"CT_EquationXml\"/>\n  <xsd:complexType name=\"CT_ShapeDefaults\">\n    <xsd:all minOccurs=\"0\">\n      <xsd:element ref=\"v:fill\" minOccurs=\"0\"/>\n      <xsd:element ref=\"v:stroke\" minOccurs=\"0\"/>\n      <xsd:element ref=\"v:textbox\" minOccurs=\"0\"/>\n      <xsd:element ref=\"v:shadow\" minOccurs=\"0\"/>\n      <xsd:element ref=\"skew\" minOccurs=\"0\"/>\n      <xsd:element ref=\"extrusion\" minOccurs=\"0\"/>\n      <xsd:element ref=\"callout\" minOccurs=\"0\"/>\n      <xsd:element ref=\"lock\" minOccurs=\"0\"/>\n      <xsd:element name=\"colormru\" minOccurs=\"0\" type=\"CT_ColorMru\"/>\n      <xsd:element name=\"colormenu\" minOccurs=\"0\" type=\"CT_ColorMenu\"/>\n    </xsd:all>\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"spidmax\" type=\"xsd:integer\" use=\"optional\"/>\n    <xsd:attribute name=\"style\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fill\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"fillcolor\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"stroke\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"strokecolor\" type=\"s:ST_ColorType\"/>\n    <xsd:attribute name=\"allowincell\" form=\"qualified\" type=\"s:ST_TrueFalse\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Ink\">\n    <xsd:sequence/>\n    <xsd:attribute name=\"i\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"annotation\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"contentType\" type=\"ST_ContentType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SignatureLine\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"issignatureline\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"id\" type=\"s:ST_Guid\"/>\n    <xsd:attribute name=\"provid\" type=\"s:ST_Guid\"/>\n    <xsd:attribute name=\"signinginstructionsset\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"allowcomments\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"showsigndate\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"suggestedsigner\" type=\"xsd:string\" form=\"qualified\"/>\n    <xsd:attribute name=\"suggestedsigner2\" type=\"xsd:string\" form=\"qualified\"/>\n    <xsd:attribute name=\"suggestedsigneremail\" type=\"xsd:string\" form=\"qualified\"/>\n    <xsd:attribute name=\"signinginstructions\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"addlxml\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"sigprovurl\" type=\"xsd:string\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShapeLayout\">\n    <xsd:all>\n      <xsd:element name=\"idmap\" type=\"CT_IdMap\" minOccurs=\"0\"/>\n      <xsd:element name=\"regrouptable\" type=\"CT_RegroupTable\" minOccurs=\"0\"/>\n      <xsd:element name=\"rules\" type=\"CT_Rules\" minOccurs=\"0\"/>\n    </xsd:all>\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_IdMap\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"data\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RegroupTable\">\n    <xsd:sequence>\n      <xsd:element name=\"entry\" type=\"CT_Entry\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Entry\">\n    <xsd:attribute name=\"new\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"old\" type=\"xsd:int\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rules\">\n    <xsd:sequence>\n      <xsd:element name=\"r\" type=\"CT_R\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_R\">\n    <xsd:sequence>\n      <xsd:element name=\"proxy\" type=\"CT_Proxy\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"type\" type=\"ST_RType\" use=\"optional\"/>\n    <xsd:attribute name=\"how\" type=\"ST_How\" use=\"optional\"/>\n    <xsd:attribute name=\"idref\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Proxy\">\n    <xsd:attribute name=\"start\" type=\"s:ST_TrueFalseBlank\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"end\" type=\"s:ST_TrueFalseBlank\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"idref\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"connectloc\" type=\"xsd:int\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Diagram\">\n    <xsd:sequence>\n      <xsd:element name=\"relationtable\" type=\"CT_RelationTable\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"dgmstyle\" type=\"xsd:integer\" use=\"optional\"/>\n    <xsd:attribute name=\"autoformat\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"reverse\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"autolayout\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"dgmscalex\" type=\"xsd:integer\" use=\"optional\"/>\n    <xsd:attribute name=\"dgmscaley\" type=\"xsd:integer\" use=\"optional\"/>\n    <xsd:attribute name=\"dgmfontsize\" type=\"xsd:integer\" use=\"optional\"/>\n    <xsd:attribute name=\"constrainbounds\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"dgmbasetextscale\" type=\"xsd:integer\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EquationXml\">\n    <xsd:sequence>\n      <xsd:any namespace=\"##any\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"contentType\" type=\"ST_AlternateMathContentType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AlternateMathContentType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_RelationTable\">\n    <xsd:sequence>\n      <xsd:element name=\"rel\" type=\"CT_Relation\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Relation\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"idsrc\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"iddest\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"idcntr\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorMru\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"colors\" type=\"xsd:string\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorMenu\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"strokecolor\" type=\"s:ST_ColorType\"/>\n    <xsd:attribute name=\"fillcolor\" type=\"s:ST_ColorType\"/>\n    <xsd:attribute name=\"shadowcolor\" type=\"s:ST_ColorType\"/>\n    <xsd:attribute name=\"extrusioncolor\" type=\"s:ST_ColorType\"/>\n  </xsd:complexType>\n  <xsd:element name=\"skew\" type=\"CT_Skew\"/>\n  <xsd:element name=\"extrusion\" type=\"CT_Extrusion\"/>\n  <xsd:element name=\"callout\" type=\"CT_Callout\"/>\n  <xsd:element name=\"lock\" type=\"CT_Lock\"/>\n  <xsd:element name=\"OLEObject\" type=\"CT_OLEObject\"/>\n  <xsd:element name=\"complex\" type=\"CT_Complex\"/>\n  <xsd:element name=\"left\" type=\"CT_StrokeChild\"/>\n  <xsd:element name=\"top\" type=\"CT_StrokeChild\"/>\n  <xsd:element name=\"right\" type=\"CT_StrokeChild\"/>\n  <xsd:element name=\"bottom\" type=\"CT_StrokeChild\"/>\n  <xsd:element name=\"column\" type=\"CT_StrokeChild\"/>\n  <xsd:element name=\"clippath\" type=\"CT_ClipPath\"/>\n  <xsd:element name=\"fill\" type=\"CT_Fill\"/>\n  <xsd:complexType name=\"CT_Skew\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"id\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"offset\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"origin\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"matrix\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Extrusion\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"type\" type=\"ST_ExtrusionType\" default=\"parallel\" use=\"optional\"/>\n    <xsd:attribute name=\"render\" type=\"ST_ExtrusionRender\" default=\"solid\" use=\"optional\"/>\n    <xsd:attribute name=\"viewpointorigin\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"viewpoint\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"plane\" type=\"ST_ExtrusionPlane\" default=\"XY\" use=\"optional\"/>\n    <xsd:attribute name=\"skewangle\" type=\"xsd:float\" use=\"optional\"/>\n    <xsd:attribute name=\"skewamt\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"foredepth\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"backdepth\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"orientation\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"orientationangle\" type=\"xsd:float\" use=\"optional\"/>\n    <xsd:attribute name=\"lockrotationcenter\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"autorotationcenter\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"rotationcenter\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"rotationangle\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"colormode\" type=\"ST_ColorMode\" use=\"optional\"/>\n    <xsd:attribute name=\"color\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"shininess\" type=\"xsd:float\" use=\"optional\"/>\n    <xsd:attribute name=\"specularity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"diffusity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"metal\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"edge\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"facet\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lightface\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"brightness\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lightposition\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lightlevel\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lightharsh\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"lightposition2\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lightlevel2\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lightharsh2\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Callout\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"type\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"gap\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"angle\" type=\"ST_Angle\" use=\"optional\"/>\n    <xsd:attribute name=\"dropauto\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"drop\" type=\"ST_CalloutDrop\" use=\"optional\"/>\n    <xsd:attribute name=\"distance\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lengthspecified\" type=\"s:ST_TrueFalse\" default=\"f\" use=\"optional\"/>\n    <xsd:attribute name=\"length\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"accentbar\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"textborder\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"minusx\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"minusy\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Lock\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"position\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"selection\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"grouping\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"ungrouping\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"rotation\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"cropping\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"verticies\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"adjusthandles\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"text\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"aspectratio\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"shapetype\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OLEObject\">\n    <xsd:sequence>\n      <xsd:element name=\"LinkType\" type=\"ST_OLELinkType\" minOccurs=\"0\"/>\n      <xsd:element name=\"LockedField\" type=\"s:ST_TrueFalseBlank\" minOccurs=\"0\"/>\n      <xsd:element name=\"FieldCodes\" type=\"xsd:string\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"Type\" type=\"ST_OLEType\" use=\"optional\"/>\n    <xsd:attribute name=\"ProgID\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"ShapeID\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"DrawAspect\" type=\"ST_OLEDrawAspect\" use=\"optional\"/>\n    <xsd:attribute name=\"ObjectID\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"UpdateMode\" type=\"ST_OLEUpdateMode\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Complex\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StrokeChild\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"weight\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"color\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"color2\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"opacity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"linestyle\" type=\"v:ST_StrokeLineStyle\" use=\"optional\"/>\n    <xsd:attribute name=\"miterlimit\" type=\"xsd:decimal\" use=\"optional\"/>\n    <xsd:attribute name=\"joinstyle\" type=\"v:ST_StrokeJoinStyle\" use=\"optional\"/>\n    <xsd:attribute name=\"endcap\" type=\"v:ST_StrokeEndCap\" use=\"optional\"/>\n    <xsd:attribute name=\"dashstyle\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"insetpen\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"filltype\" type=\"v:ST_FillType\" use=\"optional\"/>\n    <xsd:attribute name=\"src\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"imageaspect\" type=\"v:ST_ImageAspect\" use=\"optional\"/>\n    <xsd:attribute name=\"imagesize\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"imagealignshape\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"startarrow\" type=\"v:ST_StrokeArrowType\" use=\"optional\"/>\n    <xsd:attribute name=\"startarrowwidth\" type=\"v:ST_StrokeArrowWidth\" use=\"optional\"/>\n    <xsd:attribute name=\"startarrowlength\" type=\"v:ST_StrokeArrowLength\" use=\"optional\"/>\n    <xsd:attribute name=\"endarrow\" type=\"v:ST_StrokeArrowType\" use=\"optional\"/>\n    <xsd:attribute name=\"endarrowwidth\" type=\"v:ST_StrokeArrowWidth\" use=\"optional\"/>\n    <xsd:attribute name=\"endarrowlength\" type=\"v:ST_StrokeArrowLength\" use=\"optional\"/>\n    <xsd:attribute ref=\"href\"/>\n    <xsd:attribute ref=\"althref\"/>\n    <xsd:attribute ref=\"title\"/>\n    <xsd:attribute ref=\"forcedash\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ClipPath\">\n    <xsd:attribute name=\"v\" type=\"xsd:string\" use=\"required\" form=\"qualified\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Fill\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"type\" type=\"ST_FillType\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"arc\"/>\n      <xsd:enumeration value=\"callout\"/>\n      <xsd:enumeration value=\"connector\"/>\n      <xsd:enumeration value=\"align\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_How\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"middle\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"right\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BWMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"color\"/>\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"grayScale\"/>\n      <xsd:enumeration value=\"lightGrayscale\"/>\n      <xsd:enumeration value=\"inverseGray\"/>\n      <xsd:enumeration value=\"grayOutline\"/>\n      <xsd:enumeration value=\"highContrast\"/>\n      <xsd:enumeration value=\"black\"/>\n      <xsd:enumeration value=\"white\"/>\n      <xsd:enumeration value=\"hide\"/>\n      <xsd:enumeration value=\"undrawn\"/>\n      <xsd:enumeration value=\"blackTextAndLines\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ScreenSize\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"544,376\"/>\n      <xsd:enumeration value=\"640,480\"/>\n      <xsd:enumeration value=\"720,512\"/>\n      <xsd:enumeration value=\"800,600\"/>\n      <xsd:enumeration value=\"1024,768\"/>\n      <xsd:enumeration value=\"1152,862\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_InsetMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ColorMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ContentType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DiagramLayout\">\n    <xsd:restriction base=\"xsd:integer\">\n      <xsd:enumeration value=\"0\"/>\n      <xsd:enumeration value=\"1\"/>\n      <xsd:enumeration value=\"2\"/>\n      <xsd:enumeration value=\"3\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ExtrusionType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"perspective\"/>\n      <xsd:enumeration value=\"parallel\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ExtrusionRender\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"solid\"/>\n      <xsd:enumeration value=\"wireFrame\"/>\n      <xsd:enumeration value=\"boundingCube\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ExtrusionPlane\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"XY\"/>\n      <xsd:enumeration value=\"ZX\"/>\n      <xsd:enumeration value=\"YZ\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Angle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"any\"/>\n      <xsd:enumeration value=\"30\"/>\n      <xsd:enumeration value=\"45\"/>\n      <xsd:enumeration value=\"60\"/>\n      <xsd:enumeration value=\"90\"/>\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CalloutDrop\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CalloutPlacement\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"user\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConnectorType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"straight\"/>\n      <xsd:enumeration value=\"elbow\"/>\n      <xsd:enumeration value=\"curved\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HrAlign\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"center\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConnectType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"rect\"/>\n      <xsd:enumeration value=\"segments\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OLELinkType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OLEType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"Embed\"/>\n      <xsd:enumeration value=\"Link\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OLEDrawAspect\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"Content\"/>\n      <xsd:enumeration value=\"Icon\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OLEUpdateMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"Always\"/>\n      <xsd:enumeration value=\"OnCall\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FillType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"gradientCenter\"/>\n      <xsd:enumeration value=\"solid\"/>\n      <xsd:enumeration value=\"pattern\"/>\n      <xsd:enumeration value=\"tile\"/>\n      <xsd:enumeration value=\"frame\"/>\n      <xsd:enumeration value=\"gradientUnscaled\"/>\n      <xsd:enumeration value=\"gradientRadial\"/>\n      <xsd:enumeration value=\"gradient\"/>\n      <xsd:enumeration value=\"background\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"urn:schemas-microsoft-com:office:powerpoint\"\n  targetNamespace=\"urn:schemas-microsoft-com:office:powerpoint\" elementFormDefault=\"qualified\"\n  attributeFormDefault=\"unqualified\">\n  <xsd:element name=\"iscomment\" type=\"CT_Empty\"/>\n  <xsd:element name=\"textdata\" type=\"CT_Rel\"/>\n  <xsd:complexType name=\"CT_Empty\"/>\n  <xsd:complexType name=\"CT_Rel\">\n    <xsd:attribute name=\"id\" type=\"xsd:string\"/>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"urn:schemas-microsoft-com:office:excel\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"urn:schemas-microsoft-com:office:excel\" elementFormDefault=\"qualified\"\n  attributeFormDefault=\"unqualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:element name=\"ClientData\" type=\"CT_ClientData\"/>\n  <xsd:complexType name=\"CT_ClientData\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"MoveWithCells\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"SizeWithCells\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Anchor\" type=\"xsd:string\"/>\n      <xsd:element name=\"Locked\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"DefaultSize\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"PrintObject\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Disabled\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"AutoFill\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"AutoLine\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"AutoPict\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"FmlaMacro\" type=\"xsd:string\"/>\n      <xsd:element name=\"TextHAlign\" type=\"xsd:string\"/>\n      <xsd:element name=\"TextVAlign\" type=\"xsd:string\"/>\n      <xsd:element name=\"LockText\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"JustLastX\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"SecretEdit\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Default\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Help\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Cancel\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Dismiss\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Accel\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Accel2\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Row\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Column\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Visible\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"RowHidden\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"ColHidden\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"VTEdit\" type=\"xsd:integer\"/>\n      <xsd:element name=\"MultiLine\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"VScroll\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"ValidIds\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"FmlaRange\" type=\"xsd:string\"/>\n      <xsd:element name=\"WidthMin\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Sel\" type=\"xsd:integer\"/>\n      <xsd:element name=\"NoThreeD2\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"SelType\" type=\"xsd:string\"/>\n      <xsd:element name=\"MultiSel\" type=\"xsd:string\"/>\n      <xsd:element name=\"LCT\" type=\"xsd:string\"/>\n      <xsd:element name=\"ListItem\" type=\"xsd:string\"/>\n      <xsd:element name=\"DropStyle\" type=\"xsd:string\"/>\n      <xsd:element name=\"Colored\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"DropLines\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Checked\" type=\"xsd:integer\"/>\n      <xsd:element name=\"FmlaLink\" type=\"xsd:string\"/>\n      <xsd:element name=\"FmlaPict\" type=\"xsd:string\"/>\n      <xsd:element name=\"NoThreeD\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"FirstButton\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"FmlaGroup\" type=\"xsd:string\"/>\n      <xsd:element name=\"Val\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Min\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Max\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Inc\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Page\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Horiz\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Dx\" type=\"xsd:integer\"/>\n      <xsd:element name=\"MapOCX\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"CF\" type=\"ST_CF\"/>\n      <xsd:element name=\"Camera\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"RecalcAlways\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"AutoScale\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"DDE\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"UIObj\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"ScriptText\" type=\"xsd:string\"/>\n      <xsd:element name=\"ScriptExtended\" type=\"xsd:string\"/>\n      <xsd:element name=\"ScriptLanguage\" type=\"xsd:nonNegativeInteger\"/>\n      <xsd:element name=\"ScriptLocation\" type=\"xsd:nonNegativeInteger\"/>\n      <xsd:element name=\"FmlaTxbx\" type=\"xsd:string\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"ObjectType\" type=\"ST_ObjectType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CF\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ObjectType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"Button\"/>\n      <xsd:enumeration value=\"Checkbox\"/>\n      <xsd:enumeration value=\"Dialog\"/>\n      <xsd:enumeration value=\"Drop\"/>\n      <xsd:enumeration value=\"Edit\"/>\n      <xsd:enumeration value=\"GBox\"/>\n      <xsd:enumeration value=\"Label\"/>\n      <xsd:enumeration value=\"LineA\"/>\n      <xsd:enumeration value=\"List\"/>\n      <xsd:enumeration value=\"Movie\"/>\n      <xsd:enumeration value=\"Note\"/>\n      <xsd:enumeration value=\"Pict\"/>\n      <xsd:enumeration value=\"Radio\"/>\n      <xsd:enumeration value=\"RectA\"/>\n      <xsd:enumeration value=\"Scroll\"/>\n      <xsd:enumeration value=\"Spin\"/>\n      <xsd:enumeration value=\"Shape\"/>\n      <xsd:enumeration value=\"Group\"/>\n      <xsd:enumeration value=\"Rect\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"urn:schemas-microsoft-com:office:word\"\n  targetNamespace=\"urn:schemas-microsoft-com:office:word\" elementFormDefault=\"qualified\"\n  attributeFormDefault=\"unqualified\">\n  <xsd:element name=\"bordertop\" type=\"CT_Border\"/>\n  <xsd:element name=\"borderleft\" type=\"CT_Border\"/>\n  <xsd:element name=\"borderright\" type=\"CT_Border\"/>\n  <xsd:element name=\"borderbottom\" type=\"CT_Border\"/>\n  <xsd:complexType name=\"CT_Border\">\n    <xsd:attribute name=\"type\" type=\"ST_BorderType\" use=\"optional\"/>\n    <xsd:attribute name=\"width\" type=\"xsd:positiveInteger\" use=\"optional\"/>\n    <xsd:attribute name=\"shadow\" type=\"ST_BorderShadow\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:element name=\"wrap\" type=\"CT_Wrap\"/>\n  <xsd:complexType name=\"CT_Wrap\">\n    <xsd:attribute name=\"type\" type=\"ST_WrapType\" use=\"optional\"/>\n    <xsd:attribute name=\"side\" type=\"ST_WrapSide\" use=\"optional\"/>\n    <xsd:attribute name=\"anchorx\" type=\"ST_HorizontalAnchor\" use=\"optional\"/>\n    <xsd:attribute name=\"anchory\" type=\"ST_VerticalAnchor\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:element name=\"anchorlock\" type=\"CT_AnchorLock\"/>\n  <xsd:complexType name=\"CT_AnchorLock\"/>\n  <xsd:simpleType name=\"ST_BorderType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"single\"/>\n      <xsd:enumeration value=\"thick\"/>\n      <xsd:enumeration value=\"double\"/>\n      <xsd:enumeration value=\"hairline\"/>\n      <xsd:enumeration value=\"dot\"/>\n      <xsd:enumeration value=\"dash\"/>\n      <xsd:enumeration value=\"dotDash\"/>\n      <xsd:enumeration value=\"dashDotDot\"/>\n      <xsd:enumeration value=\"triple\"/>\n      <xsd:enumeration value=\"thinThickSmall\"/>\n      <xsd:enumeration value=\"thickThinSmall\"/>\n      <xsd:enumeration value=\"thickBetweenThinSmall\"/>\n      <xsd:enumeration value=\"thinThick\"/>\n      <xsd:enumeration value=\"thickThin\"/>\n      <xsd:enumeration value=\"thickBetweenThin\"/>\n      <xsd:enumeration value=\"thinThickLarge\"/>\n      <xsd:enumeration value=\"thickThinLarge\"/>\n      <xsd:enumeration value=\"thickBetweenThinLarge\"/>\n      <xsd:enumeration value=\"wave\"/>\n      <xsd:enumeration value=\"doubleWave\"/>\n      <xsd:enumeration value=\"dashedSmall\"/>\n      <xsd:enumeration value=\"dashDotStroked\"/>\n      <xsd:enumeration value=\"threeDEmboss\"/>\n      <xsd:enumeration value=\"threeDEngrave\"/>\n      <xsd:enumeration value=\"HTMLOutset\"/>\n      <xsd:enumeration value=\"HTMLInset\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BorderShadow\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"true\"/>\n      <xsd:enumeration value=\"f\"/>\n      <xsd:enumeration value=\"false\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_WrapType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"topAndBottom\"/>\n      <xsd:enumeration value=\"square\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"tight\"/>\n      <xsd:enumeration value=\"through\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_WrapSide\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"both\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"largest\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HorizontalAnchor\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"page\"/>\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"char\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VerticalAnchor\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"page\"/>\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"line\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns:m=\"http://schemas.openxmlformats.org/officeDocument/2006/math\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:sl=\"http://schemas.openxmlformats.org/schemaLibrary/2006/main\"\n  xmlns:wp=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\"\n  xmlns=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\"\n  targetNamespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" schemaLocation=\"../mce/mc.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\"\n    schemaLocation=\"dml-wordprocessingDrawing.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/math\"\n    schemaLocation=\"shared-math.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/schemaLibrary/2006/main\"\n    schemaLocation=\"shared-customXmlSchemaProperties.xsd\"/>\n  <xsd:import namespace=\"http://www.w3.org/XML/1998/namespace\"/>\n  <xsd:complexType name=\"CT_Empty\"/>\n  <xsd:complexType name=\"CT_OnOff\">\n    <xsd:attribute name=\"val\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LongHexNumber\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"4\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LongHexNumber\">\n    <xsd:attribute name=\"val\" type=\"ST_LongHexNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ShortHexNumber\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"2\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UcharHexNumber\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"1\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Charset\">\n    <xsd:attribute name=\"val\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"characterSet\" type=\"s:ST_String\" use=\"optional\" default=\"ISO-8859-1\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DecimalNumberOrPercent\">\n    <xsd:union memberTypes=\"ST_UnqualifiedPercentage s:ST_Percentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UnqualifiedPercentage\">\n    <xsd:restriction base=\"xsd:decimal\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DecimalNumber\">\n    <xsd:restriction base=\"xsd:integer\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DecimalNumber\">\n    <xsd:attribute name=\"val\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_UnsignedDecimalNumber\">\n    <xsd:attribute name=\"val\" type=\"s:ST_UnsignedDecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DecimalNumberOrPrecent\">\n    <xsd:attribute name=\"val\" type=\"ST_DecimalNumberOrPercent\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TwipsMeasure\">\n    <xsd:attribute name=\"val\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SignedTwipsMeasure\">\n    <xsd:union memberTypes=\"xsd:integer s:ST_UniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SignedTwipsMeasure\">\n    <xsd:attribute name=\"val\" type=\"ST_SignedTwipsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PixelsMeasure\">\n    <xsd:restriction base=\"s:ST_UnsignedDecimalNumber\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PixelsMeasure\">\n    <xsd:attribute name=\"val\" type=\"ST_PixelsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HpsMeasure\">\n    <xsd:union memberTypes=\"s:ST_UnsignedDecimalNumber s:ST_PositiveUniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_HpsMeasure\">\n    <xsd:attribute name=\"val\" type=\"ST_HpsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SignedHpsMeasure\">\n    <xsd:union memberTypes=\"xsd:integer s:ST_UniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SignedHpsMeasure\">\n    <xsd:attribute name=\"val\" type=\"ST_SignedHpsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DateTime\">\n    <xsd:restriction base=\"xsd:dateTime\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_MacroName\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:maxLength value=\"33\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MacroName\">\n    <xsd:attribute name=\"val\" use=\"required\" type=\"ST_MacroName\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_EighthPointMeasure\">\n    <xsd:restriction base=\"s:ST_UnsignedDecimalNumber\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PointMeasure\">\n    <xsd:restriction base=\"s:ST_UnsignedDecimalNumber\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_String\">\n    <xsd:attribute name=\"val\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextScale\">\n    <xsd:union memberTypes=\"ST_TextScalePercent ST_TextScaleDecimal\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextScalePercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(600|([0-5]?[0-9]?[0-9]))%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextScaleDecimal\">\n    <xsd:restriction base=\"xsd:integer\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"600\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextScale\">\n    <xsd:attribute name=\"val\" type=\"ST_TextScale\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HighlightColor\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"black\"/>\n      <xsd:enumeration value=\"blue\"/>\n      <xsd:enumeration value=\"cyan\"/>\n      <xsd:enumeration value=\"green\"/>\n      <xsd:enumeration value=\"magenta\"/>\n      <xsd:enumeration value=\"red\"/>\n      <xsd:enumeration value=\"yellow\"/>\n      <xsd:enumeration value=\"white\"/>\n      <xsd:enumeration value=\"darkBlue\"/>\n      <xsd:enumeration value=\"darkCyan\"/>\n      <xsd:enumeration value=\"darkGreen\"/>\n      <xsd:enumeration value=\"darkMagenta\"/>\n      <xsd:enumeration value=\"darkRed\"/>\n      <xsd:enumeration value=\"darkYellow\"/>\n      <xsd:enumeration value=\"darkGray\"/>\n      <xsd:enumeration value=\"lightGray\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Highlight\">\n    <xsd:attribute name=\"val\" type=\"ST_HighlightColor\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HexColorAuto\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HexColor\">\n    <xsd:union memberTypes=\"ST_HexColorAuto s:ST_HexColorRGB\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Color\">\n    <xsd:attribute name=\"val\" type=\"ST_HexColor\" use=\"required\"/>\n    <xsd:attribute name=\"themeColor\" type=\"ST_ThemeColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeTint\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"themeShade\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Lang\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Lang\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Guid\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Guid\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Underline\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"single\"/>\n      <xsd:enumeration value=\"words\"/>\n      <xsd:enumeration value=\"double\"/>\n      <xsd:enumeration value=\"thick\"/>\n      <xsd:enumeration value=\"dotted\"/>\n      <xsd:enumeration value=\"dottedHeavy\"/>\n      <xsd:enumeration value=\"dash\"/>\n      <xsd:enumeration value=\"dashedHeavy\"/>\n      <xsd:enumeration value=\"dashLong\"/>\n      <xsd:enumeration value=\"dashLongHeavy\"/>\n      <xsd:enumeration value=\"dotDash\"/>\n      <xsd:enumeration value=\"dashDotHeavy\"/>\n      <xsd:enumeration value=\"dotDotDash\"/>\n      <xsd:enumeration value=\"dashDotDotHeavy\"/>\n      <xsd:enumeration value=\"wave\"/>\n      <xsd:enumeration value=\"wavyHeavy\"/>\n      <xsd:enumeration value=\"wavyDouble\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Underline\">\n    <xsd:attribute name=\"val\" type=\"ST_Underline\" use=\"optional\"/>\n    <xsd:attribute name=\"color\" type=\"ST_HexColor\" use=\"optional\" default=\"auto\"/>\n    <xsd:attribute name=\"themeColor\" type=\"ST_ThemeColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeTint\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"themeShade\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextEffect\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"blinkBackground\"/>\n      <xsd:enumeration value=\"lights\"/>\n      <xsd:enumeration value=\"antsBlack\"/>\n      <xsd:enumeration value=\"antsRed\"/>\n      <xsd:enumeration value=\"shimmer\"/>\n      <xsd:enumeration value=\"sparkle\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextEffect\">\n    <xsd:attribute name=\"val\" type=\"ST_TextEffect\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Border\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"nil\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"single\"/>\n      <xsd:enumeration value=\"thick\"/>\n      <xsd:enumeration value=\"double\"/>\n      <xsd:enumeration value=\"dotted\"/>\n      <xsd:enumeration value=\"dashed\"/>\n      <xsd:enumeration value=\"dotDash\"/>\n      <xsd:enumeration value=\"dotDotDash\"/>\n      <xsd:enumeration value=\"triple\"/>\n      <xsd:enumeration value=\"thinThickSmallGap\"/>\n      <xsd:enumeration value=\"thickThinSmallGap\"/>\n      <xsd:enumeration value=\"thinThickThinSmallGap\"/>\n      <xsd:enumeration value=\"thinThickMediumGap\"/>\n      <xsd:enumeration value=\"thickThinMediumGap\"/>\n      <xsd:enumeration value=\"thinThickThinMediumGap\"/>\n      <xsd:enumeration value=\"thinThickLargeGap\"/>\n      <xsd:enumeration value=\"thickThinLargeGap\"/>\n      <xsd:enumeration value=\"thinThickThinLargeGap\"/>\n      <xsd:enumeration value=\"wave\"/>\n      <xsd:enumeration value=\"doubleWave\"/>\n      <xsd:enumeration value=\"dashSmallGap\"/>\n      <xsd:enumeration value=\"dashDotStroked\"/>\n      <xsd:enumeration value=\"threeDEmboss\"/>\n      <xsd:enumeration value=\"threeDEngrave\"/>\n      <xsd:enumeration value=\"outset\"/>\n      <xsd:enumeration value=\"inset\"/>\n      <xsd:enumeration value=\"apples\"/>\n      <xsd:enumeration value=\"archedScallops\"/>\n      <xsd:enumeration value=\"babyPacifier\"/>\n      <xsd:enumeration value=\"babyRattle\"/>\n      <xsd:enumeration value=\"balloons3Colors\"/>\n      <xsd:enumeration value=\"balloonsHotAir\"/>\n      <xsd:enumeration value=\"basicBlackDashes\"/>\n      <xsd:enumeration value=\"basicBlackDots\"/>\n      <xsd:enumeration value=\"basicBlackSquares\"/>\n      <xsd:enumeration value=\"basicThinLines\"/>\n      <xsd:enumeration value=\"basicWhiteDashes\"/>\n      <xsd:enumeration value=\"basicWhiteDots\"/>\n      <xsd:enumeration value=\"basicWhiteSquares\"/>\n      <xsd:enumeration value=\"basicWideInline\"/>\n      <xsd:enumeration value=\"basicWideMidline\"/>\n      <xsd:enumeration value=\"basicWideOutline\"/>\n      <xsd:enumeration value=\"bats\"/>\n      <xsd:enumeration value=\"birds\"/>\n      <xsd:enumeration value=\"birdsFlight\"/>\n      <xsd:enumeration value=\"cabins\"/>\n      <xsd:enumeration value=\"cakeSlice\"/>\n      <xsd:enumeration value=\"candyCorn\"/>\n      <xsd:enumeration value=\"celticKnotwork\"/>\n      <xsd:enumeration value=\"certificateBanner\"/>\n      <xsd:enumeration value=\"chainLink\"/>\n      <xsd:enumeration value=\"champagneBottle\"/>\n      <xsd:enumeration value=\"checkedBarBlack\"/>\n      <xsd:enumeration value=\"checkedBarColor\"/>\n      <xsd:enumeration value=\"checkered\"/>\n      <xsd:enumeration value=\"christmasTree\"/>\n      <xsd:enumeration value=\"circlesLines\"/>\n      <xsd:enumeration value=\"circlesRectangles\"/>\n      <xsd:enumeration value=\"classicalWave\"/>\n      <xsd:enumeration value=\"clocks\"/>\n      <xsd:enumeration value=\"compass\"/>\n      <xsd:enumeration value=\"confetti\"/>\n      <xsd:enumeration value=\"confettiGrays\"/>\n      <xsd:enumeration value=\"confettiOutline\"/>\n      <xsd:enumeration value=\"confettiStreamers\"/>\n      <xsd:enumeration value=\"confettiWhite\"/>\n      <xsd:enumeration value=\"cornerTriangles\"/>\n      <xsd:enumeration value=\"couponCutoutDashes\"/>\n      <xsd:enumeration value=\"couponCutoutDots\"/>\n      <xsd:enumeration value=\"crazyMaze\"/>\n      <xsd:enumeration value=\"creaturesButterfly\"/>\n      <xsd:enumeration value=\"creaturesFish\"/>\n      <xsd:enumeration value=\"creaturesInsects\"/>\n      <xsd:enumeration value=\"creaturesLadyBug\"/>\n      <xsd:enumeration value=\"crossStitch\"/>\n      <xsd:enumeration value=\"cup\"/>\n      <xsd:enumeration value=\"decoArch\"/>\n      <xsd:enumeration value=\"decoArchColor\"/>\n      <xsd:enumeration value=\"decoBlocks\"/>\n      <xsd:enumeration value=\"diamondsGray\"/>\n      <xsd:enumeration value=\"doubleD\"/>\n      <xsd:enumeration value=\"doubleDiamonds\"/>\n      <xsd:enumeration value=\"earth1\"/>\n      <xsd:enumeration value=\"earth2\"/>\n      <xsd:enumeration value=\"earth3\"/>\n      <xsd:enumeration value=\"eclipsingSquares1\"/>\n      <xsd:enumeration value=\"eclipsingSquares2\"/>\n      <xsd:enumeration value=\"eggsBlack\"/>\n      <xsd:enumeration value=\"fans\"/>\n      <xsd:enumeration value=\"film\"/>\n      <xsd:enumeration value=\"firecrackers\"/>\n      <xsd:enumeration value=\"flowersBlockPrint\"/>\n      <xsd:enumeration value=\"flowersDaisies\"/>\n      <xsd:enumeration value=\"flowersModern1\"/>\n      <xsd:enumeration value=\"flowersModern2\"/>\n      <xsd:enumeration value=\"flowersPansy\"/>\n      <xsd:enumeration value=\"flowersRedRose\"/>\n      <xsd:enumeration value=\"flowersRoses\"/>\n      <xsd:enumeration value=\"flowersTeacup\"/>\n      <xsd:enumeration value=\"flowersTiny\"/>\n      <xsd:enumeration value=\"gems\"/>\n      <xsd:enumeration value=\"gingerbreadMan\"/>\n      <xsd:enumeration value=\"gradient\"/>\n      <xsd:enumeration value=\"handmade1\"/>\n      <xsd:enumeration value=\"handmade2\"/>\n      <xsd:enumeration value=\"heartBalloon\"/>\n      <xsd:enumeration value=\"heartGray\"/>\n      <xsd:enumeration value=\"hearts\"/>\n      <xsd:enumeration value=\"heebieJeebies\"/>\n      <xsd:enumeration value=\"holly\"/>\n      <xsd:enumeration value=\"houseFunky\"/>\n      <xsd:enumeration value=\"hypnotic\"/>\n      <xsd:enumeration value=\"iceCreamCones\"/>\n      <xsd:enumeration value=\"lightBulb\"/>\n      <xsd:enumeration value=\"lightning1\"/>\n      <xsd:enumeration value=\"lightning2\"/>\n      <xsd:enumeration value=\"mapPins\"/>\n      <xsd:enumeration value=\"mapleLeaf\"/>\n      <xsd:enumeration value=\"mapleMuffins\"/>\n      <xsd:enumeration value=\"marquee\"/>\n      <xsd:enumeration value=\"marqueeToothed\"/>\n      <xsd:enumeration value=\"moons\"/>\n      <xsd:enumeration value=\"mosaic\"/>\n      <xsd:enumeration value=\"musicNotes\"/>\n      <xsd:enumeration value=\"northwest\"/>\n      <xsd:enumeration value=\"ovals\"/>\n      <xsd:enumeration value=\"packages\"/>\n      <xsd:enumeration value=\"palmsBlack\"/>\n      <xsd:enumeration value=\"palmsColor\"/>\n      <xsd:enumeration value=\"paperClips\"/>\n      <xsd:enumeration value=\"papyrus\"/>\n      <xsd:enumeration value=\"partyFavor\"/>\n      <xsd:enumeration value=\"partyGlass\"/>\n      <xsd:enumeration value=\"pencils\"/>\n      <xsd:enumeration value=\"people\"/>\n      <xsd:enumeration value=\"peopleWaving\"/>\n      <xsd:enumeration value=\"peopleHats\"/>\n      <xsd:enumeration value=\"poinsettias\"/>\n      <xsd:enumeration value=\"postageStamp\"/>\n      <xsd:enumeration value=\"pumpkin1\"/>\n      <xsd:enumeration value=\"pushPinNote2\"/>\n      <xsd:enumeration value=\"pushPinNote1\"/>\n      <xsd:enumeration value=\"pyramids\"/>\n      <xsd:enumeration value=\"pyramidsAbove\"/>\n      <xsd:enumeration value=\"quadrants\"/>\n      <xsd:enumeration value=\"rings\"/>\n      <xsd:enumeration value=\"safari\"/>\n      <xsd:enumeration value=\"sawtooth\"/>\n      <xsd:enumeration value=\"sawtoothGray\"/>\n      <xsd:enumeration value=\"scaredCat\"/>\n      <xsd:enumeration value=\"seattle\"/>\n      <xsd:enumeration value=\"shadowedSquares\"/>\n      <xsd:enumeration value=\"sharksTeeth\"/>\n      <xsd:enumeration value=\"shorebirdTracks\"/>\n      <xsd:enumeration value=\"skyrocket\"/>\n      <xsd:enumeration value=\"snowflakeFancy\"/>\n      <xsd:enumeration value=\"snowflakes\"/>\n      <xsd:enumeration value=\"sombrero\"/>\n      <xsd:enumeration value=\"southwest\"/>\n      <xsd:enumeration value=\"stars\"/>\n      <xsd:enumeration value=\"starsTop\"/>\n      <xsd:enumeration value=\"stars3d\"/>\n      <xsd:enumeration value=\"starsBlack\"/>\n      <xsd:enumeration value=\"starsShadowed\"/>\n      <xsd:enumeration value=\"sun\"/>\n      <xsd:enumeration value=\"swirligig\"/>\n      <xsd:enumeration value=\"tornPaper\"/>\n      <xsd:enumeration value=\"tornPaperBlack\"/>\n      <xsd:enumeration value=\"trees\"/>\n      <xsd:enumeration value=\"triangleParty\"/>\n      <xsd:enumeration value=\"triangles\"/>\n      <xsd:enumeration value=\"triangle1\"/>\n      <xsd:enumeration value=\"triangle2\"/>\n      <xsd:enumeration value=\"triangleCircle1\"/>\n      <xsd:enumeration value=\"triangleCircle2\"/>\n      <xsd:enumeration value=\"shapes1\"/>\n      <xsd:enumeration value=\"shapes2\"/>\n      <xsd:enumeration value=\"twistedLines1\"/>\n      <xsd:enumeration value=\"twistedLines2\"/>\n      <xsd:enumeration value=\"vine\"/>\n      <xsd:enumeration value=\"waveline\"/>\n      <xsd:enumeration value=\"weavingAngles\"/>\n      <xsd:enumeration value=\"weavingBraid\"/>\n      <xsd:enumeration value=\"weavingRibbon\"/>\n      <xsd:enumeration value=\"weavingStrips\"/>\n      <xsd:enumeration value=\"whiteFlowers\"/>\n      <xsd:enumeration value=\"woodwork\"/>\n      <xsd:enumeration value=\"xIllusions\"/>\n      <xsd:enumeration value=\"zanyTriangles\"/>\n      <xsd:enumeration value=\"zigZag\"/>\n      <xsd:enumeration value=\"zigZagStitch\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Border\">\n    <xsd:attribute name=\"val\" type=\"ST_Border\" use=\"required\"/>\n    <xsd:attribute name=\"color\" type=\"ST_HexColor\" use=\"optional\" default=\"auto\"/>\n    <xsd:attribute name=\"themeColor\" type=\"ST_ThemeColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeTint\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"themeShade\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"sz\" type=\"ST_EighthPointMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"space\" type=\"ST_PointMeasure\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"shadow\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"frame\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Shd\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"nil\"/>\n      <xsd:enumeration value=\"clear\"/>\n      <xsd:enumeration value=\"solid\"/>\n      <xsd:enumeration value=\"horzStripe\"/>\n      <xsd:enumeration value=\"vertStripe\"/>\n      <xsd:enumeration value=\"reverseDiagStripe\"/>\n      <xsd:enumeration value=\"diagStripe\"/>\n      <xsd:enumeration value=\"horzCross\"/>\n      <xsd:enumeration value=\"diagCross\"/>\n      <xsd:enumeration value=\"thinHorzStripe\"/>\n      <xsd:enumeration value=\"thinVertStripe\"/>\n      <xsd:enumeration value=\"thinReverseDiagStripe\"/>\n      <xsd:enumeration value=\"thinDiagStripe\"/>\n      <xsd:enumeration value=\"thinHorzCross\"/>\n      <xsd:enumeration value=\"thinDiagCross\"/>\n      <xsd:enumeration value=\"pct5\"/>\n      <xsd:enumeration value=\"pct10\"/>\n      <xsd:enumeration value=\"pct12\"/>\n      <xsd:enumeration value=\"pct15\"/>\n      <xsd:enumeration value=\"pct20\"/>\n      <xsd:enumeration value=\"pct25\"/>\n      <xsd:enumeration value=\"pct30\"/>\n      <xsd:enumeration value=\"pct35\"/>\n      <xsd:enumeration value=\"pct37\"/>\n      <xsd:enumeration value=\"pct40\"/>\n      <xsd:enumeration value=\"pct45\"/>\n      <xsd:enumeration value=\"pct50\"/>\n      <xsd:enumeration value=\"pct55\"/>\n      <xsd:enumeration value=\"pct60\"/>\n      <xsd:enumeration value=\"pct62\"/>\n      <xsd:enumeration value=\"pct65\"/>\n      <xsd:enumeration value=\"pct70\"/>\n      <xsd:enumeration value=\"pct75\"/>\n      <xsd:enumeration value=\"pct80\"/>\n      <xsd:enumeration value=\"pct85\"/>\n      <xsd:enumeration value=\"pct87\"/>\n      <xsd:enumeration value=\"pct90\"/>\n      <xsd:enumeration value=\"pct95\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Shd\">\n    <xsd:attribute name=\"val\" type=\"ST_Shd\" use=\"required\"/>\n    <xsd:attribute name=\"color\" type=\"ST_HexColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeColor\" type=\"ST_ThemeColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeTint\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"themeShade\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"fill\" type=\"ST_HexColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeFill\" type=\"ST_ThemeColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeFillTint\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"themeFillShade\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VerticalAlignRun\">\n    <xsd:attribute name=\"val\" type=\"s:ST_VerticalAlignRun\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FitText\">\n    <xsd:attribute name=\"val\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"id\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Em\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"dot\"/>\n      <xsd:enumeration value=\"comma\"/>\n      <xsd:enumeration value=\"circle\"/>\n      <xsd:enumeration value=\"underDot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Em\">\n    <xsd:attribute name=\"val\" type=\"ST_Em\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Language\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Lang\" use=\"optional\"/>\n    <xsd:attribute name=\"eastAsia\" type=\"s:ST_Lang\" use=\"optional\"/>\n    <xsd:attribute name=\"bidi\" type=\"s:ST_Lang\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CombineBrackets\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"round\"/>\n      <xsd:enumeration value=\"square\"/>\n      <xsd:enumeration value=\"angle\"/>\n      <xsd:enumeration value=\"curly\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_EastAsianLayout\">\n    <xsd:attribute name=\"id\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"combine\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"combineBrackets\" type=\"ST_CombineBrackets\" use=\"optional\"/>\n    <xsd:attribute name=\"vert\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"vertCompress\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HeightRule\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"exact\"/>\n      <xsd:enumeration value=\"atLeast\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Wrap\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"notBeside\"/>\n      <xsd:enumeration value=\"around\"/>\n      <xsd:enumeration value=\"tight\"/>\n      <xsd:enumeration value=\"through\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VAnchor\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"page\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HAnchor\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"page\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DropCap\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"drop\"/>\n      <xsd:enumeration value=\"margin\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FramePr\">\n    <xsd:attribute name=\"dropCap\" type=\"ST_DropCap\" use=\"optional\"/>\n    <xsd:attribute name=\"lines\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"w\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"h\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"vSpace\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"hSpace\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"wrap\" type=\"ST_Wrap\" use=\"optional\"/>\n    <xsd:attribute name=\"hAnchor\" type=\"ST_HAnchor\" use=\"optional\"/>\n    <xsd:attribute name=\"vAnchor\" type=\"ST_VAnchor\" use=\"optional\"/>\n    <xsd:attribute name=\"x\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"xAlign\" type=\"s:ST_XAlign\" use=\"optional\"/>\n    <xsd:attribute name=\"y\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"yAlign\" type=\"s:ST_YAlign\" use=\"optional\"/>\n    <xsd:attribute name=\"hRule\" type=\"ST_HeightRule\" use=\"optional\"/>\n    <xsd:attribute name=\"anchorLock\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TabJc\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"clear\"/>\n      <xsd:enumeration value=\"start\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"end\"/>\n      <xsd:enumeration value=\"decimal\"/>\n      <xsd:enumeration value=\"bar\"/>\n      <xsd:enumeration value=\"num\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TabTlc\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"dot\"/>\n      <xsd:enumeration value=\"hyphen\"/>\n      <xsd:enumeration value=\"underscore\"/>\n      <xsd:enumeration value=\"heavy\"/>\n      <xsd:enumeration value=\"middleDot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TabStop\">\n    <xsd:attribute name=\"val\" type=\"ST_TabJc\" use=\"required\"/>\n    <xsd:attribute name=\"leader\" type=\"ST_TabTlc\" use=\"optional\"/>\n    <xsd:attribute name=\"pos\" type=\"ST_SignedTwipsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LineSpacingRule\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"exact\"/>\n      <xsd:enumeration value=\"atLeast\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Spacing\">\n    <xsd:attribute name=\"before\" type=\"s:ST_TwipsMeasure\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"beforeLines\" type=\"ST_DecimalNumber\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"beforeAutospacing\" type=\"s:ST_OnOff\" use=\"optional\" default=\"off\"/>\n    <xsd:attribute name=\"after\" type=\"s:ST_TwipsMeasure\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"afterLines\" type=\"ST_DecimalNumber\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"afterAutospacing\" type=\"s:ST_OnOff\" use=\"optional\" default=\"off\"/>\n    <xsd:attribute name=\"line\" type=\"ST_SignedTwipsMeasure\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"lineRule\" type=\"ST_LineSpacingRule\" use=\"optional\" default=\"auto\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Ind\">\n    <xsd:attribute name=\"start\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"startChars\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"end\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"endChars\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"left\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"leftChars\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"right\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"rightChars\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"hanging\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"hangingChars\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"firstLine\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"firstLineChars\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Jc\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"start\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"end\"/>\n      <xsd:enumeration value=\"both\"/>\n      <xsd:enumeration value=\"mediumKashida\"/>\n      <xsd:enumeration value=\"distribute\"/>\n      <xsd:enumeration value=\"numTab\"/>\n      <xsd:enumeration value=\"highKashida\"/>\n      <xsd:enumeration value=\"lowKashida\"/>\n      <xsd:enumeration value=\"thaiDistribute\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_JcTable\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"end\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"start\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Jc\">\n    <xsd:attribute name=\"val\" type=\"ST_Jc\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_JcTable\">\n    <xsd:attribute name=\"val\" type=\"ST_JcTable\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_View\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"print\"/>\n      <xsd:enumeration value=\"outline\"/>\n      <xsd:enumeration value=\"masterPages\"/>\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"web\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_View\">\n    <xsd:attribute name=\"val\" type=\"ST_View\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Zoom\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"fullPage\"/>\n      <xsd:enumeration value=\"bestFit\"/>\n      <xsd:enumeration value=\"textFit\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Zoom\">\n    <xsd:attribute name=\"val\" type=\"ST_Zoom\" use=\"optional\"/>\n    <xsd:attribute name=\"percent\" type=\"ST_DecimalNumberOrPercent\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WritingStyle\">\n    <xsd:attribute name=\"lang\" type=\"s:ST_Lang\" use=\"required\"/>\n    <xsd:attribute name=\"vendorID\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"dllVersion\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"nlCheck\" type=\"s:ST_OnOff\" use=\"optional\" default=\"off\"/>\n    <xsd:attribute name=\"checkStyle\" type=\"s:ST_OnOff\" use=\"required\"/>\n    <xsd:attribute name=\"appName\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Proof\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"clean\"/>\n      <xsd:enumeration value=\"dirty\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Proof\">\n    <xsd:attribute name=\"spelling\" type=\"ST_Proof\" use=\"optional\"/>\n    <xsd:attribute name=\"grammar\" type=\"ST_Proof\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DocType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DocType\">\n    <xsd:attribute name=\"val\" type=\"ST_DocType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DocProtect\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"readOnly\"/>\n      <xsd:enumeration value=\"comments\"/>\n      <xsd:enumeration value=\"trackedChanges\"/>\n      <xsd:enumeration value=\"forms\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:attributeGroup name=\"AG_Password\">\n    <xsd:attribute name=\"algorithmName\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"hashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"saltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"spinCount\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_TransitionalPassword\">\n    <xsd:attribute name=\"cryptProviderType\" type=\"s:ST_CryptProv\"/>\n    <xsd:attribute name=\"cryptAlgorithmClass\" type=\"s:ST_AlgClass\"/>\n    <xsd:attribute name=\"cryptAlgorithmType\" type=\"s:ST_AlgType\"/>\n    <xsd:attribute name=\"cryptAlgorithmSid\" type=\"ST_DecimalNumber\"/>\n    <xsd:attribute name=\"cryptSpinCount\" type=\"ST_DecimalNumber\"/>\n    <xsd:attribute name=\"cryptProvider\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"algIdExt\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"algIdExtSource\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"cryptProviderTypeExt\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"cryptProviderTypeExtSource\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"hash\" type=\"xsd:base64Binary\"/>\n    <xsd:attribute name=\"salt\" type=\"xsd:base64Binary\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_DocProtect\">\n    <xsd:attribute name=\"edit\" type=\"ST_DocProtect\" use=\"optional\"/>\n    <xsd:attribute name=\"formatting\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"enforcement\" type=\"s:ST_OnOff\"/>\n    <xsd:attributeGroup ref=\"AG_Password\"/>\n    <xsd:attributeGroup ref=\"AG_TransitionalPassword\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MailMergeDocType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"catalog\"/>\n      <xsd:enumeration value=\"envelopes\"/>\n      <xsd:enumeration value=\"mailingLabels\"/>\n      <xsd:enumeration value=\"formLetters\"/>\n      <xsd:enumeration value=\"email\"/>\n      <xsd:enumeration value=\"fax\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MailMergeDocType\">\n    <xsd:attribute name=\"val\" type=\"ST_MailMergeDocType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MailMergeDataType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MailMergeDataType\">\n    <xsd:attribute name=\"val\" type=\"ST_MailMergeDataType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MailMergeDest\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"newDocument\"/>\n      <xsd:enumeration value=\"printer\"/>\n      <xsd:enumeration value=\"email\"/>\n      <xsd:enumeration value=\"fax\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MailMergeDest\">\n    <xsd:attribute name=\"val\" type=\"ST_MailMergeDest\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MailMergeOdsoFMDFieldType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"null\"/>\n      <xsd:enumeration value=\"dbColumn\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MailMergeOdsoFMDFieldType\">\n    <xsd:attribute name=\"val\" type=\"ST_MailMergeOdsoFMDFieldType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrackChangesView\">\n    <xsd:attribute name=\"markup\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"comments\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"insDel\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"formatting\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"inkAnnotations\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Kinsoku\">\n    <xsd:attribute name=\"lang\" type=\"s:ST_Lang\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextDirection\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"tb\"/>\n      <xsd:enumeration value=\"rl\"/>\n      <xsd:enumeration value=\"lr\"/>\n      <xsd:enumeration value=\"tbV\"/>\n      <xsd:enumeration value=\"rlV\"/>\n      <xsd:enumeration value=\"lrV\"/>\n      <xsd:enumeration value=\"btLr\"/>\n      <xsd:enumeration value=\"lrTb\"/>\n      <xsd:enumeration value=\"lrTbV\"/>\n      <xsd:enumeration value=\"tbLrV\"/>\n      <xsd:enumeration value=\"tbRl\"/>\n      <xsd:enumeration value=\"tbRlV\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextDirection\">\n    <xsd:attribute name=\"val\" type=\"ST_TextDirection\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextAlignment\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"baseline\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextAlignment\">\n    <xsd:attribute name=\"val\" type=\"ST_TextAlignment\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DisplacedByCustomXml\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"next\"/>\n      <xsd:enumeration value=\"prev\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AnnotationVMerge\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"cont\"/>\n      <xsd:enumeration value=\"rest\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Markup\">\n    <xsd:attribute name=\"id\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrackChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Markup\">\n        <xsd:attribute name=\"author\" type=\"s:ST_String\" use=\"required\"/>\n        <xsd:attribute name=\"date\" type=\"ST_DateTime\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellMergeTrackChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:attribute name=\"vMerge\" type=\"ST_AnnotationVMerge\" use=\"optional\"/>\n        <xsd:attribute name=\"vMergeOrig\" type=\"ST_AnnotationVMerge\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrackChangeRange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:attribute name=\"displacedByCustomXml\" type=\"ST_DisplacedByCustomXml\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MarkupRange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Markup\">\n        <xsd:attribute name=\"displacedByCustomXml\" type=\"ST_DisplacedByCustomXml\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BookmarkRange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_MarkupRange\">\n        <xsd:attribute name=\"colFirst\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n        <xsd:attribute name=\"colLast\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Bookmark\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_BookmarkRange\">\n        <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MoveBookmark\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Bookmark\">\n        <xsd:attribute name=\"author\" type=\"s:ST_String\" use=\"required\"/>\n        <xsd:attribute name=\"date\" type=\"ST_DateTime\" use=\"required\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Comment\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:group ref=\"EG_BlockLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n        </xsd:sequence>\n        <xsd:attribute name=\"initials\" type=\"s:ST_String\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrackChangeNumbering\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:attribute name=\"original\" type=\"s:ST_String\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPrExChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"tblPrEx\" type=\"CT_TblPrExBase\" minOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TcPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"tcPr\" type=\"CT_TcPrInner\" minOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"trPr\" type=\"CT_TrPrBase\" minOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblGridChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Markup\">\n        <xsd:sequence>\n          <xsd:element name=\"tblGrid\" type=\"CT_TblGridBase\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"tblPr\" type=\"CT_TblPrBase\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SectPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"sectPr\" type=\"CT_SectPrBase\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"pPr\" type=\"CT_PPrBase\" minOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"rPr\" type=\"CT_RPrOriginal\" minOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ParaRPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"rPr\" type=\"CT_ParaRPrOriginal\" minOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RunTrackChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n          <xsd:group ref=\"EG_ContentRunContent\"/>\n          <xsd:group ref=\"m:EG_OMathMathElements\"/>\n        </xsd:choice>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:group name=\"EG_PContentMath\">\n    <xsd:choice>\n      <xsd:group ref=\"EG_PContentBase\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:group ref=\"EG_ContentRunContentBase\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_PContentBase\">\n    <xsd:choice>\n      <xsd:element name=\"customXml\" type=\"CT_CustomXmlRun\"/>\n      <xsd:element name=\"fldSimple\" type=\"CT_SimpleField\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"hyperlink\" type=\"CT_Hyperlink\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_ContentRunContentBase\">\n    <xsd:choice>\n      <xsd:element name=\"smartTag\" type=\"CT_SmartTagRun\"/>\n      <xsd:element name=\"sdt\" type=\"CT_SdtRun\"/>\n      <xsd:group ref=\"EG_RunLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_CellMarkupElements\">\n    <xsd:choice>\n      <xsd:element name=\"cellIns\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"cellDel\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"cellMerge\" type=\"CT_CellMergeTrackChange\" minOccurs=\"0\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_RangeMarkupElements\">\n    <xsd:choice>\n      <xsd:element name=\"bookmarkStart\" type=\"CT_Bookmark\"/>\n      <xsd:element name=\"bookmarkEnd\" type=\"CT_MarkupRange\"/>\n      <xsd:element name=\"moveFromRangeStart\" type=\"CT_MoveBookmark\"/>\n      <xsd:element name=\"moveFromRangeEnd\" type=\"CT_MarkupRange\"/>\n      <xsd:element name=\"moveToRangeStart\" type=\"CT_MoveBookmark\"/>\n      <xsd:element name=\"moveToRangeEnd\" type=\"CT_MarkupRange\"/>\n      <xsd:element name=\"commentRangeStart\" type=\"CT_MarkupRange\"/>\n      <xsd:element name=\"commentRangeEnd\" type=\"CT_MarkupRange\"/>\n      <xsd:element name=\"customXmlInsRangeStart\" type=\"CT_TrackChange\"/>\n      <xsd:element name=\"customXmlInsRangeEnd\" type=\"CT_Markup\"/>\n      <xsd:element name=\"customXmlDelRangeStart\" type=\"CT_TrackChange\"/>\n      <xsd:element name=\"customXmlDelRangeEnd\" type=\"CT_Markup\"/>\n      <xsd:element name=\"customXmlMoveFromRangeStart\" type=\"CT_TrackChange\"/>\n      <xsd:element name=\"customXmlMoveFromRangeEnd\" type=\"CT_Markup\"/>\n      <xsd:element name=\"customXmlMoveToRangeStart\" type=\"CT_TrackChange\"/>\n      <xsd:element name=\"customXmlMoveToRangeEnd\" type=\"CT_Markup\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_NumPr\">\n    <xsd:sequence>\n      <xsd:element name=\"ilvl\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"numId\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"numberingChange\" type=\"CT_TrackChangeNumbering\" minOccurs=\"0\"/>\n      <xsd:element name=\"ins\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PBdr\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"left\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"right\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"between\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"bar\" type=\"CT_Border\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Tabs\">\n    <xsd:sequence>\n      <xsd:element name=\"tab\" type=\"CT_TabStop\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextboxTightWrap\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"allLines\"/>\n      <xsd:enumeration value=\"firstAndLastLine\"/>\n      <xsd:enumeration value=\"firstLineOnly\"/>\n      <xsd:enumeration value=\"lastLineOnly\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextboxTightWrap\">\n    <xsd:attribute name=\"val\" type=\"ST_TextboxTightWrap\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PPrBase\">\n    <xsd:sequence>\n      <xsd:element name=\"pStyle\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"keepNext\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"keepLines\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"pageBreakBefore\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"framePr\" type=\"CT_FramePr\" minOccurs=\"0\"/>\n      <xsd:element name=\"widowControl\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"numPr\" type=\"CT_NumPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressLineNumbers\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"pBdr\" type=\"CT_PBdr\" minOccurs=\"0\"/>\n      <xsd:element name=\"shd\" type=\"CT_Shd\" minOccurs=\"0\"/>\n      <xsd:element name=\"tabs\" type=\"CT_Tabs\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressAutoHyphens\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"kinsoku\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"wordWrap\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"overflowPunct\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"topLinePunct\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"autoSpaceDE\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"autoSpaceDN\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bidi\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"adjustRightInd\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"snapToGrid\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"spacing\" type=\"CT_Spacing\" minOccurs=\"0\"/>\n      <xsd:element name=\"ind\" type=\"CT_Ind\" minOccurs=\"0\"/>\n      <xsd:element name=\"contextualSpacing\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"mirrorIndents\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressOverlap\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"jc\" type=\"CT_Jc\" minOccurs=\"0\"/>\n      <xsd:element name=\"textDirection\" type=\"CT_TextDirection\" minOccurs=\"0\"/>\n      <xsd:element name=\"textAlignment\" type=\"CT_TextAlignment\" minOccurs=\"0\"/>\n      <xsd:element name=\"textboxTightWrap\" type=\"CT_TextboxTightWrap\" minOccurs=\"0\"/>\n      <xsd:element name=\"outlineLvl\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"divId\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"cnfStyle\" type=\"CT_Cnf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PPr\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_PPrBase\">\n        <xsd:sequence>\n          <xsd:element name=\"rPr\" type=\"CT_ParaRPr\" minOccurs=\"0\"/>\n          <xsd:element name=\"sectPr\" type=\"CT_SectPr\" minOccurs=\"0\"/>\n          <xsd:element name=\"pPrChange\" type=\"CT_PPrChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PPrGeneral\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_PPrBase\">\n        <xsd:sequence>\n          <xsd:element name=\"pPrChange\" type=\"CT_PPrChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Control\">\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"shapeid\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Background\">\n    <xsd:sequence>\n      <xsd:sequence maxOccurs=\"unbounded\">\n        <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:vml\" minOccurs=\"0\"\n          maxOccurs=\"unbounded\"/>\n        <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:office:office\"\n          minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      </xsd:sequence>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"color\" type=\"ST_HexColor\" use=\"optional\" default=\"auto\"/>\n    <xsd:attribute name=\"themeColor\" type=\"ST_ThemeColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeTint\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"themeShade\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rel\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Object\">\n    <xsd:sequence>\n      <xsd:sequence maxOccurs=\"unbounded\">\n        <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:vml\" minOccurs=\"0\"\n          maxOccurs=\"unbounded\"/>\n        <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:office:office\"\n          minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      </xsd:sequence>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\" minOccurs=\"0\"/>\n      <xsd:choice minOccurs=\"0\">\n        <xsd:element name=\"control\" type=\"CT_Control\"/>\n        <xsd:element name=\"objectLink\" type=\"CT_ObjectLink\"/>\n        <xsd:element name=\"objectEmbed\" type=\"CT_ObjectEmbed\"/>\n        <xsd:element name=\"movie\" type=\"CT_Rel\"/>\n      </xsd:choice>\n    </xsd:sequence>\n    <xsd:attribute name=\"dxaOrig\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"dyaOrig\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Picture\">\n    <xsd:sequence>\n      <xsd:sequence maxOccurs=\"unbounded\">\n        <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:vml\" minOccurs=\"0\"\n          maxOccurs=\"unbounded\"/>\n        <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:office:office\"\n          minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      </xsd:sequence>\n      <xsd:element name=\"movie\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"control\" type=\"CT_Control\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ObjectEmbed\">\n    <xsd:attribute name=\"drawAspect\" type=\"ST_ObjectDrawAspect\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n    <xsd:attribute name=\"progId\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"shapeId\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"fieldCodes\" type=\"s:ST_String\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ObjectDrawAspect\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"content\"/>\n      <xsd:enumeration value=\"icon\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ObjectLink\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_ObjectEmbed\">\n        <xsd:attribute name=\"updateMode\" type=\"ST_ObjectUpdateMode\" use=\"required\"/>\n        <xsd:attribute name=\"lockedField\" type=\"s:ST_OnOff\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ObjectUpdateMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"always\"/>\n      <xsd:enumeration value=\"onCall\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Drawing\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element ref=\"wp:anchor\" minOccurs=\"0\"/>\n      <xsd:element ref=\"wp:inline\" minOccurs=\"0\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SimpleField\">\n    <xsd:sequence>\n      <xsd:element name=\"fldData\" type=\"CT_Text\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"instr\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"fldLock\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"dirty\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FldCharType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"begin\"/>\n      <xsd:enumeration value=\"separate\"/>\n      <xsd:enumeration value=\"end\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_InfoTextType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"autoText\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FFHelpTextVal\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:maxLength value=\"256\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FFStatusTextVal\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:maxLength value=\"140\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FFName\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:maxLength value=\"65\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FFTextType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"regular\"/>\n      <xsd:enumeration value=\"number\"/>\n      <xsd:enumeration value=\"date\"/>\n      <xsd:enumeration value=\"currentTime\"/>\n      <xsd:enumeration value=\"currentDate\"/>\n      <xsd:enumeration value=\"calculated\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FFTextType\">\n    <xsd:attribute name=\"val\" type=\"ST_FFTextType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFName\">\n    <xsd:attribute name=\"val\" type=\"ST_FFName\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FldChar\">\n    <xsd:choice>\n      <xsd:element name=\"fldData\" type=\"CT_Text\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ffData\" type=\"CT_FFData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"numberingChange\" type=\"CT_TrackChangeNumbering\" minOccurs=\"0\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"fldCharType\" type=\"ST_FldCharType\" use=\"required\"/>\n    <xsd:attribute name=\"fldLock\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"dirty\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Hyperlink\">\n    <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    <xsd:attribute name=\"tgtFrame\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"tooltip\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"docLocation\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"history\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"anchor\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFData\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"name\" type=\"CT_FFName\"/>\n      <xsd:element name=\"label\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"tabIndex\" type=\"CT_UnsignedDecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"enabled\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"calcOnExit\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"entryMacro\" type=\"CT_MacroName\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"exitMacro\" type=\"CT_MacroName\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"helpText\" type=\"CT_FFHelpText\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"statusText\" type=\"CT_FFStatusText\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:choice>\n        <xsd:element name=\"checkBox\" type=\"CT_FFCheckBox\"/>\n        <xsd:element name=\"ddList\" type=\"CT_FFDDList\"/>\n        <xsd:element name=\"textInput\" type=\"CT_FFTextInput\"/>\n      </xsd:choice>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFHelpText\">\n    <xsd:attribute name=\"type\" type=\"ST_InfoTextType\"/>\n    <xsd:attribute name=\"val\" type=\"ST_FFHelpTextVal\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFStatusText\">\n    <xsd:attribute name=\"type\" type=\"ST_InfoTextType\"/>\n    <xsd:attribute name=\"val\" type=\"ST_FFStatusTextVal\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFCheckBox\">\n    <xsd:sequence>\n      <xsd:choice>\n        <xsd:element name=\"size\" type=\"CT_HpsMeasure\"/>\n        <xsd:element name=\"sizeAuto\" type=\"CT_OnOff\"/>\n      </xsd:choice>\n      <xsd:element name=\"default\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"checked\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFDDList\">\n    <xsd:sequence>\n      <xsd:element name=\"result\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"default\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"listEntry\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFTextInput\">\n    <xsd:sequence>\n      <xsd:element name=\"type\" type=\"CT_FFTextType\" minOccurs=\"0\"/>\n      <xsd:element name=\"default\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"maxLength\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"format\" type=\"CT_String\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SectionMark\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"nextPage\"/>\n      <xsd:enumeration value=\"nextColumn\"/>\n      <xsd:enumeration value=\"continuous\"/>\n      <xsd:enumeration value=\"evenPage\"/>\n      <xsd:enumeration value=\"oddPage\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SectType\">\n    <xsd:attribute name=\"val\" type=\"ST_SectionMark\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PaperSource\">\n    <xsd:attribute name=\"first\" type=\"ST_DecimalNumber\"/>\n    <xsd:attribute name=\"other\" type=\"ST_DecimalNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_NumberFormat\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"decimal\"/>\n      <xsd:enumeration value=\"upperRoman\"/>\n      <xsd:enumeration value=\"lowerRoman\"/>\n      <xsd:enumeration value=\"upperLetter\"/>\n      <xsd:enumeration value=\"lowerLetter\"/>\n      <xsd:enumeration value=\"ordinal\"/>\n      <xsd:enumeration value=\"cardinalText\"/>\n      <xsd:enumeration value=\"ordinalText\"/>\n      <xsd:enumeration value=\"hex\"/>\n      <xsd:enumeration value=\"chicago\"/>\n      <xsd:enumeration value=\"ideographDigital\"/>\n      <xsd:enumeration value=\"japaneseCounting\"/>\n      <xsd:enumeration value=\"aiueo\"/>\n      <xsd:enumeration value=\"iroha\"/>\n      <xsd:enumeration value=\"decimalFullWidth\"/>\n      <xsd:enumeration value=\"decimalHalfWidth\"/>\n      <xsd:enumeration value=\"japaneseLegal\"/>\n      <xsd:enumeration value=\"japaneseDigitalTenThousand\"/>\n      <xsd:enumeration value=\"decimalEnclosedCircle\"/>\n      <xsd:enumeration value=\"decimalFullWidth2\"/>\n      <xsd:enumeration value=\"aiueoFullWidth\"/>\n      <xsd:enumeration value=\"irohaFullWidth\"/>\n      <xsd:enumeration value=\"decimalZero\"/>\n      <xsd:enumeration value=\"bullet\"/>\n      <xsd:enumeration value=\"ganada\"/>\n      <xsd:enumeration value=\"chosung\"/>\n      <xsd:enumeration value=\"decimalEnclosedFullstop\"/>\n      <xsd:enumeration value=\"decimalEnclosedParen\"/>\n      <xsd:enumeration value=\"decimalEnclosedCircleChinese\"/>\n      <xsd:enumeration value=\"ideographEnclosedCircle\"/>\n      <xsd:enumeration value=\"ideographTraditional\"/>\n      <xsd:enumeration value=\"ideographZodiac\"/>\n      <xsd:enumeration value=\"ideographZodiacTraditional\"/>\n      <xsd:enumeration value=\"taiwaneseCounting\"/>\n      <xsd:enumeration value=\"ideographLegalTraditional\"/>\n      <xsd:enumeration value=\"taiwaneseCountingThousand\"/>\n      <xsd:enumeration value=\"taiwaneseDigital\"/>\n      <xsd:enumeration value=\"chineseCounting\"/>\n      <xsd:enumeration value=\"chineseLegalSimplified\"/>\n      <xsd:enumeration value=\"chineseCountingThousand\"/>\n      <xsd:enumeration value=\"koreanDigital\"/>\n      <xsd:enumeration value=\"koreanCounting\"/>\n      <xsd:enumeration value=\"koreanLegal\"/>\n      <xsd:enumeration value=\"koreanDigital2\"/>\n      <xsd:enumeration value=\"vietnameseCounting\"/>\n      <xsd:enumeration value=\"russianLower\"/>\n      <xsd:enumeration value=\"russianUpper\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"numberInDash\"/>\n      <xsd:enumeration value=\"hebrew1\"/>\n      <xsd:enumeration value=\"hebrew2\"/>\n      <xsd:enumeration value=\"arabicAlpha\"/>\n      <xsd:enumeration value=\"arabicAbjad\"/>\n      <xsd:enumeration value=\"hindiVowels\"/>\n      <xsd:enumeration value=\"hindiConsonants\"/>\n      <xsd:enumeration value=\"hindiNumbers\"/>\n      <xsd:enumeration value=\"hindiCounting\"/>\n      <xsd:enumeration value=\"thaiLetters\"/>\n      <xsd:enumeration value=\"thaiNumbers\"/>\n      <xsd:enumeration value=\"thaiCounting\"/>\n      <xsd:enumeration value=\"bahtText\"/>\n      <xsd:enumeration value=\"dollarText\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PageOrientation\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"portrait\"/>\n      <xsd:enumeration value=\"landscape\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PageSz\">\n    <xsd:attribute name=\"w\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"h\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"orient\" type=\"ST_PageOrientation\" use=\"optional\"/>\n    <xsd:attribute name=\"code\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageMar\">\n    <xsd:attribute name=\"top\" type=\"ST_SignedTwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"right\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"bottom\" type=\"ST_SignedTwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"left\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"header\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"footer\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"gutter\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PageBorderZOrder\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"front\"/>\n      <xsd:enumeration value=\"back\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PageBorderDisplay\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"allPages\"/>\n      <xsd:enumeration value=\"firstPage\"/>\n      <xsd:enumeration value=\"notFirstPage\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PageBorderOffset\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"page\"/>\n      <xsd:enumeration value=\"text\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PageBorders\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_TopPageBorder\" minOccurs=\"0\"/>\n      <xsd:element name=\"left\" type=\"CT_PageBorder\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_BottomPageBorder\" minOccurs=\"0\"/>\n      <xsd:element name=\"right\" type=\"CT_PageBorder\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"zOrder\" type=\"ST_PageBorderZOrder\" use=\"optional\" default=\"front\"/>\n    <xsd:attribute name=\"display\" type=\"ST_PageBorderDisplay\" use=\"optional\"/>\n    <xsd:attribute name=\"offsetFrom\" type=\"ST_PageBorderOffset\" use=\"optional\" default=\"text\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageBorder\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Border\">\n        <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BottomPageBorder\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_PageBorder\">\n        <xsd:attribute ref=\"r:bottomLeft\" use=\"optional\"/>\n        <xsd:attribute ref=\"r:bottomRight\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TopPageBorder\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_PageBorder\">\n        <xsd:attribute ref=\"r:topLeft\" use=\"optional\"/>\n        <xsd:attribute ref=\"r:topRight\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ChapterSep\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"hyphen\"/>\n      <xsd:enumeration value=\"period\"/>\n      <xsd:enumeration value=\"colon\"/>\n      <xsd:enumeration value=\"emDash\"/>\n      <xsd:enumeration value=\"enDash\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LineNumberRestart\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"newPage\"/>\n      <xsd:enumeration value=\"newSection\"/>\n      <xsd:enumeration value=\"continuous\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LineNumber\">\n    <xsd:attribute name=\"countBy\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"start\" type=\"ST_DecimalNumber\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"distance\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"restart\" type=\"ST_LineNumberRestart\" use=\"optional\" default=\"newPage\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageNumber\">\n    <xsd:attribute name=\"fmt\" type=\"ST_NumberFormat\" use=\"optional\" default=\"decimal\"/>\n    <xsd:attribute name=\"start\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"chapStyle\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"chapSep\" type=\"ST_ChapterSep\" use=\"optional\" default=\"hyphen\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Column\">\n    <xsd:attribute name=\"w\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"space\" type=\"s:ST_TwipsMeasure\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Columns\">\n    <xsd:sequence minOccurs=\"0\">\n      <xsd:element name=\"col\" type=\"CT_Column\" maxOccurs=\"45\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"equalWidth\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"space\" type=\"s:ST_TwipsMeasure\" use=\"optional\" default=\"720\"/>\n    <xsd:attribute name=\"num\" type=\"ST_DecimalNumber\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"sep\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_VerticalJc\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"both\"/>\n      <xsd:enumeration value=\"bottom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_VerticalJc\">\n    <xsd:attribute name=\"val\" type=\"ST_VerticalJc\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DocGrid\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"lines\"/>\n      <xsd:enumeration value=\"linesAndChars\"/>\n      <xsd:enumeration value=\"snapToChars\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DocGrid\">\n    <xsd:attribute name=\"type\" type=\"ST_DocGrid\"/>\n    <xsd:attribute name=\"linePitch\" type=\"ST_DecimalNumber\"/>\n    <xsd:attribute name=\"charSpace\" type=\"ST_DecimalNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HdrFtr\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"even\"/>\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"first\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FtnEdn\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"separator\"/>\n      <xsd:enumeration value=\"continuationSeparator\"/>\n      <xsd:enumeration value=\"continuationNotice\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_HdrFtrRef\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Rel\">\n        <xsd:attribute name=\"type\" type=\"ST_HdrFtr\" use=\"required\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:group name=\"EG_HdrFtrReferences\">\n    <xsd:choice>\n      <xsd:element name=\"headerReference\" type=\"CT_HdrFtrRef\" minOccurs=\"0\"/>\n      <xsd:element name=\"footerReference\" type=\"CT_HdrFtrRef\" minOccurs=\"0\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_HdrFtr\">\n    <xsd:group ref=\"EG_BlockLevelElts\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_SectPrContents\">\n    <xsd:sequence>\n      <xsd:element name=\"footnotePr\" type=\"CT_FtnProps\" minOccurs=\"0\"/>\n      <xsd:element name=\"endnotePr\" type=\"CT_EdnProps\" minOccurs=\"0\"/>\n      <xsd:element name=\"type\" type=\"CT_SectType\" minOccurs=\"0\"/>\n      <xsd:element name=\"pgSz\" type=\"CT_PageSz\" minOccurs=\"0\"/>\n      <xsd:element name=\"pgMar\" type=\"CT_PageMar\" minOccurs=\"0\"/>\n      <xsd:element name=\"paperSrc\" type=\"CT_PaperSource\" minOccurs=\"0\"/>\n      <xsd:element name=\"pgBorders\" type=\"CT_PageBorders\" minOccurs=\"0\"/>\n      <xsd:element name=\"lnNumType\" type=\"CT_LineNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"pgNumType\" type=\"CT_PageNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"cols\" type=\"CT_Columns\" minOccurs=\"0\"/>\n      <xsd:element name=\"formProt\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"vAlign\" type=\"CT_VerticalJc\" minOccurs=\"0\"/>\n      <xsd:element name=\"noEndnote\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"titlePg\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"textDirection\" type=\"CT_TextDirection\" minOccurs=\"0\"/>\n      <xsd:element name=\"bidi\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"rtlGutter\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"docGrid\" type=\"CT_DocGrid\" minOccurs=\"0\"/>\n      <xsd:element name=\"printerSettings\" type=\"CT_Rel\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:attributeGroup name=\"AG_SectPrAttributes\">\n    <xsd:attribute name=\"rsidRPr\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidDel\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidR\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidSect\" type=\"ST_LongHexNumber\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_SectPrBase\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SectPrContents\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_SectPrAttributes\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SectPr\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_HdrFtrReferences\" minOccurs=\"0\" maxOccurs=\"6\"/>\n      <xsd:group ref=\"EG_SectPrContents\" minOccurs=\"0\"/>\n      <xsd:element name=\"sectPrChange\" type=\"CT_SectPrChange\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_SectPrAttributes\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BrType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"page\"/>\n      <xsd:enumeration value=\"column\"/>\n      <xsd:enumeration value=\"textWrapping\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BrClear\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"all\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Br\">\n    <xsd:attribute name=\"type\" type=\"ST_BrType\" use=\"optional\"/>\n    <xsd:attribute name=\"clear\" type=\"ST_BrClear\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PTabAlignment\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"right\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PTabRelativeTo\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"indent\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PTabLeader\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"dot\"/>\n      <xsd:enumeration value=\"hyphen\"/>\n      <xsd:enumeration value=\"underscore\"/>\n      <xsd:enumeration value=\"middleDot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PTab\">\n    <xsd:attribute name=\"alignment\" type=\"ST_PTabAlignment\" use=\"required\"/>\n    <xsd:attribute name=\"relativeTo\" type=\"ST_PTabRelativeTo\" use=\"required\"/>\n    <xsd:attribute name=\"leader\" type=\"ST_PTabLeader\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Sym\">\n    <xsd:attribute name=\"font\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"char\" type=\"ST_ShortHexNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ProofErr\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"spellStart\"/>\n      <xsd:enumeration value=\"spellEnd\"/>\n      <xsd:enumeration value=\"gramStart\"/>\n      <xsd:enumeration value=\"gramEnd\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ProofErr\">\n    <xsd:attribute name=\"type\" type=\"ST_ProofErr\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_EdGrp\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"everyone\"/>\n      <xsd:enumeration value=\"administrators\"/>\n      <xsd:enumeration value=\"contributors\"/>\n      <xsd:enumeration value=\"editors\"/>\n      <xsd:enumeration value=\"owners\"/>\n      <xsd:enumeration value=\"current\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Perm\">\n    <xsd:attribute name=\"id\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"displacedByCustomXml\" type=\"ST_DisplacedByCustomXml\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PermStart\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Perm\">\n        <xsd:attribute name=\"edGrp\" type=\"ST_EdGrp\" use=\"optional\"/>\n        <xsd:attribute name=\"ed\" type=\"s:ST_String\" use=\"optional\"/>\n        <xsd:attribute name=\"colFirst\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n        <xsd:attribute name=\"colLast\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Text\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"s:ST_String\">\n        <xsd:attribute ref=\"xml:space\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n  <xsd:group name=\"EG_RunInnerContent\">\n    <xsd:choice>\n      <xsd:element name=\"br\" type=\"CT_Br\"/>\n      <xsd:element name=\"t\" type=\"CT_Text\"/>\n      <xsd:element name=\"contentPart\" type=\"CT_Rel\"/>\n      <xsd:element name=\"delText\" type=\"CT_Text\"/>\n      <xsd:element name=\"instrText\" type=\"CT_Text\"/>\n      <xsd:element name=\"delInstrText\" type=\"CT_Text\"/>\n      <xsd:element name=\"noBreakHyphen\" type=\"CT_Empty\"/>\n      <xsd:element name=\"softHyphen\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"dayShort\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"monthShort\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"yearShort\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"dayLong\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"monthLong\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"yearLong\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"annotationRef\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"footnoteRef\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"endnoteRef\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"separator\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"continuationSeparator\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"sym\" type=\"CT_Sym\" minOccurs=\"0\"/>\n      <xsd:element name=\"pgNum\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"cr\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"tab\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"object\" type=\"CT_Object\"/>\n      <xsd:element name=\"pict\" type=\"CT_Picture\"/>\n      <xsd:element name=\"fldChar\" type=\"CT_FldChar\"/>\n      <xsd:element name=\"ruby\" type=\"CT_Ruby\"/>\n      <xsd:element name=\"footnoteReference\" type=\"CT_FtnEdnRef\"/>\n      <xsd:element name=\"endnoteReference\" type=\"CT_FtnEdnRef\"/>\n      <xsd:element name=\"commentReference\" type=\"CT_Markup\"/>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\"/>\n      <xsd:element name=\"ptab\" type=\"CT_PTab\" minOccurs=\"0\"/>\n      <xsd:element name=\"lastRenderedPageBreak\" type=\"CT_Empty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_R\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_RPr\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_RunInnerContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rsidRPr\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidDel\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidR\" type=\"ST_LongHexNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Hint\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"eastAsia\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Theme\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"majorEastAsia\"/>\n      <xsd:enumeration value=\"majorBidi\"/>\n      <xsd:enumeration value=\"majorAscii\"/>\n      <xsd:enumeration value=\"majorHAnsi\"/>\n      <xsd:enumeration value=\"minorEastAsia\"/>\n      <xsd:enumeration value=\"minorBidi\"/>\n      <xsd:enumeration value=\"minorAscii\"/>\n      <xsd:enumeration value=\"minorHAnsi\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Fonts\">\n    <xsd:attribute name=\"hint\" type=\"ST_Hint\"/>\n    <xsd:attribute name=\"ascii\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"hAnsi\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"eastAsia\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"cs\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"asciiTheme\" type=\"ST_Theme\"/>\n    <xsd:attribute name=\"hAnsiTheme\" type=\"ST_Theme\"/>\n    <xsd:attribute name=\"eastAsiaTheme\" type=\"ST_Theme\"/>\n    <xsd:attribute name=\"cstheme\" type=\"ST_Theme\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_RPrBase\">\n    <xsd:choice>\n      <xsd:element name=\"rStyle\" type=\"CT_String\"/>\n      <xsd:element name=\"rFonts\" type=\"CT_Fonts\"/>\n      <xsd:element name=\"b\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"bCs\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"i\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"iCs\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"caps\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"smallCaps\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"strike\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"dstrike\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"outline\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"shadow\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"emboss\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"imprint\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"noProof\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"snapToGrid\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"vanish\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"webHidden\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"color\" type=\"CT_Color\"/>\n      <xsd:element name=\"spacing\" type=\"CT_SignedTwipsMeasure\"/>\n      <xsd:element name=\"w\" type=\"CT_TextScale\"/>\n      <xsd:element name=\"kern\" type=\"CT_HpsMeasure\"/>\n      <xsd:element name=\"position\" type=\"CT_SignedHpsMeasure\"/>\n      <xsd:element name=\"sz\" type=\"CT_HpsMeasure\"/>\n      <xsd:element name=\"szCs\" type=\"CT_HpsMeasure\"/>\n      <xsd:element name=\"highlight\" type=\"CT_Highlight\"/>\n      <xsd:element name=\"u\" type=\"CT_Underline\"/>\n      <xsd:element name=\"effect\" type=\"CT_TextEffect\"/>\n      <xsd:element name=\"bdr\" type=\"CT_Border\"/>\n      <xsd:element name=\"shd\" type=\"CT_Shd\"/>\n      <xsd:element name=\"fitText\" type=\"CT_FitText\"/>\n      <xsd:element name=\"vertAlign\" type=\"CT_VerticalAlignRun\"/>\n      <xsd:element name=\"rtl\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"cs\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"em\" type=\"CT_Em\"/>\n      <xsd:element name=\"lang\" type=\"CT_Language\"/>\n      <xsd:element name=\"eastAsianLayout\" type=\"CT_EastAsianLayout\"/>\n      <xsd:element name=\"specVanish\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"oMath\" type=\"CT_OnOff\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_RPrContent\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_RPrBase\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rPrChange\" type=\"CT_RPrChange\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_RPr\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_RPrContent\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_RPr\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:group name=\"EG_RPrMath\">\n    <xsd:choice>\n      <xsd:group ref=\"EG_RPr\"/>\n      <xsd:element name=\"ins\" type=\"CT_MathCtrlIns\"/>\n      <xsd:element name=\"del\" type=\"CT_MathCtrlDel\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_MathCtrlIns\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:choice minOccurs=\"0\">\n          <xsd:element name=\"del\" type=\"CT_RPrChange\" minOccurs=\"1\"/>\n          <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"1\"/>\n        </xsd:choice>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MathCtrlDel\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:choice minOccurs=\"0\">\n          <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"1\"/>\n        </xsd:choice>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RPrOriginal\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_RPrBase\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ParaRPrOriginal\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ParaRPrTrackChanges\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_RPrBase\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ParaRPr\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ParaRPrTrackChanges\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_RPrBase\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rPrChange\" type=\"CT_ParaRPrChange\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ParaRPrTrackChanges\">\n    <xsd:sequence>\n      <xsd:element name=\"ins\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"del\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"moveFrom\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"moveTo\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_AltChunk\">\n    <xsd:sequence>\n      <xsd:element name=\"altChunkPr\" type=\"CT_AltChunkPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AltChunkPr\">\n    <xsd:sequence>\n      <xsd:element name=\"matchSrc\" type=\"CT_OnOff\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RubyAlign\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"distributeLetter\"/>\n      <xsd:enumeration value=\"distributeSpace\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"rightVertical\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_RubyAlign\">\n    <xsd:attribute name=\"val\" type=\"ST_RubyAlign\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RubyPr\">\n    <xsd:sequence>\n      <xsd:element name=\"rubyAlign\" type=\"CT_RubyAlign\"/>\n      <xsd:element name=\"hps\" type=\"CT_HpsMeasure\"/>\n      <xsd:element name=\"hpsRaise\" type=\"CT_HpsMeasure\"/>\n      <xsd:element name=\"hpsBaseText\" type=\"CT_HpsMeasure\"/>\n      <xsd:element name=\"lid\" type=\"CT_Lang\"/>\n      <xsd:element name=\"dirty\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_RubyContent\">\n    <xsd:choice>\n      <xsd:element name=\"r\" type=\"CT_R\"/>\n      <xsd:group ref=\"EG_RunLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_RubyContent\">\n    <xsd:group ref=\"EG_RubyContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Ruby\">\n    <xsd:sequence>\n      <xsd:element name=\"rubyPr\" type=\"CT_RubyPr\"/>\n      <xsd:element name=\"rt\" type=\"CT_RubyContent\"/>\n      <xsd:element name=\"rubyBase\" type=\"CT_RubyContent\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Lock\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"sdtLocked\"/>\n      <xsd:enumeration value=\"contentLocked\"/>\n      <xsd:enumeration value=\"unlocked\"/>\n      <xsd:enumeration value=\"sdtContentLocked\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Lock\">\n    <xsd:attribute name=\"val\" type=\"ST_Lock\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtListItem\">\n    <xsd:attribute name=\"displayText\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"value\" type=\"s:ST_String\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SdtDateMappingType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"date\"/>\n      <xsd:enumeration value=\"dateTime\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SdtDateMappingType\">\n    <xsd:attribute name=\"val\" type=\"ST_SdtDateMappingType\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalendarType\">\n    <xsd:attribute name=\"val\" type=\"s:ST_CalendarType\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtDate\">\n    <xsd:sequence>\n      <xsd:element name=\"dateFormat\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"lid\" type=\"CT_Lang\" minOccurs=\"0\"/>\n      <xsd:element name=\"storeMappedDataAs\" type=\"CT_SdtDateMappingType\" minOccurs=\"0\"/>\n      <xsd:element name=\"calendar\" type=\"CT_CalendarType\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"fullDate\" type=\"ST_DateTime\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtComboBox\">\n    <xsd:sequence>\n      <xsd:element name=\"listItem\" type=\"CT_SdtListItem\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"lastValue\" type=\"s:ST_String\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtDocPart\">\n    <xsd:sequence>\n      <xsd:element name=\"docPartGallery\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"docPartCategory\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"docPartUnique\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtDropDownList\">\n    <xsd:sequence>\n      <xsd:element name=\"listItem\" type=\"CT_SdtListItem\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"lastValue\" type=\"s:ST_String\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Placeholder\">\n    <xsd:sequence>\n      <xsd:element name=\"docPart\" type=\"CT_String\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtText\">\n    <xsd:attribute name=\"multiLine\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataBinding\">\n    <xsd:attribute name=\"prefixMappings\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"xpath\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"storeItemID\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtPr\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"alias\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"tag\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"id\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"lock\" type=\"CT_Lock\" minOccurs=\"0\"/>\n      <xsd:element name=\"placeholder\" type=\"CT_Placeholder\" minOccurs=\"0\"/>\n      <xsd:element name=\"temporary\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"showingPlcHdr\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"dataBinding\" type=\"CT_DataBinding\" minOccurs=\"0\"/>\n      <xsd:element name=\"label\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"tabIndex\" type=\"CT_UnsignedDecimalNumber\" minOccurs=\"0\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n        <xsd:element name=\"equation\" type=\"CT_Empty\"/>\n        <xsd:element name=\"comboBox\" type=\"CT_SdtComboBox\"/>\n        <xsd:element name=\"date\" type=\"CT_SdtDate\"/>\n        <xsd:element name=\"docPartObj\" type=\"CT_SdtDocPart\"/>\n        <xsd:element name=\"docPartList\" type=\"CT_SdtDocPart\"/>\n        <xsd:element name=\"dropDownList\" type=\"CT_SdtDropDownList\"/>\n        <xsd:element name=\"picture\" type=\"CT_Empty\"/>\n        <xsd:element name=\"richText\" type=\"CT_Empty\"/>\n        <xsd:element name=\"text\" type=\"CT_SdtText\"/>\n        <xsd:element name=\"citation\" type=\"CT_Empty\"/>\n        <xsd:element name=\"group\" type=\"CT_Empty\"/>\n        <xsd:element name=\"bibliography\" type=\"CT_Empty\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtEndPr\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ContentRunContent\">\n    <xsd:choice>\n      <xsd:element name=\"customXml\" type=\"CT_CustomXmlRun\"/>\n      <xsd:element name=\"smartTag\" type=\"CT_SmartTagRun\"/>\n      <xsd:element name=\"sdt\" type=\"CT_SdtRun\"/>\n      <xsd:element name=\"dir\" type=\"CT_DirContentRun\"/>\n      <xsd:element name=\"bdo\" type=\"CT_BdoContentRun\"/>\n      <xsd:element name=\"r\" type=\"CT_R\"/>\n      <xsd:group ref=\"EG_RunLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_DirContentRun\">\n    <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    <xsd:attribute name=\"val\" type=\"ST_Direction\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BdoContentRun\">\n    <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    <xsd:attribute name=\"val\" type=\"ST_Direction\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Direction\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"ltr\"/>\n      <xsd:enumeration value=\"rtl\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SdtContentRun\">\n    <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ContentBlockContent\">\n    <xsd:choice>\n      <xsd:element name=\"customXml\" type=\"CT_CustomXmlBlock\"/>\n      <xsd:element name=\"sdt\" type=\"CT_SdtBlock\"/>\n      <xsd:element name=\"p\" type=\"CT_P\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"tbl\" type=\"CT_Tbl\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:group ref=\"EG_RunLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_SdtContentBlock\">\n    <xsd:group ref=\"EG_ContentBlockContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ContentRowContent\">\n    <xsd:choice>\n      <xsd:element name=\"tr\" type=\"CT_Row\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"customXml\" type=\"CT_CustomXmlRow\"/>\n      <xsd:element name=\"sdt\" type=\"CT_SdtRow\"/>\n      <xsd:group ref=\"EG_RunLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_SdtContentRow\">\n    <xsd:group ref=\"EG_ContentRowContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ContentCellContent\">\n    <xsd:choice>\n      <xsd:element name=\"tc\" type=\"CT_Tc\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"customXml\" type=\"CT_CustomXmlCell\"/>\n      <xsd:element name=\"sdt\" type=\"CT_SdtCell\"/>\n      <xsd:group ref=\"EG_RunLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_SdtContentCell\">\n    <xsd:group ref=\"EG_ContentCellContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtBlock\">\n    <xsd:sequence>\n      <xsd:element name=\"sdtPr\" type=\"CT_SdtPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtEndPr\" type=\"CT_SdtEndPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtContent\" type=\"CT_SdtContentBlock\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtRun\">\n    <xsd:sequence>\n      <xsd:element name=\"sdtPr\" type=\"CT_SdtPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtEndPr\" type=\"CT_SdtEndPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtContent\" type=\"CT_SdtContentRun\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtCell\">\n    <xsd:sequence>\n      <xsd:element name=\"sdtPr\" type=\"CT_SdtPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtEndPr\" type=\"CT_SdtEndPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtContent\" type=\"CT_SdtContentCell\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtRow\">\n    <xsd:sequence>\n      <xsd:element name=\"sdtPr\" type=\"CT_SdtPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtEndPr\" type=\"CT_SdtEndPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtContent\" type=\"CT_SdtContentRow\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Attr\">\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomXmlRun\">\n    <xsd:sequence>\n      <xsd:element name=\"customXmlPr\" type=\"CT_CustomXmlPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"element\" type=\"s:ST_XmlName\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SmartTagRun\">\n    <xsd:sequence>\n      <xsd:element name=\"smartTagPr\" type=\"CT_SmartTagPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"element\" type=\"s:ST_XmlName\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomXmlBlock\">\n    <xsd:sequence>\n      <xsd:element name=\"customXmlPr\" type=\"CT_CustomXmlPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ContentBlockContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"element\" type=\"s:ST_XmlName\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomXmlPr\">\n    <xsd:sequence>\n      <xsd:element name=\"placeholder\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"attr\" type=\"CT_Attr\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomXmlRow\">\n    <xsd:sequence>\n      <xsd:element name=\"customXmlPr\" type=\"CT_CustomXmlPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ContentRowContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"element\" type=\"s:ST_XmlName\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomXmlCell\">\n    <xsd:sequence>\n      <xsd:element name=\"customXmlPr\" type=\"CT_CustomXmlPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ContentCellContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"element\" type=\"s:ST_XmlName\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SmartTagPr\">\n    <xsd:sequence>\n      <xsd:element name=\"attr\" type=\"CT_Attr\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_PContent\">\n    <xsd:choice>\n      <xsd:group ref=\"EG_ContentRunContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"fldSimple\" type=\"CT_SimpleField\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"hyperlink\" type=\"CT_Hyperlink\"/>\n      <xsd:element name=\"subDoc\" type=\"CT_Rel\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_P\">\n    <xsd:sequence>\n      <xsd:element name=\"pPr\" type=\"CT_PPr\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rsidRPr\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidR\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidDel\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidP\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidRDefault\" type=\"ST_LongHexNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TblWidth\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"nil\"/>\n      <xsd:enumeration value=\"pct\"/>\n      <xsd:enumeration value=\"dxa\"/>\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Height\">\n    <xsd:attribute name=\"val\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"hRule\" type=\"ST_HeightRule\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MeasurementOrPercent\">\n    <xsd:union memberTypes=\"ST_DecimalNumberOrPercent s:ST_UniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TblWidth\">\n    <xsd:attribute name=\"w\" type=\"ST_MeasurementOrPercent\"/>\n    <xsd:attribute name=\"type\" type=\"ST_TblWidth\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblGridCol\">\n    <xsd:attribute name=\"w\" type=\"s:ST_TwipsMeasure\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblGridBase\">\n    <xsd:sequence>\n      <xsd:element name=\"gridCol\" type=\"CT_TblGridCol\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblGrid\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TblGridBase\">\n        <xsd:sequence>\n          <xsd:element name=\"tblGridChange\" type=\"CT_TblGridChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TcBorders\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"start\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"left\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"end\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"right\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"insideH\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"insideV\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"tl2br\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"tr2bl\" type=\"CT_Border\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TcMar\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"start\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"left\" type=\"CT_TblWidth\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"end\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"right\" type=\"CT_TblWidth\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Merge\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"continue\"/>\n      <xsd:enumeration value=\"restart\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_VMerge\">\n    <xsd:attribute name=\"val\" type=\"ST_Merge\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HMerge\">\n    <xsd:attribute name=\"val\" type=\"ST_Merge\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TcPrBase\">\n    <xsd:sequence>\n      <xsd:element name=\"cnfStyle\" type=\"CT_Cnf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tcW\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gridSpan\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"hMerge\" type=\"CT_HMerge\" minOccurs=\"0\"/>\n      <xsd:element name=\"vMerge\" type=\"CT_VMerge\" minOccurs=\"0\"/>\n      <xsd:element name=\"tcBorders\" type=\"CT_TcBorders\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shd\" type=\"CT_Shd\" minOccurs=\"0\"/>\n      <xsd:element name=\"noWrap\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"tcMar\" type=\"CT_TcMar\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"textDirection\" type=\"CT_TextDirection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tcFitText\" type=\"CT_OnOff\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"vAlign\" type=\"CT_VerticalJc\" minOccurs=\"0\"/>\n      <xsd:element name=\"hideMark\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"headers\" type=\"CT_Headers\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TcPr\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TcPrInner\">\n        <xsd:sequence>\n          <xsd:element name=\"tcPrChange\" type=\"CT_TcPrChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TcPrInner\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TcPrBase\">\n        <xsd:sequence>\n          <xsd:group ref=\"EG_CellMarkupElements\" minOccurs=\"0\" maxOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Tc\">\n    <xsd:sequence>\n      <xsd:element name=\"tcPr\" type=\"CT_TcPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_BlockLevelElts\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"s:ST_String\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Cnf\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:length value=\"12\"/>\n      <xsd:pattern value=\"[01]*\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Cnf\">\n    <xsd:attribute name=\"val\" type=\"ST_Cnf\"/>\n    <xsd:attribute name=\"firstRow\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"lastRow\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"firstColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"lastColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"oddVBand\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"evenVBand\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"oddHBand\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"evenHBand\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"firstRowFirstColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"firstRowLastColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"lastRowFirstColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"lastRowLastColumn\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Headers\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"header\" type=\"CT_String\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrPrBase\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"cnfStyle\" type=\"CT_Cnf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"divId\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"gridBefore\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"gridAfter\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"wBefore\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"wAfter\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cantSplit\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"trHeight\" type=\"CT_Height\" minOccurs=\"0\"/>\n      <xsd:element name=\"tblHeader\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"tblCellSpacing\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"jc\" type=\"CT_JcTable\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hidden\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrPr\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrPrBase\">\n        <xsd:sequence>\n          <xsd:element name=\"ins\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n          <xsd:element name=\"del\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n          <xsd:element name=\"trPrChange\" type=\"CT_TrPrChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Row\">\n    <xsd:sequence>\n      <xsd:element name=\"tblPrEx\" type=\"CT_TblPrEx\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trPr\" type=\"CT_TrPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ContentCellContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rsidRPr\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidR\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidDel\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidTr\" type=\"ST_LongHexNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TblLayoutType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"fixed\"/>\n      <xsd:enumeration value=\"autofit\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TblLayoutType\">\n    <xsd:attribute name=\"type\" type=\"ST_TblLayoutType\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TblOverlap\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"never\"/>\n      <xsd:enumeration value=\"overlap\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TblOverlap\">\n    <xsd:attribute name=\"val\" type=\"ST_TblOverlap\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPPr\">\n    <xsd:attribute name=\"leftFromText\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"rightFromText\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"topFromText\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"bottomFromText\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"vertAnchor\" type=\"ST_VAnchor\"/>\n    <xsd:attribute name=\"horzAnchor\" type=\"ST_HAnchor\"/>\n    <xsd:attribute name=\"tblpXSpec\" type=\"s:ST_XAlign\"/>\n    <xsd:attribute name=\"tblpX\" type=\"ST_SignedTwipsMeasure\"/>\n    <xsd:attribute name=\"tblpYSpec\" type=\"s:ST_YAlign\"/>\n    <xsd:attribute name=\"tblpY\" type=\"ST_SignedTwipsMeasure\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblCellMar\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"start\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"left\" type=\"CT_TblWidth\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"end\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"right\" type=\"CT_TblWidth\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblBorders\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"start\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"left\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"end\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"right\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"insideH\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"insideV\" type=\"CT_Border\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPrBase\">\n    <xsd:sequence>\n      <xsd:element name=\"tblStyle\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"tblpPr\" type=\"CT_TblPPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblOverlap\" type=\"CT_TblOverlap\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bidiVisual\" type=\"CT_OnOff\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblStyleRowBandSize\" type=\"CT_DecimalNumber\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblStyleColBandSize\" type=\"CT_DecimalNumber\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblW\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"jc\" type=\"CT_JcTable\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblCellSpacing\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblInd\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblBorders\" type=\"CT_TblBorders\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shd\" type=\"CT_Shd\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblLayout\" type=\"CT_TblLayoutType\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblCellMar\" type=\"CT_TblCellMar\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblLook\" type=\"CT_TblLook\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblCaption\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblDescription\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPr\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TblPrBase\">\n        <xsd:sequence>\n          <xsd:element name=\"tblPrChange\" type=\"CT_TblPrChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPrExBase\">\n    <xsd:sequence>\n      <xsd:element name=\"tblW\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"jc\" type=\"CT_JcTable\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblCellSpacing\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblInd\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblBorders\" type=\"CT_TblBorders\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shd\" type=\"CT_Shd\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblLayout\" type=\"CT_TblLayoutType\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblCellMar\" type=\"CT_TblCellMar\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblLook\" type=\"CT_TblLook\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPrEx\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TblPrExBase\">\n        <xsd:sequence>\n          <xsd:element name=\"tblPrExChange\" type=\"CT_TblPrExChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Tbl\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_RangeMarkupElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"tblPr\" type=\"CT_TblPr\"/>\n      <xsd:element name=\"tblGrid\" type=\"CT_TblGrid\"/>\n      <xsd:group ref=\"EG_ContentRowContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblLook\">\n    <xsd:attribute name=\"firstRow\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"lastRow\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"firstColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"lastColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"noHBand\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"noVBand\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"val\" type=\"ST_ShortHexNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FtnPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"pageBottom\"/>\n      <xsd:enumeration value=\"beneathText\"/>\n      <xsd:enumeration value=\"sectEnd\"/>\n      <xsd:enumeration value=\"docEnd\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FtnPos\">\n    <xsd:attribute name=\"val\" type=\"ST_FtnPos\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_EdnPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"sectEnd\"/>\n      <xsd:enumeration value=\"docEnd\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_EdnPos\">\n    <xsd:attribute name=\"val\" type=\"ST_EdnPos\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumFmt\">\n    <xsd:attribute name=\"val\" type=\"ST_NumberFormat\" use=\"required\"/>\n    <xsd:attribute name=\"format\" type=\"s:ST_String\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RestartNumber\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"continuous\"/>\n      <xsd:enumeration value=\"eachSect\"/>\n      <xsd:enumeration value=\"eachPage\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_NumRestart\">\n    <xsd:attribute name=\"val\" type=\"ST_RestartNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FtnEdnRef\">\n    <xsd:attribute name=\"customMarkFollows\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"id\" use=\"required\" type=\"ST_DecimalNumber\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FtnEdnSepRef\">\n    <xsd:attribute name=\"id\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FtnEdn\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_BlockLevelElts\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_FtnEdn\" use=\"optional\"/>\n    <xsd:attribute name=\"id\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_FtnEdnNumProps\">\n    <xsd:sequence>\n      <xsd:element name=\"numStart\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"numRestart\" type=\"CT_NumRestart\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_FtnProps\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"CT_FtnPos\" minOccurs=\"0\"/>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_FtnEdnNumProps\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EdnProps\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"CT_EdnPos\" minOccurs=\"0\"/>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_FtnEdnNumProps\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FtnDocProps\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_FtnProps\">\n        <xsd:sequence>\n          <xsd:element name=\"footnote\" type=\"CT_FtnEdnSepRef\" minOccurs=\"0\" maxOccurs=\"3\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EdnDocProps\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_EdnProps\">\n        <xsd:sequence>\n          <xsd:element name=\"endnote\" type=\"CT_FtnEdnSepRef\" minOccurs=\"0\" maxOccurs=\"3\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RecipientData\">\n    <xsd:sequence>\n      <xsd:element name=\"active\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"column\" type=\"CT_DecimalNumber\" minOccurs=\"1\"/>\n      <xsd:element name=\"uniqueTag\" type=\"CT_Base64Binary\" minOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Base64Binary\">\n    <xsd:attribute name=\"val\" type=\"xsd:base64Binary\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Recipients\">\n    <xsd:sequence>\n      <xsd:element name=\"recipientData\" type=\"CT_RecipientData\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"recipients\" type=\"CT_Recipients\"/>\n  <xsd:complexType name=\"CT_OdsoFieldMapData\">\n    <xsd:sequence>\n      <xsd:element name=\"type\" type=\"CT_MailMergeOdsoFMDFieldType\" minOccurs=\"0\"/>\n      <xsd:element name=\"name\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"mappedName\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"column\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"lid\" type=\"CT_Lang\" minOccurs=\"0\"/>\n      <xsd:element name=\"dynamicAddress\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MailMergeSourceType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"database\"/>\n      <xsd:enumeration value=\"addressBook\"/>\n      <xsd:enumeration value=\"document1\"/>\n      <xsd:enumeration value=\"document2\"/>\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"email\"/>\n      <xsd:enumeration value=\"native\"/>\n      <xsd:enumeration value=\"legacy\"/>\n      <xsd:enumeration value=\"master\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MailMergeSourceType\">\n    <xsd:attribute name=\"val\" use=\"required\" type=\"ST_MailMergeSourceType\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Odso\">\n    <xsd:sequence>\n      <xsd:element name=\"udl\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"table\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"src\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"colDelim\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"type\" type=\"CT_MailMergeSourceType\" minOccurs=\"0\"/>\n      <xsd:element name=\"fHdr\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"fieldMapData\" type=\"CT_OdsoFieldMapData\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"recipientData\" type=\"CT_Rel\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MailMerge\">\n    <xsd:sequence>\n      <xsd:element name=\"mainDocumentType\" type=\"CT_MailMergeDocType\" minOccurs=\"1\"/>\n      <xsd:element name=\"linkToQuery\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"dataType\" type=\"CT_MailMergeDataType\" minOccurs=\"1\"/>\n      <xsd:element name=\"connectString\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"query\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"dataSource\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"headerSource\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotSuppressBlankLines\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"destination\" type=\"CT_MailMergeDest\" minOccurs=\"0\"/>\n      <xsd:element name=\"addressFieldName\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"mailSubject\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"mailAsAttachment\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"viewMergedData\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"activeRecord\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"checkErrors\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"odso\" type=\"CT_Odso\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TargetScreenSz\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"544x376\"/>\n      <xsd:enumeration value=\"640x480\"/>\n      <xsd:enumeration value=\"720x512\"/>\n      <xsd:enumeration value=\"800x600\"/>\n      <xsd:enumeration value=\"1024x768\"/>\n      <xsd:enumeration value=\"1152x882\"/>\n      <xsd:enumeration value=\"1152x900\"/>\n      <xsd:enumeration value=\"1280x1024\"/>\n      <xsd:enumeration value=\"1600x1200\"/>\n      <xsd:enumeration value=\"1800x1440\"/>\n      <xsd:enumeration value=\"1920x1200\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TargetScreenSz\">\n    <xsd:attribute name=\"val\" type=\"ST_TargetScreenSz\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Compat\">\n    <xsd:sequence>\n      <xsd:element name=\"useSingleBorderforContiguousCells\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"wpJustification\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noTabHangInd\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noLeading\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"spaceForUL\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noColumnBalance\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"balanceSingleByteDoubleByteWidth\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noExtraLineSpacing\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotLeaveBackslashAlone\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ulTrailSpace\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotExpandShiftReturn\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"spacingInWholePoints\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"lineWrapLikeWord6\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"printBodyTextBeforeHeader\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"printColBlack\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"wpSpaceWidth\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"showBreaksInFrames\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"subFontBySize\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressBottomSpacing\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressTopSpacing\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressSpacingAtTopOfPage\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressTopSpacingWP\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressSpBfAfterPgBrk\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"swapBordersFacingPages\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"convMailMergeEsc\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"truncateFontHeightsLikeWP6\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"mwSmallCaps\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"usePrinterMetrics\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotSuppressParagraphBorders\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"wrapTrailSpaces\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"footnoteLayoutLikeWW8\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"shapeLayoutLikeWW8\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"alignTablesRowByRow\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"forgetLastTabAlignment\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"adjustLineHeightInTable\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"autoSpaceLikeWord95\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noSpaceRaiseLower\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotUseHTMLParagraphAutoSpacing\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"layoutRawTableWidth\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"layoutTableRowsApart\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useWord97LineBreakRules\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotBreakWrappedTables\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotSnapToGridInCell\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"selectFldWithFirstOrLastChar\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"applyBreakingRules\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotWrapTextWithPunct\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotUseEastAsianBreakRules\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useWord2002TableStyleRules\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"growAutofit\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useFELayout\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useNormalStyleForList\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotUseIndentAsNumberingTabStop\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useAltKinsokuLineBreakRules\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"allowSpaceOfSameStyleInTable\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotSuppressIndentation\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotAutofitConstrainedTables\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"autofitToFirstFixedWidthCell\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"underlineTabInNumList\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"displayHangulFixedWidth\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"splitPgBreakAndParaMark\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotVertAlignCellWithSp\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotBreakConstrainedForcedTable\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotVertAlignInTxbx\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useAnsiKerningPairs\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"cachedColBalance\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"compatSetting\" type=\"CT_CompatSetting\" minOccurs=\"0\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CompatSetting\">\n    <xsd:attribute name=\"name\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_String\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocVar\">\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocVars\">\n    <xsd:sequence>\n      <xsd:element name=\"docVar\" type=\"CT_DocVar\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocRsids\">\n    <xsd:sequence>\n      <xsd:element name=\"rsidRoot\" type=\"CT_LongHexNumber\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rsid\" type=\"CT_LongHexNumber\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CharacterSpacing\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"doNotCompress\"/>\n      <xsd:enumeration value=\"compressPunctuation\"/>\n      <xsd:enumeration value=\"compressPunctuationAndJapaneseKana\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_CharacterSpacing\">\n    <xsd:attribute name=\"val\" type=\"ST_CharacterSpacing\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SaveThroughXslt\">\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"solutionID\" type=\"s:ST_String\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RPrDefault\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PPrDefault\">\n    <xsd:sequence>\n      <xsd:element name=\"pPr\" type=\"CT_PPrGeneral\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocDefaults\">\n    <xsd:sequence>\n      <xsd:element name=\"rPrDefault\" type=\"CT_RPrDefault\" minOccurs=\"0\"/>\n      <xsd:element name=\"pPrDefault\" type=\"CT_PPrDefault\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_WmlColorSchemeIndex\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"dark1\"/>\n      <xsd:enumeration value=\"light1\"/>\n      <xsd:enumeration value=\"dark2\"/>\n      <xsd:enumeration value=\"light2\"/>\n      <xsd:enumeration value=\"accent1\"/>\n      <xsd:enumeration value=\"accent2\"/>\n      <xsd:enumeration value=\"accent3\"/>\n      <xsd:enumeration value=\"accent4\"/>\n      <xsd:enumeration value=\"accent5\"/>\n      <xsd:enumeration value=\"accent6\"/>\n      <xsd:enumeration value=\"hyperlink\"/>\n      <xsd:enumeration value=\"followedHyperlink\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ColorSchemeMapping\">\n    <xsd:attribute name=\"bg1\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"t1\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"bg2\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"t2\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"accent1\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"accent2\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"accent3\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"accent4\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"accent5\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"accent6\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"hyperlink\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"followedHyperlink\" type=\"ST_WmlColorSchemeIndex\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ReadingModeInkLockDown\">\n    <xsd:attribute name=\"actualPg\" type=\"s:ST_OnOff\" use=\"required\"/>\n    <xsd:attribute name=\"w\" type=\"ST_PixelsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"h\" type=\"ST_PixelsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"fontSz\" type=\"ST_DecimalNumberOrPercent\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WriteProtection\">\n    <xsd:attribute name=\"recommended\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attributeGroup ref=\"AG_Password\"/>\n    <xsd:attributeGroup ref=\"AG_TransitionalPassword\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Settings\">\n    <xsd:sequence>\n      <xsd:element name=\"writeProtection\" type=\"CT_WriteProtection\" minOccurs=\"0\"/>\n      <xsd:element name=\"view\" type=\"CT_View\" minOccurs=\"0\"/>\n      <xsd:element name=\"zoom\" type=\"CT_Zoom\" minOccurs=\"0\"/>\n      <xsd:element name=\"removePersonalInformation\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"removeDateAndTime\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotDisplayPageBoundaries\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"displayBackgroundShape\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"printPostScriptOverText\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"printFractionalCharacterWidth\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"printFormsData\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"embedTrueTypeFonts\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"embedSystemFonts\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"saveSubsetFonts\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"saveFormsData\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"mirrorMargins\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"alignBordersAndEdges\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bordersDoNotSurroundHeader\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bordersDoNotSurroundFooter\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"gutterAtTop\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hideSpellingErrors\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hideGrammaticalErrors\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"activeWritingStyle\" type=\"CT_WritingStyle\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"proofState\" type=\"CT_Proof\" minOccurs=\"0\"/>\n      <xsd:element name=\"formsDesign\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"attachedTemplate\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"linkStyles\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"stylePaneFormatFilter\" type=\"CT_StylePaneFilter\" minOccurs=\"0\"/>\n      <xsd:element name=\"stylePaneSortMethod\" type=\"CT_StyleSort\" minOccurs=\"0\"/>\n      <xsd:element name=\"documentType\" type=\"CT_DocType\" minOccurs=\"0\"/>\n      <xsd:element name=\"mailMerge\" type=\"CT_MailMerge\" minOccurs=\"0\"/>\n      <xsd:element name=\"revisionView\" type=\"CT_TrackChangesView\" minOccurs=\"0\"/>\n      <xsd:element name=\"trackRevisions\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotTrackMoves\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotTrackFormatting\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"documentProtection\" type=\"CT_DocProtect\" minOccurs=\"0\"/>\n      <xsd:element name=\"autoFormatOverride\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"styleLockTheme\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"styleLockQFSet\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"defaultTabStop\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"autoHyphenation\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"consecutiveHyphenLimit\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"hyphenationZone\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotHyphenateCaps\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"showEnvelope\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"summaryLength\" type=\"CT_DecimalNumberOrPrecent\" minOccurs=\"0\"/>\n      <xsd:element name=\"clickAndTypeStyle\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"defaultTableStyle\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"evenAndOddHeaders\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bookFoldRevPrinting\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bookFoldPrinting\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bookFoldPrintingSheets\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"drawingGridHorizontalSpacing\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"drawingGridVerticalSpacing\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"displayHorizontalDrawingGridEvery\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"displayVerticalDrawingGridEvery\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotUseMarginsForDrawingGridOrigin\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"drawingGridHorizontalOrigin\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"drawingGridVerticalOrigin\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotShadeFormData\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noPunctuationKerning\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"characterSpacingControl\" type=\"CT_CharacterSpacing\" minOccurs=\"0\"/>\n      <xsd:element name=\"printTwoOnOne\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"strictFirstAndLastChars\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noLineBreaksAfter\" type=\"CT_Kinsoku\" minOccurs=\"0\"/>\n      <xsd:element name=\"noLineBreaksBefore\" type=\"CT_Kinsoku\" minOccurs=\"0\"/>\n      <xsd:element name=\"savePreviewPicture\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotValidateAgainstSchema\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"saveInvalidXml\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ignoreMixedContent\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"alwaysShowPlaceholderText\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotDemarcateInvalidXml\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"saveXmlDataOnly\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useXSLTWhenSaving\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"saveThroughXslt\" type=\"CT_SaveThroughXslt\" minOccurs=\"0\"/>\n      <xsd:element name=\"showXMLTags\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"alwaysMergeEmptyNamespace\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"updateFields\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hdrShapeDefaults\" type=\"CT_ShapeDefaults\" minOccurs=\"0\"/>\n      <xsd:element name=\"footnotePr\" type=\"CT_FtnDocProps\" minOccurs=\"0\"/>\n      <xsd:element name=\"endnotePr\" type=\"CT_EdnDocProps\" minOccurs=\"0\"/>\n      <xsd:element name=\"compat\" type=\"CT_Compat\" minOccurs=\"0\"/>\n      <xsd:element name=\"docVars\" type=\"CT_DocVars\" minOccurs=\"0\"/>\n      <xsd:element name=\"rsids\" type=\"CT_DocRsids\" minOccurs=\"0\"/>\n      <xsd:element ref=\"m:mathPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"attachedSchema\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"themeFontLang\" type=\"CT_Language\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrSchemeMapping\" type=\"CT_ColorSchemeMapping\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotIncludeSubdocsInStats\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotAutoCompressPictures\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"forceUpgrade\" type=\"CT_Empty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"captions\" type=\"CT_Captions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"readModeInkLockDown\" type=\"CT_ReadingModeInkLockDown\" minOccurs=\"0\"/>\n      <xsd:element name=\"smartTagType\" type=\"CT_SmartTagType\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element ref=\"sl:schemaLibrary\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shapeDefaults\" type=\"CT_ShapeDefaults\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotEmbedSmartTags\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"decimalSymbol\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"listSeparator\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StyleSort\">\n    <xsd:attribute name=\"val\" type=\"ST_StyleSort\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StylePaneFilter\">\n    <xsd:attribute name=\"allStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"customStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"latentStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"stylesInUse\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"headingStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"numberingStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"tableStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"directFormattingOnRuns\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"directFormattingOnParagraphs\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"directFormattingOnNumbering\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"directFormattingOnTables\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"clearFormatting\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"top3HeadingStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"visibleStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"alternateStyleNames\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"val\" type=\"ST_ShortHexNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_StyleSort\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"name\"/>\n      <xsd:enumeration value=\"priority\"/>\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"font\"/>\n      <xsd:enumeration value=\"basedOn\"/>\n      <xsd:enumeration value=\"type\"/>\n      <xsd:enumeration value=\"0000\"/>\n      <xsd:enumeration value=\"0001\"/>\n      <xsd:enumeration value=\"0002\"/>\n      <xsd:enumeration value=\"0003\"/>\n      <xsd:enumeration value=\"0004\"/>\n      <xsd:enumeration value=\"0005\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_WebSettings\">\n    <xsd:sequence>\n      <xsd:element name=\"frameset\" type=\"CT_Frameset\" minOccurs=\"0\"/>\n      <xsd:element name=\"divs\" type=\"CT_Divs\" minOccurs=\"0\"/>\n      <xsd:element name=\"encoding\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"optimizeForBrowser\" type=\"CT_OptimizeForBrowser\" minOccurs=\"0\"/>\n      <xsd:element name=\"relyOnVML\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"allowPNG\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotRelyOnCSS\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotSaveAsSingleFile\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotOrganizeInFolder\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotUseLongFileNames\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"pixelsPerInch\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"targetScreenSz\" type=\"CT_TargetScreenSz\" minOccurs=\"0\"/>\n      <xsd:element name=\"saveSmartTagsAsXml\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FrameScrollbar\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"on\"/>\n      <xsd:enumeration value=\"off\"/>\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FrameScrollbar\">\n    <xsd:attribute name=\"val\" type=\"ST_FrameScrollbar\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OptimizeForBrowser\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_OnOff\">\n        <xsd:attribute name=\"target\" type=\"s:ST_String\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Frame\">\n    <xsd:sequence>\n      <xsd:element name=\"sz\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"name\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"title\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"longDesc\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"sourceFileName\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"marW\" type=\"CT_PixelsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"marH\" type=\"CT_PixelsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"scrollbar\" type=\"CT_FrameScrollbar\" minOccurs=\"0\"/>\n      <xsd:element name=\"noResizeAllowed\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"linkedToFile\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FrameLayout\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"rows\"/>\n      <xsd:enumeration value=\"cols\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FrameLayout\">\n    <xsd:attribute name=\"val\" type=\"ST_FrameLayout\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FramesetSplitbar\">\n    <xsd:sequence>\n      <xsd:element name=\"w\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"0\"/>\n      <xsd:element name=\"noBorder\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"flatBorders\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Frameset\">\n    <xsd:sequence>\n      <xsd:element name=\"sz\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"framesetSplitbar\" type=\"CT_FramesetSplitbar\" minOccurs=\"0\"/>\n      <xsd:element name=\"frameLayout\" type=\"CT_FrameLayout\" minOccurs=\"0\"/>\n      <xsd:element name=\"title\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"frameset\" type=\"CT_Frameset\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n        <xsd:element name=\"frame\" type=\"CT_Frame\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumPicBullet\">\n    <xsd:choice>\n      <xsd:element name=\"pict\" type=\"CT_Picture\"/>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"numPicBulletId\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LevelSuffix\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"tab\"/>\n      <xsd:enumeration value=\"space\"/>\n      <xsd:enumeration value=\"nothing\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LevelSuffix\">\n    <xsd:attribute name=\"val\" type=\"ST_LevelSuffix\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LevelText\">\n    <xsd:attribute name=\"val\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"null\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LvlLegacy\">\n    <xsd:attribute name=\"legacy\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"legacySpace\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"legacyIndent\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Lvl\">\n    <xsd:sequence>\n      <xsd:element name=\"start\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\"/>\n      <xsd:element name=\"lvlRestart\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"pStyle\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"isLgl\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suff\" type=\"CT_LevelSuffix\" minOccurs=\"0\"/>\n      <xsd:element name=\"lvlText\" type=\"CT_LevelText\" minOccurs=\"0\"/>\n      <xsd:element name=\"lvlPicBulletId\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"legacy\" type=\"CT_LvlLegacy\" minOccurs=\"0\"/>\n      <xsd:element name=\"lvlJc\" type=\"CT_Jc\" minOccurs=\"0\"/>\n      <xsd:element name=\"pPr\" type=\"CT_PPrGeneral\" minOccurs=\"0\"/>\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ilvl\" type=\"ST_DecimalNumber\" use=\"required\"/>\n    <xsd:attribute name=\"tplc\" type=\"ST_LongHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"tentative\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MultiLevelType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"singleLevel\"/>\n      <xsd:enumeration value=\"multilevel\"/>\n      <xsd:enumeration value=\"hybridMultilevel\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MultiLevelType\">\n    <xsd:attribute name=\"val\" type=\"ST_MultiLevelType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AbstractNum\">\n    <xsd:sequence>\n      <xsd:element name=\"nsid\" type=\"CT_LongHexNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"multiLevelType\" type=\"CT_MultiLevelType\" minOccurs=\"0\"/>\n      <xsd:element name=\"tmpl\" type=\"CT_LongHexNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"name\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"styleLink\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"numStyleLink\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"lvl\" type=\"CT_Lvl\" minOccurs=\"0\" maxOccurs=\"9\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"abstractNumId\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumLvl\">\n    <xsd:sequence>\n      <xsd:element name=\"startOverride\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"lvl\" type=\"CT_Lvl\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ilvl\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Num\">\n    <xsd:sequence>\n      <xsd:element name=\"abstractNumId\" type=\"CT_DecimalNumber\" minOccurs=\"1\"/>\n      <xsd:element name=\"lvlOverride\" type=\"CT_NumLvl\" minOccurs=\"0\" maxOccurs=\"9\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"numId\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Numbering\">\n    <xsd:sequence>\n      <xsd:element name=\"numPicBullet\" type=\"CT_NumPicBullet\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"abstractNum\" type=\"CT_AbstractNum\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"num\" type=\"CT_Num\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"numIdMacAtCleanup\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TblStyleOverrideType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"wholeTable\"/>\n      <xsd:enumeration value=\"firstRow\"/>\n      <xsd:enumeration value=\"lastRow\"/>\n      <xsd:enumeration value=\"firstCol\"/>\n      <xsd:enumeration value=\"lastCol\"/>\n      <xsd:enumeration value=\"band1Vert\"/>\n      <xsd:enumeration value=\"band2Vert\"/>\n      <xsd:enumeration value=\"band1Horz\"/>\n      <xsd:enumeration value=\"band2Horz\"/>\n      <xsd:enumeration value=\"neCell\"/>\n      <xsd:enumeration value=\"nwCell\"/>\n      <xsd:enumeration value=\"seCell\"/>\n      <xsd:enumeration value=\"swCell\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TblStylePr\">\n    <xsd:sequence>\n      <xsd:element name=\"pPr\" type=\"CT_PPrGeneral\" minOccurs=\"0\"/>\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"tblPr\" type=\"CT_TblPrBase\" minOccurs=\"0\"/>\n      <xsd:element name=\"trPr\" type=\"CT_TrPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tcPr\" type=\"CT_TcPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_TblStyleOverrideType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_StyleType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"paragraph\"/>\n      <xsd:enumeration value=\"character\"/>\n      <xsd:enumeration value=\"table\"/>\n      <xsd:enumeration value=\"numbering\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Style\">\n    <xsd:sequence>\n      <xsd:element name=\"name\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"aliases\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"basedOn\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"next\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"link\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"autoRedefine\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hidden\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"uiPriority\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"semiHidden\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"unhideWhenUsed\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"qFormat\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"locked\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"personal\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"personalCompose\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"personalReply\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"rsid\" type=\"CT_LongHexNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"pPr\" type=\"CT_PPrGeneral\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblPr\" type=\"CT_TblPrBase\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trPr\" type=\"CT_TrPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tcPr\" type=\"CT_TcPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblStylePr\" type=\"CT_TblStylePr\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_StyleType\" use=\"optional\"/>\n    <xsd:attribute name=\"styleId\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"default\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"customStyle\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LsdException\">\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"locked\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"uiPriority\" type=\"ST_DecimalNumber\"/>\n    <xsd:attribute name=\"semiHidden\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"unhideWhenUsed\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"qFormat\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LatentStyles\">\n    <xsd:sequence>\n      <xsd:element name=\"lsdException\" type=\"CT_LsdException\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"defLockedState\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"defUIPriority\" type=\"ST_DecimalNumber\"/>\n    <xsd:attribute name=\"defSemiHidden\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"defUnhideWhenUsed\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"defQFormat\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"count\" type=\"ST_DecimalNumber\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Styles\">\n    <xsd:sequence>\n      <xsd:element name=\"docDefaults\" type=\"CT_DocDefaults\" minOccurs=\"0\"/>\n      <xsd:element name=\"latentStyles\" type=\"CT_LatentStyles\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_Style\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Panose\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Panose\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FontFamily\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"decorative\"/>\n      <xsd:enumeration value=\"modern\"/>\n      <xsd:enumeration value=\"roman\"/>\n      <xsd:enumeration value=\"script\"/>\n      <xsd:enumeration value=\"swiss\"/>\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FontFamily\">\n    <xsd:attribute name=\"val\" type=\"ST_FontFamily\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Pitch\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"fixed\"/>\n      <xsd:enumeration value=\"variable\"/>\n      <xsd:enumeration value=\"default\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Pitch\">\n    <xsd:attribute name=\"val\" type=\"ST_Pitch\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontSig\">\n    <xsd:attribute name=\"usb0\" use=\"required\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"usb1\" use=\"required\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"usb2\" use=\"required\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"usb3\" use=\"required\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"csb0\" use=\"required\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"csb1\" use=\"required\" type=\"ST_LongHexNumber\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontRel\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Rel\">\n        <xsd:attribute name=\"fontKey\" type=\"s:ST_Guid\"/>\n        <xsd:attribute name=\"subsetted\" type=\"s:ST_OnOff\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Font\">\n    <xsd:sequence>\n      <xsd:element name=\"altName\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"panose1\" type=\"CT_Panose\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"charset\" type=\"CT_Charset\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"family\" type=\"CT_FontFamily\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"notTrueType\" type=\"CT_OnOff\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pitch\" type=\"CT_Pitch\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sig\" type=\"CT_FontSig\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"embedRegular\" type=\"CT_FontRel\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"embedBold\" type=\"CT_FontRel\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"embedItalic\" type=\"CT_FontRel\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"embedBoldItalic\" type=\"CT_FontRel\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontsList\">\n    <xsd:sequence>\n      <xsd:element name=\"font\" type=\"CT_Font\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DivBdr\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"left\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"right\" type=\"CT_Border\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Div\">\n    <xsd:sequence>\n      <xsd:element name=\"blockQuote\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bodyDiv\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"marLeft\" type=\"CT_SignedTwipsMeasure\"/>\n      <xsd:element name=\"marRight\" type=\"CT_SignedTwipsMeasure\"/>\n      <xsd:element name=\"marTop\" type=\"CT_SignedTwipsMeasure\"/>\n      <xsd:element name=\"marBottom\" type=\"CT_SignedTwipsMeasure\"/>\n      <xsd:element name=\"divBdr\" type=\"CT_DivBdr\" minOccurs=\"0\"/>\n      <xsd:element name=\"divsChild\" type=\"CT_Divs\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Divs\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"div\" type=\"CT_Div\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TxbxContent\">\n    <xsd:group ref=\"EG_BlockLevelElts\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:element name=\"txbxContent\" type=\"CT_TxbxContent\"/>\n  <xsd:group name=\"EG_MathContent\">\n    <xsd:choice>\n      <xsd:element ref=\"m:oMathPara\"/>\n      <xsd:element ref=\"m:oMath\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_BlockLevelChunkElts\">\n    <xsd:choice>\n      <xsd:group ref=\"EG_ContentBlockContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_BlockLevelElts\">\n    <xsd:choice>\n      <xsd:group ref=\"EG_BlockLevelChunkElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"altChunk\" type=\"CT_AltChunk\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_RunLevelElts\">\n    <xsd:choice>\n      <xsd:element name=\"proofErr\" minOccurs=\"0\" type=\"CT_ProofErr\"/>\n      <xsd:element name=\"permStart\" minOccurs=\"0\" type=\"CT_PermStart\"/>\n      <xsd:element name=\"permEnd\" minOccurs=\"0\" type=\"CT_Perm\"/>\n      <xsd:group ref=\"EG_RangeMarkupElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"ins\" type=\"CT_RunTrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"del\" type=\"CT_RunTrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"moveFrom\" type=\"CT_RunTrackChange\"/>\n      <xsd:element name=\"moveTo\" type=\"CT_RunTrackChange\"/>\n      <xsd:group ref=\"EG_MathContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_Body\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_BlockLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"sectPr\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_SectPr\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShapeDefaults\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:office:office\"\n        minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Comments\">\n    <xsd:sequence>\n      <xsd:element name=\"comment\" type=\"CT_Comment\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"comments\" type=\"CT_Comments\"/>\n  <xsd:complexType name=\"CT_Footnotes\">\n    <xsd:sequence maxOccurs=\"unbounded\">\n      <xsd:element name=\"footnote\" type=\"CT_FtnEdn\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"footnotes\" type=\"CT_Footnotes\"/>\n  <xsd:complexType name=\"CT_Endnotes\">\n    <xsd:sequence maxOccurs=\"unbounded\">\n      <xsd:element name=\"endnote\" type=\"CT_FtnEdn\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"endnotes\" type=\"CT_Endnotes\"/>\n  <xsd:element name=\"hdr\" type=\"CT_HdrFtr\"/>\n  <xsd:element name=\"ftr\" type=\"CT_HdrFtr\"/>\n  <xsd:complexType name=\"CT_SmartTagType\">\n    <xsd:attribute name=\"namespaceuri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"url\" type=\"s:ST_String\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ThemeColor\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"dark1\"/>\n      <xsd:enumeration value=\"light1\"/>\n      <xsd:enumeration value=\"dark2\"/>\n      <xsd:enumeration value=\"light2\"/>\n      <xsd:enumeration value=\"accent1\"/>\n      <xsd:enumeration value=\"accent2\"/>\n      <xsd:enumeration value=\"accent3\"/>\n      <xsd:enumeration value=\"accent4\"/>\n      <xsd:enumeration value=\"accent5\"/>\n      <xsd:enumeration value=\"accent6\"/>\n      <xsd:enumeration value=\"hyperlink\"/>\n      <xsd:enumeration value=\"followedHyperlink\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"background1\"/>\n      <xsd:enumeration value=\"text1\"/>\n      <xsd:enumeration value=\"background2\"/>\n      <xsd:enumeration value=\"text2\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DocPartBehavior\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"content\"/>\n      <xsd:enumeration value=\"p\"/>\n      <xsd:enumeration value=\"pg\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DocPartBehavior\">\n    <xsd:attribute name=\"val\" use=\"required\" type=\"ST_DocPartBehavior\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocPartBehaviors\">\n    <xsd:choice>\n      <xsd:element name=\"behavior\" type=\"CT_DocPartBehavior\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DocPartType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"autoExp\"/>\n      <xsd:enumeration value=\"toolbar\"/>\n      <xsd:enumeration value=\"speller\"/>\n      <xsd:enumeration value=\"formFld\"/>\n      <xsd:enumeration value=\"bbPlcHdr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DocPartType\">\n    <xsd:attribute name=\"val\" use=\"required\" type=\"ST_DocPartType\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocPartTypes\">\n    <xsd:choice>\n      <xsd:element name=\"type\" type=\"CT_DocPartType\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"all\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DocPartGallery\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"placeholder\"/>\n      <xsd:enumeration value=\"any\"/>\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"docParts\"/>\n      <xsd:enumeration value=\"coverPg\"/>\n      <xsd:enumeration value=\"eq\"/>\n      <xsd:enumeration value=\"ftrs\"/>\n      <xsd:enumeration value=\"hdrs\"/>\n      <xsd:enumeration value=\"pgNum\"/>\n      <xsd:enumeration value=\"tbls\"/>\n      <xsd:enumeration value=\"watermarks\"/>\n      <xsd:enumeration value=\"autoTxt\"/>\n      <xsd:enumeration value=\"txtBox\"/>\n      <xsd:enumeration value=\"pgNumT\"/>\n      <xsd:enumeration value=\"pgNumB\"/>\n      <xsd:enumeration value=\"pgNumMargins\"/>\n      <xsd:enumeration value=\"tblOfContents\"/>\n      <xsd:enumeration value=\"bib\"/>\n      <xsd:enumeration value=\"custQuickParts\"/>\n      <xsd:enumeration value=\"custCoverPg\"/>\n      <xsd:enumeration value=\"custEq\"/>\n      <xsd:enumeration value=\"custFtrs\"/>\n      <xsd:enumeration value=\"custHdrs\"/>\n      <xsd:enumeration value=\"custPgNum\"/>\n      <xsd:enumeration value=\"custTbls\"/>\n      <xsd:enumeration value=\"custWatermarks\"/>\n      <xsd:enumeration value=\"custAutoTxt\"/>\n      <xsd:enumeration value=\"custTxtBox\"/>\n      <xsd:enumeration value=\"custPgNumT\"/>\n      <xsd:enumeration value=\"custPgNumB\"/>\n      <xsd:enumeration value=\"custPgNumMargins\"/>\n      <xsd:enumeration value=\"custTblOfContents\"/>\n      <xsd:enumeration value=\"custBib\"/>\n      <xsd:enumeration value=\"custom1\"/>\n      <xsd:enumeration value=\"custom2\"/>\n      <xsd:enumeration value=\"custom3\"/>\n      <xsd:enumeration value=\"custom4\"/>\n      <xsd:enumeration value=\"custom5\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DocPartGallery\">\n    <xsd:attribute name=\"val\" type=\"ST_DocPartGallery\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocPartCategory\">\n    <xsd:sequence>\n      <xsd:element name=\"name\" type=\"CT_String\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gallery\" type=\"CT_DocPartGallery\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocPartName\">\n    <xsd:attribute name=\"val\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"decorated\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocPartPr\">\n    <xsd:all>\n      <xsd:element name=\"name\" type=\"CT_DocPartName\" minOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"category\" type=\"CT_DocPartCategory\" minOccurs=\"0\"/>\n      <xsd:element name=\"types\" type=\"CT_DocPartTypes\" minOccurs=\"0\"/>\n      <xsd:element name=\"behaviors\" type=\"CT_DocPartBehaviors\" minOccurs=\"0\"/>\n      <xsd:element name=\"description\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"guid\" type=\"CT_Guid\" minOccurs=\"0\"/>\n    </xsd:all>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocPart\">\n    <xsd:sequence>\n      <xsd:element name=\"docPartPr\" type=\"CT_DocPartPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"docPartBody\" type=\"CT_Body\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocParts\">\n    <xsd:choice>\n      <xsd:element name=\"docPart\" type=\"CT_DocPart\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:element name=\"settings\" type=\"CT_Settings\"/>\n  <xsd:element name=\"webSettings\" type=\"CT_WebSettings\"/>\n  <xsd:element name=\"fonts\" type=\"CT_FontsList\"/>\n  <xsd:element name=\"numbering\" type=\"CT_Numbering\"/>\n  <xsd:element name=\"styles\" type=\"CT_Styles\"/>\n  <xsd:simpleType name=\"ST_CaptionPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"above\"/>\n      <xsd:enumeration value=\"below\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Caption\">\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"pos\" type=\"ST_CaptionPos\" use=\"optional\"/>\n    <xsd:attribute name=\"chapNum\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"heading\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"noLabel\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"numFmt\" type=\"ST_NumberFormat\" use=\"optional\"/>\n    <xsd:attribute name=\"sep\" type=\"ST_ChapterSep\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AutoCaption\">\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"caption\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AutoCaptions\">\n    <xsd:sequence>\n      <xsd:element name=\"autoCaption\" type=\"CT_AutoCaption\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Captions\">\n    <xsd:sequence>\n      <xsd:element name=\"caption\" type=\"CT_Caption\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"autoCaptions\" type=\"CT_AutoCaptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocumentBase\">\n    <xsd:sequence>\n      <xsd:element name=\"background\" type=\"CT_Background\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Document\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_DocumentBase\">\n        <xsd:sequence>\n          <xsd:element name=\"body\" type=\"CT_Body\" minOccurs=\"0\" maxOccurs=\"1\"/>\n        </xsd:sequence>\n        <xsd:attribute name=\"conformance\" type=\"s:ST_ConformanceClass\"/>\n        <xsd:attribute ref=\"mc:Ignorable\" use=\"optional\" />\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GlossaryDocument\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_DocumentBase\">\n        <xsd:sequence>\n          <xsd:element name=\"docParts\" type=\"CT_DocParts\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:element name=\"document\" type=\"CT_Document\"/>\n  <xsd:element name=\"glossaryDocument\" type=\"CT_GlossaryDocument\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd",
    "content": "<?xml version='1.0'?>\n<xs:schema targetNamespace=\"http://www.w3.org/XML/1998/namespace\" xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" xml:lang=\"en\">\n\n <xs:annotation>\n  <xs:documentation>\n   See http://www.w3.org/XML/1998/namespace.html and\n   http://www.w3.org/TR/REC-xml for information about this namespace.\n\n    This schema document describes the XML namespace, in a form\n    suitable for import by other schema documents.  \n\n    Note that local names in this namespace are intended to be defined\n    only by the World Wide Web Consortium or its subgroups.  The\n    following names are currently defined in this namespace and should\n    not be used with conflicting semantics by any Working Group,\n    specification, or document instance:\n\n    base (as an attribute name): denotes an attribute whose value\n         provides a URI to be used as the base for interpreting any\n         relative URIs in the scope of the element on which it\n         appears; its value is inherited.  This name is reserved\n         by virtue of its definition in the XML Base specification.\n\n    lang (as an attribute name): denotes an attribute whose value\n         is a language code for the natural language of the content of\n         any element; its value is inherited.  This name is reserved\n         by virtue of its definition in the XML specification.\n  \n    space (as an attribute name): denotes an attribute whose\n         value is a keyword indicating what whitespace processing\n         discipline is intended for the content of the element; its\n         value is inherited.  This name is reserved by virtue of its\n         definition in the XML specification.\n\n    Father (in any context at all): denotes Jon Bosak, the chair of \n         the original XML Working Group.  This name is reserved by \n         the following decision of the W3C XML Plenary and \n         XML Coordination groups:\n\n             In appreciation for his vision, leadership and dedication\n             the W3C XML Plenary on this 10th day of February, 2000\n             reserves for Jon Bosak in perpetuity the XML name\n             xml:Father\n  </xs:documentation>\n </xs:annotation>\n\n <xs:annotation>\n  <xs:documentation>This schema defines attributes and an attribute group\n        suitable for use by\n        schemas wishing to allow xml:base, xml:lang or xml:space attributes\n        on elements they define.\n\n        To enable this, such a schema must import this schema\n        for the XML namespace, e.g. as follows:\n        &lt;schema . . .>\n         . . .\n         &lt;import namespace=\"http://www.w3.org/XML/1998/namespace\"\n                    schemaLocation=\"http://www.w3.org/2001/03/xml.xsd\"/>\n\n        Subsequently, qualified reference to any of the attributes\n        or the group defined below will have the desired effect, e.g.\n\n        &lt;type . . .>\n         . . .\n         &lt;attributeGroup ref=\"xml:specialAttrs\"/>\n \n         will define a type which will schema-validate an instance\n         element with any of those attributes</xs:documentation>\n </xs:annotation>\n\n <xs:annotation>\n  <xs:documentation>In keeping with the XML Schema WG's standard versioning\n   policy, this schema document will persist at\n   http://www.w3.org/2001/03/xml.xsd.\n   At the date of issue it can also be found at\n   http://www.w3.org/2001/xml.xsd.\n   The schema document at that URI may however change in the future,\n   in order to remain compatible with the latest version of XML Schema\n   itself.  In other words, if the XML Schema namespace changes, the version\n   of this document at\n   http://www.w3.org/2001/xml.xsd will change\n   accordingly; the version at\n   http://www.w3.org/2001/03/xml.xsd will not change.\n  </xs:documentation>\n </xs:annotation>\n\n <xs:attribute name=\"lang\" type=\"xs:language\">\n  <xs:annotation>\n   <xs:documentation>In due course, we should install the relevant ISO 2- and 3-letter\n         codes as the enumerated possible values . . .</xs:documentation>\n  </xs:annotation>\n </xs:attribute>\n\n <xs:attribute name=\"space\" default=\"preserve\">\n  <xs:simpleType>\n   <xs:restriction base=\"xs:NCName\">\n    <xs:enumeration value=\"default\"/>\n    <xs:enumeration value=\"preserve\"/>\n   </xs:restriction>\n  </xs:simpleType>\n </xs:attribute>\n\n <xs:attribute name=\"base\" type=\"xs:anyURI\">\n  <xs:annotation>\n   <xs:documentation>See http://www.w3.org/TR/xmlbase/ for\n                     information about this attribute.</xs:documentation>\n  </xs:annotation>\n </xs:attribute>\n\n <xs:attributeGroup name=\"specialAttrs\">\n  <xs:attribute ref=\"xml:base\"/>\n  <xs:attribute ref=\"xml:lang\"/>\n  <xs:attribute ref=\"xml:space\"/>\n </xs:attributeGroup>\n\n</xs:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd",
    "content": "﻿<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<xs:schema xmlns=\"http://schemas.openxmlformats.org/package/2006/content-types\"\n  xmlns:xs=\"http://www.w3.org/2001/XMLSchema\"\n  targetNamespace=\"http://schemas.openxmlformats.org/package/2006/content-types\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"unqualified\" blockDefault=\"#all\">\n\n  <xs:element name=\"Types\" type=\"CT_Types\"/>\n  <xs:element name=\"Default\" type=\"CT_Default\"/>\n  <xs:element name=\"Override\" type=\"CT_Override\"/>\n\n  <xs:complexType name=\"CT_Types\">\n    <xs:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xs:element ref=\"Default\"/>\n      <xs:element ref=\"Override\"/>\n    </xs:choice>\n  </xs:complexType>\n\n  <xs:complexType name=\"CT_Default\">\n    <xs:attribute name=\"Extension\" type=\"ST_Extension\" use=\"required\"/>\n    <xs:attribute name=\"ContentType\" type=\"ST_ContentType\" use=\"required\"/>\n  </xs:complexType>\n\n  <xs:complexType name=\"CT_Override\">\n    <xs:attribute name=\"ContentType\" type=\"ST_ContentType\" use=\"required\"/>\n    <xs:attribute name=\"PartName\" type=\"xs:anyURI\" use=\"required\"/>\n  </xs:complexType>\n\n  <xs:simpleType name=\"ST_ContentType\">\n    <xs:restriction base=\"xs:string\">\n      <xs:pattern\n        value=\"(((([\\p{IsBasicLatin}-[\\p{Cc}&#127;\\(\\)&lt;&gt;@,;:\\\\&quot;/\\[\\]\\?=\\{\\}\\s\\t]])+))/((([\\p{IsBasicLatin}-[\\p{Cc}&#127;\\(\\)&lt;&gt;@,;:\\\\&quot;/\\[\\]\\?=\\{\\}\\s\\t]])+))((\\s+)*;(\\s+)*(((([\\p{IsBasicLatin}-[\\p{Cc}&#127;\\(\\)&lt;&gt;@,;:\\\\&quot;/\\[\\]\\?=\\{\\}\\s\\t]])+))=((([\\p{IsBasicLatin}-[\\p{Cc}&#127;\\(\\)&lt;&gt;@,;:\\\\&quot;/\\[\\]\\?=\\{\\}\\s\\t]])+)|(&quot;(([\\p{IsLatin-1Supplement}\\p{IsBasicLatin}-[\\p{Cc}&#127;&quot;\\n\\r]]|(\\s+))|(\\\\[\\p{IsBasicLatin}]))*&quot;))))*)\"\n      />\n    </xs:restriction>\n  </xs:simpleType>\n\n  <xs:simpleType name=\"ST_Extension\">\n    <xs:restriction base=\"xs:string\">\n      <xs:pattern\n        value=\"([!$&amp;'\\(\\)\\*\\+,:=]|(%[0-9a-fA-F][0-9a-fA-F])|[:@]|[a-zA-Z0-9\\-_~])+\"/>\n    </xs:restriction>\n  </xs:simpleType>\n</xs:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd",
    "content": "﻿<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xs:schema targetNamespace=\"http://schemas.openxmlformats.org/package/2006/metadata/core-properties\"\n  xmlns=\"http://schemas.openxmlformats.org/package/2006/metadata/core-properties\"\n  xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n  xmlns:dcterms=\"http://purl.org/dc/terms/\" elementFormDefault=\"qualified\" blockDefault=\"#all\">\n\n  <xs:import namespace=\"http://purl.org/dc/elements/1.1/\"\n    schemaLocation=\"http://dublincore.org/schemas/xmls/qdc/2003/04/02/dc.xsd\"/>\n  <xs:import namespace=\"http://purl.org/dc/terms/\"\n    schemaLocation=\"http://dublincore.org/schemas/xmls/qdc/2003/04/02/dcterms.xsd\"/>\n  <xs:import id=\"xml\" namespace=\"http://www.w3.org/XML/1998/namespace\"/>\n\n  <xs:element name=\"coreProperties\" type=\"CT_CoreProperties\"/>\n\n  <xs:complexType name=\"CT_CoreProperties\">\n    <xs:all>\n      <xs:element name=\"category\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xs:string\"/>\n      <xs:element name=\"contentStatus\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xs:string\"/>\n      <xs:element ref=\"dcterms:created\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element ref=\"dc:creator\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element ref=\"dc:description\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element ref=\"dc:identifier\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element name=\"keywords\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_Keywords\"/>\n      <xs:element ref=\"dc:language\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element name=\"lastModifiedBy\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xs:string\"/>\n      <xs:element name=\"lastPrinted\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xs:dateTime\"/>\n      <xs:element ref=\"dcterms:modified\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element name=\"revision\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xs:string\"/>\n      <xs:element ref=\"dc:subject\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element ref=\"dc:title\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element name=\"version\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xs:string\"/>\n    </xs:all>\n  </xs:complexType>\n\n  <xs:complexType name=\"CT_Keywords\" mixed=\"true\">\n    <xs:sequence>\n      <xs:element name=\"value\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Keyword\"/>\n    </xs:sequence>\n    <xs:attribute ref=\"xml:lang\" use=\"optional\"/>\n  </xs:complexType>\n\n  <xs:complexType name=\"CT_Keyword\">\n    <xs:simpleContent>\n      <xs:extension base=\"xs:string\">\n        <xs:attribute ref=\"xml:lang\" use=\"optional\"/>\n      </xs:extension>\n    </xs:simpleContent>\n  </xs:complexType>\n\n</xs:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xsd:schema xmlns=\"http://schemas.openxmlformats.org/package/2006/digital-signature\"\n  xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  targetNamespace=\"http://schemas.openxmlformats.org/package/2006/digital-signature\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"unqualified\" blockDefault=\"#all\">\n\n  <xsd:element name=\"SignatureTime\" type=\"CT_SignatureTime\"/>\n  <xsd:element name=\"RelationshipReference\" type=\"CT_RelationshipReference\"/>\n  <xsd:element name=\"RelationshipsGroupReference\" type=\"CT_RelationshipsGroupReference\"/>\n\n  <xsd:complexType name=\"CT_SignatureTime\">\n    <xsd:sequence>\n      <xsd:element name=\"Format\" type=\"ST_Format\"/>\n      <xsd:element name=\"Value\" type=\"ST_Value\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n\n  <xsd:complexType name=\"CT_RelationshipReference\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"xsd:string\">\n        <xsd:attribute name=\"SourceId\" type=\"xsd:string\" use=\"required\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n\n  <xsd:complexType name=\"CT_RelationshipsGroupReference\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"xsd:string\">\n        <xsd:attribute name=\"SourceType\" type=\"xsd:anyURI\" use=\"required\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n\n  <xsd:simpleType name=\"ST_Format\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern\n        value=\"(YYYY)|(YYYY-MM)|(YYYY-MM-DD)|(YYYY-MM-DDThh:mmTZD)|(YYYY-MM-DDThh:mm:ssTZD)|(YYYY-MM-DDThh:mm:ss.sTZD)\"\n      />\n    </xsd:restriction>\n  </xsd:simpleType>\n\n  <xsd:simpleType name=\"ST_Value\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern\n        value=\"(([0-9][0-9][0-9][0-9]))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2))))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1))))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))(((\\+|-)((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))(((\\+|-)((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])):(((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))\\.[0-9])(((\\+|-)((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))\"\n      />\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd",
    "content": "﻿<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<xsd:schema xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\"\n  xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  targetNamespace=\"http://schemas.openxmlformats.org/package/2006/relationships\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"unqualified\" blockDefault=\"#all\">\n\n  <xsd:element name=\"Relationships\" type=\"CT_Relationships\"/>\n  <xsd:element name=\"Relationship\" type=\"CT_Relationship\"/>\n\n  <xsd:complexType name=\"CT_Relationships\">\n    <xsd:sequence>\n      <xsd:element ref=\"Relationship\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n\n  <xsd:complexType name=\"CT_Relationship\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"xsd:string\">\n        <xsd:attribute name=\"TargetMode\" type=\"ST_TargetMode\" use=\"optional\"/>\n        <xsd:attribute name=\"Target\" type=\"xsd:anyURI\" use=\"required\"/>\n        <xsd:attribute name=\"Type\" type=\"xsd:anyURI\" use=\"required\"/>\n        <xsd:attribute name=\"Id\" type=\"xsd:ID\" use=\"required\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n\n  <xsd:simpleType name=\"ST_TargetMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"External\"/>\n      <xsd:enumeration value=\"Internal\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/mce/mc.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\"\n\tattributeFormDefault=\"unqualified\" elementFormDefault=\"qualified\"\n\ttargetNamespace=\"http://schemas.openxmlformats.org/markup-compatibility/2006\"\n\txmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">\n\n  <!--\n    This XSD is a modified version of the one found at:\n    https://github.com/plutext/docx4j/blob/master/xsd/mce/markup-compatibility-2006-MINIMAL.xsd\n\n    This XSD has 2 objectives:\n\n        1. round tripping @mc:Ignorable\n\n\t\t\t<w:document\n\t\t\t            xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\"\n\t\t\t            xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n\t\t\t            mc:Ignorable=\"w14 w15 wp14\">\n\n        2. enabling AlternateContent to be manipulated in certain elements\n           (in the unusual case where the content model is xsd:any, it doesn't have to be explicitly added)\n\n\t\tSee further ECMA-376, 4th Edition, Office Open XML File Formats\n\t\tPart 3 : Markup Compatibility and Extensibility\n   -->\n\n  <!--  Objective 1 -->\n  <xsd:attribute name=\"Ignorable\" type=\"xsd:string\" />\n\n  <!--  Objective 2 -->\n\t<xsd:attribute name=\"MustUnderstand\" type=\"xsd:string\"  />\n\t<xsd:attribute name=\"ProcessContent\" type=\"xsd:string\"  />\n\n<!-- An AlternateContent element shall contain one or more Choice child elements, optionally followed by a\nFallback child element. If present, there shall be only one Fallback element, and it shall follow all Choice\nelements. -->\n\t<xsd:element name=\"AlternateContent\">\n\t\t<xsd:complexType>\n\t\t\t<xsd:sequence>\n\t\t\t\t<xsd:element name=\"Choice\" minOccurs=\"0\" maxOccurs=\"unbounded\">\n\t\t\t\t\t<xsd:complexType>\n\t\t\t\t\t\t<xsd:sequence>\n\t\t\t\t\t\t\t<xsd:any minOccurs=\"0\" maxOccurs=\"unbounded\"\n\t\t\t\t\t\t\t\tprocessContents=\"strict\">\n\t\t\t\t\t\t\t</xsd:any>\n\t\t\t\t\t\t</xsd:sequence>\n\t\t\t\t\t\t<xsd:attribute name=\"Requires\" type=\"xsd:string\" use=\"required\" />\n\t\t\t\t\t\t<xsd:attribute ref=\"mc:Ignorable\" use=\"optional\" />\n\t\t\t\t\t\t<xsd:attribute ref=\"mc:MustUnderstand\" use=\"optional\" />\n\t\t\t\t\t\t<xsd:attribute ref=\"mc:ProcessContent\" use=\"optional\" />\n\t\t\t\t\t</xsd:complexType>\n\t\t\t\t</xsd:element>\n\t\t\t\t<xsd:element name=\"Fallback\" minOccurs=\"0\" maxOccurs=\"1\">\n\t\t\t\t\t<xsd:complexType>\n\t\t\t\t\t\t<xsd:sequence>\n\t\t\t\t\t\t\t<xsd:any minOccurs=\"0\" maxOccurs=\"unbounded\"\n\t\t\t\t\t\t\t\tprocessContents=\"strict\">\n\t\t\t\t\t\t\t</xsd:any>\n\t\t\t\t\t\t</xsd:sequence>\n\t\t\t\t\t\t<xsd:attribute ref=\"mc:Ignorable\" use=\"optional\" />\n\t\t\t\t\t\t<xsd:attribute ref=\"mc:MustUnderstand\" use=\"optional\" />\n\t\t\t\t\t\t<xsd:attribute ref=\"mc:ProcessContent\" use=\"optional\" />\n\t\t\t\t\t</xsd:complexType>\n\t\t\t\t</xsd:element>\n\t\t\t</xsd:sequence>\n\t\t\t<!-- AlternateContent elements might include the attributes Ignorable,\n\t\t\t\tMustUnderstand and ProcessContent described in this Part of ECMA-376. These\n\t\t\t\tattributes’ qualified names shall be prefixed when associated with an AlternateContent\n\t\t\t\telement. -->\n\t\t\t<xsd:attribute ref=\"mc:Ignorable\" use=\"optional\" />\n\t\t\t<xsd:attribute ref=\"mc:MustUnderstand\" use=\"optional\" />\n\t\t\t<xsd:attribute ref=\"mc:ProcessContent\" use=\"optional\" />\n\t\t</xsd:complexType>\n\t</xsd:element>\n</xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/microsoft/wml-2010.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w12=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\" xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\" xmlns=\"http://schemas.microsoft.com/office/word/2010/wordml\" targetNamespace=\"http://schemas.microsoft.com/office/word/2010/wordml\">\n   <!-- <xsd:import id=\"rel\" namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" schemaLocation=\"orel.xsd\"/> -->\n   <xsd:import id=\"w\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <!-- <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\" schemaLocation=\"oartbasetypes.xsd\"/>\n   <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\" schemaLocation=\"oartsplineproperties.xsd\"/> -->\n   <xsd:complexType name=\"CT_LongHexNumber\">\n     <xsd:attribute name=\"val\" type=\"w:ST_LongHexNumber\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_OnOff\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"true\"/>\n       <xsd:enumeration value=\"false\"/>\n       <xsd:enumeration value=\"0\"/>\n       <xsd:enumeration value=\"1\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_OnOff\">\n     <xsd:attribute name=\"val\" type=\"ST_OnOff\"/>\n   </xsd:complexType>\n   <xsd:element name=\"docId\" type=\"CT_LongHexNumber\"/>\n   <xsd:element name=\"conflictMode\" type=\"CT_OnOff\"/>\n   <xsd:attributeGroup name=\"AG_Parids\">\n     <xsd:attribute name=\"paraId\" type=\"w:ST_LongHexNumber\"/>\n     <xsd:attribute name=\"textId\" type=\"w:ST_LongHexNumber\"/>\n   </xsd:attributeGroup>\n   <xsd:attribute name=\"anchorId\" type=\"w:ST_LongHexNumber\"/>\n   <xsd:attribute name=\"noSpellErr\" type=\"ST_OnOff\"/>\n   <xsd:element name=\"customXmlConflictInsRangeStart\" type=\"w:CT_TrackChange\"/>\n   <xsd:element name=\"customXmlConflictInsRangeEnd\" type=\"w:CT_Markup\"/>\n   <xsd:element name=\"customXmlConflictDelRangeStart\" type=\"w:CT_TrackChange\"/>\n   <xsd:element name=\"customXmlConflictDelRangeEnd\" type=\"w:CT_Markup\"/>\n   <xsd:group name=\"EG_RunLevelConflicts\">\n     <xsd:sequence>\n       <xsd:element name=\"conflictIns\" type=\"w:CT_RunTrackChange\" minOccurs=\"0\"/>\n       <xsd:element name=\"conflictDel\" type=\"w:CT_RunTrackChange\" minOccurs=\"0\"/>\n     </xsd:sequence>\n   </xsd:group>\n   <xsd:group name=\"EG_Conflicts\">\n     <xsd:choice>\n       <xsd:element name=\"conflictIns\" type=\"w:CT_TrackChange\" minOccurs=\"0\"/>\n       <xsd:element name=\"conflictDel\" type=\"w:CT_TrackChange\" minOccurs=\"0\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:complexType name=\"CT_Percentage\">\n     <xsd:attribute name=\"val\" type=\"a:ST_Percentage\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_PositiveFixedPercentage\">\n     <xsd:attribute name=\"val\" type=\"a:ST_PositiveFixedPercentage\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_PositivePercentage\">\n     <xsd:attribute name=\"val\" type=\"a:ST_PositivePercentage\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_SchemeColorVal\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"bg1\"/>\n       <xsd:enumeration value=\"tx1\"/>\n       <xsd:enumeration value=\"bg2\"/>\n       <xsd:enumeration value=\"tx2\"/>\n       <xsd:enumeration value=\"accent1\"/>\n       <xsd:enumeration value=\"accent2\"/>\n       <xsd:enumeration value=\"accent3\"/>\n       <xsd:enumeration value=\"accent4\"/>\n       <xsd:enumeration value=\"accent5\"/>\n       <xsd:enumeration value=\"accent6\"/>\n       <xsd:enumeration value=\"hlink\"/>\n       <xsd:enumeration value=\"folHlink\"/>\n       <xsd:enumeration value=\"dk1\"/>\n       <xsd:enumeration value=\"lt1\"/>\n       <xsd:enumeration value=\"dk2\"/>\n       <xsd:enumeration value=\"lt2\"/>\n       <xsd:enumeration value=\"phClr\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_RectAlignment\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"none\"/>\n       <xsd:enumeration value=\"tl\"/>\n       <xsd:enumeration value=\"t\"/>\n       <xsd:enumeration value=\"tr\"/>\n       <xsd:enumeration value=\"l\"/>\n       <xsd:enumeration value=\"ctr\"/>\n       <xsd:enumeration value=\"r\"/>\n       <xsd:enumeration value=\"bl\"/>\n       <xsd:enumeration value=\"b\"/>\n       <xsd:enumeration value=\"br\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_PathShadeType\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"shape\"/>\n       <xsd:enumeration value=\"circle\"/>\n       <xsd:enumeration value=\"rect\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_LineCap\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"rnd\"/>\n       <xsd:enumeration value=\"sq\"/>\n       <xsd:enumeration value=\"flat\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_PresetLineDashVal\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"solid\"/>\n       <xsd:enumeration value=\"dot\"/>\n       <xsd:enumeration value=\"sysDot\"/>\n       <xsd:enumeration value=\"dash\"/>\n       <xsd:enumeration value=\"sysDash\"/>\n       <xsd:enumeration value=\"lgDash\"/>\n       <xsd:enumeration value=\"dashDot\"/>\n       <xsd:enumeration value=\"sysDashDot\"/>\n       <xsd:enumeration value=\"lgDashDot\"/>\n       <xsd:enumeration value=\"lgDashDotDot\"/>\n       <xsd:enumeration value=\"sysDashDotDot\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_PenAlignment\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"ctr\"/>\n       <xsd:enumeration value=\"in\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_CompoundLine\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"sng\"/>\n       <xsd:enumeration value=\"dbl\"/>\n       <xsd:enumeration value=\"thickThin\"/>\n       <xsd:enumeration value=\"thinThick\"/>\n       <xsd:enumeration value=\"tri\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_RelativeRect\">\n     <xsd:attribute name=\"l\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"t\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"r\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"b\" use=\"optional\" type=\"a:ST_Percentage\"/>\n   </xsd:complexType>\n   <xsd:group name=\"EG_ColorTransform\">\n     <xsd:choice>\n       <xsd:element name=\"tint\" type=\"CT_PositiveFixedPercentage\"/>\n       <xsd:element name=\"shade\" type=\"CT_PositiveFixedPercentage\"/>\n       <xsd:element name=\"alpha\" type=\"CT_PositiveFixedPercentage\"/>\n       <xsd:element name=\"hueMod\" type=\"CT_PositivePercentage\"/>\n       <xsd:element name=\"sat\" type=\"CT_Percentage\"/>\n       <xsd:element name=\"satOff\" type=\"CT_Percentage\"/>\n       <xsd:element name=\"satMod\" type=\"CT_Percentage\"/>\n       <xsd:element name=\"lum\" type=\"CT_Percentage\"/>\n       <xsd:element name=\"lumOff\" type=\"CT_Percentage\"/>\n       <xsd:element name=\"lumMod\" type=\"CT_Percentage\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:complexType name=\"CT_SRgbColor\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"val\" type=\"s:ST_HexColorRGB\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_SchemeColor\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"val\" type=\"ST_SchemeColorVal\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:group name=\"EG_ColorChoice\">\n     <xsd:choice>\n       <xsd:element name=\"srgbClr\" type=\"CT_SRgbColor\"/>\n       <xsd:element name=\"schemeClr\" type=\"CT_SchemeColor\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:complexType name=\"CT_Color\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorChoice\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_GradientStop\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorChoice\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"pos\" type=\"a:ST_PositiveFixedPercentage\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_GradientStopList\">\n     <xsd:sequence>\n       <xsd:element name=\"gs\" type=\"CT_GradientStop\" minOccurs=\"2\" maxOccurs=\"10\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_LinearShadeProperties\">\n     <xsd:attribute name=\"ang\" type=\"a:ST_PositiveFixedAngle\" use=\"optional\"/>\n     <xsd:attribute name=\"scaled\" type=\"ST_OnOff\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_PathShadeProperties\">\n     <xsd:sequence>\n       <xsd:element name=\"fillToRect\" type=\"CT_RelativeRect\" minOccurs=\"0\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"path\" type=\"ST_PathShadeType\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:group name=\"EG_ShadeProperties\">\n     <xsd:choice>\n       <xsd:element name=\"lin\" type=\"CT_LinearShadeProperties\"/>\n       <xsd:element name=\"path\" type=\"CT_PathShadeProperties\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:complexType name=\"CT_SolidColorFillProperties\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_GradientFillProperties\">\n     <xsd:sequence>\n       <xsd:element name=\"gsLst\" type=\"CT_GradientStopList\" minOccurs=\"0\"/>\n       <xsd:group ref=\"EG_ShadeProperties\" minOccurs=\"0\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:group name=\"EG_FillProperties\">\n     <xsd:choice>\n       <xsd:element name=\"noFill\" type=\"w:CT_Empty\"/>\n       <xsd:element name=\"solidFill\" type=\"CT_SolidColorFillProperties\"/>\n       <xsd:element name=\"gradFill\" type=\"CT_GradientFillProperties\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:complexType name=\"CT_PresetLineDashProperties\">\n     <xsd:attribute name=\"val\" type=\"ST_PresetLineDashVal\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:group name=\"EG_LineDashProperties\">\n     <xsd:choice>\n       <xsd:element name=\"prstDash\" type=\"CT_PresetLineDashProperties\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:complexType name=\"CT_LineJoinMiterProperties\">\n     <xsd:attribute name=\"lim\" type=\"a:ST_PositivePercentage\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:group name=\"EG_LineJoinProperties\">\n     <xsd:choice>\n       <xsd:element name=\"round\" type=\"w:CT_Empty\"/>\n       <xsd:element name=\"bevel\" type=\"w:CT_Empty\"/>\n       <xsd:element name=\"miter\" type=\"CT_LineJoinMiterProperties\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:simpleType name=\"ST_PresetCameraType\">\n     <xsd:restriction base=\"xsd:token\">\n       <xsd:enumeration value=\"legacyObliqueTopLeft\"/>\n       <xsd:enumeration value=\"legacyObliqueTop\"/>\n       <xsd:enumeration value=\"legacyObliqueTopRight\"/>\n       <xsd:enumeration value=\"legacyObliqueLeft\"/>\n       <xsd:enumeration value=\"legacyObliqueFront\"/>\n       <xsd:enumeration value=\"legacyObliqueRight\"/>\n       <xsd:enumeration value=\"legacyObliqueBottomLeft\"/>\n       <xsd:enumeration value=\"legacyObliqueBottom\"/>\n       <xsd:enumeration value=\"legacyObliqueBottomRight\"/>\n       <xsd:enumeration value=\"legacyPerspectiveTopLeft\"/>\n       <xsd:enumeration value=\"legacyPerspectiveTop\"/>\n       <xsd:enumeration value=\"legacyPerspectiveTopRight\"/>\n       <xsd:enumeration value=\"legacyPerspectiveLeft\"/>\n       <xsd:enumeration value=\"legacyPerspectiveFront\"/>\n       <xsd:enumeration value=\"legacyPerspectiveRight\"/>\n       <xsd:enumeration value=\"legacyPerspectiveBottomLeft\"/>\n       <xsd:enumeration value=\"legacyPerspectiveBottom\"/>\n       <xsd:enumeration value=\"legacyPerspectiveBottomRight\"/>\n       <xsd:enumeration value=\"orthographicFront\"/>\n       <xsd:enumeration value=\"isometricTopUp\"/>\n       <xsd:enumeration value=\"isometricTopDown\"/>\n       <xsd:enumeration value=\"isometricBottomUp\"/>\n       <xsd:enumeration value=\"isometricBottomDown\"/>\n       <xsd:enumeration value=\"isometricLeftUp\"/>\n       <xsd:enumeration value=\"isometricLeftDown\"/>\n       <xsd:enumeration value=\"isometricRightUp\"/>\n       <xsd:enumeration value=\"isometricRightDown\"/>\n       <xsd:enumeration value=\"isometricOffAxis1Left\"/>\n       <xsd:enumeration value=\"isometricOffAxis1Right\"/>\n       <xsd:enumeration value=\"isometricOffAxis1Top\"/>\n       <xsd:enumeration value=\"isometricOffAxis2Left\"/>\n       <xsd:enumeration value=\"isometricOffAxis2Right\"/>\n       <xsd:enumeration value=\"isometricOffAxis2Top\"/>\n       <xsd:enumeration value=\"isometricOffAxis3Left\"/>\n       <xsd:enumeration value=\"isometricOffAxis3Right\"/>\n       <xsd:enumeration value=\"isometricOffAxis3Bottom\"/>\n       <xsd:enumeration value=\"isometricOffAxis4Left\"/>\n       <xsd:enumeration value=\"isometricOffAxis4Right\"/>\n       <xsd:enumeration value=\"isometricOffAxis4Bottom\"/>\n       <xsd:enumeration value=\"obliqueTopLeft\"/>\n       <xsd:enumeration value=\"obliqueTop\"/>\n       <xsd:enumeration value=\"obliqueTopRight\"/>\n       <xsd:enumeration value=\"obliqueLeft\"/>\n       <xsd:enumeration value=\"obliqueRight\"/>\n       <xsd:enumeration value=\"obliqueBottomLeft\"/>\n       <xsd:enumeration value=\"obliqueBottom\"/>\n       <xsd:enumeration value=\"obliqueBottomRight\"/>\n       <xsd:enumeration value=\"perspectiveFront\"/>\n       <xsd:enumeration value=\"perspectiveLeft\"/>\n       <xsd:enumeration value=\"perspectiveRight\"/>\n       <xsd:enumeration value=\"perspectiveAbove\"/>\n       <xsd:enumeration value=\"perspectiveBelow\"/>\n       <xsd:enumeration value=\"perspectiveAboveLeftFacing\"/>\n       <xsd:enumeration value=\"perspectiveAboveRightFacing\"/>\n       <xsd:enumeration value=\"perspectiveContrastingLeftFacing\"/>\n       <xsd:enumeration value=\"perspectiveContrastingRightFacing\"/>\n       <xsd:enumeration value=\"perspectiveHeroicLeftFacing\"/>\n       <xsd:enumeration value=\"perspectiveHeroicRightFacing\"/>\n       <xsd:enumeration value=\"perspectiveHeroicExtremeLeftFacing\"/>\n       <xsd:enumeration value=\"perspectiveHeroicExtremeRightFacing\"/>\n       <xsd:enumeration value=\"perspectiveRelaxed\"/>\n       <xsd:enumeration value=\"perspectiveRelaxedModerately\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_Camera\">\n     <xsd:attribute name=\"prst\" use=\"required\" type=\"ST_PresetCameraType\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_SphereCoords\">\n     <xsd:attribute name=\"lat\" type=\"a:ST_PositiveFixedAngle\" use=\"required\"/>\n     <xsd:attribute name=\"lon\" type=\"a:ST_PositiveFixedAngle\" use=\"required\"/>\n     <xsd:attribute name=\"rev\" type=\"a:ST_PositiveFixedAngle\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_LightRigType\">\n     <xsd:restriction base=\"xsd:token\">\n       <xsd:enumeration value=\"legacyFlat1\"/>\n       <xsd:enumeration value=\"legacyFlat2\"/>\n       <xsd:enumeration value=\"legacyFlat3\"/>\n       <xsd:enumeration value=\"legacyFlat4\"/>\n       <xsd:enumeration value=\"legacyNormal1\"/>\n       <xsd:enumeration value=\"legacyNormal2\"/>\n       <xsd:enumeration value=\"legacyNormal3\"/>\n       <xsd:enumeration value=\"legacyNormal4\"/>\n       <xsd:enumeration value=\"legacyHarsh1\"/>\n       <xsd:enumeration value=\"legacyHarsh2\"/>\n       <xsd:enumeration value=\"legacyHarsh3\"/>\n       <xsd:enumeration value=\"legacyHarsh4\"/>\n       <xsd:enumeration value=\"threePt\"/>\n       <xsd:enumeration value=\"balanced\"/>\n       <xsd:enumeration value=\"soft\"/>\n       <xsd:enumeration value=\"harsh\"/>\n       <xsd:enumeration value=\"flood\"/>\n       <xsd:enumeration value=\"contrasting\"/>\n       <xsd:enumeration value=\"morning\"/>\n       <xsd:enumeration value=\"sunrise\"/>\n       <xsd:enumeration value=\"sunset\"/>\n       <xsd:enumeration value=\"chilly\"/>\n       <xsd:enumeration value=\"freezing\"/>\n       <xsd:enumeration value=\"flat\"/>\n       <xsd:enumeration value=\"twoPt\"/>\n       <xsd:enumeration value=\"glow\"/>\n       <xsd:enumeration value=\"brightRoom\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_LightRigDirection\">\n     <xsd:restriction base=\"xsd:token\">\n       <xsd:enumeration value=\"tl\"/>\n       <xsd:enumeration value=\"t\"/>\n       <xsd:enumeration value=\"tr\"/>\n       <xsd:enumeration value=\"l\"/>\n       <xsd:enumeration value=\"r\"/>\n       <xsd:enumeration value=\"bl\"/>\n       <xsd:enumeration value=\"b\"/>\n       <xsd:enumeration value=\"br\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_LightRig\">\n     <xsd:sequence>\n       <xsd:element name=\"rot\" type=\"CT_SphereCoords\" minOccurs=\"0\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"rig\" type=\"ST_LightRigType\" use=\"required\"/>\n     <xsd:attribute name=\"dir\" type=\"ST_LightRigDirection\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_BevelPresetType\">\n     <xsd:restriction base=\"xsd:token\">\n       <xsd:enumeration value=\"relaxedInset\"/>\n       <xsd:enumeration value=\"circle\"/>\n       <xsd:enumeration value=\"slope\"/>\n       <xsd:enumeration value=\"cross\"/>\n       <xsd:enumeration value=\"angle\"/>\n       <xsd:enumeration value=\"softRound\"/>\n       <xsd:enumeration value=\"convex\"/>\n       <xsd:enumeration value=\"coolSlant\"/>\n       <xsd:enumeration value=\"divot\"/>\n       <xsd:enumeration value=\"riblet\"/>\n       <xsd:enumeration value=\"hardEdge\"/>\n       <xsd:enumeration value=\"artDeco\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_Bevel\">\n     <xsd:attribute name=\"w\" type=\"a:ST_PositiveCoordinate\" use=\"optional\"/>\n     <xsd:attribute name=\"h\" type=\"a:ST_PositiveCoordinate\" use=\"optional\"/>\n     <xsd:attribute name=\"prst\" type=\"ST_BevelPresetType\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_PresetMaterialType\">\n     <xsd:restriction base=\"xsd:token\">\n       <xsd:enumeration value=\"legacyMatte\"/>\n       <xsd:enumeration value=\"legacyPlastic\"/>\n       <xsd:enumeration value=\"legacyMetal\"/>\n       <xsd:enumeration value=\"legacyWireframe\"/>\n       <xsd:enumeration value=\"matte\"/>\n       <xsd:enumeration value=\"plastic\"/>\n       <xsd:enumeration value=\"metal\"/>\n       <xsd:enumeration value=\"warmMatte\"/>\n       <xsd:enumeration value=\"translucentPowder\"/>\n       <xsd:enumeration value=\"powder\"/>\n       <xsd:enumeration value=\"dkEdge\"/>\n       <xsd:enumeration value=\"softEdge\"/>\n       <xsd:enumeration value=\"clear\"/>\n       <xsd:enumeration value=\"flat\"/>\n       <xsd:enumeration value=\"softmetal\"/>\n       <xsd:enumeration value=\"none\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_Glow\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorChoice\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"rad\" use=\"optional\" type=\"a:ST_PositiveCoordinate\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_Shadow\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorChoice\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"blurRad\" use=\"optional\" type=\"a:ST_PositiveCoordinate\"/>\n     <xsd:attribute name=\"dist\" use=\"optional\" type=\"a:ST_PositiveCoordinate\"/>\n     <xsd:attribute name=\"dir\" use=\"optional\" type=\"a:ST_PositiveFixedAngle\"/>\n     <xsd:attribute name=\"sx\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"sy\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"kx\" use=\"optional\" type=\"a:ST_FixedAngle\"/>\n     <xsd:attribute name=\"ky\" use=\"optional\" type=\"a:ST_FixedAngle\"/>\n     <xsd:attribute name=\"algn\" use=\"optional\" type=\"ST_RectAlignment\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_Reflection\">\n     <xsd:attribute name=\"blurRad\" use=\"optional\" type=\"a:ST_PositiveCoordinate\"/>\n     <xsd:attribute name=\"stA\" use=\"optional\" type=\"a:ST_PositiveFixedPercentage\"/>\n     <xsd:attribute name=\"stPos\" use=\"optional\" type=\"a:ST_PositiveFixedPercentage\"/>\n     <xsd:attribute name=\"endA\" use=\"optional\" type=\"a:ST_PositiveFixedPercentage\"/>\n     <xsd:attribute name=\"endPos\" use=\"optional\" type=\"a:ST_PositiveFixedPercentage\"/>\n     <xsd:attribute name=\"dist\" use=\"optional\" type=\"a:ST_PositiveCoordinate\"/>\n     <xsd:attribute name=\"dir\" use=\"optional\" type=\"a:ST_PositiveFixedAngle\"/>\n     <xsd:attribute name=\"fadeDir\" use=\"optional\" type=\"a:ST_PositiveFixedAngle\"/>\n     <xsd:attribute name=\"sx\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"sy\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"kx\" use=\"optional\" type=\"a:ST_FixedAngle\"/>\n     <xsd:attribute name=\"ky\" use=\"optional\" type=\"a:ST_FixedAngle\"/>\n     <xsd:attribute name=\"algn\" use=\"optional\" type=\"ST_RectAlignment\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_FillTextEffect\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_TextOutlineEffect\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\"/>\n       <xsd:group ref=\"EG_LineDashProperties\" minOccurs=\"0\"/>\n       <xsd:group ref=\"EG_LineJoinProperties\" minOccurs=\"0\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"w\" use=\"optional\" type=\"a:ST_LineWidth\"/>\n     <xsd:attribute name=\"cap\" use=\"optional\" type=\"ST_LineCap\"/>\n     <xsd:attribute name=\"cmpd\" use=\"optional\" type=\"ST_CompoundLine\"/>\n     <xsd:attribute name=\"algn\" use=\"optional\" type=\"ST_PenAlignment\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_Scene3D\">\n     <xsd:sequence>\n       <xsd:element name=\"camera\" type=\"CT_Camera\"/>\n       <xsd:element name=\"lightRig\" type=\"CT_LightRig\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_Props3D\">\n     <xsd:sequence>\n       <xsd:element name=\"bevelT\" type=\"CT_Bevel\" minOccurs=\"0\"/>\n       <xsd:element name=\"bevelB\" type=\"CT_Bevel\" minOccurs=\"0\"/>\n       <xsd:element name=\"extrusionClr\" type=\"CT_Color\" minOccurs=\"0\"/>\n       <xsd:element name=\"contourClr\" type=\"CT_Color\" minOccurs=\"0\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"extrusionH\" type=\"a:ST_PositiveCoordinate\" use=\"optional\"/>\n     <xsd:attribute name=\"contourW\" type=\"a:ST_PositiveCoordinate\" use=\"optional\"/>\n     <xsd:attribute name=\"prstMaterial\" type=\"ST_PresetMaterialType\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:group name=\"EG_RPrTextEffects\">\n     <xsd:sequence>\n       <xsd:element name=\"glow\" minOccurs=\"0\" type=\"CT_Glow\"/>\n       <xsd:element name=\"shadow\" minOccurs=\"0\" type=\"CT_Shadow\"/>\n       <xsd:element name=\"reflection\" minOccurs=\"0\" type=\"CT_Reflection\"/>\n       <xsd:element name=\"textOutline\" minOccurs=\"0\" type=\"CT_TextOutlineEffect\"/>\n       <xsd:element name=\"textFill\" minOccurs=\"0\" type=\"CT_FillTextEffect\"/>\n       <xsd:element name=\"scene3d\" minOccurs=\"0\" type=\"CT_Scene3D\"/>\n       <xsd:element name=\"props3d\" minOccurs=\"0\" type=\"CT_Props3D\"/>\n     </xsd:sequence>\n   </xsd:group>\n   <xsd:simpleType name=\"ST_Ligatures\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"none\"/>\n       <xsd:enumeration value=\"standard\"/>\n       <xsd:enumeration value=\"contextual\"/>\n       <xsd:enumeration value=\"historical\"/>\n       <xsd:enumeration value=\"discretional\"/>\n       <xsd:enumeration value=\"standardContextual\"/>\n       <xsd:enumeration value=\"standardHistorical\"/>\n       <xsd:enumeration value=\"contextualHistorical\"/>\n       <xsd:enumeration value=\"standardDiscretional\"/>\n       <xsd:enumeration value=\"contextualDiscretional\"/>\n       <xsd:enumeration value=\"historicalDiscretional\"/>\n       <xsd:enumeration value=\"standardContextualHistorical\"/>\n       <xsd:enumeration value=\"standardContextualDiscretional\"/>\n       <xsd:enumeration value=\"standardHistoricalDiscretional\"/>\n       <xsd:enumeration value=\"contextualHistoricalDiscretional\"/>\n       <xsd:enumeration value=\"all\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_Ligatures\">\n     <xsd:attribute name=\"val\" type=\"ST_Ligatures\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_NumForm\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"default\"/>\n       <xsd:enumeration value=\"lining\"/>\n       <xsd:enumeration value=\"oldStyle\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_NumForm\">\n     <xsd:attribute name=\"val\" type=\"ST_NumForm\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_NumSpacing\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"default\"/>\n       <xsd:enumeration value=\"proportional\"/>\n       <xsd:enumeration value=\"tabular\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_NumSpacing\">\n     <xsd:attribute name=\"val\" type=\"ST_NumSpacing\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_StyleSet\">\n     <xsd:attribute name=\"id\" type=\"s:ST_UnsignedDecimalNumber\" use=\"required\"/>\n     <xsd:attribute name=\"val\" type=\"ST_OnOff\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_StylisticSets\">\n     <xsd:sequence minOccurs=\"0\">\n       <xsd:element name=\"styleSet\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_StyleSet\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:group name=\"EG_RPrOpenType\">\n     <xsd:sequence>\n       <xsd:element name=\"ligatures\" minOccurs=\"0\" type=\"CT_Ligatures\"/>\n       <xsd:element name=\"numForm\" minOccurs=\"0\" type=\"CT_NumForm\"/>\n       <xsd:element name=\"numSpacing\" minOccurs=\"0\" type=\"CT_NumSpacing\"/>\n       <xsd:element name=\"stylisticSets\" minOccurs=\"0\" type=\"CT_StylisticSets\"/>\n       <xsd:element name=\"cntxtAlts\" minOccurs=\"0\" type=\"CT_OnOff\"/>\n     </xsd:sequence>\n   </xsd:group>\n   <xsd:element name=\"discardImageEditingData\" type=\"CT_OnOff\"/>\n   <xsd:element name=\"defaultImageDpi\" type=\"CT_DefaultImageDpi\"/>\n   <xsd:complexType name=\"CT_DefaultImageDpi\">\n     <xsd:attribute name=\"val\" type=\"w:ST_DecimalNumber\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:element name=\"entityPicker\" type=\"w:CT_Empty\"/>\n   <xsd:complexType name=\"CT_SdtCheckboxSymbol\">\n     <xsd:attribute name=\"font\" type=\"s:ST_String\"/>\n     <xsd:attribute name=\"val\" type=\"w:ST_ShortHexNumber\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_SdtCheckbox\">\n     <xsd:sequence>\n       <xsd:element name=\"checked\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n       <xsd:element name=\"checkedState\" type=\"CT_SdtCheckboxSymbol\" minOccurs=\"0\"/>\n       <xsd:element name=\"uncheckedState\" type=\"CT_SdtCheckboxSymbol\" minOccurs=\"0\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:element name=\"checkbox\" type=\"CT_SdtCheckbox\"/>\n </xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/microsoft/wml-2012.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w12=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns=\"http://schemas.microsoft.com/office/word/2012/wordml\" targetNamespace=\"http://schemas.microsoft.com/office/word/2012/wordml\">\n   <xsd:import id=\"w12\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\" schemaLocation=\"../ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd\"/>\n   <xsd:element name=\"color\" type=\"w12:CT_Color\"/>\n   <xsd:simpleType name=\"ST_SdtAppearance\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"boundingBox\"/>\n       <xsd:enumeration value=\"tags\"/>\n       <xsd:enumeration value=\"hidden\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:element name=\"dataBinding\" type=\"w12:CT_DataBinding\"/>\n   <xsd:complexType name=\"CT_SdtAppearance\">\n     <xsd:attribute name=\"val\" type=\"ST_SdtAppearance\"/>\n   </xsd:complexType>\n   <xsd:element name=\"appearance\" type=\"CT_SdtAppearance\"/>\n   <xsd:complexType name=\"CT_CommentsEx\">\n     <xsd:sequence>\n       <xsd:element name=\"commentEx\" type=\"CT_CommentEx\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_CommentEx\">\n     <xsd:attribute name=\"paraId\" type=\"w12:ST_LongHexNumber\" use=\"required\"/>\n     <xsd:attribute name=\"paraIdParent\" type=\"w12:ST_LongHexNumber\" use=\"optional\"/>\n     <xsd:attribute name=\"done\" type=\"s:ST_OnOff\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:element name=\"commentsEx\" type=\"CT_CommentsEx\"/>\n   <xsd:complexType name=\"CT_People\">\n     <xsd:sequence>\n       <xsd:element name=\"person\" type=\"CT_Person\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_PresenceInfo\">\n     <xsd:attribute name=\"providerId\" type=\"xsd:string\" use=\"required\"/>\n     <xsd:attribute name=\"userId\" type=\"xsd:string\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_Person\">\n     <xsd:sequence>\n       <xsd:element name=\"presenceInfo\" type=\"CT_PresenceInfo\" minOccurs=\"0\" maxOccurs=\"1\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"author\" type=\"s:ST_String\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:element name=\"people\" type=\"CT_People\"/>\n   <xsd:complexType name=\"CT_SdtRepeatedSection\">\n     <xsd:sequence>\n       <xsd:element name=\"sectionTitle\" type=\"w12:CT_String\" minOccurs=\"0\"/>\n       <xsd:element name=\"doNotAllowInsertDeleteSection\" type=\"w12:CT_OnOff\" minOccurs=\"0\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_Guid\">\n     <xsd:restriction base=\"xsd:token\">\n       <xsd:pattern value=\"\\{[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}\\}\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_Guid\">\n     <xsd:attribute name=\"val\" type=\"ST_Guid\"/>\n   </xsd:complexType>\n   <xsd:element name=\"repeatingSection\" type=\"CT_SdtRepeatedSection\"/>\n   <xsd:element name=\"repeatingSectionItem\" type=\"w12:CT_Empty\"/>\n   <xsd:element name=\"chartTrackingRefBased\" type=\"w12:CT_OnOff\"/>\n   <xsd:element name=\"collapsed\" type=\"w12:CT_OnOff\"/>\n   <xsd:element name=\"docId\" type=\"CT_Guid\"/>\n   <xsd:element name=\"footnoteColumns\" type=\"w12:CT_DecimalNumber\"/>\n   <xsd:element name=\"webExtensionLinked\" type=\"w12:CT_OnOff\"/>\n   <xsd:element name=\"webExtensionCreated\" type=\"w12:CT_OnOff\"/>\n   <xsd:attribute name=\"restartNumberingAfterBreak\" type=\"s:ST_OnOff\"/>\n </xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/microsoft/wml-2018.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w12=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns=\"http://schemas.microsoft.com/office/word/2018/wordml\" targetNamespace=\"http://schemas.microsoft.com/office/word/2018/wordml\">\n   <xsd:import id=\"w12\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <xsd:complexType name=\"CT_Extension\">\n     <xsd:sequence>\n       <xsd:any processContents=\"lax\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"uri\" type=\"xsd:token\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_ExtensionList\">\n     <xsd:sequence>\n       <xsd:element name=\"ext\" type=\"CT_Extension\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n </xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/microsoft/wml-cex-2018.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\" xmlns:w16=\"http://schemas.microsoft.com/office/word/2018/wordml\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns=\"http://schemas.microsoft.com/office/word/2018/wordml/cex\" targetNamespace=\"http://schemas.microsoft.com/office/word/2018/wordml/cex\">\n   <xsd:import id=\"w16\" namespace=\"http://schemas.microsoft.com/office/word/2018/wordml\" schemaLocation=\"wml-2018.xsd\"/>\n   <xsd:import id=\"w\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <xsd:import id=\"s\" namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\" schemaLocation=\"../ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd\"/>\n   <xsd:complexType name=\"CT_CommentsExtensible\">\n     <xsd:sequence>\n       <xsd:element name=\"commentExtensible\" type=\"CT_CommentExtensible\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n       <xsd:element name=\"extLst\" type=\"w16:CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_CommentExtensible\">\n     <xsd:sequence>\n       <xsd:element name=\"extLst\" type=\"w16:CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"durableId\" type=\"w:ST_LongHexNumber\" use=\"required\"/>\n     <xsd:attribute name=\"dateUtc\" type=\"w:ST_DateTime\" use=\"optional\"/>\n     <xsd:attribute name=\"intelligentPlaceholder\" type=\"s:ST_OnOff\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:element name=\"commentsExtensible\" type=\"CT_CommentsExtensible\"/>\n </xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/microsoft/wml-cid-2016.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w12=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns=\"http://schemas.microsoft.com/office/word/2016/wordml/cid\" targetNamespace=\"http://schemas.microsoft.com/office/word/2016/wordml/cid\">\n   <xsd:import id=\"w12\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <xsd:complexType name=\"CT_CommentsIds\">\n     <xsd:sequence>\n       <xsd:element name=\"commentId\" type=\"CT_CommentId\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_CommentId\">\n     <xsd:attribute name=\"paraId\" type=\"w12:ST_LongHexNumber\" use=\"required\"/>\n     <xsd:attribute name=\"durableId\" type=\"w12:ST_LongHexNumber\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:element name=\"commentsIds\" type=\"CT_CommentsIds\"/>\n </xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w12=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns=\"http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash\" targetNamespace=\"http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash\">\n   <xsd:import id=\"w12\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <xsd:attribute name=\"storeItemChecksum\" type=\"w12:ST_String\"/>\n </xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/schemas/microsoft/wml-symex-2015.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w12=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns=\"http://schemas.microsoft.com/office/word/2015/wordml/symex\" targetNamespace=\"http://schemas.microsoft.com/office/word/2015/wordml/symex\">\n   <xsd:import id=\"w12\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <xsd:complexType name=\"CT_SymEx\">\n     <xsd:attribute name=\"font\" type=\"w12:ST_String\"/>\n     <xsd:attribute name=\"char\" type=\"w12:ST_LongHexNumber\"/>\n   </xsd:complexType>\n   <xsd:element name=\"symEx\" type=\"CT_SymEx\"/>\n </xsd:schema>\n"
  },
  {
    "path": "skills/pptx/scripts/office/soffice.py",
    "content": "\"\"\"\nHelper for running LibreOffice (soffice) in environments where AF_UNIX\nsockets may be blocked (e.g., sandboxed VMs).  Detects the restriction\nat runtime and applies an LD_PRELOAD shim if needed.\n\nUsage:\n    from office.soffice import run_soffice, get_soffice_env\n\n    # Option 1 – run soffice directly\n    result = run_soffice([\"--headless\", \"--convert-to\", \"pdf\", \"input.docx\"])\n\n    # Option 2 – get env dict for your own subprocess calls\n    env = get_soffice_env()\n    subprocess.run([\"soffice\", ...], env=env)\n\"\"\"\n\nimport os\nimport socket\nimport subprocess\nimport tempfile\nfrom pathlib import Path\n\n\ndef get_soffice_env() -> dict:\n    env = os.environ.copy()\n    env[\"SAL_USE_VCLPLUGIN\"] = \"svp\"\n\n    if _needs_shim():\n        shim = _ensure_shim()\n        env[\"LD_PRELOAD\"] = str(shim)\n\n    return env\n\n\ndef run_soffice(args: list[str], **kwargs) -> subprocess.CompletedProcess:\n    env = get_soffice_env()\n    return subprocess.run([\"soffice\"] + args, env=env, **kwargs)\n\n\n\n_SHIM_SO = Path(tempfile.gettempdir()) / \"lo_socket_shim.so\"\n\n\ndef _needs_shim() -> bool:\n    try:\n        s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)\n        s.close()\n        return False\n    except OSError:\n        return True\n\n\ndef _ensure_shim() -> Path:\n    if _SHIM_SO.exists():\n        return _SHIM_SO\n\n    src = Path(tempfile.gettempdir()) / \"lo_socket_shim.c\"\n    src.write_text(_SHIM_SOURCE)\n    subprocess.run(\n        [\"gcc\", \"-shared\", \"-fPIC\", \"-o\", str(_SHIM_SO), str(src), \"-ldl\"],\n        check=True,\n        capture_output=True,\n    )\n    src.unlink()\n    return _SHIM_SO\n\n\n\n_SHIM_SOURCE = r\"\"\"\n#define _GNU_SOURCE\n#include <dlfcn.h>\n#include <errno.h>\n#include <signal.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <sys/socket.h>\n#include <unistd.h>\n\nstatic int (*real_socket)(int, int, int);\nstatic int (*real_socketpair)(int, int, int, int[2]);\nstatic int (*real_listen)(int, int);\nstatic int (*real_accept)(int, struct sockaddr *, socklen_t *);\nstatic int (*real_close)(int);\nstatic int (*real_read)(int, void *, size_t);\n\n/* Per-FD bookkeeping (FDs >= 1024 are passed through unshimmed). */\nstatic int is_shimmed[1024];\nstatic int peer_of[1024];\nstatic int wake_r[1024];            /* accept() blocks reading this */\nstatic int wake_w[1024];            /* close()  writes to this      */\nstatic int listener_fd = -1;        /* FD that received listen()    */\n\n__attribute__((constructor))\nstatic void init(void) {\n    real_socket     = dlsym(RTLD_NEXT, \"socket\");\n    real_socketpair = dlsym(RTLD_NEXT, \"socketpair\");\n    real_listen     = dlsym(RTLD_NEXT, \"listen\");\n    real_accept     = dlsym(RTLD_NEXT, \"accept\");\n    real_close      = dlsym(RTLD_NEXT, \"close\");\n    real_read       = dlsym(RTLD_NEXT, \"read\");\n    for (int i = 0; i < 1024; i++) {\n        peer_of[i] = -1;\n        wake_r[i]  = -1;\n        wake_w[i]  = -1;\n    }\n}\n\n/* ---- socket ---------------------------------------------------------- */\nint socket(int domain, int type, int protocol) {\n    if (domain == AF_UNIX) {\n        int fd = real_socket(domain, type, protocol);\n        if (fd >= 0) return fd;\n        /* socket(AF_UNIX) blocked – fall back to socketpair(). */\n        int sv[2];\n        if (real_socketpair(domain, type, protocol, sv) == 0) {\n            if (sv[0] >= 0 && sv[0] < 1024) {\n                is_shimmed[sv[0]] = 1;\n                peer_of[sv[0]]    = sv[1];\n                int wp[2];\n                if (pipe(wp) == 0) {\n                    wake_r[sv[0]] = wp[0];\n                    wake_w[sv[0]] = wp[1];\n                }\n            }\n            return sv[0];\n        }\n        errno = EPERM;\n        return -1;\n    }\n    return real_socket(domain, type, protocol);\n}\n\n/* ---- listen ---------------------------------------------------------- */\nint listen(int sockfd, int backlog) {\n    if (sockfd >= 0 && sockfd < 1024 && is_shimmed[sockfd]) {\n        listener_fd = sockfd;\n        return 0;\n    }\n    return real_listen(sockfd, backlog);\n}\n\n/* ---- accept ---------------------------------------------------------- */\nint accept(int sockfd, struct sockaddr *addr, socklen_t *addrlen) {\n    if (sockfd >= 0 && sockfd < 1024 && is_shimmed[sockfd]) {\n        /* Block until close() writes to the wake pipe. */\n        if (wake_r[sockfd] >= 0) {\n            char buf;\n            real_read(wake_r[sockfd], &buf, 1);\n        }\n        errno = ECONNABORTED;\n        return -1;\n    }\n    return real_accept(sockfd, addr, addrlen);\n}\n\n/* ---- close ----------------------------------------------------------- */\nint close(int fd) {\n    if (fd >= 0 && fd < 1024 && is_shimmed[fd]) {\n        int was_listener = (fd == listener_fd);\n        is_shimmed[fd] = 0;\n\n        if (wake_w[fd] >= 0) {              /* unblock accept() */\n            char c = 0;\n            write(wake_w[fd], &c, 1);\n            real_close(wake_w[fd]);\n            wake_w[fd] = -1;\n        }\n        if (wake_r[fd] >= 0) { real_close(wake_r[fd]); wake_r[fd]  = -1; }\n        if (peer_of[fd] >= 0) { real_close(peer_of[fd]); peer_of[fd] = -1; }\n\n        if (was_listener)\n            _exit(0);                        /* conversion done – exit */\n    }\n    return real_close(fd);\n}\n\"\"\"\n\n\n\nif __name__ == \"__main__\":\n    import sys\n    result = run_soffice(sys.argv[1:])\n    sys.exit(result.returncode)\n"
  },
  {
    "path": "skills/pptx/scripts/office/unpack.py",
    "content": "\"\"\"Unpack Office files (DOCX, PPTX, XLSX) for editing.\n\nExtracts the ZIP archive, pretty-prints XML files, and optionally:\n- Merges adjacent runs with identical formatting (DOCX only)\n- Simplifies adjacent tracked changes from same author (DOCX only)\n\nUsage:\n    python unpack.py <office_file> <output_dir> [options]\n\nExamples:\n    python unpack.py document.docx unpacked/\n    python unpack.py presentation.pptx unpacked/\n    python unpack.py document.docx unpacked/ --merge-runs false\n\"\"\"\n\nimport argparse\nimport sys\nimport zipfile\nfrom pathlib import Path\n\nimport defusedxml.minidom\n\nfrom helpers.merge_runs import merge_runs as do_merge_runs\nfrom helpers.simplify_redlines import simplify_redlines as do_simplify_redlines\n\nSMART_QUOTE_REPLACEMENTS = {\n    \"\\u201c\": \"&#x201C;\",  \n    \"\\u201d\": \"&#x201D;\",  \n    \"\\u2018\": \"&#x2018;\",  \n    \"\\u2019\": \"&#x2019;\",  \n}\n\n\ndef unpack(\n    input_file: str,\n    output_directory: str,\n    merge_runs: bool = True,\n    simplify_redlines: bool = True,\n) -> tuple[None, str]:\n    input_path = Path(input_file)\n    output_path = Path(output_directory)\n    suffix = input_path.suffix.lower()\n\n    if not input_path.exists():\n        return None, f\"Error: {input_file} does not exist\"\n\n    if suffix not in {\".docx\", \".pptx\", \".xlsx\"}:\n        return None, f\"Error: {input_file} must be a .docx, .pptx, or .xlsx file\"\n\n    try:\n        output_path.mkdir(parents=True, exist_ok=True)\n\n        with zipfile.ZipFile(input_path, \"r\") as zf:\n            zf.extractall(output_path)\n\n        xml_files = list(output_path.rglob(\"*.xml\")) + list(output_path.rglob(\"*.rels\"))\n        for xml_file in xml_files:\n            _pretty_print_xml(xml_file)\n\n        message = f\"Unpacked {input_file} ({len(xml_files)} XML files)\"\n\n        if suffix == \".docx\":\n            if simplify_redlines:\n                simplify_count, _ = do_simplify_redlines(str(output_path))\n                message += f\", simplified {simplify_count} tracked changes\"\n\n            if merge_runs:\n                merge_count, _ = do_merge_runs(str(output_path))\n                message += f\", merged {merge_count} runs\"\n\n        for xml_file in xml_files:\n            _escape_smart_quotes(xml_file)\n\n        return None, message\n\n    except zipfile.BadZipFile:\n        return None, f\"Error: {input_file} is not a valid Office file\"\n    except Exception as e:\n        return None, f\"Error unpacking: {e}\"\n\n\ndef _pretty_print_xml(xml_file: Path) -> None:\n    try:\n        content = xml_file.read_text(encoding=\"utf-8\")\n        dom = defusedxml.minidom.parseString(content)\n        xml_file.write_bytes(dom.toprettyxml(indent=\"  \", encoding=\"utf-8\"))\n    except Exception:\n        pass  \n\n\ndef _escape_smart_quotes(xml_file: Path) -> None:\n    try:\n        content = xml_file.read_text(encoding=\"utf-8\")\n        for char, entity in SMART_QUOTE_REPLACEMENTS.items():\n            content = content.replace(char, entity)\n        xml_file.write_text(content, encoding=\"utf-8\")\n    except Exception:\n        pass\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser(\n        description=\"Unpack an Office file (DOCX, PPTX, XLSX) for editing\"\n    )\n    parser.add_argument(\"input_file\", help=\"Office file to unpack\")\n    parser.add_argument(\"output_directory\", help=\"Output directory\")\n    parser.add_argument(\n        \"--merge-runs\",\n        type=lambda x: x.lower() == \"true\",\n        default=True,\n        metavar=\"true|false\",\n        help=\"Merge adjacent runs with identical formatting (DOCX only, default: true)\",\n    )\n    parser.add_argument(\n        \"--simplify-redlines\",\n        type=lambda x: x.lower() == \"true\",\n        default=True,\n        metavar=\"true|false\",\n        help=\"Merge adjacent tracked changes from same author (DOCX only, default: true)\",\n    )\n    args = parser.parse_args()\n\n    _, message = unpack(\n        args.input_file,\n        args.output_directory,\n        merge_runs=args.merge_runs,\n        simplify_redlines=args.simplify_redlines,\n    )\n    print(message)\n\n    if \"Error\" in message:\n        sys.exit(1)\n"
  },
  {
    "path": "skills/pptx/scripts/office/validate.py",
    "content": "\"\"\"\nCommand line tool to validate Office document XML files against XSD schemas and tracked changes.\n\nUsage:\n    python validate.py <path> [--original <original_file>] [--auto-repair] [--author NAME]\n\nThe first argument can be either:\n- An unpacked directory containing the Office document XML files\n- A packed Office file (.docx/.pptx/.xlsx) which will be unpacked to a temp directory\n\nAuto-repair fixes:\n- paraId/durableId values that exceed OOXML limits\n- Missing xml:space=\"preserve\" on w:t elements with whitespace\n\"\"\"\n\nimport argparse\nimport sys\nimport tempfile\nimport zipfile\nfrom pathlib import Path\n\nfrom validators import DOCXSchemaValidator, PPTXSchemaValidator, RedliningValidator\n\n\ndef main():\n    parser = argparse.ArgumentParser(description=\"Validate Office document XML files\")\n    parser.add_argument(\n        \"path\",\n        help=\"Path to unpacked directory or packed Office file (.docx/.pptx/.xlsx)\",\n    )\n    parser.add_argument(\n        \"--original\",\n        required=False,\n        default=None,\n        help=\"Path to original file (.docx/.pptx/.xlsx). If omitted, all XSD errors are reported and redlining validation is skipped.\",\n    )\n    parser.add_argument(\n        \"-v\",\n        \"--verbose\",\n        action=\"store_true\",\n        help=\"Enable verbose output\",\n    )\n    parser.add_argument(\n        \"--auto-repair\",\n        action=\"store_true\",\n        help=\"Automatically repair common issues (hex IDs, whitespace preservation)\",\n    )\n    parser.add_argument(\n        \"--author\",\n        default=\"Claude\",\n        help=\"Author name for redlining validation (default: Claude)\",\n    )\n    args = parser.parse_args()\n\n    path = Path(args.path)\n    assert path.exists(), f\"Error: {path} does not exist\"\n\n    original_file = None\n    if args.original:\n        original_file = Path(args.original)\n        assert original_file.is_file(), f\"Error: {original_file} is not a file\"\n        assert original_file.suffix.lower() in [\".docx\", \".pptx\", \".xlsx\"], (\n            f\"Error: {original_file} must be a .docx, .pptx, or .xlsx file\"\n        )\n\n    file_extension = (original_file or path).suffix.lower()\n    assert file_extension in [\".docx\", \".pptx\", \".xlsx\"], (\n        f\"Error: Cannot determine file type from {path}. Use --original or provide a .docx/.pptx/.xlsx file.\"\n    )\n\n    if path.is_file() and path.suffix.lower() in [\".docx\", \".pptx\", \".xlsx\"]:\n        temp_dir = tempfile.mkdtemp()\n        with zipfile.ZipFile(path, \"r\") as zf:\n            zf.extractall(temp_dir)\n        unpacked_dir = Path(temp_dir)\n    else:\n        assert path.is_dir(), f\"Error: {path} is not a directory or Office file\"\n        unpacked_dir = path\n\n    match file_extension:\n        case \".docx\":\n            validators = [\n                DOCXSchemaValidator(unpacked_dir, original_file, verbose=args.verbose),\n            ]\n            if original_file:\n                validators.append(\n                    RedliningValidator(unpacked_dir, original_file, verbose=args.verbose, author=args.author)  \n                )\n        case \".pptx\":\n            validators = [\n                PPTXSchemaValidator(unpacked_dir, original_file, verbose=args.verbose),\n            ]\n        case _:\n            print(f\"Error: Validation not supported for file type {file_extension}\")\n            sys.exit(1)\n\n    if args.auto_repair:\n        total_repairs = sum(v.repair() for v in validators)\n        if total_repairs:\n            print(f\"Auto-repaired {total_repairs} issue(s)\")\n\n    success = all(v.validate() for v in validators)\n\n    if success:\n        print(\"All validations PASSED!\")\n\n    sys.exit(0 if success else 1)\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "skills/pptx/scripts/office/validators/__init__.py",
    "content": "\"\"\"\nValidation modules for Word document processing.\n\"\"\"\n\nfrom .base import BaseSchemaValidator\nfrom .docx import DOCXSchemaValidator\nfrom .pptx import PPTXSchemaValidator\nfrom .redlining import RedliningValidator\n\n__all__ = [\n    \"BaseSchemaValidator\",\n    \"DOCXSchemaValidator\",\n    \"PPTXSchemaValidator\",\n    \"RedliningValidator\",\n]\n"
  },
  {
    "path": "skills/pptx/scripts/office/validators/base.py",
    "content": "\"\"\"\nBase validator with common validation logic for document files.\n\"\"\"\n\nimport re\nfrom pathlib import Path\n\nimport defusedxml.minidom\nimport lxml.etree\n\n\nclass BaseSchemaValidator:\n\n    IGNORED_VALIDATION_ERRORS = [\n        \"hyphenationZone\",\n        \"purl.org/dc/terms\",\n    ]\n\n    UNIQUE_ID_REQUIREMENTS = {\n        \"comment\": (\"id\", \"file\"),  \n        \"commentrangestart\": (\"id\", \"file\"),  \n        \"commentrangeend\": (\"id\", \"file\"),  \n        \"bookmarkstart\": (\"id\", \"file\"),  \n        \"bookmarkend\": (\"id\", \"file\"),  \n        \"sldid\": (\"id\", \"file\"),  \n        \"sldmasterid\": (\"id\", \"global\"),  \n        \"sldlayoutid\": (\"id\", \"global\"),  \n        \"cm\": (\"authorid\", \"file\"),  \n        \"sheet\": (\"sheetid\", \"file\"),  \n        \"definedname\": (\"id\", \"file\"),  \n        \"cxnsp\": (\"id\", \"file\"),  \n        \"sp\": (\"id\", \"file\"),  \n        \"pic\": (\"id\", \"file\"),  \n        \"grpsp\": (\"id\", \"file\"),  \n    }\n\n    EXCLUDED_ID_CONTAINERS = {\n        \"sectionlst\",  \n    }\n\n    ELEMENT_RELATIONSHIP_TYPES = {}\n\n    SCHEMA_MAPPINGS = {\n        \"word\": \"ISO-IEC29500-4_2016/wml.xsd\",  \n        \"ppt\": \"ISO-IEC29500-4_2016/pml.xsd\",  \n        \"xl\": \"ISO-IEC29500-4_2016/sml.xsd\",  \n        \"[Content_Types].xml\": \"ecma/fouth-edition/opc-contentTypes.xsd\",\n        \"app.xml\": \"ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd\",\n        \"core.xml\": \"ecma/fouth-edition/opc-coreProperties.xsd\",\n        \"custom.xml\": \"ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd\",\n        \".rels\": \"ecma/fouth-edition/opc-relationships.xsd\",\n        \"people.xml\": \"microsoft/wml-2012.xsd\",\n        \"commentsIds.xml\": \"microsoft/wml-cid-2016.xsd\",\n        \"commentsExtensible.xml\": \"microsoft/wml-cex-2018.xsd\",\n        \"commentsExtended.xml\": \"microsoft/wml-2012.xsd\",\n        \"chart\": \"ISO-IEC29500-4_2016/dml-chart.xsd\",\n        \"theme\": \"ISO-IEC29500-4_2016/dml-main.xsd\",\n        \"drawing\": \"ISO-IEC29500-4_2016/dml-main.xsd\",\n    }\n\n    MC_NAMESPACE = \"http://schemas.openxmlformats.org/markup-compatibility/2006\"\n    XML_NAMESPACE = \"http://www.w3.org/XML/1998/namespace\"\n\n    PACKAGE_RELATIONSHIPS_NAMESPACE = (\n        \"http://schemas.openxmlformats.org/package/2006/relationships\"\n    )\n    OFFICE_RELATIONSHIPS_NAMESPACE = (\n        \"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    )\n    CONTENT_TYPES_NAMESPACE = (\n        \"http://schemas.openxmlformats.org/package/2006/content-types\"\n    )\n\n    MAIN_CONTENT_FOLDERS = {\"word\", \"ppt\", \"xl\"}\n\n    OOXML_NAMESPACES = {\n        \"http://schemas.openxmlformats.org/officeDocument/2006/math\",\n        \"http://schemas.openxmlformats.org/officeDocument/2006/relationships\",\n        \"http://schemas.openxmlformats.org/schemaLibrary/2006/main\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/main\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/chart\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/chartDrawing\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/diagram\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/picture\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\",\n        \"http://schemas.openxmlformats.org/wordprocessingml/2006/main\",\n        \"http://schemas.openxmlformats.org/presentationml/2006/main\",\n        \"http://schemas.openxmlformats.org/spreadsheetml/2006/main\",\n        \"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\",\n        \"http://www.w3.org/XML/1998/namespace\",\n    }\n\n    def __init__(self, unpacked_dir, original_file=None, verbose=False):\n        self.unpacked_dir = Path(unpacked_dir).resolve()\n        self.original_file = Path(original_file) if original_file else None\n        self.verbose = verbose\n\n        self.schemas_dir = Path(__file__).parent.parent / \"schemas\"\n\n        patterns = [\"*.xml\", \"*.rels\"]\n        self.xml_files = [\n            f for pattern in patterns for f in self.unpacked_dir.rglob(pattern)\n        ]\n\n        if not self.xml_files:\n            print(f\"Warning: No XML files found in {self.unpacked_dir}\")\n\n    def validate(self):\n        raise NotImplementedError(\"Subclasses must implement the validate method\")\n\n    def repair(self) -> int:\n        return self.repair_whitespace_preservation()\n\n    def repair_whitespace_preservation(self) -> int:\n        repairs = 0\n\n        for xml_file in self.xml_files:\n            try:\n                content = xml_file.read_text(encoding=\"utf-8\")\n                dom = defusedxml.minidom.parseString(content)\n                modified = False\n\n                for elem in dom.getElementsByTagName(\"*\"):\n                    if elem.tagName.endswith(\":t\") and elem.firstChild:\n                        text = elem.firstChild.nodeValue\n                        if text and (text.startswith((' ', '\\t')) or text.endswith((' ', '\\t'))):\n                            if elem.getAttribute(\"xml:space\") != \"preserve\":\n                                elem.setAttribute(\"xml:space\", \"preserve\")\n                                text_preview = repr(text[:30]) + \"...\" if len(text) > 30 else repr(text)\n                                print(f\"  Repaired: {xml_file.name}: Added xml:space='preserve' to {elem.tagName}: {text_preview}\")\n                                repairs += 1\n                                modified = True\n\n                if modified:\n                    xml_file.write_bytes(dom.toxml(encoding=\"UTF-8\"))\n\n            except Exception:\n                pass\n\n        return repairs\n\n    def validate_xml(self):\n        errors = []\n\n        for xml_file in self.xml_files:\n            try:\n                lxml.etree.parse(str(xml_file))\n            except lxml.etree.XMLSyntaxError as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                    f\"Line {e.lineno}: {e.msg}\"\n                )\n            except Exception as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                    f\"Unexpected error: {str(e)}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} XML violations:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All XML files are well-formed\")\n            return True\n\n    def validate_namespaces(self):\n        errors = []\n\n        for xml_file in self.xml_files:\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n                declared = set(root.nsmap.keys()) - {None}  \n\n                for attr_val in [\n                    v for k, v in root.attrib.items() if k.endswith(\"Ignorable\")\n                ]:\n                    undeclared = set(attr_val.split()) - declared\n                    errors.extend(\n                        f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                        f\"Namespace '{ns}' in Ignorable but not declared\"\n                        for ns in undeclared\n                    )\n            except lxml.etree.XMLSyntaxError:\n                continue\n\n        if errors:\n            print(f\"FAILED - {len(errors)} namespace issues:\")\n            for error in errors:\n                print(error)\n            return False\n        if self.verbose:\n            print(\"PASSED - All namespace prefixes properly declared\")\n        return True\n\n    def validate_unique_ids(self):\n        errors = []\n        global_ids = {}  \n\n        for xml_file in self.xml_files:\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n                file_ids = {}  \n\n                mc_elements = root.xpath(\n                    \".//mc:AlternateContent\", namespaces={\"mc\": self.MC_NAMESPACE}\n                )\n                for elem in mc_elements:\n                    elem.getparent().remove(elem)\n\n                for elem in root.iter():\n                    tag = (\n                        elem.tag.split(\"}\")[-1].lower()\n                        if \"}\" in elem.tag\n                        else elem.tag.lower()\n                    )\n\n                    if tag in self.UNIQUE_ID_REQUIREMENTS:\n                        in_excluded_container = any(\n                            ancestor.tag.split(\"}\")[-1].lower() in self.EXCLUDED_ID_CONTAINERS\n                            for ancestor in elem.iterancestors()\n                        )\n                        if in_excluded_container:\n                            continue\n\n                        attr_name, scope = self.UNIQUE_ID_REQUIREMENTS[tag]\n\n                        id_value = None\n                        for attr, value in elem.attrib.items():\n                            attr_local = (\n                                attr.split(\"}\")[-1].lower()\n                                if \"}\" in attr\n                                else attr.lower()\n                            )\n                            if attr_local == attr_name:\n                                id_value = value\n                                break\n\n                        if id_value is not None:\n                            if scope == \"global\":\n                                if id_value in global_ids:\n                                    prev_file, prev_line, prev_tag = global_ids[\n                                        id_value\n                                    ]\n                                    errors.append(\n                                        f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                                        f\"Line {elem.sourceline}: Global ID '{id_value}' in <{tag}> \"\n                                        f\"already used in {prev_file} at line {prev_line} in <{prev_tag}>\"\n                                    )\n                                else:\n                                    global_ids[id_value] = (\n                                        xml_file.relative_to(self.unpacked_dir),\n                                        elem.sourceline,\n                                        tag,\n                                    )\n                            elif scope == \"file\":\n                                key = (tag, attr_name)\n                                if key not in file_ids:\n                                    file_ids[key] = {}\n\n                                if id_value in file_ids[key]:\n                                    prev_line = file_ids[key][id_value]\n                                    errors.append(\n                                        f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                                        f\"Line {elem.sourceline}: Duplicate {attr_name}='{id_value}' in <{tag}> \"\n                                        f\"(first occurrence at line {prev_line})\"\n                                    )\n                                else:\n                                    file_ids[key][id_value] = elem.sourceline\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} ID uniqueness violations:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All required IDs are unique\")\n            return True\n\n    def validate_file_references(self):\n        errors = []\n\n        rels_files = list(self.unpacked_dir.rglob(\"*.rels\"))\n\n        if not rels_files:\n            if self.verbose:\n                print(\"PASSED - No .rels files found\")\n            return True\n\n        all_files = []\n        for file_path in self.unpacked_dir.rglob(\"*\"):\n            if (\n                file_path.is_file()\n                and file_path.name != \"[Content_Types].xml\"\n                and not file_path.name.endswith(\".rels\")\n            ):  \n                all_files.append(file_path.resolve())\n\n        all_referenced_files = set()\n\n        if self.verbose:\n            print(\n                f\"Found {len(rels_files)} .rels files and {len(all_files)} target files\"\n            )\n\n        for rels_file in rels_files:\n            try:\n                rels_root = lxml.etree.parse(str(rels_file)).getroot()\n\n                rels_dir = rels_file.parent\n\n                referenced_files = set()\n                broken_refs = []\n\n                for rel in rels_root.findall(\n                    \".//ns:Relationship\",\n                    namespaces={\"ns\": self.PACKAGE_RELATIONSHIPS_NAMESPACE},\n                ):\n                    target = rel.get(\"Target\")\n                    if target and not target.startswith(\n                        (\"http\", \"mailto:\")\n                    ):  \n                        if target.startswith(\"/\"):\n                            target_path = self.unpacked_dir / target.lstrip(\"/\")\n                        elif rels_file.name == \".rels\":\n                            target_path = self.unpacked_dir / target\n                        else:\n                            base_dir = rels_dir.parent\n                            target_path = base_dir / target\n\n                        try:\n                            target_path = target_path.resolve()\n                            if target_path.exists() and target_path.is_file():\n                                referenced_files.add(target_path)\n                                all_referenced_files.add(target_path)\n                            else:\n                                broken_refs.append((target, rel.sourceline))\n                        except (OSError, ValueError):\n                            broken_refs.append((target, rel.sourceline))\n\n                if broken_refs:\n                    rel_path = rels_file.relative_to(self.unpacked_dir)\n                    for broken_ref, line_num in broken_refs:\n                        errors.append(\n                            f\"  {rel_path}: Line {line_num}: Broken reference to {broken_ref}\"\n                        )\n\n            except Exception as e:\n                rel_path = rels_file.relative_to(self.unpacked_dir)\n                errors.append(f\"  Error parsing {rel_path}: {e}\")\n\n        unreferenced_files = set(all_files) - all_referenced_files\n\n        if unreferenced_files:\n            for unref_file in sorted(unreferenced_files):\n                unref_rel_path = unref_file.relative_to(self.unpacked_dir)\n                errors.append(f\"  Unreferenced file: {unref_rel_path}\")\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} relationship validation errors:\")\n            for error in errors:\n                print(error)\n            print(\n                \"CRITICAL: These errors will cause the document to appear corrupt. \"\n                + \"Broken references MUST be fixed, \"\n                + \"and unreferenced files MUST be referenced or removed.\"\n            )\n            return False\n        else:\n            if self.verbose:\n                print(\n                    \"PASSED - All references are valid and all files are properly referenced\"\n                )\n            return True\n\n    def validate_all_relationship_ids(self):\n        import lxml.etree\n\n        errors = []\n\n        for xml_file in self.xml_files:\n            if xml_file.suffix == \".rels\":\n                continue\n\n            rels_dir = xml_file.parent / \"_rels\"\n            rels_file = rels_dir / f\"{xml_file.name}.rels\"\n\n            if not rels_file.exists():\n                continue\n\n            try:\n                rels_root = lxml.etree.parse(str(rels_file)).getroot()\n                rid_to_type = {}\n\n                for rel in rels_root.findall(\n                    f\".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship\"\n                ):\n                    rid = rel.get(\"Id\")\n                    rel_type = rel.get(\"Type\", \"\")\n                    if rid:\n                        if rid in rid_to_type:\n                            rels_rel_path = rels_file.relative_to(self.unpacked_dir)\n                            errors.append(\n                                f\"  {rels_rel_path}: Line {rel.sourceline}: \"\n                                f\"Duplicate relationship ID '{rid}' (IDs must be unique)\"\n                            )\n                        type_name = (\n                            rel_type.split(\"/\")[-1] if \"/\" in rel_type else rel_type\n                        )\n                        rid_to_type[rid] = type_name\n\n                xml_root = lxml.etree.parse(str(xml_file)).getroot()\n\n                r_ns = self.OFFICE_RELATIONSHIPS_NAMESPACE\n                rid_attrs_to_check = [\"id\", \"embed\", \"link\"]\n                for elem in xml_root.iter():\n                    for attr_name in rid_attrs_to_check:\n                        rid_attr = elem.get(f\"{{{r_ns}}}{attr_name}\")\n                        if not rid_attr:\n                            continue\n                        xml_rel_path = xml_file.relative_to(self.unpacked_dir)\n                        elem_name = (\n                            elem.tag.split(\"}\")[-1] if \"}\" in elem.tag else elem.tag\n                        )\n\n                        if rid_attr not in rid_to_type:\n                            errors.append(\n                                f\"  {xml_rel_path}: Line {elem.sourceline}: \"\n                                f\"<{elem_name}> r:{attr_name} references non-existent relationship '{rid_attr}' \"\n                                f\"(valid IDs: {', '.join(sorted(rid_to_type.keys())[:5])}{'...' if len(rid_to_type) > 5 else ''})\"\n                            )\n                        elif attr_name == \"id\" and self.ELEMENT_RELATIONSHIP_TYPES:\n                            expected_type = self._get_expected_relationship_type(\n                                elem_name\n                            )\n                            if expected_type:\n                                actual_type = rid_to_type[rid_attr]\n                                if expected_type not in actual_type.lower():\n                                    errors.append(\n                                        f\"  {xml_rel_path}: Line {elem.sourceline}: \"\n                                        f\"<{elem_name}> references '{rid_attr}' which points to '{actual_type}' \"\n                                        f\"but should point to a '{expected_type}' relationship\"\n                                    )\n\n            except Exception as e:\n                xml_rel_path = xml_file.relative_to(self.unpacked_dir)\n                errors.append(f\"  Error processing {xml_rel_path}: {e}\")\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} relationship ID reference errors:\")\n            for error in errors:\n                print(error)\n            print(\"\\nThese ID mismatches will cause the document to appear corrupt!\")\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All relationship ID references are valid\")\n            return True\n\n    def _get_expected_relationship_type(self, element_name):\n        elem_lower = element_name.lower()\n\n        if elem_lower in self.ELEMENT_RELATIONSHIP_TYPES:\n            return self.ELEMENT_RELATIONSHIP_TYPES[elem_lower]\n\n        if elem_lower.endswith(\"id\") and len(elem_lower) > 2:\n            prefix = elem_lower[:-2]  \n            if prefix.endswith(\"master\"):\n                return prefix.lower()\n            elif prefix.endswith(\"layout\"):\n                return prefix.lower()\n            else:\n                if prefix == \"sld\":\n                    return \"slide\"\n                return prefix.lower()\n\n        if elem_lower.endswith(\"reference\") and len(elem_lower) > 9:\n            prefix = elem_lower[:-9]  \n            return prefix.lower()\n\n        return None\n\n    def validate_content_types(self):\n        errors = []\n\n        content_types_file = self.unpacked_dir / \"[Content_Types].xml\"\n        if not content_types_file.exists():\n            print(\"FAILED - [Content_Types].xml file not found\")\n            return False\n\n        try:\n            root = lxml.etree.parse(str(content_types_file)).getroot()\n            declared_parts = set()\n            declared_extensions = set()\n\n            for override in root.findall(\n                f\".//{{{self.CONTENT_TYPES_NAMESPACE}}}Override\"\n            ):\n                part_name = override.get(\"PartName\")\n                if part_name is not None:\n                    declared_parts.add(part_name.lstrip(\"/\"))\n\n            for default in root.findall(\n                f\".//{{{self.CONTENT_TYPES_NAMESPACE}}}Default\"\n            ):\n                extension = default.get(\"Extension\")\n                if extension is not None:\n                    declared_extensions.add(extension.lower())\n\n            declarable_roots = {\n                \"sld\",\n                \"sldLayout\",\n                \"sldMaster\",\n                \"presentation\",  \n                \"document\",  \n                \"workbook\",\n                \"worksheet\",  \n                \"theme\",  \n            }\n\n            media_extensions = {\n                \"png\": \"image/png\",\n                \"jpg\": \"image/jpeg\",\n                \"jpeg\": \"image/jpeg\",\n                \"gif\": \"image/gif\",\n                \"bmp\": \"image/bmp\",\n                \"tiff\": \"image/tiff\",\n                \"wmf\": \"image/x-wmf\",\n                \"emf\": \"image/x-emf\",\n            }\n\n            all_files = list(self.unpacked_dir.rglob(\"*\"))\n            all_files = [f for f in all_files if f.is_file()]\n\n            for xml_file in self.xml_files:\n                path_str = str(xml_file.relative_to(self.unpacked_dir)).replace(\n                    \"\\\\\", \"/\"\n                )\n\n                if any(\n                    skip in path_str\n                    for skip in [\".rels\", \"[Content_Types]\", \"docProps/\", \"_rels/\"]\n                ):\n                    continue\n\n                try:\n                    root_tag = lxml.etree.parse(str(xml_file)).getroot().tag\n                    root_name = root_tag.split(\"}\")[-1] if \"}\" in root_tag else root_tag\n\n                    if root_name in declarable_roots and path_str not in declared_parts:\n                        errors.append(\n                            f\"  {path_str}: File with <{root_name}> root not declared in [Content_Types].xml\"\n                        )\n\n                except Exception:\n                    continue  \n\n            for file_path in all_files:\n                if file_path.suffix.lower() in {\".xml\", \".rels\"}:\n                    continue\n                if file_path.name == \"[Content_Types].xml\":\n                    continue\n                if \"_rels\" in file_path.parts or \"docProps\" in file_path.parts:\n                    continue\n\n                extension = file_path.suffix.lstrip(\".\").lower()\n                if extension and extension not in declared_extensions:\n                    if extension in media_extensions:\n                        relative_path = file_path.relative_to(self.unpacked_dir)\n                        errors.append(\n                            f'  {relative_path}: File with extension \\'{extension}\\' not declared in [Content_Types].xml - should add: <Default Extension=\"{extension}\" ContentType=\"{media_extensions[extension]}\"/>'\n                        )\n\n        except Exception as e:\n            errors.append(f\"  Error parsing [Content_Types].xml: {e}\")\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} content type declaration errors:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\n                    \"PASSED - All content files are properly declared in [Content_Types].xml\"\n                )\n            return True\n\n    def validate_file_against_xsd(self, xml_file, verbose=False):\n        xml_file = Path(xml_file).resolve()\n        unpacked_dir = self.unpacked_dir.resolve()\n\n        is_valid, current_errors = self._validate_single_file_xsd(\n            xml_file, unpacked_dir\n        )\n\n        if is_valid is None:\n            return None, set()  \n        elif is_valid:\n            return True, set()  \n\n        original_errors = self._get_original_file_errors(xml_file)\n\n        assert current_errors is not None\n        new_errors = current_errors - original_errors\n\n        new_errors = {\n            e for e in new_errors\n            if not any(pattern in e for pattern in self.IGNORED_VALIDATION_ERRORS)\n        }\n\n        if new_errors:\n            if verbose:\n                relative_path = xml_file.relative_to(unpacked_dir)\n                print(f\"FAILED - {relative_path}: {len(new_errors)} new error(s)\")\n                for error in list(new_errors)[:3]:\n                    truncated = error[:250] + \"...\" if len(error) > 250 else error\n                    print(f\"  - {truncated}\")\n            return False, new_errors\n        else:\n            if verbose:\n                print(\n                    f\"PASSED - No new errors (original had {len(current_errors)} errors)\"\n                )\n            return True, set()\n\n    def validate_against_xsd(self):\n        new_errors = []\n        original_error_count = 0\n        valid_count = 0\n        skipped_count = 0\n\n        for xml_file in self.xml_files:\n            relative_path = str(xml_file.relative_to(self.unpacked_dir))\n            is_valid, new_file_errors = self.validate_file_against_xsd(\n                xml_file, verbose=False\n            )\n\n            if is_valid is None:\n                skipped_count += 1\n                continue\n            elif is_valid and not new_file_errors:\n                valid_count += 1\n                continue\n            elif is_valid:\n                original_error_count += 1\n                valid_count += 1\n                continue\n\n            new_errors.append(f\"  {relative_path}: {len(new_file_errors)} new error(s)\")\n            for error in list(new_file_errors)[:3]:  \n                new_errors.append(\n                    f\"    - {error[:250]}...\" if len(error) > 250 else f\"    - {error}\"\n                )\n\n        if self.verbose:\n            print(f\"Validated {len(self.xml_files)} files:\")\n            print(f\"  - Valid: {valid_count}\")\n            print(f\"  - Skipped (no schema): {skipped_count}\")\n            if original_error_count:\n                print(f\"  - With original errors (ignored): {original_error_count}\")\n            print(\n                f\"  - With NEW errors: {len(new_errors) > 0 and len([e for e in new_errors if not e.startswith('    ')]) or 0}\"\n            )\n\n        if new_errors:\n            print(\"\\nFAILED - Found NEW validation errors:\")\n            for error in new_errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"\\nPASSED - No new XSD validation errors introduced\")\n            return True\n\n    def _get_schema_path(self, xml_file):\n        if xml_file.name in self.SCHEMA_MAPPINGS:\n            return self.schemas_dir / self.SCHEMA_MAPPINGS[xml_file.name]\n\n        if xml_file.suffix == \".rels\":\n            return self.schemas_dir / self.SCHEMA_MAPPINGS[\".rels\"]\n\n        if \"charts/\" in str(xml_file) and xml_file.name.startswith(\"chart\"):\n            return self.schemas_dir / self.SCHEMA_MAPPINGS[\"chart\"]\n\n        if \"theme/\" in str(xml_file) and xml_file.name.startswith(\"theme\"):\n            return self.schemas_dir / self.SCHEMA_MAPPINGS[\"theme\"]\n\n        if xml_file.parent.name in self.MAIN_CONTENT_FOLDERS:\n            return self.schemas_dir / self.SCHEMA_MAPPINGS[xml_file.parent.name]\n\n        return None\n\n    def _clean_ignorable_namespaces(self, xml_doc):\n        xml_string = lxml.etree.tostring(xml_doc, encoding=\"unicode\")\n        xml_copy = lxml.etree.fromstring(xml_string)\n\n        for elem in xml_copy.iter():\n            attrs_to_remove = []\n\n            for attr in elem.attrib:\n                if \"{\" in attr:\n                    ns = attr.split(\"}\")[0][1:]\n                    if ns not in self.OOXML_NAMESPACES:\n                        attrs_to_remove.append(attr)\n\n            for attr in attrs_to_remove:\n                del elem.attrib[attr]\n\n        self._remove_ignorable_elements(xml_copy)\n\n        return lxml.etree.ElementTree(xml_copy)\n\n    def _remove_ignorable_elements(self, root):\n        elements_to_remove = []\n\n        for elem in list(root):\n            if not hasattr(elem, \"tag\") or callable(elem.tag):\n                continue\n\n            tag_str = str(elem.tag)\n            if tag_str.startswith(\"{\"):\n                ns = tag_str.split(\"}\")[0][1:]\n                if ns not in self.OOXML_NAMESPACES:\n                    elements_to_remove.append(elem)\n                    continue\n\n            self._remove_ignorable_elements(elem)\n\n        for elem in elements_to_remove:\n            root.remove(elem)\n\n    def _preprocess_for_mc_ignorable(self, xml_doc):\n        root = xml_doc.getroot()\n\n        if f\"{{{self.MC_NAMESPACE}}}Ignorable\" in root.attrib:\n            del root.attrib[f\"{{{self.MC_NAMESPACE}}}Ignorable\"]\n\n        return xml_doc\n\n    def _validate_single_file_xsd(self, xml_file, base_path):\n        schema_path = self._get_schema_path(xml_file)\n        if not schema_path:\n            return None, None  \n\n        try:\n            with open(schema_path, \"rb\") as xsd_file:\n                parser = lxml.etree.XMLParser()\n                xsd_doc = lxml.etree.parse(\n                    xsd_file, parser=parser, base_url=str(schema_path)\n                )\n                schema = lxml.etree.XMLSchema(xsd_doc)\n\n            with open(xml_file, \"r\") as f:\n                xml_doc = lxml.etree.parse(f)\n\n            xml_doc, _ = self._remove_template_tags_from_text_nodes(xml_doc)\n            xml_doc = self._preprocess_for_mc_ignorable(xml_doc)\n\n            relative_path = xml_file.relative_to(base_path)\n            if (\n                relative_path.parts\n                and relative_path.parts[0] in self.MAIN_CONTENT_FOLDERS\n            ):\n                xml_doc = self._clean_ignorable_namespaces(xml_doc)\n\n            if schema.validate(xml_doc):\n                return True, set()\n            else:\n                errors = set()\n                for error in schema.error_log:\n                    errors.add(error.message)\n                return False, errors\n\n        except Exception as e:\n            return False, {str(e)}\n\n    def _get_original_file_errors(self, xml_file):\n        if self.original_file is None:\n            return set()\n\n        import tempfile\n        import zipfile\n\n        xml_file = Path(xml_file).resolve()\n        unpacked_dir = self.unpacked_dir.resolve()\n        relative_path = xml_file.relative_to(unpacked_dir)\n\n        with tempfile.TemporaryDirectory() as temp_dir:\n            temp_path = Path(temp_dir)\n\n            with zipfile.ZipFile(self.original_file, \"r\") as zip_ref:\n                zip_ref.extractall(temp_path)\n\n            original_xml_file = temp_path / relative_path\n\n            if not original_xml_file.exists():\n                return set()\n\n            is_valid, errors = self._validate_single_file_xsd(\n                original_xml_file, temp_path\n            )\n            return errors if errors else set()\n\n    def _remove_template_tags_from_text_nodes(self, xml_doc):\n        warnings = []\n        template_pattern = re.compile(r\"\\{\\{[^}]*\\}\\}\")\n\n        xml_string = lxml.etree.tostring(xml_doc, encoding=\"unicode\")\n        xml_copy = lxml.etree.fromstring(xml_string)\n\n        def process_text_content(text, content_type):\n            if not text:\n                return text\n            matches = list(template_pattern.finditer(text))\n            if matches:\n                for match in matches:\n                    warnings.append(\n                        f\"Found template tag in {content_type}: {match.group()}\"\n                    )\n                return template_pattern.sub(\"\", text)\n            return text\n\n        for elem in xml_copy.iter():\n            if not hasattr(elem, \"tag\") or callable(elem.tag):\n                continue\n            tag_str = str(elem.tag)\n            if tag_str.endswith(\"}t\") or tag_str == \"t\":\n                continue\n\n            elem.text = process_text_content(elem.text, \"text content\")\n            elem.tail = process_text_content(elem.tail, \"tail content\")\n\n        return lxml.etree.ElementTree(xml_copy), warnings\n\n\nif __name__ == \"__main__\":\n    raise RuntimeError(\"This module should not be run directly.\")\n"
  },
  {
    "path": "skills/pptx/scripts/office/validators/docx.py",
    "content": "\"\"\"\nValidator for Word document XML files against XSD schemas.\n\"\"\"\n\nimport random\nimport re\nimport tempfile\nimport zipfile\n\nimport defusedxml.minidom\nimport lxml.etree\n\nfrom .base import BaseSchemaValidator\n\n\nclass DOCXSchemaValidator(BaseSchemaValidator):\n\n    WORD_2006_NAMESPACE = \"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n    W14_NAMESPACE = \"http://schemas.microsoft.com/office/word/2010/wordml\"\n    W16CID_NAMESPACE = \"http://schemas.microsoft.com/office/word/2016/wordml/cid\"\n\n    ELEMENT_RELATIONSHIP_TYPES = {}\n\n    def validate(self):\n        if not self.validate_xml():\n            return False\n\n        all_valid = True\n        if not self.validate_namespaces():\n            all_valid = False\n\n        if not self.validate_unique_ids():\n            all_valid = False\n\n        if not self.validate_file_references():\n            all_valid = False\n\n        if not self.validate_content_types():\n            all_valid = False\n\n        if not self.validate_against_xsd():\n            all_valid = False\n\n        if not self.validate_whitespace_preservation():\n            all_valid = False\n\n        if not self.validate_deletions():\n            all_valid = False\n\n        if not self.validate_insertions():\n            all_valid = False\n\n        if not self.validate_all_relationship_ids():\n            all_valid = False\n\n        if not self.validate_id_constraints():\n            all_valid = False\n\n        if not self.validate_comment_markers():\n            all_valid = False\n\n        self.compare_paragraph_counts()\n\n        return all_valid\n\n    def validate_whitespace_preservation(self):\n        errors = []\n\n        for xml_file in self.xml_files:\n            if xml_file.name != \"document.xml\":\n                continue\n\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n\n                for elem in root.iter(f\"{{{self.WORD_2006_NAMESPACE}}}t\"):\n                    if elem.text:\n                        text = elem.text\n                        if re.search(r\"^[ \\t\\n\\r]\", text) or re.search(\n                            r\"[ \\t\\n\\r]$\", text\n                        ):\n                            xml_space_attr = f\"{{{self.XML_NAMESPACE}}}space\"\n                            if (\n                                xml_space_attr not in elem.attrib\n                                or elem.attrib[xml_space_attr] != \"preserve\"\n                            ):\n                                text_preview = (\n                                    repr(text)[:50] + \"...\"\n                                    if len(repr(text)) > 50\n                                    else repr(text)\n                                )\n                                errors.append(\n                                    f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                                    f\"Line {elem.sourceline}: w:t element with whitespace missing xml:space='preserve': {text_preview}\"\n                                )\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} whitespace preservation violations:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All whitespace is properly preserved\")\n            return True\n\n    def validate_deletions(self):\n        errors = []\n\n        for xml_file in self.xml_files:\n            if xml_file.name != \"document.xml\":\n                continue\n\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n                namespaces = {\"w\": self.WORD_2006_NAMESPACE}\n\n                for t_elem in root.xpath(\".//w:del//w:t\", namespaces=namespaces):\n                    if t_elem.text:\n                        text_preview = (\n                            repr(t_elem.text)[:50] + \"...\"\n                            if len(repr(t_elem.text)) > 50\n                            else repr(t_elem.text)\n                        )\n                        errors.append(\n                            f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                            f\"Line {t_elem.sourceline}: <w:t> found within <w:del>: {text_preview}\"\n                        )\n\n                for instr_elem in root.xpath(\n                    \".//w:del//w:instrText\", namespaces=namespaces\n                ):\n                    text_preview = (\n                        repr(instr_elem.text or \"\")[:50] + \"...\"\n                        if len(repr(instr_elem.text or \"\")) > 50\n                        else repr(instr_elem.text or \"\")\n                    )\n                    errors.append(\n                        f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                        f\"Line {instr_elem.sourceline}: <w:instrText> found within <w:del> (use <w:delInstrText>): {text_preview}\"\n                    )\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} deletion validation violations:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - No w:t elements found within w:del elements\")\n            return True\n\n    def count_paragraphs_in_unpacked(self):\n        count = 0\n\n        for xml_file in self.xml_files:\n            if xml_file.name != \"document.xml\":\n                continue\n\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n                paragraphs = root.findall(f\".//{{{self.WORD_2006_NAMESPACE}}}p\")\n                count = len(paragraphs)\n            except Exception as e:\n                print(f\"Error counting paragraphs in unpacked document: {e}\")\n\n        return count\n\n    def count_paragraphs_in_original(self):\n        original = self.original_file\n        if original is None:\n            return 0\n\n        count = 0\n\n        try:\n            with tempfile.TemporaryDirectory() as temp_dir:\n                with zipfile.ZipFile(original, \"r\") as zip_ref:\n                    zip_ref.extractall(temp_dir)\n\n                doc_xml_path = temp_dir + \"/word/document.xml\"\n                root = lxml.etree.parse(doc_xml_path).getroot()\n\n                paragraphs = root.findall(f\".//{{{self.WORD_2006_NAMESPACE}}}p\")\n                count = len(paragraphs)\n\n        except Exception as e:\n            print(f\"Error counting paragraphs in original document: {e}\")\n\n        return count\n\n    def validate_insertions(self):\n        errors = []\n\n        for xml_file in self.xml_files:\n            if xml_file.name != \"document.xml\":\n                continue\n\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n                namespaces = {\"w\": self.WORD_2006_NAMESPACE}\n\n                invalid_elements = root.xpath(\n                    \".//w:ins//w:delText[not(ancestor::w:del)]\", namespaces=namespaces\n                )\n\n                for elem in invalid_elements:\n                    text_preview = (\n                        repr(elem.text or \"\")[:50] + \"...\"\n                        if len(repr(elem.text or \"\")) > 50\n                        else repr(elem.text or \"\")\n                    )\n                    errors.append(\n                        f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                        f\"Line {elem.sourceline}: <w:delText> within <w:ins>: {text_preview}\"\n                    )\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} insertion validation violations:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - No w:delText elements within w:ins elements\")\n            return True\n\n    def compare_paragraph_counts(self):\n        original_count = self.count_paragraphs_in_original()\n        new_count = self.count_paragraphs_in_unpacked()\n\n        diff = new_count - original_count\n        diff_str = f\"+{diff}\" if diff > 0 else str(diff)\n        print(f\"\\nParagraphs: {original_count} → {new_count} ({diff_str})\")\n\n    def _parse_id_value(self, val: str, base: int = 16) -> int:\n        return int(val, base)\n\n    def validate_id_constraints(self):\n        errors = []\n        para_id_attr = f\"{{{self.W14_NAMESPACE}}}paraId\"\n        durable_id_attr = f\"{{{self.W16CID_NAMESPACE}}}durableId\"\n\n        for xml_file in self.xml_files:\n            try:\n                for elem in lxml.etree.parse(str(xml_file)).iter():\n                    if val := elem.get(para_id_attr):\n                        if self._parse_id_value(val, base=16) >= 0x80000000:\n                            errors.append(\n                                f\"  {xml_file.name}:{elem.sourceline}: paraId={val} >= 0x80000000\"\n                            )\n\n                    if val := elem.get(durable_id_attr):\n                        if xml_file.name == \"numbering.xml\":\n                            try:\n                                if self._parse_id_value(val, base=10) >= 0x7FFFFFFF:\n                                    errors.append(\n                                        f\"  {xml_file.name}:{elem.sourceline}: \"\n                                        f\"durableId={val} >= 0x7FFFFFFF\"\n                                    )\n                            except ValueError:\n                                errors.append(\n                                    f\"  {xml_file.name}:{elem.sourceline}: \"\n                                    f\"durableId={val} must be decimal in numbering.xml\"\n                                )\n                        else:\n                            if self._parse_id_value(val, base=16) >= 0x7FFFFFFF:\n                                errors.append(\n                                    f\"  {xml_file.name}:{elem.sourceline}: \"\n                                    f\"durableId={val} >= 0x7FFFFFFF\"\n                                )\n            except Exception:\n                pass\n\n        if errors:\n            print(f\"FAILED - {len(errors)} ID constraint violations:\")\n            for e in errors:\n                print(e)\n        elif self.verbose:\n            print(\"PASSED - All paraId/durableId values within constraints\")\n        return not errors\n\n    def validate_comment_markers(self):\n        errors = []\n\n        document_xml = None\n        comments_xml = None\n        for xml_file in self.xml_files:\n            if xml_file.name == \"document.xml\" and \"word\" in str(xml_file):\n                document_xml = xml_file\n            elif xml_file.name == \"comments.xml\":\n                comments_xml = xml_file\n\n        if not document_xml:\n            if self.verbose:\n                print(\"PASSED - No document.xml found (skipping comment validation)\")\n            return True\n\n        try:\n            doc_root = lxml.etree.parse(str(document_xml)).getroot()\n            namespaces = {\"w\": self.WORD_2006_NAMESPACE}\n\n            range_starts = {\n                elem.get(f\"{{{self.WORD_2006_NAMESPACE}}}id\")\n                for elem in doc_root.xpath(\n                    \".//w:commentRangeStart\", namespaces=namespaces\n                )\n            }\n            range_ends = {\n                elem.get(f\"{{{self.WORD_2006_NAMESPACE}}}id\")\n                for elem in doc_root.xpath(\n                    \".//w:commentRangeEnd\", namespaces=namespaces\n                )\n            }\n            references = {\n                elem.get(f\"{{{self.WORD_2006_NAMESPACE}}}id\")\n                for elem in doc_root.xpath(\n                    \".//w:commentReference\", namespaces=namespaces\n                )\n            }\n\n            orphaned_ends = range_ends - range_starts\n            for comment_id in sorted(\n                orphaned_ends, key=lambda x: int(x) if x and x.isdigit() else 0\n            ):\n                errors.append(\n                    f'  document.xml: commentRangeEnd id=\"{comment_id}\" has no matching commentRangeStart'\n                )\n\n            orphaned_starts = range_starts - range_ends\n            for comment_id in sorted(\n                orphaned_starts, key=lambda x: int(x) if x and x.isdigit() else 0\n            ):\n                errors.append(\n                    f'  document.xml: commentRangeStart id=\"{comment_id}\" has no matching commentRangeEnd'\n                )\n\n            comment_ids = set()\n            if comments_xml and comments_xml.exists():\n                comments_root = lxml.etree.parse(str(comments_xml)).getroot()\n                comment_ids = {\n                    elem.get(f\"{{{self.WORD_2006_NAMESPACE}}}id\")\n                    for elem in comments_root.xpath(\n                        \".//w:comment\", namespaces=namespaces\n                    )\n                }\n\n                marker_ids = range_starts | range_ends | references\n                invalid_refs = marker_ids - comment_ids\n                for comment_id in sorted(\n                    invalid_refs, key=lambda x: int(x) if x and x.isdigit() else 0\n                ):\n                    if comment_id:  \n                        errors.append(\n                            f'  document.xml: marker id=\"{comment_id}\" references non-existent comment'\n                        )\n\n        except (lxml.etree.XMLSyntaxError, Exception) as e:\n            errors.append(f\"  Error parsing XML: {e}\")\n\n        if errors:\n            print(f\"FAILED - {len(errors)} comment marker violations:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All comment markers properly paired\")\n            return True\n\n    def repair(self) -> int:\n        repairs = super().repair()\n        repairs += self.repair_durableId()\n        return repairs\n\n    def repair_durableId(self) -> int:\n        repairs = 0\n\n        for xml_file in self.xml_files:\n            try:\n                content = xml_file.read_text(encoding=\"utf-8\")\n                dom = defusedxml.minidom.parseString(content)\n                modified = False\n\n                for elem in dom.getElementsByTagName(\"*\"):\n                    if not elem.hasAttribute(\"w16cid:durableId\"):\n                        continue\n\n                    durable_id = elem.getAttribute(\"w16cid:durableId\")\n                    needs_repair = False\n\n                    if xml_file.name == \"numbering.xml\":\n                        try:\n                            needs_repair = (\n                                self._parse_id_value(durable_id, base=10) >= 0x7FFFFFFF\n                            )\n                        except ValueError:\n                            needs_repair = True\n                    else:\n                        try:\n                            needs_repair = (\n                                self._parse_id_value(durable_id, base=16) >= 0x7FFFFFFF\n                            )\n                        except ValueError:\n                            needs_repair = True\n\n                    if needs_repair:\n                        value = random.randint(1, 0x7FFFFFFE)\n                        if xml_file.name == \"numbering.xml\":\n                            new_id = str(value)  \n                        else:\n                            new_id = f\"{value:08X}\"  \n\n                        elem.setAttribute(\"w16cid:durableId\", new_id)\n                        print(\n                            f\"  Repaired: {xml_file.name}: durableId {durable_id} → {new_id}\"\n                        )\n                        repairs += 1\n                        modified = True\n\n                if modified:\n                    xml_file.write_bytes(dom.toxml(encoding=\"UTF-8\"))\n\n            except Exception:\n                pass\n\n        return repairs\n\n\nif __name__ == \"__main__\":\n    raise RuntimeError(\"This module should not be run directly.\")\n"
  },
  {
    "path": "skills/pptx/scripts/office/validators/pptx.py",
    "content": "\"\"\"\nValidator for PowerPoint presentation XML files against XSD schemas.\n\"\"\"\n\nimport re\n\nfrom .base import BaseSchemaValidator\n\n\nclass PPTXSchemaValidator(BaseSchemaValidator):\n\n    PRESENTATIONML_NAMESPACE = (\n        \"http://schemas.openxmlformats.org/presentationml/2006/main\"\n    )\n\n    ELEMENT_RELATIONSHIP_TYPES = {\n        \"sldid\": \"slide\",\n        \"sldmasterid\": \"slidemaster\",\n        \"notesmasterid\": \"notesmaster\",\n        \"sldlayoutid\": \"slidelayout\",\n        \"themeid\": \"theme\",\n        \"tablestyleid\": \"tablestyles\",\n    }\n\n    def validate(self):\n        if not self.validate_xml():\n            return False\n\n        all_valid = True\n        if not self.validate_namespaces():\n            all_valid = False\n\n        if not self.validate_unique_ids():\n            all_valid = False\n\n        if not self.validate_uuid_ids():\n            all_valid = False\n\n        if not self.validate_file_references():\n            all_valid = False\n\n        if not self.validate_slide_layout_ids():\n            all_valid = False\n\n        if not self.validate_content_types():\n            all_valid = False\n\n        if not self.validate_against_xsd():\n            all_valid = False\n\n        if not self.validate_notes_slide_references():\n            all_valid = False\n\n        if not self.validate_all_relationship_ids():\n            all_valid = False\n\n        if not self.validate_no_duplicate_slide_layouts():\n            all_valid = False\n\n        return all_valid\n\n    def validate_uuid_ids(self):\n        import lxml.etree\n\n        errors = []\n        uuid_pattern = re.compile(\n            r\"^[\\{\\(]?[0-9A-Fa-f]{8}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{12}[\\}\\)]?$\"\n        )\n\n        for xml_file in self.xml_files:\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n\n                for elem in root.iter():\n                    for attr, value in elem.attrib.items():\n                        attr_name = attr.split(\"}\")[-1].lower()\n                        if attr_name == \"id\" or attr_name.endswith(\"id\"):\n                            if self._looks_like_uuid(value):\n                                if not uuid_pattern.match(value):\n                                    errors.append(\n                                        f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                                        f\"Line {elem.sourceline}: ID '{value}' appears to be a UUID but contains invalid hex characters\"\n                                    )\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} UUID ID validation errors:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All UUID-like IDs contain valid hex values\")\n            return True\n\n    def _looks_like_uuid(self, value):\n        clean_value = value.strip(\"{}()\").replace(\"-\", \"\")\n        return len(clean_value) == 32 and all(c.isalnum() for c in clean_value)\n\n    def validate_slide_layout_ids(self):\n        import lxml.etree\n\n        errors = []\n\n        slide_masters = list(self.unpacked_dir.glob(\"ppt/slideMasters/*.xml\"))\n\n        if not slide_masters:\n            if self.verbose:\n                print(\"PASSED - No slide masters found\")\n            return True\n\n        for slide_master in slide_masters:\n            try:\n                root = lxml.etree.parse(str(slide_master)).getroot()\n\n                rels_file = slide_master.parent / \"_rels\" / f\"{slide_master.name}.rels\"\n\n                if not rels_file.exists():\n                    errors.append(\n                        f\"  {slide_master.relative_to(self.unpacked_dir)}: \"\n                        f\"Missing relationships file: {rels_file.relative_to(self.unpacked_dir)}\"\n                    )\n                    continue\n\n                rels_root = lxml.etree.parse(str(rels_file)).getroot()\n\n                valid_layout_rids = set()\n                for rel in rels_root.findall(\n                    f\".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship\"\n                ):\n                    rel_type = rel.get(\"Type\", \"\")\n                    if \"slideLayout\" in rel_type:\n                        valid_layout_rids.add(rel.get(\"Id\"))\n\n                for sld_layout_id in root.findall(\n                    f\".//{{{self.PRESENTATIONML_NAMESPACE}}}sldLayoutId\"\n                ):\n                    r_id = sld_layout_id.get(\n                        f\"{{{self.OFFICE_RELATIONSHIPS_NAMESPACE}}}id\"\n                    )\n                    layout_id = sld_layout_id.get(\"id\")\n\n                    if r_id and r_id not in valid_layout_rids:\n                        errors.append(\n                            f\"  {slide_master.relative_to(self.unpacked_dir)}: \"\n                            f\"Line {sld_layout_id.sourceline}: sldLayoutId with id='{layout_id}' \"\n                            f\"references r:id='{r_id}' which is not found in slide layout relationships\"\n                        )\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {slide_master.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} slide layout ID validation errors:\")\n            for error in errors:\n                print(error)\n            print(\n                \"Remove invalid references or add missing slide layouts to the relationships file.\"\n            )\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All slide layout IDs reference valid slide layouts\")\n            return True\n\n    def validate_no_duplicate_slide_layouts(self):\n        import lxml.etree\n\n        errors = []\n        slide_rels_files = list(self.unpacked_dir.glob(\"ppt/slides/_rels/*.xml.rels\"))\n\n        for rels_file in slide_rels_files:\n            try:\n                root = lxml.etree.parse(str(rels_file)).getroot()\n\n                layout_rels = [\n                    rel\n                    for rel in root.findall(\n                        f\".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship\"\n                    )\n                    if \"slideLayout\" in rel.get(\"Type\", \"\")\n                ]\n\n                if len(layout_rels) > 1:\n                    errors.append(\n                        f\"  {rels_file.relative_to(self.unpacked_dir)}: has {len(layout_rels)} slideLayout references\"\n                    )\n\n            except Exception as e:\n                errors.append(\n                    f\"  {rels_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(\"FAILED - Found slides with duplicate slideLayout references:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All slides have exactly one slideLayout reference\")\n            return True\n\n    def validate_notes_slide_references(self):\n        import lxml.etree\n\n        errors = []\n        notes_slide_references = {}  \n\n        slide_rels_files = list(self.unpacked_dir.glob(\"ppt/slides/_rels/*.xml.rels\"))\n\n        if not slide_rels_files:\n            if self.verbose:\n                print(\"PASSED - No slide relationship files found\")\n            return True\n\n        for rels_file in slide_rels_files:\n            try:\n                root = lxml.etree.parse(str(rels_file)).getroot()\n\n                for rel in root.findall(\n                    f\".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship\"\n                ):\n                    rel_type = rel.get(\"Type\", \"\")\n                    if \"notesSlide\" in rel_type:\n                        target = rel.get(\"Target\", \"\")\n                        if target:\n                            normalized_target = target.replace(\"../\", \"\")\n\n                            slide_name = rels_file.stem.replace(\n                                \".xml\", \"\"\n                            )  \n\n                            if normalized_target not in notes_slide_references:\n                                notes_slide_references[normalized_target] = []\n                            notes_slide_references[normalized_target].append(\n                                (slide_name, rels_file)\n                            )\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {rels_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        for target, references in notes_slide_references.items():\n            if len(references) > 1:\n                slide_names = [ref[0] for ref in references]\n                errors.append(\n                    f\"  Notes slide '{target}' is referenced by multiple slides: {', '.join(slide_names)}\"\n                )\n                for slide_name, rels_file in references:\n                    errors.append(f\"    - {rels_file.relative_to(self.unpacked_dir)}\")\n\n        if errors:\n            print(\n                f\"FAILED - Found {len([e for e in errors if not e.startswith('    ')])} notes slide reference validation errors:\"\n            )\n            for error in errors:\n                print(error)\n            print(\"Each slide may optionally have its own slide file.\")\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All notes slide references are unique\")\n            return True\n\n\nif __name__ == \"__main__\":\n    raise RuntimeError(\"This module should not be run directly.\")\n"
  },
  {
    "path": "skills/pptx/scripts/office/validators/redlining.py",
    "content": "\"\"\"\nValidator for tracked changes in Word documents.\n\"\"\"\n\nimport subprocess\nimport tempfile\nimport zipfile\nfrom pathlib import Path\n\n\nclass RedliningValidator:\n\n    def __init__(self, unpacked_dir, original_docx, verbose=False, author=\"Claude\"):\n        self.unpacked_dir = Path(unpacked_dir)\n        self.original_docx = Path(original_docx)\n        self.verbose = verbose\n        self.author = author\n        self.namespaces = {\n            \"w\": \"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n        }\n\n    def repair(self) -> int:\n        return 0\n\n    def validate(self):\n        modified_file = self.unpacked_dir / \"word\" / \"document.xml\"\n        if not modified_file.exists():\n            print(f\"FAILED - Modified document.xml not found at {modified_file}\")\n            return False\n\n        try:\n            import xml.etree.ElementTree as ET\n\n            tree = ET.parse(modified_file)\n            root = tree.getroot()\n\n            del_elements = root.findall(\".//w:del\", self.namespaces)\n            ins_elements = root.findall(\".//w:ins\", self.namespaces)\n\n            author_del_elements = [\n                elem\n                for elem in del_elements\n                if elem.get(f\"{{{self.namespaces['w']}}}author\") == self.author\n            ]\n            author_ins_elements = [\n                elem\n                for elem in ins_elements\n                if elem.get(f\"{{{self.namespaces['w']}}}author\") == self.author\n            ]\n\n            if not author_del_elements and not author_ins_elements:\n                if self.verbose:\n                    print(f\"PASSED - No tracked changes by {self.author} found.\")\n                return True\n\n        except Exception:\n            pass\n\n        with tempfile.TemporaryDirectory() as temp_dir:\n            temp_path = Path(temp_dir)\n\n            try:\n                with zipfile.ZipFile(self.original_docx, \"r\") as zip_ref:\n                    zip_ref.extractall(temp_path)\n            except Exception as e:\n                print(f\"FAILED - Error unpacking original docx: {e}\")\n                return False\n\n            original_file = temp_path / \"word\" / \"document.xml\"\n            if not original_file.exists():\n                print(\n                    f\"FAILED - Original document.xml not found in {self.original_docx}\"\n                )\n                return False\n\n            try:\n                import xml.etree.ElementTree as ET\n\n                modified_tree = ET.parse(modified_file)\n                modified_root = modified_tree.getroot()\n                original_tree = ET.parse(original_file)\n                original_root = original_tree.getroot()\n            except ET.ParseError as e:\n                print(f\"FAILED - Error parsing XML files: {e}\")\n                return False\n\n            self._remove_author_tracked_changes(original_root)\n            self._remove_author_tracked_changes(modified_root)\n\n            modified_text = self._extract_text_content(modified_root)\n            original_text = self._extract_text_content(original_root)\n\n            if modified_text != original_text:\n                error_message = self._generate_detailed_diff(\n                    original_text, modified_text\n                )\n                print(error_message)\n                return False\n\n            if self.verbose:\n                print(f\"PASSED - All changes by {self.author} are properly tracked\")\n            return True\n\n    def _generate_detailed_diff(self, original_text, modified_text):\n        error_parts = [\n            f\"FAILED - Document text doesn't match after removing {self.author}'s tracked changes\",\n            \"\",\n            \"Likely causes:\",\n            \"  1. Modified text inside another author's <w:ins> or <w:del> tags\",\n            \"  2. Made edits without proper tracked changes\",\n            \"  3. Didn't nest <w:del> inside <w:ins> when deleting another's insertion\",\n            \"\",\n            \"For pre-redlined documents, use correct patterns:\",\n            \"  - To reject another's INSERTION: Nest <w:del> inside their <w:ins>\",\n            \"  - To restore another's DELETION: Add new <w:ins> AFTER their <w:del>\",\n            \"\",\n        ]\n\n        git_diff = self._get_git_word_diff(original_text, modified_text)\n        if git_diff:\n            error_parts.extend([\"Differences:\", \"============\", git_diff])\n        else:\n            error_parts.append(\"Unable to generate word diff (git not available)\")\n\n        return \"\\n\".join(error_parts)\n\n    def _get_git_word_diff(self, original_text, modified_text):\n        try:\n            with tempfile.TemporaryDirectory() as temp_dir:\n                temp_path = Path(temp_dir)\n\n                original_file = temp_path / \"original.txt\"\n                modified_file = temp_path / \"modified.txt\"\n\n                original_file.write_text(original_text, encoding=\"utf-8\")\n                modified_file.write_text(modified_text, encoding=\"utf-8\")\n\n                result = subprocess.run(\n                    [\n                        \"git\",\n                        \"diff\",\n                        \"--word-diff=plain\",\n                        \"--word-diff-regex=.\",  \n                        \"-U0\",  \n                        \"--no-index\",\n                        str(original_file),\n                        str(modified_file),\n                    ],\n                    capture_output=True,\n                    text=True,\n                )\n\n                if result.stdout.strip():\n                    lines = result.stdout.split(\"\\n\")\n                    content_lines = []\n                    in_content = False\n                    for line in lines:\n                        if line.startswith(\"@@\"):\n                            in_content = True\n                            continue\n                        if in_content and line.strip():\n                            content_lines.append(line)\n\n                    if content_lines:\n                        return \"\\n\".join(content_lines)\n\n                result = subprocess.run(\n                    [\n                        \"git\",\n                        \"diff\",\n                        \"--word-diff=plain\",\n                        \"-U0\",  \n                        \"--no-index\",\n                        str(original_file),\n                        str(modified_file),\n                    ],\n                    capture_output=True,\n                    text=True,\n                )\n\n                if result.stdout.strip():\n                    lines = result.stdout.split(\"\\n\")\n                    content_lines = []\n                    in_content = False\n                    for line in lines:\n                        if line.startswith(\"@@\"):\n                            in_content = True\n                            continue\n                        if in_content and line.strip():\n                            content_lines.append(line)\n                    return \"\\n\".join(content_lines)\n\n        except (subprocess.CalledProcessError, FileNotFoundError, Exception):\n            pass\n\n        return None\n\n    def _remove_author_tracked_changes(self, root):\n        ins_tag = f\"{{{self.namespaces['w']}}}ins\"\n        del_tag = f\"{{{self.namespaces['w']}}}del\"\n        author_attr = f\"{{{self.namespaces['w']}}}author\"\n\n        for parent in root.iter():\n            to_remove = []\n            for child in parent:\n                if child.tag == ins_tag and child.get(author_attr) == self.author:\n                    to_remove.append(child)\n            for elem in to_remove:\n                parent.remove(elem)\n\n        deltext_tag = f\"{{{self.namespaces['w']}}}delText\"\n        t_tag = f\"{{{self.namespaces['w']}}}t\"\n\n        for parent in root.iter():\n            to_process = []\n            for child in parent:\n                if child.tag == del_tag and child.get(author_attr) == self.author:\n                    to_process.append((child, list(parent).index(child)))\n\n            for del_elem, del_index in reversed(to_process):\n                for elem in del_elem.iter():\n                    if elem.tag == deltext_tag:\n                        elem.tag = t_tag\n\n                for child in reversed(list(del_elem)):\n                    parent.insert(del_index, child)\n                parent.remove(del_elem)\n\n    def _extract_text_content(self, root):\n        p_tag = f\"{{{self.namespaces['w']}}}p\"\n        t_tag = f\"{{{self.namespaces['w']}}}t\"\n\n        paragraphs = []\n        for p_elem in root.findall(f\".//{p_tag}\"):\n            text_parts = []\n            for t_elem in p_elem.findall(f\".//{t_tag}\"):\n                if t_elem.text:\n                    text_parts.append(t_elem.text)\n            paragraph_text = \"\".join(text_parts)\n            if paragraph_text:\n                paragraphs.append(paragraph_text)\n\n        return \"\\n\".join(paragraphs)\n\n\nif __name__ == \"__main__\":\n    raise RuntimeError(\"This module should not be run directly.\")\n"
  },
  {
    "path": "skills/pptx/scripts/thumbnail.py",
    "content": "\"\"\"Create thumbnail grids from PowerPoint presentation slides.\n\nCreates a grid layout of slide thumbnails for quick visual analysis.\nLabels each thumbnail with its XML filename (e.g., slide1.xml).\nHidden slides are shown with a placeholder pattern.\n\nUsage:\n    python thumbnail.py input.pptx [output_prefix] [--cols N]\n\nExamples:\n    python thumbnail.py presentation.pptx\n    # Creates: thumbnails.jpg\n\n    python thumbnail.py template.pptx grid --cols 4\n    # Creates: grid.jpg (or grid-1.jpg, grid-2.jpg for large decks)\n\"\"\"\n\nimport argparse\nimport subprocess\nimport sys\nimport tempfile\nimport zipfile\nfrom pathlib import Path\n\nimport defusedxml.minidom\nfrom office.soffice import get_soffice_env\nfrom PIL import Image, ImageDraw, ImageFont\n\nTHUMBNAIL_WIDTH = 300\nCONVERSION_DPI = 100\nMAX_COLS = 6\nDEFAULT_COLS = 3\nJPEG_QUALITY = 95\nGRID_PADDING = 20\nBORDER_WIDTH = 2\nFONT_SIZE_RATIO = 0.10\nLABEL_PADDING_RATIO = 0.4\n\n\ndef main():\n    parser = argparse.ArgumentParser(\n        description=\"Create thumbnail grids from PowerPoint slides.\"\n    )\n    parser.add_argument(\"input\", help=\"Input PowerPoint file (.pptx)\")\n    parser.add_argument(\n        \"output_prefix\",\n        nargs=\"?\",\n        default=\"thumbnails\",\n        help=\"Output prefix for image files (default: thumbnails)\",\n    )\n    parser.add_argument(\n        \"--cols\",\n        type=int,\n        default=DEFAULT_COLS,\n        help=f\"Number of columns (default: {DEFAULT_COLS}, max: {MAX_COLS})\",\n    )\n\n    args = parser.parse_args()\n\n    cols = min(args.cols, MAX_COLS)\n    if args.cols > MAX_COLS:\n        print(f\"Warning: Columns limited to {MAX_COLS}\")\n\n    input_path = Path(args.input)\n    if not input_path.exists() or input_path.suffix.lower() != \".pptx\":\n        print(f\"Error: Invalid PowerPoint file: {args.input}\", file=sys.stderr)\n        sys.exit(1)\n\n    output_path = Path(f\"{args.output_prefix}.jpg\")\n\n    try:\n        slide_info = get_slide_info(input_path)\n\n        with tempfile.TemporaryDirectory() as temp_dir:\n            temp_path = Path(temp_dir)\n            visible_images = convert_to_images(input_path, temp_path)\n\n            if not visible_images and not any(s[\"hidden\"] for s in slide_info):\n                print(\"Error: No slides found\", file=sys.stderr)\n                sys.exit(1)\n\n            slides = build_slide_list(slide_info, visible_images, temp_path)\n\n            grid_files = create_grids(slides, cols, THUMBNAIL_WIDTH, output_path)\n\n            print(f\"Created {len(grid_files)} grid(s):\")\n            for grid_file in grid_files:\n                print(f\"  {grid_file}\")\n\n    except Exception as e:\n        print(f\"Error: {e}\", file=sys.stderr)\n        sys.exit(1)\n\n\ndef get_slide_info(pptx_path: Path) -> list[dict]:\n    with zipfile.ZipFile(pptx_path, \"r\") as zf:\n        rels_content = zf.read(\"ppt/_rels/presentation.xml.rels\").decode(\"utf-8\")\n        rels_dom = defusedxml.minidom.parseString(rels_content)\n\n        rid_to_slide = {}\n        for rel in rels_dom.getElementsByTagName(\"Relationship\"):\n            rid = rel.getAttribute(\"Id\")\n            target = rel.getAttribute(\"Target\")\n            rel_type = rel.getAttribute(\"Type\")\n            if \"slide\" in rel_type and target.startswith(\"slides/\"):\n                rid_to_slide[rid] = target.replace(\"slides/\", \"\")\n\n        pres_content = zf.read(\"ppt/presentation.xml\").decode(\"utf-8\")\n        pres_dom = defusedxml.minidom.parseString(pres_content)\n\n        slides = []\n        for sld_id in pres_dom.getElementsByTagName(\"p:sldId\"):\n            rid = sld_id.getAttribute(\"r:id\")\n            if rid in rid_to_slide:\n                hidden = sld_id.getAttribute(\"show\") == \"0\"\n                slides.append({\"name\": rid_to_slide[rid], \"hidden\": hidden})\n\n        return slides\n\n\ndef build_slide_list(\n    slide_info: list[dict],\n    visible_images: list[Path],\n    temp_dir: Path,\n) -> list[tuple[Path, str]]:\n    if visible_images:\n        with Image.open(visible_images[0]) as img:\n            placeholder_size = img.size\n    else:\n        placeholder_size = (1920, 1080)\n\n    slides = []\n    visible_idx = 0\n\n    for info in slide_info:\n        if info[\"hidden\"]:\n            placeholder_path = temp_dir / f\"hidden-{info['name']}.jpg\"\n            placeholder_img = create_hidden_placeholder(placeholder_size)\n            placeholder_img.save(placeholder_path, \"JPEG\")\n            slides.append((placeholder_path, f\"{info['name']} (hidden)\"))\n        else:\n            if visible_idx < len(visible_images):\n                slides.append((visible_images[visible_idx], info[\"name\"]))\n                visible_idx += 1\n\n    return slides\n\n\ndef create_hidden_placeholder(size: tuple[int, int]) -> Image.Image:\n    img = Image.new(\"RGB\", size, color=\"#F0F0F0\")\n    draw = ImageDraw.Draw(img)\n    line_width = max(5, min(size) // 100)\n    draw.line([(0, 0), size], fill=\"#CCCCCC\", width=line_width)\n    draw.line([(size[0], 0), (0, size[1])], fill=\"#CCCCCC\", width=line_width)\n    return img\n\n\ndef convert_to_images(pptx_path: Path, temp_dir: Path) -> list[Path]:\n    pdf_path = temp_dir / f\"{pptx_path.stem}.pdf\"\n\n    result = subprocess.run(\n        [\n            \"soffice\",\n            \"--headless\",\n            \"--convert-to\",\n            \"pdf\",\n            \"--outdir\",\n            str(temp_dir),\n            str(pptx_path),\n        ],\n        capture_output=True,\n        text=True,\n        env=get_soffice_env(),\n    )\n    if result.returncode != 0 or not pdf_path.exists():\n        raise RuntimeError(\"PDF conversion failed\")\n\n    result = subprocess.run(\n        [\n            \"pdftoppm\",\n            \"-jpeg\",\n            \"-r\",\n            str(CONVERSION_DPI),\n            str(pdf_path),\n            str(temp_dir / \"slide\"),\n        ],\n        capture_output=True,\n        text=True,\n    )\n    if result.returncode != 0:\n        raise RuntimeError(\"Image conversion failed\")\n\n    return sorted(temp_dir.glob(\"slide-*.jpg\"))\n\n\ndef create_grids(\n    slides: list[tuple[Path, str]],\n    cols: int,\n    width: int,\n    output_path: Path,\n) -> list[str]:\n    max_per_grid = cols * (cols + 1)\n    grid_files = []\n\n    for chunk_idx, start_idx in enumerate(range(0, len(slides), max_per_grid)):\n        end_idx = min(start_idx + max_per_grid, len(slides))\n        chunk_slides = slides[start_idx:end_idx]\n\n        grid = create_grid(chunk_slides, cols, width)\n\n        if len(slides) <= max_per_grid:\n            grid_filename = output_path\n        else:\n            stem = output_path.stem\n            suffix = output_path.suffix\n            grid_filename = output_path.parent / f\"{stem}-{chunk_idx + 1}{suffix}\"\n\n        grid_filename.parent.mkdir(parents=True, exist_ok=True)\n        grid.save(str(grid_filename), quality=JPEG_QUALITY)\n        grid_files.append(str(grid_filename))\n\n    return grid_files\n\n\ndef create_grid(\n    slides: list[tuple[Path, str]],\n    cols: int,\n    width: int,\n) -> Image.Image:\n    font_size = int(width * FONT_SIZE_RATIO)\n    label_padding = int(font_size * LABEL_PADDING_RATIO)\n\n    with Image.open(slides[0][0]) as img:\n        aspect = img.height / img.width\n    height = int(width * aspect)\n\n    rows = (len(slides) + cols - 1) // cols\n    grid_w = cols * width + (cols + 1) * GRID_PADDING\n    grid_h = rows * (height + font_size + label_padding * 2) + (rows + 1) * GRID_PADDING\n\n    grid = Image.new(\"RGB\", (grid_w, grid_h), \"white\")\n    draw = ImageDraw.Draw(grid)\n\n    try:\n        font = ImageFont.load_default(size=font_size)\n    except Exception:\n        font = ImageFont.load_default()\n\n    for i, (img_path, slide_name) in enumerate(slides):\n        row, col = i // cols, i % cols\n        x = col * width + (col + 1) * GRID_PADDING\n        y_base = (\n            row * (height + font_size + label_padding * 2) + (row + 1) * GRID_PADDING\n        )\n\n        label = slide_name\n        bbox = draw.textbbox((0, 0), label, font=font)\n        text_w = bbox[2] - bbox[0]\n        draw.text(\n            (x + (width - text_w) // 2, y_base + label_padding),\n            label,\n            fill=\"black\",\n            font=font,\n        )\n\n        y_thumbnail = y_base + label_padding + font_size + label_padding\n\n        with Image.open(img_path) as img:\n            img.thumbnail((width, height), Image.Resampling.LANCZOS)\n            w, h = img.size\n            tx = x + (width - w) // 2\n            ty = y_thumbnail + (height - h) // 2\n            grid.paste(img, (tx, ty))\n\n            if BORDER_WIDTH > 0:\n                draw.rectangle(\n                    [\n                        (tx - BORDER_WIDTH, ty - BORDER_WIDTH),\n                        (tx + w + BORDER_WIDTH - 1, ty + h + BORDER_WIDTH - 1),\n                    ],\n                    outline=\"gray\",\n                    width=BORDER_WIDTH,\n                )\n\n    return grid\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "skills/skill-creator/LICENSE.txt",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License."
  },
  {
    "path": "skills/skill-creator/SKILL.md",
    "content": "---\nname: skill-creator\ndescription: Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.\n---\n\n# Skill Creator\n\nA skill for creating new skills and iteratively improving them.\n\nAt a high level, the process of creating a skill goes like this:\n\n- Decide what you want the skill to do and roughly how it should do it\n- Write a draft of the skill\n- Create a few test prompts and run claude-with-access-to-the-skill on them\n- Help the user evaluate the results both qualitatively and quantitatively\n  - While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you can either use as is or modify if you feel something needs to change about them). Then explain them to the user (or if they already existed, explain the ones that already exist)\n  - Use the `eval-viewer/generate_review.py` script to show the user the results for them to look at, and also let them look at the quantitative metrics\n- Rewrite the skill based on feedback from the user's evaluation of the results (and also if there are any glaring flaws that become apparent from the quantitative benchmarks)\n- Repeat until you're satisfied\n- Expand the test set and try again at larger scale\n\nYour job when using this skill is to figure out where the user is in this process and then jump in and help them progress through these stages. So for instance, maybe they're like \"I want to make a skill for X\". You can help narrow down what they mean, write a draft, write the test cases, figure out how they want to evaluate, run all the prompts, and repeat.\n\nOn the other hand, maybe they already have a draft of the skill. In this case you can go straight to the eval/iterate part of the loop.\n\nOf course, you should always be flexible and if the user is like \"I don't need to run a bunch of evaluations, just vibe with me\", you can do that instead.\n\nThen after the skill is done (but again, the order is flexible), you can also run the skill description improver, which we have a whole separate script for, to optimize the triggering of the skill.\n\nCool? Cool.\n\n## Communicating with the user\n\nThe skill creator is liable to be used by people across a wide range of familiarity with coding jargon. If you haven't heard (and how could you, it's only very recently that it started), there's a trend now where the power of Claude is inspiring plumbers to open up their terminals, parents and grandparents to google \"how to install npm\". On the other hand, the bulk of users are probably fairly computer-literate.\n\nSo please pay attention to context cues to understand how to phrase your communication! In the default case, just to give you some idea:\n\n- \"evaluation\" and \"benchmark\" are borderline, but OK\n- for \"JSON\" and \"assertion\" you want to see serious cues from the user that they know what those things are before using them without explaining them\n\nIt's OK to briefly explain terms if you're in doubt, and feel free to clarify terms with a short definition if you're unsure if the user will get it.\n\n---\n\n## Creating a skill\n\n### Capture Intent\n\nStart by understanding the user's intent. The current conversation might already contain a workflow the user wants to capture (e.g., they say \"turn this into a skill\"). If so, extract answers from the conversation history first — the tools used, the sequence of steps, corrections the user made, input/output formats observed. The user may need to fill the gaps, and should confirm before proceeding to the next step.\n\n1. What should this skill enable Claude to do?\n2. When should this skill trigger? (what user phrases/contexts)\n3. What's the expected output format?\n4. Should we set up test cases to verify the skill works? Skills with objectively verifiable outputs (file transforms, data extraction, code generation, fixed workflow steps) benefit from test cases. Skills with subjective outputs (writing style, art) often don't need them. Suggest the appropriate default based on the skill type, but let the user decide.\n\n### Interview and Research\n\nProactively ask questions about edge cases, input/output formats, example files, success criteria, and dependencies. Wait to write test prompts until you've got this part ironed out.\n\nCheck available MCPs - if useful for research (searching docs, finding similar skills, looking up best practices), research in parallel via subagents if available, otherwise inline. Come prepared with context to reduce burden on the user.\n\n### Write the SKILL.md\n\nBased on the user interview, fill in these components:\n\n- **name**: Skill identifier\n- **description**: When to trigger, what it does. This is the primary triggering mechanism - include both what the skill does AND specific contexts for when to use it. All \"when to use\" info goes here, not in the body. Note: currently Claude has a tendency to \"undertrigger\" skills -- to not use them when they'd be useful. To combat this, please make the skill descriptions a little bit \"pushy\". So for instance, instead of \"How to build a simple fast dashboard to display internal Anthropic data.\", you might write \"How to build a simple fast dashboard to display internal Anthropic data. Make sure to use this skill whenever the user mentions dashboards, data visualization, internal metrics, or wants to display any kind of company data, even if they don't explicitly ask for a 'dashboard.'\"\n- **compatibility**: Required tools, dependencies (optional, rarely needed)\n- **the rest of the skill :)**\n\n### Skill Writing Guide\n\n#### Anatomy of a Skill\n\n```\nskill-name/\n├── SKILL.md (required)\n│   ├── YAML frontmatter (name, description required)\n│   └── Markdown instructions\n└── Bundled Resources (optional)\n    ├── scripts/    - Executable code for deterministic/repetitive tasks\n    ├── references/ - Docs loaded into context as needed\n    └── assets/     - Files used in output (templates, icons, fonts)\n```\n\n#### Progressive Disclosure\n\nSkills use a three-level loading system:\n1. **Metadata** (name + description) - Always in context (~100 words)\n2. **SKILL.md body** - In context whenever skill triggers (<500 lines ideal)\n3. **Bundled resources** - As needed (unlimited, scripts can execute without loading)\n\nThese word counts are approximate and you can feel free to go longer if needed.\n\n**Key patterns:**\n- Keep SKILL.md under 500 lines; if you're approaching this limit, add an additional layer of hierarchy along with clear pointers about where the model using the skill should go next to follow up.\n- Reference files clearly from SKILL.md with guidance on when to read them\n- For large reference files (>300 lines), include a table of contents\n\n**Domain organization**: When a skill supports multiple domains/frameworks, organize by variant:\n```\ncloud-deploy/\n├── SKILL.md (workflow + selection)\n└── references/\n    ├── aws.md\n    ├── gcp.md\n    └── azure.md\n```\nClaude reads only the relevant reference file.\n\n#### Principle of Lack of Surprise\n\nThis goes without saying, but skills must not contain malware, exploit code, or any content that could compromise system security. A skill's contents should not surprise the user in their intent if described. Don't go along with requests to create misleading skills or skills designed to facilitate unauthorized access, data exfiltration, or other malicious activities. Things like a \"roleplay as an XYZ\" are OK though.\n\n#### Writing Patterns\n\nPrefer using the imperative form in instructions.\n\n**Defining output formats** - You can do it like this:\n```markdown\n## Report structure\nALWAYS use this exact template:\n# [Title]\n## Executive summary\n## Key findings\n## Recommendations\n```\n\n**Examples pattern** - It's useful to include examples. You can format them like this (but if \"Input\" and \"Output\" are in the examples you might want to deviate a little):\n```markdown\n## Commit message format\n**Example 1:**\nInput: Added user authentication with JWT tokens\nOutput: feat(auth): implement JWT-based authentication\n```\n\n### Writing Style\n\nTry to explain to the model why things are important in lieu of heavy-handed musty MUSTs. Use theory of mind and try to make the skill general and not super-narrow to specific examples. Start by writing a draft and then look at it with fresh eyes and improve it.\n\n### Test Cases\n\nAfter writing the skill draft, come up with 2-3 realistic test prompts — the kind of thing a real user would actually say. Share them with the user: [you don't have to use this exact language] \"Here are a few test cases I'd like to try. Do these look right, or do you want to add more?\" Then run them.\n\nSave test cases to `evals/evals.json`. Don't write assertions yet — just the prompts. You'll draft assertions in the next step while the runs are in progress.\n\n```json\n{\n  \"skill_name\": \"example-skill\",\n  \"evals\": [\n    {\n      \"id\": 1,\n      \"prompt\": \"User's task prompt\",\n      \"expected_output\": \"Description of expected result\",\n      \"files\": []\n    }\n  ]\n}\n```\n\nSee `references/schemas.md` for the full schema (including the `assertions` field, which you'll add later).\n\n## Running and evaluating test cases\n\nThis section is one continuous sequence — don't stop partway through. Do NOT use `/skill-test` or any other testing skill.\n\nPut results in `<skill-name>-workspace/` as a sibling to the skill directory. Within the workspace, organize results by iteration (`iteration-1/`, `iteration-2/`, etc.) and within that, each test case gets a directory (`eval-0/`, `eval-1/`, etc.). Don't create all of this upfront — just create directories as you go.\n\n### Step 1: Spawn all runs (with-skill AND baseline) in the same turn\n\nFor each test case, spawn two subagents in the same turn — one with the skill, one without. This is important: don't spawn the with-skill runs first and then come back for baselines later. Launch everything at once so it all finishes around the same time.\n\n**With-skill run:**\n\n```\nExecute this task:\n- Skill path: <path-to-skill>\n- Task: <eval prompt>\n- Input files: <eval files if any, or \"none\">\n- Save outputs to: <workspace>/iteration-<N>/eval-<ID>/with_skill/outputs/\n- Outputs to save: <what the user cares about — e.g., \"the .docx file\", \"the final CSV\">\n```\n\n**Baseline run** (same prompt, but the baseline depends on context):\n- **Creating a new skill**: no skill at all. Same prompt, no skill path, save to `without_skill/outputs/`.\n- **Improving an existing skill**: the old version. Before editing, snapshot the skill (`cp -r <skill-path> <workspace>/skill-snapshot/`), then point the baseline subagent at the snapshot. Save to `old_skill/outputs/`.\n\nWrite an `eval_metadata.json` for each test case (assertions can be empty for now). Give each eval a descriptive name based on what it's testing — not just \"eval-0\". Use this name for the directory too. If this iteration uses new or modified eval prompts, create these files for each new eval directory — don't assume they carry over from previous iterations.\n\n```json\n{\n  \"eval_id\": 0,\n  \"eval_name\": \"descriptive-name-here\",\n  \"prompt\": \"The user's task prompt\",\n  \"assertions\": []\n}\n```\n\n### Step 2: While runs are in progress, draft assertions\n\nDon't just wait for the runs to finish — you can use this time productively. Draft quantitative assertions for each test case and explain them to the user. If assertions already exist in `evals/evals.json`, review them and explain what they check.\n\nGood assertions are objectively verifiable and have descriptive names — they should read clearly in the benchmark viewer so someone glancing at the results immediately understands what each one checks. Subjective skills (writing style, design quality) are better evaluated qualitatively — don't force assertions onto things that need human judgment.\n\nUpdate the `eval_metadata.json` files and `evals/evals.json` with the assertions once drafted. Also explain to the user what they'll see in the viewer — both the qualitative outputs and the quantitative benchmark.\n\n### Step 3: As runs complete, capture timing data\n\nWhen each subagent task completes, you receive a notification containing `total_tokens` and `duration_ms`. Save this data immediately to `timing.json` in the run directory:\n\n```json\n{\n  \"total_tokens\": 84852,\n  \"duration_ms\": 23332,\n  \"total_duration_seconds\": 23.3\n}\n```\n\nThis is the only opportunity to capture this data — it comes through the task notification and isn't persisted elsewhere. Process each notification as it arrives rather than trying to batch them.\n\n### Step 4: Grade, aggregate, and launch the viewer\n\nOnce all runs are done:\n\n1. **Grade each run** — spawn a grader subagent (or grade inline) that reads `agents/grader.md` and evaluates each assertion against the outputs. Save results to `grading.json` in each run directory. The grading.json expectations array must use the fields `text`, `passed`, and `evidence` (not `name`/`met`/`details` or other variants) — the viewer depends on these exact field names. For assertions that can be checked programmatically, write and run a script rather than eyeballing it — scripts are faster, more reliable, and can be reused across iterations.\n\n2. **Aggregate into benchmark** — run the aggregation script from the skill-creator directory:\n   ```bash\n   python -m scripts.aggregate_benchmark <workspace>/iteration-N --skill-name <name>\n   ```\n   This produces `benchmark.json` and `benchmark.md` with pass_rate, time, and tokens for each configuration, with mean ± stddev and the delta. If generating benchmark.json manually, see `references/schemas.md` for the exact schema the viewer expects.\nPut each with_skill version before its baseline counterpart.\n\n3. **Do an analyst pass** — read the benchmark data and surface patterns the aggregate stats might hide. See `agents/analyzer.md` (the \"Analyzing Benchmark Results\" section) for what to look for — things like assertions that always pass regardless of skill (non-discriminating), high-variance evals (possibly flaky), and time/token tradeoffs.\n\n4. **Launch the viewer** with both qualitative outputs and quantitative data:\n   ```bash\n   nohup python <skill-creator-path>/eval-viewer/generate_review.py \\\n     <workspace>/iteration-N \\\n     --skill-name \"my-skill\" \\\n     --benchmark <workspace>/iteration-N/benchmark.json \\\n     > /dev/null 2>&1 &\n   VIEWER_PID=$!\n   ```\n   For iteration 2+, also pass `--previous-workspace <workspace>/iteration-<N-1>`.\n\n   **Cowork / headless environments:** If `webbrowser.open()` is not available or the environment has no display, use `--static <output_path>` to write a standalone HTML file instead of starting a server. Feedback will be downloaded as a `feedback.json` file when the user clicks \"Submit All Reviews\". After download, copy `feedback.json` into the workspace directory for the next iteration to pick up.\n\nNote: please use generate_review.py to create the viewer; there's no need to write custom HTML.\n\n5. **Tell the user** something like: \"I've opened the results in your browser. There are two tabs — 'Outputs' lets you click through each test case and leave feedback, 'Benchmark' shows the quantitative comparison. When you're done, come back here and let me know.\"\n\n### What the user sees in the viewer\n\nThe \"Outputs\" tab shows one test case at a time:\n- **Prompt**: the task that was given\n- **Output**: the files the skill produced, rendered inline where possible\n- **Previous Output** (iteration 2+): collapsed section showing last iteration's output\n- **Formal Grades** (if grading was run): collapsed section showing assertion pass/fail\n- **Feedback**: a textbox that auto-saves as they type\n- **Previous Feedback** (iteration 2+): their comments from last time, shown below the textbox\n\nThe \"Benchmark\" tab shows the stats summary: pass rates, timing, and token usage for each configuration, with per-eval breakdowns and analyst observations.\n\nNavigation is via prev/next buttons or arrow keys. When done, they click \"Submit All Reviews\" which saves all feedback to `feedback.json`.\n\n### Step 5: Read the feedback\n\nWhen the user tells you they're done, read `feedback.json`:\n\n```json\n{\n  \"reviews\": [\n    {\"run_id\": \"eval-0-with_skill\", \"feedback\": \"the chart is missing axis labels\", \"timestamp\": \"...\"},\n    {\"run_id\": \"eval-1-with_skill\", \"feedback\": \"\", \"timestamp\": \"...\"},\n    {\"run_id\": \"eval-2-with_skill\", \"feedback\": \"perfect, love this\", \"timestamp\": \"...\"}\n  ],\n  \"status\": \"complete\"\n}\n```\n\nEmpty feedback means the user thought it was fine. Focus your improvements on the test cases where the user had specific complaints.\n\nKill the viewer server when you're done with it:\n\n```bash\nkill $VIEWER_PID 2>/dev/null\n```\n\n---\n\n## Improving the skill\n\nThis is the heart of the loop. You've run the test cases, the user has reviewed the results, and now you need to make the skill better based on their feedback.\n\n### How to think about improvements\n\n1. **Generalize from the feedback.** The big picture thing that's happening here is that we're trying to create skills that can be used a million times (maybe literally, maybe even more who knows) across many different prompts. Here you and the user are iterating on only a few examples over and over again because it helps move faster. The user knows these examples in and out and it's quick for them to assess new outputs. But if the skill you and the user are codeveloping works only for those examples, it's useless. Rather than put in fiddly overfitty changes, or oppressively constrictive MUSTs, if there's some stubborn issue, you might try branching out and using different metaphors, or recommending different patterns of working. It's relatively cheap to try and maybe you'll land on something great.\n\n2. **Keep the prompt lean.** Remove things that aren't pulling their weight. Make sure to read the transcripts, not just the final outputs — if it looks like the skill is making the model waste a bunch of time doing things that are unproductive, you can try getting rid of the parts of the skill that are making it do that and seeing what happens.\n\n3. **Explain the why.** Try hard to explain the **why** behind everything you're asking the model to do. Today's LLMs are *smart*. They have good theory of mind and when given a good harness can go beyond rote instructions and really make things happen. Even if the feedback from the user is terse or frustrated, try to actually understand the task and why the user is writing what they wrote, and what they actually wrote, and then transmit this understanding into the instructions. If you find yourself writing ALWAYS or NEVER in all caps, or using super rigid structures, that's a yellow flag — if possible, reframe and explain the reasoning so that the model understands why the thing you're asking for is important. That's a more humane, powerful, and effective approach.\n\n4. **Look for repeated work across test cases.** Read the transcripts from the test runs and notice if the subagents all independently wrote similar helper scripts or took the same multi-step approach to something. If all 3 test cases resulted in the subagent writing a `create_docx.py` or a `build_chart.py`, that's a strong signal the skill should bundle that script. Write it once, put it in `scripts/`, and tell the skill to use it. This saves every future invocation from reinventing the wheel.\n\nThis task is pretty important (we are trying to create billions a year in economic value here!) and your thinking time is not the blocker; take your time and really mull things over. I'd suggest writing a draft revision and then looking at it anew and making improvements. Really do your best to get into the head of the user and understand what they want and need.\n\n### The iteration loop\n\nAfter improving the skill:\n\n1. Apply your improvements to the skill\n2. Rerun all test cases into a new `iteration-<N+1>/` directory, including baseline runs. If you're creating a new skill, the baseline is always `without_skill` (no skill) — that stays the same across iterations. If you're improving an existing skill, use your judgment on what makes sense as the baseline: the original version the user came in with, or the previous iteration.\n3. Launch the reviewer with `--previous-workspace` pointing at the previous iteration\n4. Wait for the user to review and tell you they're done\n5. Read the new feedback, improve again, repeat\n\nKeep going until:\n- The user says they're happy\n- The feedback is all empty (everything looks good)\n- You're not making meaningful progress\n\n---\n\n## Advanced: Blind comparison\n\nFor situations where you want a more rigorous comparison between two versions of a skill (e.g., the user asks \"is the new version actually better?\"), there's a blind comparison system. Read `agents/comparator.md` and `agents/analyzer.md` for the details. The basic idea is: give two outputs to an independent agent without telling it which is which, and let it judge quality. Then analyze why the winner won.\n\nThis is optional, requires subagents, and most users won't need it. The human review loop is usually sufficient.\n\n---\n\n## Description Optimization\n\nThe description field in SKILL.md frontmatter is the primary mechanism that determines whether Claude invokes a skill. After creating or improving a skill, offer to optimize the description for better triggering accuracy.\n\n### Step 1: Generate trigger eval queries\n\nCreate 20 eval queries — a mix of should-trigger and should-not-trigger. Save as JSON:\n\n```json\n[\n  {\"query\": \"the user prompt\", \"should_trigger\": true},\n  {\"query\": \"another prompt\", \"should_trigger\": false}\n]\n```\n\nThe queries must be realistic and something a Claude Code or Claude.ai user would actually type. Not abstract requests, but requests that are concrete and specific and have a good amount of detail. For instance, file paths, personal context about the user's job or situation, column names and values, company names, URLs. A little bit of backstory. Some might be in lowercase or contain abbreviations or typos or casual speech. Use a mix of different lengths, and focus on edge cases rather than making them clear-cut (the user will get a chance to sign off on them).\n\nBad: `\"Format this data\"`, `\"Extract text from PDF\"`, `\"Create a chart\"`\n\nGood: `\"ok so my boss just sent me this xlsx file (its in my downloads, called something like 'Q4 sales final FINAL v2.xlsx') and she wants me to add a column that shows the profit margin as a percentage. The revenue is in column C and costs are in column D i think\"`\n\nFor the **should-trigger** queries (8-10), think about coverage. You want different phrasings of the same intent — some formal, some casual. Include cases where the user doesn't explicitly name the skill or file type but clearly needs it. Throw in some uncommon use cases and cases where this skill competes with another but should win.\n\nFor the **should-not-trigger** queries (8-10), the most valuable ones are the near-misses — queries that share keywords or concepts with the skill but actually need something different. Think adjacent domains, ambiguous phrasing where a naive keyword match would trigger but shouldn't, and cases where the query touches on something the skill does but in a context where another tool is more appropriate.\n\nThe key thing to avoid: don't make should-not-trigger queries obviously irrelevant. \"Write a fibonacci function\" as a negative test for a PDF skill is too easy — it doesn't test anything. The negative cases should be genuinely tricky.\n\n### Step 2: Review with user\n\nPresent the eval set to the user for review using the HTML template:\n\n1. Read the template from `assets/eval_review.html`\n2. Replace the placeholders:\n   - `__EVAL_DATA_PLACEHOLDER__` → the JSON array of eval items (no quotes around it — it's a JS variable assignment)\n   - `__SKILL_NAME_PLACEHOLDER__` → the skill's name\n   - `__SKILL_DESCRIPTION_PLACEHOLDER__` → the skill's current description\n3. Write to a temp file (e.g., `/tmp/eval_review_<skill-name>.html`) and open it: `open /tmp/eval_review_<skill-name>.html`\n4. The user can edit queries, toggle should-trigger, add/remove entries, then click \"Export Eval Set\"\n5. The file downloads to `~/Downloads/eval_set.json` — check the Downloads folder for the most recent version in case there are multiple (e.g., `eval_set (1).json`)\n\nThis step matters — bad eval queries lead to bad descriptions.\n\n### Step 3: Run the optimization loop\n\nTell the user: \"This will take some time — I'll run the optimization loop in the background and check on it periodically.\"\n\nSave the eval set to the workspace, then run in the background:\n\n```bash\npython -m scripts.run_loop \\\n  --eval-set <path-to-trigger-eval.json> \\\n  --skill-path <path-to-skill> \\\n  --model <model-id-powering-this-session> \\\n  --max-iterations 5 \\\n  --verbose\n```\n\nUse the model ID from your system prompt (the one powering the current session) so the triggering test matches what the user actually experiences.\n\nWhile it runs, periodically tail the output to give the user updates on which iteration it's on and what the scores look like.\n\nThis handles the full optimization loop automatically. It splits the eval set into 60% train and 40% held-out test, evaluates the current description (running each query 3 times to get a reliable trigger rate), then calls Claude to propose improvements based on what failed. It re-evaluates each new description on both train and test, iterating up to 5 times. When it's done, it opens an HTML report in the browser showing the results per iteration and returns JSON with `best_description` — selected by test score rather than train score to avoid overfitting.\n\n### How skill triggering works\n\nUnderstanding the triggering mechanism helps design better eval queries. Skills appear in Claude's `available_skills` list with their name + description, and Claude decides whether to consult a skill based on that description. The important thing to know is that Claude only consults skills for tasks it can't easily handle on its own — simple, one-step queries like \"read this PDF\" may not trigger a skill even if the description matches perfectly, because Claude can handle them directly with basic tools. Complex, multi-step, or specialized queries reliably trigger skills when the description matches.\n\nThis means your eval queries should be substantive enough that Claude would actually benefit from consulting a skill. Simple queries like \"read file X\" are poor test cases — they won't trigger skills regardless of description quality.\n\n### Step 4: Apply the result\n\nTake `best_description` from the JSON output and update the skill's SKILL.md frontmatter. Show the user before/after and report the scores.\n\n---\n\n### Package and Present (only if `present_files` tool is available)\n\nCheck whether you have access to the `present_files` tool. If you don't, skip this step. If you do, package the skill and present the .skill file to the user:\n\n```bash\npython -m scripts.package_skill <path/to/skill-folder>\n```\n\nAfter packaging, direct the user to the resulting `.skill` file path so they can install it.\n\n---\n\n## Claude.ai-specific instructions\n\nIn Claude.ai, the core workflow is the same (draft → test → review → improve → repeat), but because Claude.ai doesn't have subagents, some mechanics change. Here's what to adapt:\n\n**Running test cases**: No subagents means no parallel execution. For each test case, read the skill's SKILL.md, then follow its instructions to accomplish the test prompt yourself. Do them one at a time. This is less rigorous than independent subagents (you wrote the skill and you're also running it, so you have full context), but it's a useful sanity check — and the human review step compensates. Skip the baseline runs — just use the skill to complete the task as requested.\n\n**Reviewing results**: If you can't open a browser (e.g., Claude.ai's VM has no display, or you're on a remote server), skip the browser reviewer entirely. Instead, present results directly in the conversation. For each test case, show the prompt and the output. If the output is a file the user needs to see (like a .docx or .xlsx), save it to the filesystem and tell them where it is so they can download and inspect it. Ask for feedback inline: \"How does this look? Anything you'd change?\"\n\n**Benchmarking**: Skip the quantitative benchmarking — it relies on baseline comparisons which aren't meaningful without subagents. Focus on qualitative feedback from the user.\n\n**The iteration loop**: Same as before — improve the skill, rerun the test cases, ask for feedback — just without the browser reviewer in the middle. You can still organize results into iteration directories on the filesystem if you have one.\n\n**Description optimization**: This section requires the `claude` CLI tool (specifically `claude -p`) which is only available in Claude Code. Skip it if you're on Claude.ai.\n\n**Blind comparison**: Requires subagents. Skip it.\n\n**Packaging**: The `package_skill.py` script works anywhere with Python and a filesystem. On Claude.ai, you can run it and the user can download the resulting `.skill` file.\n\n**Updating an existing skill**: The user might be asking you to update an existing skill, not create a new one. In this case:\n- **Preserve the original name.** Note the skill's directory name and `name` frontmatter field -- use them unchanged. E.g., if the installed skill is `research-helper`, output `research-helper.skill` (not `research-helper-v2`).\n- **Copy to a writeable location before editing.** The installed skill path may be read-only. Copy to `/tmp/skill-name/`, edit there, and package from the copy.\n- **If packaging manually, stage in `/tmp/` first**, then copy to the output directory -- direct writes may fail due to permissions.\n\n---\n\n## Cowork-Specific Instructions\n\nIf you're in Cowork, the main things to know are:\n\n- You have subagents, so the main workflow (spawn test cases in parallel, run baselines, grade, etc.) all works. (However, if you run into severe problems with timeouts, it's OK to run the test prompts in series rather than parallel.)\n- You don't have a browser or display, so when generating the eval viewer, use `--static <output_path>` to write a standalone HTML file instead of starting a server. Then proffer a link that the user can click to open the HTML in their browser.\n- For whatever reason, the Cowork setup seems to disincline Claude from generating the eval viewer after running the tests, so just to reiterate: whether you're in Cowork or in Claude Code, after running tests, you should always generate the eval viewer for the human to look at examples before revising the skill yourself and trying to make corrections, using `generate_review.py` (not writing your own boutique html code). Sorry in advance but I'm gonna go all caps here: GENERATE THE EVAL VIEWER *BEFORE* evaluating inputs yourself. You want to get them in front of the human ASAP!\n- Feedback works differently: since there's no running server, the viewer's \"Submit All Reviews\" button will download `feedback.json` as a file. You can then read it from there (you may have to request access first).\n- Packaging works — `package_skill.py` just needs Python and a filesystem.\n- Description optimization (`run_loop.py` / `run_eval.py`) should work in Cowork just fine since it uses `claude -p` via subprocess, not a browser, but please save it until you've fully finished making the skill and the user agrees it's in good shape.\n- **Updating an existing skill**: The user might be asking you to update an existing skill, not create a new one. Follow the update guidance in the claude.ai section above.\n\n---\n\n## Reference files\n\nThe agents/ directory contains instructions for specialized subagents. Read them when you need to spawn the relevant subagent.\n\n- `agents/grader.md` — How to evaluate assertions against outputs\n- `agents/comparator.md` — How to do blind A/B comparison between two outputs\n- `agents/analyzer.md` — How to analyze why one version beat another\n\nThe references/ directory has additional documentation:\n- `references/schemas.md` — JSON structures for evals.json, grading.json, etc.\n\n---\n\nRepeating one more time the core loop here for emphasis:\n\n- Figure out what the skill is about\n- Draft or edit the skill\n- Run claude-with-access-to-the-skill on test prompts\n- With the user, evaluate the outputs:\n  - Create benchmark.json and run `eval-viewer/generate_review.py` to help the user review them\n  - Run quantitative evals\n- Repeat until you and the user are satisfied\n- Package the final skill and return it to the user.\n\nPlease add steps to your TodoList, if you have such a thing, to make sure you don't forget. If you're in Cowork, please specifically put \"Create evals JSON and run `eval-viewer/generate_review.py` so human can review test cases\" in your TodoList to make sure it happens.\n\nGood luck!\n"
  },
  {
    "path": "skills/skill-creator/agents/analyzer.md",
    "content": "# Post-hoc Analyzer Agent\n\nAnalyze blind comparison results to understand WHY the winner won and generate improvement suggestions.\n\n## Role\n\nAfter the blind comparator determines a winner, the Post-hoc Analyzer \"unblids\" the results by examining the skills and transcripts. The goal is to extract actionable insights: what made the winner better, and how can the loser be improved?\n\n## Inputs\n\nYou receive these parameters in your prompt:\n\n- **winner**: \"A\" or \"B\" (from blind comparison)\n- **winner_skill_path**: Path to the skill that produced the winning output\n- **winner_transcript_path**: Path to the execution transcript for the winner\n- **loser_skill_path**: Path to the skill that produced the losing output\n- **loser_transcript_path**: Path to the execution transcript for the loser\n- **comparison_result_path**: Path to the blind comparator's output JSON\n- **output_path**: Where to save the analysis results\n\n## Process\n\n### Step 1: Read Comparison Result\n\n1. Read the blind comparator's output at comparison_result_path\n2. Note the winning side (A or B), the reasoning, and any scores\n3. Understand what the comparator valued in the winning output\n\n### Step 2: Read Both Skills\n\n1. Read the winner skill's SKILL.md and key referenced files\n2. Read the loser skill's SKILL.md and key referenced files\n3. Identify structural differences:\n   - Instructions clarity and specificity\n   - Script/tool usage patterns\n   - Example coverage\n   - Edge case handling\n\n### Step 3: Read Both Transcripts\n\n1. Read the winner's transcript\n2. Read the loser's transcript\n3. Compare execution patterns:\n   - How closely did each follow their skill's instructions?\n   - What tools were used differently?\n   - Where did the loser diverge from optimal behavior?\n   - Did either encounter errors or make recovery attempts?\n\n### Step 4: Analyze Instruction Following\n\nFor each transcript, evaluate:\n- Did the agent follow the skill's explicit instructions?\n- Did the agent use the skill's provided tools/scripts?\n- Were there missed opportunities to leverage skill content?\n- Did the agent add unnecessary steps not in the skill?\n\nScore instruction following 1-10 and note specific issues.\n\n### Step 5: Identify Winner Strengths\n\nDetermine what made the winner better:\n- Clearer instructions that led to better behavior?\n- Better scripts/tools that produced better output?\n- More comprehensive examples that guided edge cases?\n- Better error handling guidance?\n\nBe specific. Quote from skills/transcripts where relevant.\n\n### Step 6: Identify Loser Weaknesses\n\nDetermine what held the loser back:\n- Ambiguous instructions that led to suboptimal choices?\n- Missing tools/scripts that forced workarounds?\n- Gaps in edge case coverage?\n- Poor error handling that caused failures?\n\n### Step 7: Generate Improvement Suggestions\n\nBased on the analysis, produce actionable suggestions for improving the loser skill:\n- Specific instruction changes to make\n- Tools/scripts to add or modify\n- Examples to include\n- Edge cases to address\n\nPrioritize by impact. Focus on changes that would have changed the outcome.\n\n### Step 8: Write Analysis Results\n\nSave structured analysis to `{output_path}`.\n\n## Output Format\n\nWrite a JSON file with this structure:\n\n```json\n{\n  \"comparison_summary\": {\n    \"winner\": \"A\",\n    \"winner_skill\": \"path/to/winner/skill\",\n    \"loser_skill\": \"path/to/loser/skill\",\n    \"comparator_reasoning\": \"Brief summary of why comparator chose winner\"\n  },\n  \"winner_strengths\": [\n    \"Clear step-by-step instructions for handling multi-page documents\",\n    \"Included validation script that caught formatting errors\",\n    \"Explicit guidance on fallback behavior when OCR fails\"\n  ],\n  \"loser_weaknesses\": [\n    \"Vague instruction 'process the document appropriately' led to inconsistent behavior\",\n    \"No script for validation, agent had to improvise and made errors\",\n    \"No guidance on OCR failure, agent gave up instead of trying alternatives\"\n  ],\n  \"instruction_following\": {\n    \"winner\": {\n      \"score\": 9,\n      \"issues\": [\n        \"Minor: skipped optional logging step\"\n      ]\n    },\n    \"loser\": {\n      \"score\": 6,\n      \"issues\": [\n        \"Did not use the skill's formatting template\",\n        \"Invented own approach instead of following step 3\",\n        \"Missed the 'always validate output' instruction\"\n      ]\n    }\n  },\n  \"improvement_suggestions\": [\n    {\n      \"priority\": \"high\",\n      \"category\": \"instructions\",\n      \"suggestion\": \"Replace 'process the document appropriately' with explicit steps: 1) Extract text, 2) Identify sections, 3) Format per template\",\n      \"expected_impact\": \"Would eliminate ambiguity that caused inconsistent behavior\"\n    },\n    {\n      \"priority\": \"high\",\n      \"category\": \"tools\",\n      \"suggestion\": \"Add validate_output.py script similar to winner skill's validation approach\",\n      \"expected_impact\": \"Would catch formatting errors before final output\"\n    },\n    {\n      \"priority\": \"medium\",\n      \"category\": \"error_handling\",\n      \"suggestion\": \"Add fallback instructions: 'If OCR fails, try: 1) different resolution, 2) image preprocessing, 3) manual extraction'\",\n      \"expected_impact\": \"Would prevent early failure on difficult documents\"\n    }\n  ],\n  \"transcript_insights\": {\n    \"winner_execution_pattern\": \"Read skill -> Followed 5-step process -> Used validation script -> Fixed 2 issues -> Produced output\",\n    \"loser_execution_pattern\": \"Read skill -> Unclear on approach -> Tried 3 different methods -> No validation -> Output had errors\"\n  }\n}\n```\n\n## Guidelines\n\n- **Be specific**: Quote from skills and transcripts, don't just say \"instructions were unclear\"\n- **Be actionable**: Suggestions should be concrete changes, not vague advice\n- **Focus on skill improvements**: The goal is to improve the losing skill, not critique the agent\n- **Prioritize by impact**: Which changes would most likely have changed the outcome?\n- **Consider causation**: Did the skill weakness actually cause the worse output, or is it incidental?\n- **Stay objective**: Analyze what happened, don't editorialize\n- **Think about generalization**: Would this improvement help on other evals too?\n\n## Categories for Suggestions\n\nUse these categories to organize improvement suggestions:\n\n| Category | Description |\n|----------|-------------|\n| `instructions` | Changes to the skill's prose instructions |\n| `tools` | Scripts, templates, or utilities to add/modify |\n| `examples` | Example inputs/outputs to include |\n| `error_handling` | Guidance for handling failures |\n| `structure` | Reorganization of skill content |\n| `references` | External docs or resources to add |\n\n## Priority Levels\n\n- **high**: Would likely change the outcome of this comparison\n- **medium**: Would improve quality but may not change win/loss\n- **low**: Nice to have, marginal improvement\n\n---\n\n# Analyzing Benchmark Results\n\nWhen analyzing benchmark results, the analyzer's purpose is to **surface patterns and anomalies** across multiple runs, not suggest skill improvements.\n\n## Role\n\nReview all benchmark run results and generate freeform notes that help the user understand skill performance. Focus on patterns that wouldn't be visible from aggregate metrics alone.\n\n## Inputs\n\nYou receive these parameters in your prompt:\n\n- **benchmark_data_path**: Path to the in-progress benchmark.json with all run results\n- **skill_path**: Path to the skill being benchmarked\n- **output_path**: Where to save the notes (as JSON array of strings)\n\n## Process\n\n### Step 1: Read Benchmark Data\n\n1. Read the benchmark.json containing all run results\n2. Note the configurations tested (with_skill, without_skill)\n3. Understand the run_summary aggregates already calculated\n\n### Step 2: Analyze Per-Assertion Patterns\n\nFor each expectation across all runs:\n- Does it **always pass** in both configurations? (may not differentiate skill value)\n- Does it **always fail** in both configurations? (may be broken or beyond capability)\n- Does it **always pass with skill but fail without**? (skill clearly adds value here)\n- Does it **always fail with skill but pass without**? (skill may be hurting)\n- Is it **highly variable**? (flaky expectation or non-deterministic behavior)\n\n### Step 3: Analyze Cross-Eval Patterns\n\nLook for patterns across evals:\n- Are certain eval types consistently harder/easier?\n- Do some evals show high variance while others are stable?\n- Are there surprising results that contradict expectations?\n\n### Step 4: Analyze Metrics Patterns\n\nLook at time_seconds, tokens, tool_calls:\n- Does the skill significantly increase execution time?\n- Is there high variance in resource usage?\n- Are there outlier runs that skew the aggregates?\n\n### Step 5: Generate Notes\n\nWrite freeform observations as a list of strings. Each note should:\n- State a specific observation\n- Be grounded in the data (not speculation)\n- Help the user understand something the aggregate metrics don't show\n\nExamples:\n- \"Assertion 'Output is a PDF file' passes 100% in both configurations - may not differentiate skill value\"\n- \"Eval 3 shows high variance (50% ± 40%) - run 2 had an unusual failure that may be flaky\"\n- \"Without-skill runs consistently fail on table extraction expectations (0% pass rate)\"\n- \"Skill adds 13s average execution time but improves pass rate by 50%\"\n- \"Token usage is 80% higher with skill, primarily due to script output parsing\"\n- \"All 3 without-skill runs for eval 1 produced empty output\"\n\n### Step 6: Write Notes\n\nSave notes to `{output_path}` as a JSON array of strings:\n\n```json\n[\n  \"Assertion 'Output is a PDF file' passes 100% in both configurations - may not differentiate skill value\",\n  \"Eval 3 shows high variance (50% ± 40%) - run 2 had an unusual failure\",\n  \"Without-skill runs consistently fail on table extraction expectations\",\n  \"Skill adds 13s average execution time but improves pass rate by 50%\"\n]\n```\n\n## Guidelines\n\n**DO:**\n- Report what you observe in the data\n- Be specific about which evals, expectations, or runs you're referring to\n- Note patterns that aggregate metrics would hide\n- Provide context that helps interpret the numbers\n\n**DO NOT:**\n- Suggest improvements to the skill (that's for the improvement step, not benchmarking)\n- Make subjective quality judgments (\"the output was good/bad\")\n- Speculate about causes without evidence\n- Repeat information already in the run_summary aggregates\n"
  },
  {
    "path": "skills/skill-creator/agents/comparator.md",
    "content": "# Blind Comparator Agent\n\nCompare two outputs WITHOUT knowing which skill produced them.\n\n## Role\n\nThe Blind Comparator judges which output better accomplishes the eval task. You receive two outputs labeled A and B, but you do NOT know which skill produced which. This prevents bias toward a particular skill or approach.\n\nYour judgment is based purely on output quality and task completion.\n\n## Inputs\n\nYou receive these parameters in your prompt:\n\n- **output_a_path**: Path to the first output file or directory\n- **output_b_path**: Path to the second output file or directory\n- **eval_prompt**: The original task/prompt that was executed\n- **expectations**: List of expectations to check (optional - may be empty)\n\n## Process\n\n### Step 1: Read Both Outputs\n\n1. Examine output A (file or directory)\n2. Examine output B (file or directory)\n3. Note the type, structure, and content of each\n4. If outputs are directories, examine all relevant files inside\n\n### Step 2: Understand the Task\n\n1. Read the eval_prompt carefully\n2. Identify what the task requires:\n   - What should be produced?\n   - What qualities matter (accuracy, completeness, format)?\n   - What would distinguish a good output from a poor one?\n\n### Step 3: Generate Evaluation Rubric\n\nBased on the task, generate a rubric with two dimensions:\n\n**Content Rubric** (what the output contains):\n| Criterion | 1 (Poor) | 3 (Acceptable) | 5 (Excellent) |\n|-----------|----------|----------------|---------------|\n| Correctness | Major errors | Minor errors | Fully correct |\n| Completeness | Missing key elements | Mostly complete | All elements present |\n| Accuracy | Significant inaccuracies | Minor inaccuracies | Accurate throughout |\n\n**Structure Rubric** (how the output is organized):\n| Criterion | 1 (Poor) | 3 (Acceptable) | 5 (Excellent) |\n|-----------|----------|----------------|---------------|\n| Organization | Disorganized | Reasonably organized | Clear, logical structure |\n| Formatting | Inconsistent/broken | Mostly consistent | Professional, polished |\n| Usability | Difficult to use | Usable with effort | Easy to use |\n\nAdapt criteria to the specific task. For example:\n- PDF form → \"Field alignment\", \"Text readability\", \"Data placement\"\n- Document → \"Section structure\", \"Heading hierarchy\", \"Paragraph flow\"\n- Data output → \"Schema correctness\", \"Data types\", \"Completeness\"\n\n### Step 4: Evaluate Each Output Against the Rubric\n\nFor each output (A and B):\n\n1. **Score each criterion** on the rubric (1-5 scale)\n2. **Calculate dimension totals**: Content score, Structure score\n3. **Calculate overall score**: Average of dimension scores, scaled to 1-10\n\n### Step 5: Check Assertions (if provided)\n\nIf expectations are provided:\n\n1. Check each expectation against output A\n2. Check each expectation against output B\n3. Count pass rates for each output\n4. Use expectation scores as secondary evidence (not the primary decision factor)\n\n### Step 6: Determine the Winner\n\nCompare A and B based on (in priority order):\n\n1. **Primary**: Overall rubric score (content + structure)\n2. **Secondary**: Assertion pass rates (if applicable)\n3. **Tiebreaker**: If truly equal, declare a TIE\n\nBe decisive - ties should be rare. One output is usually better, even if marginally.\n\n### Step 7: Write Comparison Results\n\nSave results to a JSON file at the path specified (or `comparison.json` if not specified).\n\n## Output Format\n\nWrite a JSON file with this structure:\n\n```json\n{\n  \"winner\": \"A\",\n  \"reasoning\": \"Output A provides a complete solution with proper formatting and all required fields. Output B is missing the date field and has formatting inconsistencies.\",\n  \"rubric\": {\n    \"A\": {\n      \"content\": {\n        \"correctness\": 5,\n        \"completeness\": 5,\n        \"accuracy\": 4\n      },\n      \"structure\": {\n        \"organization\": 4,\n        \"formatting\": 5,\n        \"usability\": 4\n      },\n      \"content_score\": 4.7,\n      \"structure_score\": 4.3,\n      \"overall_score\": 9.0\n    },\n    \"B\": {\n      \"content\": {\n        \"correctness\": 3,\n        \"completeness\": 2,\n        \"accuracy\": 3\n      },\n      \"structure\": {\n        \"organization\": 3,\n        \"formatting\": 2,\n        \"usability\": 3\n      },\n      \"content_score\": 2.7,\n      \"structure_score\": 2.7,\n      \"overall_score\": 5.4\n    }\n  },\n  \"output_quality\": {\n    \"A\": {\n      \"score\": 9,\n      \"strengths\": [\"Complete solution\", \"Well-formatted\", \"All fields present\"],\n      \"weaknesses\": [\"Minor style inconsistency in header\"]\n    },\n    \"B\": {\n      \"score\": 5,\n      \"strengths\": [\"Readable output\", \"Correct basic structure\"],\n      \"weaknesses\": [\"Missing date field\", \"Formatting inconsistencies\", \"Partial data extraction\"]\n    }\n  },\n  \"expectation_results\": {\n    \"A\": {\n      \"passed\": 4,\n      \"total\": 5,\n      \"pass_rate\": 0.80,\n      \"details\": [\n        {\"text\": \"Output includes name\", \"passed\": true},\n        {\"text\": \"Output includes date\", \"passed\": true},\n        {\"text\": \"Format is PDF\", \"passed\": true},\n        {\"text\": \"Contains signature\", \"passed\": false},\n        {\"text\": \"Readable text\", \"passed\": true}\n      ]\n    },\n    \"B\": {\n      \"passed\": 3,\n      \"total\": 5,\n      \"pass_rate\": 0.60,\n      \"details\": [\n        {\"text\": \"Output includes name\", \"passed\": true},\n        {\"text\": \"Output includes date\", \"passed\": false},\n        {\"text\": \"Format is PDF\", \"passed\": true},\n        {\"text\": \"Contains signature\", \"passed\": false},\n        {\"text\": \"Readable text\", \"passed\": true}\n      ]\n    }\n  }\n}\n```\n\nIf no expectations were provided, omit the `expectation_results` field entirely.\n\n## Field Descriptions\n\n- **winner**: \"A\", \"B\", or \"TIE\"\n- **reasoning**: Clear explanation of why the winner was chosen (or why it's a tie)\n- **rubric**: Structured rubric evaluation for each output\n  - **content**: Scores for content criteria (correctness, completeness, accuracy)\n  - **structure**: Scores for structure criteria (organization, formatting, usability)\n  - **content_score**: Average of content criteria (1-5)\n  - **structure_score**: Average of structure criteria (1-5)\n  - **overall_score**: Combined score scaled to 1-10\n- **output_quality**: Summary quality assessment\n  - **score**: 1-10 rating (should match rubric overall_score)\n  - **strengths**: List of positive aspects\n  - **weaknesses**: List of issues or shortcomings\n- **expectation_results**: (Only if expectations provided)\n  - **passed**: Number of expectations that passed\n  - **total**: Total number of expectations\n  - **pass_rate**: Fraction passed (0.0 to 1.0)\n  - **details**: Individual expectation results\n\n## Guidelines\n\n- **Stay blind**: DO NOT try to infer which skill produced which output. Judge purely on output quality.\n- **Be specific**: Cite specific examples when explaining strengths and weaknesses.\n- **Be decisive**: Choose a winner unless outputs are genuinely equivalent.\n- **Output quality first**: Assertion scores are secondary to overall task completion.\n- **Be objective**: Don't favor outputs based on style preferences; focus on correctness and completeness.\n- **Explain your reasoning**: The reasoning field should make it clear why you chose the winner.\n- **Handle edge cases**: If both outputs fail, pick the one that fails less badly. If both are excellent, pick the one that's marginally better.\n"
  },
  {
    "path": "skills/skill-creator/agents/grader.md",
    "content": "# Grader Agent\n\nEvaluate expectations against an execution transcript and outputs.\n\n## Role\n\nThe Grader reviews a transcript and output files, then determines whether each expectation passes or fails. Provide clear evidence for each judgment.\n\nYou have two jobs: grade the outputs, and critique the evals themselves. A passing grade on a weak assertion is worse than useless — it creates false confidence. When you notice an assertion that's trivially satisfied, or an important outcome that no assertion checks, say so.\n\n## Inputs\n\nYou receive these parameters in your prompt:\n\n- **expectations**: List of expectations to evaluate (strings)\n- **transcript_path**: Path to the execution transcript (markdown file)\n- **outputs_dir**: Directory containing output files from execution\n\n## Process\n\n### Step 1: Read the Transcript\n\n1. Read the transcript file completely\n2. Note the eval prompt, execution steps, and final result\n3. Identify any issues or errors documented\n\n### Step 2: Examine Output Files\n\n1. List files in outputs_dir\n2. Read/examine each file relevant to the expectations. If outputs aren't plain text, use the inspection tools provided in your prompt — don't rely solely on what the transcript says the executor produced.\n3. Note contents, structure, and quality\n\n### Step 3: Evaluate Each Assertion\n\nFor each expectation:\n\n1. **Search for evidence** in the transcript and outputs\n2. **Determine verdict**:\n   - **PASS**: Clear evidence the expectation is true AND the evidence reflects genuine task completion, not just surface-level compliance\n   - **FAIL**: No evidence, or evidence contradicts the expectation, or the evidence is superficial (e.g., correct filename but empty/wrong content)\n3. **Cite the evidence**: Quote the specific text or describe what you found\n\n### Step 4: Extract and Verify Claims\n\nBeyond the predefined expectations, extract implicit claims from the outputs and verify them:\n\n1. **Extract claims** from the transcript and outputs:\n   - Factual statements (\"The form has 12 fields\")\n   - Process claims (\"Used pypdf to fill the form\")\n   - Quality claims (\"All fields were filled correctly\")\n\n2. **Verify each claim**:\n   - **Factual claims**: Can be checked against the outputs or external sources\n   - **Process claims**: Can be verified from the transcript\n   - **Quality claims**: Evaluate whether the claim is justified\n\n3. **Flag unverifiable claims**: Note claims that cannot be verified with available information\n\nThis catches issues that predefined expectations might miss.\n\n### Step 5: Read User Notes\n\nIf `{outputs_dir}/user_notes.md` exists:\n1. Read it and note any uncertainties or issues flagged by the executor\n2. Include relevant concerns in the grading output\n3. These may reveal problems even when expectations pass\n\n### Step 6: Critique the Evals\n\nAfter grading, consider whether the evals themselves could be improved. Only surface suggestions when there's a clear gap.\n\nGood suggestions test meaningful outcomes — assertions that are hard to satisfy without actually doing the work correctly. Think about what makes an assertion *discriminating*: it passes when the skill genuinely succeeds and fails when it doesn't.\n\nSuggestions worth raising:\n- An assertion that passed but would also pass for a clearly wrong output (e.g., checking filename existence but not file content)\n- An important outcome you observed — good or bad — that no assertion covers at all\n- An assertion that can't actually be verified from the available outputs\n\nKeep the bar high. The goal is to flag things the eval author would say \"good catch\" about, not to nitpick every assertion.\n\n### Step 7: Write Grading Results\n\nSave results to `{outputs_dir}/../grading.json` (sibling to outputs_dir).\n\n## Grading Criteria\n\n**PASS when**:\n- The transcript or outputs clearly demonstrate the expectation is true\n- Specific evidence can be cited\n- The evidence reflects genuine substance, not just surface compliance (e.g., a file exists AND contains correct content, not just the right filename)\n\n**FAIL when**:\n- No evidence found for the expectation\n- Evidence contradicts the expectation\n- The expectation cannot be verified from available information\n- The evidence is superficial — the assertion is technically satisfied but the underlying task outcome is wrong or incomplete\n- The output appears to meet the assertion by coincidence rather than by actually doing the work\n\n**When uncertain**: The burden of proof to pass is on the expectation.\n\n### Step 8: Read Executor Metrics and Timing\n\n1. If `{outputs_dir}/metrics.json` exists, read it and include in grading output\n2. If `{outputs_dir}/../timing.json` exists, read it and include timing data\n\n## Output Format\n\nWrite a JSON file with this structure:\n\n```json\n{\n  \"expectations\": [\n    {\n      \"text\": \"The output includes the name 'John Smith'\",\n      \"passed\": true,\n      \"evidence\": \"Found in transcript Step 3: 'Extracted names: John Smith, Sarah Johnson'\"\n    },\n    {\n      \"text\": \"The spreadsheet has a SUM formula in cell B10\",\n      \"passed\": false,\n      \"evidence\": \"No spreadsheet was created. The output was a text file.\"\n    },\n    {\n      \"text\": \"The assistant used the skill's OCR script\",\n      \"passed\": true,\n      \"evidence\": \"Transcript Step 2 shows: 'Tool: Bash - python ocr_script.py image.png'\"\n    }\n  ],\n  \"summary\": {\n    \"passed\": 2,\n    \"failed\": 1,\n    \"total\": 3,\n    \"pass_rate\": 0.67\n  },\n  \"execution_metrics\": {\n    \"tool_calls\": {\n      \"Read\": 5,\n      \"Write\": 2,\n      \"Bash\": 8\n    },\n    \"total_tool_calls\": 15,\n    \"total_steps\": 6,\n    \"errors_encountered\": 0,\n    \"output_chars\": 12450,\n    \"transcript_chars\": 3200\n  },\n  \"timing\": {\n    \"executor_duration_seconds\": 165.0,\n    \"grader_duration_seconds\": 26.0,\n    \"total_duration_seconds\": 191.0\n  },\n  \"claims\": [\n    {\n      \"claim\": \"The form has 12 fillable fields\",\n      \"type\": \"factual\",\n      \"verified\": true,\n      \"evidence\": \"Counted 12 fields in field_info.json\"\n    },\n    {\n      \"claim\": \"All required fields were populated\",\n      \"type\": \"quality\",\n      \"verified\": false,\n      \"evidence\": \"Reference section was left blank despite data being available\"\n    }\n  ],\n  \"user_notes_summary\": {\n    \"uncertainties\": [\"Used 2023 data, may be stale\"],\n    \"needs_review\": [],\n    \"workarounds\": [\"Fell back to text overlay for non-fillable fields\"]\n  },\n  \"eval_feedback\": {\n    \"suggestions\": [\n      {\n        \"assertion\": \"The output includes the name 'John Smith'\",\n        \"reason\": \"A hallucinated document that mentions the name would also pass — consider checking it appears as the primary contact with matching phone and email from the input\"\n      },\n      {\n        \"reason\": \"No assertion checks whether the extracted phone numbers match the input — I observed incorrect numbers in the output that went uncaught\"\n      }\n    ],\n    \"overall\": \"Assertions check presence but not correctness. Consider adding content verification.\"\n  }\n}\n```\n\n## Field Descriptions\n\n- **expectations**: Array of graded expectations\n  - **text**: The original expectation text\n  - **passed**: Boolean - true if expectation passes\n  - **evidence**: Specific quote or description supporting the verdict\n- **summary**: Aggregate statistics\n  - **passed**: Count of passed expectations\n  - **failed**: Count of failed expectations\n  - **total**: Total expectations evaluated\n  - **pass_rate**: Fraction passed (0.0 to 1.0)\n- **execution_metrics**: Copied from executor's metrics.json (if available)\n  - **output_chars**: Total character count of output files (proxy for tokens)\n  - **transcript_chars**: Character count of transcript\n- **timing**: Wall clock timing from timing.json (if available)\n  - **executor_duration_seconds**: Time spent in executor subagent\n  - **total_duration_seconds**: Total elapsed time for the run\n- **claims**: Extracted and verified claims from the output\n  - **claim**: The statement being verified\n  - **type**: \"factual\", \"process\", or \"quality\"\n  - **verified**: Boolean - whether the claim holds\n  - **evidence**: Supporting or contradicting evidence\n- **user_notes_summary**: Issues flagged by the executor\n  - **uncertainties**: Things the executor wasn't sure about\n  - **needs_review**: Items requiring human attention\n  - **workarounds**: Places where the skill didn't work as expected\n- **eval_feedback**: Improvement suggestions for the evals (only when warranted)\n  - **suggestions**: List of concrete suggestions, each with a `reason` and optionally an `assertion` it relates to\n  - **overall**: Brief assessment — can be \"No suggestions, evals look solid\" if nothing to flag\n\n## Guidelines\n\n- **Be objective**: Base verdicts on evidence, not assumptions\n- **Be specific**: Quote the exact text that supports your verdict\n- **Be thorough**: Check both transcript and output files\n- **Be consistent**: Apply the same standard to each expectation\n- **Explain failures**: Make it clear why evidence was insufficient\n- **No partial credit**: Each expectation is pass or fail, not partial\n"
  },
  {
    "path": "skills/skill-creator/assets/eval_review.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <title>Eval Set Review - __SKILL_NAME_PLACEHOLDER__</title>\n  <link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">\n  <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin>\n  <link href=\"https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&family=Lora:wght@400;500&display=swap\" rel=\"stylesheet\">\n  <style>\n    * { box-sizing: border-box; margin: 0; padding: 0; }\n    body { font-family: 'Lora', Georgia, serif; background: #faf9f5; padding: 2rem; color: #141413; }\n    h1 { font-family: 'Poppins', sans-serif; margin-bottom: 0.5rem; font-size: 1.5rem; }\n    .description { color: #b0aea5; margin-bottom: 1.5rem; font-style: italic; max-width: 900px; }\n    .controls { margin-bottom: 1rem; display: flex; gap: 0.5rem; }\n    .btn { font-family: 'Poppins', sans-serif; padding: 0.5rem 1rem; border: none; border-radius: 6px; cursor: pointer; font-size: 0.875rem; font-weight: 500; }\n    .btn-add { background: #6a9bcc; color: white; }\n    .btn-add:hover { background: #5889b8; }\n    .btn-export { background: #d97757; color: white; }\n    .btn-export:hover { background: #c4613f; }\n    table { width: 100%; max-width: 1100px; border-collapse: collapse; background: white; border-radius: 6px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }\n    th { font-family: 'Poppins', sans-serif; background: #141413; color: #faf9f5; padding: 0.75rem 1rem; text-align: left; font-size: 0.875rem; }\n    td { padding: 0.75rem 1rem; border-bottom: 1px solid #e8e6dc; vertical-align: top; }\n    tr:nth-child(even) td { background: #faf9f5; }\n    tr:hover td { background: #f3f1ea; }\n    .section-header td { background: #e8e6dc; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.8rem; color: #141413; text-transform: uppercase; letter-spacing: 0.05em; }\n    .query-input { width: 100%; padding: 0.4rem; border: 1px solid #e8e6dc; border-radius: 4px; font-size: 0.875rem; font-family: 'Lora', Georgia, serif; resize: vertical; min-height: 60px; }\n    .query-input:focus { outline: none; border-color: #d97757; box-shadow: 0 0 0 2px rgba(217,119,87,0.15); }\n    .toggle { position: relative; display: inline-block; width: 44px; height: 24px; }\n    .toggle input { opacity: 0; width: 0; height: 0; }\n    .toggle .slider { position: absolute; inset: 0; background: #b0aea5; border-radius: 24px; cursor: pointer; transition: 0.2s; }\n    .toggle .slider::before { content: \"\"; position: absolute; width: 18px; height: 18px; left: 3px; bottom: 3px; background: white; border-radius: 50%; transition: 0.2s; }\n    .toggle input:checked + .slider { background: #d97757; }\n    .toggle input:checked + .slider::before { transform: translateX(20px); }\n    .btn-delete { background: #c44; color: white; padding: 0.3rem 0.6rem; border: none; border-radius: 4px; cursor: pointer; font-size: 0.75rem; font-family: 'Poppins', sans-serif; }\n    .btn-delete:hover { background: #a33; }\n    .summary { margin-top: 1rem; color: #b0aea5; font-size: 0.875rem; }\n  </style>\n</head>\n<body>\n  <h1>Eval Set Review: <span id=\"skill-name\">__SKILL_NAME_PLACEHOLDER__</span></h1>\n  <p class=\"description\">Current description: <span id=\"skill-desc\">__SKILL_DESCRIPTION_PLACEHOLDER__</span></p>\n\n  <div class=\"controls\">\n    <button class=\"btn btn-add\" onclick=\"addRow()\">+ Add Query</button>\n    <button class=\"btn btn-export\" onclick=\"exportEvalSet()\">Export Eval Set</button>\n  </div>\n\n  <table>\n    <thead>\n      <tr>\n        <th style=\"width:65%\">Query</th>\n        <th style=\"width:18%\">Should Trigger</th>\n        <th style=\"width:10%\">Actions</th>\n      </tr>\n    </thead>\n    <tbody id=\"eval-body\"></tbody>\n  </table>\n\n  <p class=\"summary\" id=\"summary\"></p>\n\n  <script>\n    const EVAL_DATA = __EVAL_DATA_PLACEHOLDER__;\n\n    let evalItems = [...EVAL_DATA];\n\n    function render() {\n      const tbody = document.getElementById('eval-body');\n      tbody.innerHTML = '';\n\n      // Sort: should-trigger first, then should-not-trigger\n      const sorted = evalItems\n        .map((item, origIdx) => ({ ...item, origIdx }))\n        .sort((a, b) => (b.should_trigger ? 1 : 0) - (a.should_trigger ? 1 : 0));\n\n      let lastGroup = null;\n      sorted.forEach(item => {\n        const group = item.should_trigger ? 'trigger' : 'no-trigger';\n        if (group !== lastGroup) {\n          const headerRow = document.createElement('tr');\n          headerRow.className = 'section-header';\n          headerRow.innerHTML = `<td colspan=\"3\">${item.should_trigger ? 'Should Trigger' : 'Should NOT Trigger'}</td>`;\n          tbody.appendChild(headerRow);\n          lastGroup = group;\n        }\n\n        const idx = item.origIdx;\n        const tr = document.createElement('tr');\n        tr.innerHTML = `\n          <td><textarea class=\"query-input\" onchange=\"updateQuery(${idx}, this.value)\">${escapeHtml(item.query)}</textarea></td>\n          <td>\n            <label class=\"toggle\">\n              <input type=\"checkbox\" ${item.should_trigger ? 'checked' : ''} onchange=\"updateTrigger(${idx}, this.checked)\">\n              <span class=\"slider\"></span>\n            </label>\n            <span style=\"margin-left:8px;font-size:0.8rem;color:#b0aea5\">${item.should_trigger ? 'Yes' : 'No'}</span>\n          </td>\n          <td><button class=\"btn-delete\" onclick=\"deleteRow(${idx})\">Delete</button></td>\n        `;\n        tbody.appendChild(tr);\n      });\n      updateSummary();\n    }\n\n    function escapeHtml(text) {\n      const div = document.createElement('div');\n      div.textContent = text;\n      return div.innerHTML;\n    }\n\n    function updateQuery(idx, value) { evalItems[idx].query = value; updateSummary(); }\n    function updateTrigger(idx, value) { evalItems[idx].should_trigger = value; render(); }\n    function deleteRow(idx) { evalItems.splice(idx, 1); render(); }\n\n    function addRow() {\n      evalItems.push({ query: '', should_trigger: true });\n      render();\n      const inputs = document.querySelectorAll('.query-input');\n      inputs[inputs.length - 1].focus();\n    }\n\n    function updateSummary() {\n      const trigger = evalItems.filter(i => i.should_trigger).length;\n      const noTrigger = evalItems.filter(i => !i.should_trigger).length;\n      document.getElementById('summary').textContent =\n        `${evalItems.length} queries total: ${trigger} should trigger, ${noTrigger} should not trigger`;\n    }\n\n    function exportEvalSet() {\n      const valid = evalItems.filter(i => i.query.trim() !== '');\n      const data = valid.map(i => ({ query: i.query.trim(), should_trigger: i.should_trigger }));\n      const blob = new Blob([JSON.stringify(data, null, 2)], { type: 'application/json' });\n      const url = URL.createObjectURL(blob);\n      const a = document.createElement('a');\n      a.href = url;\n      a.download = 'eval_set.json';\n      document.body.appendChild(a);\n      a.click();\n      document.body.removeChild(a);\n      URL.revokeObjectURL(url);\n    }\n\n    render();\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "skills/skill-creator/eval-viewer/generate_review.py",
    "content": "#!/usr/bin/env python3\n\"\"\"Generate and serve a review page for eval results.\n\nReads the workspace directory, discovers runs (directories with outputs/),\nembeds all output data into a self-contained HTML page, and serves it via\na tiny HTTP server. Feedback auto-saves to feedback.json in the workspace.\n\nUsage:\n    python generate_review.py <workspace-path> [--port PORT] [--skill-name NAME]\n    python generate_review.py <workspace-path> --previous-feedback /path/to/old/feedback.json\n\nNo dependencies beyond the Python stdlib are required.\n\"\"\"\n\nimport argparse\nimport base64\nimport json\nimport mimetypes\nimport os\nimport re\nimport signal\nimport subprocess\nimport sys\nimport time\nimport webbrowser\nfrom functools import partial\nfrom http.server import HTTPServer, BaseHTTPRequestHandler\nfrom pathlib import Path\n\n# Files to exclude from output listings\nMETADATA_FILES = {\"transcript.md\", \"user_notes.md\", \"metrics.json\"}\n\n# Extensions we render as inline text\nTEXT_EXTENSIONS = {\n    \".txt\", \".md\", \".json\", \".csv\", \".py\", \".js\", \".ts\", \".tsx\", \".jsx\",\n    \".yaml\", \".yml\", \".xml\", \".html\", \".css\", \".sh\", \".rb\", \".go\", \".rs\",\n    \".java\", \".c\", \".cpp\", \".h\", \".hpp\", \".sql\", \".r\", \".toml\",\n}\n\n# Extensions we render as inline images\nIMAGE_EXTENSIONS = {\".png\", \".jpg\", \".jpeg\", \".gif\", \".svg\", \".webp\"}\n\n# MIME type overrides for common types\nMIME_OVERRIDES = {\n    \".svg\": \"image/svg+xml\",\n    \".xlsx\": \"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\",\n    \".docx\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document\",\n    \".pptx\": \"application/vnd.openxmlformats-officedocument.presentationml.presentation\",\n}\n\n\ndef get_mime_type(path: Path) -> str:\n    ext = path.suffix.lower()\n    if ext in MIME_OVERRIDES:\n        return MIME_OVERRIDES[ext]\n    mime, _ = mimetypes.guess_type(str(path))\n    return mime or \"application/octet-stream\"\n\n\ndef find_runs(workspace: Path) -> list[dict]:\n    \"\"\"Recursively find directories that contain an outputs/ subdirectory.\"\"\"\n    runs: list[dict] = []\n    _find_runs_recursive(workspace, workspace, runs)\n    runs.sort(key=lambda r: (r.get(\"eval_id\", float(\"inf\")), r[\"id\"]))\n    return runs\n\n\ndef _find_runs_recursive(root: Path, current: Path, runs: list[dict]) -> None:\n    if not current.is_dir():\n        return\n\n    outputs_dir = current / \"outputs\"\n    if outputs_dir.is_dir():\n        run = build_run(root, current)\n        if run:\n            runs.append(run)\n        return\n\n    skip = {\"node_modules\", \".git\", \"__pycache__\", \"skill\", \"inputs\"}\n    for child in sorted(current.iterdir()):\n        if child.is_dir() and child.name not in skip:\n            _find_runs_recursive(root, child, runs)\n\n\ndef build_run(root: Path, run_dir: Path) -> dict | None:\n    \"\"\"Build a run dict with prompt, outputs, and grading data.\"\"\"\n    prompt = \"\"\n    eval_id = None\n\n    # Try eval_metadata.json\n    for candidate in [run_dir / \"eval_metadata.json\", run_dir.parent / \"eval_metadata.json\"]:\n        if candidate.exists():\n            try:\n                metadata = json.loads(candidate.read_text())\n                prompt = metadata.get(\"prompt\", \"\")\n                eval_id = metadata.get(\"eval_id\")\n            except (json.JSONDecodeError, OSError):\n                pass\n            if prompt:\n                break\n\n    # Fall back to transcript.md\n    if not prompt:\n        for candidate in [run_dir / \"transcript.md\", run_dir / \"outputs\" / \"transcript.md\"]:\n            if candidate.exists():\n                try:\n                    text = candidate.read_text()\n                    match = re.search(r\"## Eval Prompt\\n\\n([\\s\\S]*?)(?=\\n##|$)\", text)\n                    if match:\n                        prompt = match.group(1).strip()\n                except OSError:\n                    pass\n                if prompt:\n                    break\n\n    if not prompt:\n        prompt = \"(No prompt found)\"\n\n    run_id = str(run_dir.relative_to(root)).replace(\"/\", \"-\").replace(\"\\\\\", \"-\")\n\n    # Collect output files\n    outputs_dir = run_dir / \"outputs\"\n    output_files: list[dict] = []\n    if outputs_dir.is_dir():\n        for f in sorted(outputs_dir.iterdir()):\n            if f.is_file() and f.name not in METADATA_FILES:\n                output_files.append(embed_file(f))\n\n    # Load grading if present\n    grading = None\n    for candidate in [run_dir / \"grading.json\", run_dir.parent / \"grading.json\"]:\n        if candidate.exists():\n            try:\n                grading = json.loads(candidate.read_text())\n            except (json.JSONDecodeError, OSError):\n                pass\n            if grading:\n                break\n\n    return {\n        \"id\": run_id,\n        \"prompt\": prompt,\n        \"eval_id\": eval_id,\n        \"outputs\": output_files,\n        \"grading\": grading,\n    }\n\n\ndef embed_file(path: Path) -> dict:\n    \"\"\"Read a file and return an embedded representation.\"\"\"\n    ext = path.suffix.lower()\n    mime = get_mime_type(path)\n\n    if ext in TEXT_EXTENSIONS:\n        try:\n            content = path.read_text(errors=\"replace\")\n        except OSError:\n            content = \"(Error reading file)\"\n        return {\n            \"name\": path.name,\n            \"type\": \"text\",\n            \"content\": content,\n        }\n    elif ext in IMAGE_EXTENSIONS:\n        try:\n            raw = path.read_bytes()\n            b64 = base64.b64encode(raw).decode(\"ascii\")\n        except OSError:\n            return {\"name\": path.name, \"type\": \"error\", \"content\": \"(Error reading file)\"}\n        return {\n            \"name\": path.name,\n            \"type\": \"image\",\n            \"mime\": mime,\n            \"data_uri\": f\"data:{mime};base64,{b64}\",\n        }\n    elif ext == \".pdf\":\n        try:\n            raw = path.read_bytes()\n            b64 = base64.b64encode(raw).decode(\"ascii\")\n        except OSError:\n            return {\"name\": path.name, \"type\": \"error\", \"content\": \"(Error reading file)\"}\n        return {\n            \"name\": path.name,\n            \"type\": \"pdf\",\n            \"data_uri\": f\"data:{mime};base64,{b64}\",\n        }\n    elif ext == \".xlsx\":\n        try:\n            raw = path.read_bytes()\n            b64 = base64.b64encode(raw).decode(\"ascii\")\n        except OSError:\n            return {\"name\": path.name, \"type\": \"error\", \"content\": \"(Error reading file)\"}\n        return {\n            \"name\": path.name,\n            \"type\": \"xlsx\",\n            \"data_b64\": b64,\n        }\n    else:\n        # Binary / unknown — base64 download link\n        try:\n            raw = path.read_bytes()\n            b64 = base64.b64encode(raw).decode(\"ascii\")\n        except OSError:\n            return {\"name\": path.name, \"type\": \"error\", \"content\": \"(Error reading file)\"}\n        return {\n            \"name\": path.name,\n            \"type\": \"binary\",\n            \"mime\": mime,\n            \"data_uri\": f\"data:{mime};base64,{b64}\",\n        }\n\n\ndef load_previous_iteration(workspace: Path) -> dict[str, dict]:\n    \"\"\"Load previous iteration's feedback and outputs.\n\n    Returns a map of run_id -> {\"feedback\": str, \"outputs\": list[dict]}.\n    \"\"\"\n    result: dict[str, dict] = {}\n\n    # Load feedback\n    feedback_map: dict[str, str] = {}\n    feedback_path = workspace / \"feedback.json\"\n    if feedback_path.exists():\n        try:\n            data = json.loads(feedback_path.read_text())\n            feedback_map = {\n                r[\"run_id\"]: r[\"feedback\"]\n                for r in data.get(\"reviews\", [])\n                if r.get(\"feedback\", \"\").strip()\n            }\n        except (json.JSONDecodeError, OSError, KeyError):\n            pass\n\n    # Load runs (to get outputs)\n    prev_runs = find_runs(workspace)\n    for run in prev_runs:\n        result[run[\"id\"]] = {\n            \"feedback\": feedback_map.get(run[\"id\"], \"\"),\n            \"outputs\": run.get(\"outputs\", []),\n        }\n\n    # Also add feedback for run_ids that had feedback but no matching run\n    for run_id, fb in feedback_map.items():\n        if run_id not in result:\n            result[run_id] = {\"feedback\": fb, \"outputs\": []}\n\n    return result\n\n\ndef generate_html(\n    runs: list[dict],\n    skill_name: str,\n    previous: dict[str, dict] | None = None,\n    benchmark: dict | None = None,\n) -> str:\n    \"\"\"Generate the complete standalone HTML page with embedded data.\"\"\"\n    template_path = Path(__file__).parent / \"viewer.html\"\n    template = template_path.read_text()\n\n    # Build previous_feedback and previous_outputs maps for the template\n    previous_feedback: dict[str, str] = {}\n    previous_outputs: dict[str, list[dict]] = {}\n    if previous:\n        for run_id, data in previous.items():\n            if data.get(\"feedback\"):\n                previous_feedback[run_id] = data[\"feedback\"]\n            if data.get(\"outputs\"):\n                previous_outputs[run_id] = data[\"outputs\"]\n\n    embedded = {\n        \"skill_name\": skill_name,\n        \"runs\": runs,\n        \"previous_feedback\": previous_feedback,\n        \"previous_outputs\": previous_outputs,\n    }\n    if benchmark:\n        embedded[\"benchmark\"] = benchmark\n\n    data_json = json.dumps(embedded)\n\n    return template.replace(\"/*__EMBEDDED_DATA__*/\", f\"const EMBEDDED_DATA = {data_json};\")\n\n\n# ---------------------------------------------------------------------------\n# HTTP server (stdlib only, zero dependencies)\n# ---------------------------------------------------------------------------\n\ndef _kill_port(port: int) -> None:\n    \"\"\"Kill any process listening on the given port.\"\"\"\n    try:\n        result = subprocess.run(\n            [\"lsof\", \"-ti\", f\":{port}\"],\n            capture_output=True, text=True, timeout=5,\n        )\n        for pid_str in result.stdout.strip().split(\"\\n\"):\n            if pid_str.strip():\n                try:\n                    os.kill(int(pid_str.strip()), signal.SIGTERM)\n                except (ProcessLookupError, ValueError):\n                    pass\n        if result.stdout.strip():\n            time.sleep(0.5)\n    except subprocess.TimeoutExpired:\n        pass\n    except FileNotFoundError:\n        print(\"Note: lsof not found, cannot check if port is in use\", file=sys.stderr)\n\nclass ReviewHandler(BaseHTTPRequestHandler):\n    \"\"\"Serves the review HTML and handles feedback saves.\n\n    Regenerates the HTML on each page load so that refreshing the browser\n    picks up new eval outputs without restarting the server.\n    \"\"\"\n\n    def __init__(\n        self,\n        workspace: Path,\n        skill_name: str,\n        feedback_path: Path,\n        previous: dict[str, dict],\n        benchmark_path: Path | None,\n        *args,\n        **kwargs,\n    ):\n        self.workspace = workspace\n        self.skill_name = skill_name\n        self.feedback_path = feedback_path\n        self.previous = previous\n        self.benchmark_path = benchmark_path\n        super().__init__(*args, **kwargs)\n\n    def do_GET(self) -> None:\n        if self.path == \"/\" or self.path == \"/index.html\":\n            # Regenerate HTML on each request (re-scans workspace for new outputs)\n            runs = find_runs(self.workspace)\n            benchmark = None\n            if self.benchmark_path and self.benchmark_path.exists():\n                try:\n                    benchmark = json.loads(self.benchmark_path.read_text())\n                except (json.JSONDecodeError, OSError):\n                    pass\n            html = generate_html(runs, self.skill_name, self.previous, benchmark)\n            content = html.encode(\"utf-8\")\n            self.send_response(200)\n            self.send_header(\"Content-Type\", \"text/html; charset=utf-8\")\n            self.send_header(\"Content-Length\", str(len(content)))\n            self.end_headers()\n            self.wfile.write(content)\n        elif self.path == \"/api/feedback\":\n            data = b\"{}\"\n            if self.feedback_path.exists():\n                data = self.feedback_path.read_bytes()\n            self.send_response(200)\n            self.send_header(\"Content-Type\", \"application/json\")\n            self.send_header(\"Content-Length\", str(len(data)))\n            self.end_headers()\n            self.wfile.write(data)\n        else:\n            self.send_error(404)\n\n    def do_POST(self) -> None:\n        if self.path == \"/api/feedback\":\n            length = int(self.headers.get(\"Content-Length\", 0))\n            body = self.rfile.read(length)\n            try:\n                data = json.loads(body)\n                if not isinstance(data, dict) or \"reviews\" not in data:\n                    raise ValueError(\"Expected JSON object with 'reviews' key\")\n                self.feedback_path.write_text(json.dumps(data, indent=2) + \"\\n\")\n                resp = b'{\"ok\":true}'\n                self.send_response(200)\n            except (json.JSONDecodeError, OSError, ValueError) as e:\n                resp = json.dumps({\"error\": str(e)}).encode()\n                self.send_response(500)\n            self.send_header(\"Content-Type\", \"application/json\")\n            self.send_header(\"Content-Length\", str(len(resp)))\n            self.end_headers()\n            self.wfile.write(resp)\n        else:\n            self.send_error(404)\n\n    def log_message(self, format: str, *args: object) -> None:\n        # Suppress request logging to keep terminal clean\n        pass\n\n\ndef main() -> None:\n    parser = argparse.ArgumentParser(description=\"Generate and serve eval review\")\n    parser.add_argument(\"workspace\", type=Path, help=\"Path to workspace directory\")\n    parser.add_argument(\"--port\", \"-p\", type=int, default=3117, help=\"Server port (default: 3117)\")\n    parser.add_argument(\"--skill-name\", \"-n\", type=str, default=None, help=\"Skill name for header\")\n    parser.add_argument(\n        \"--previous-workspace\", type=Path, default=None,\n        help=\"Path to previous iteration's workspace (shows old outputs and feedback as context)\",\n    )\n    parser.add_argument(\n        \"--benchmark\", type=Path, default=None,\n        help=\"Path to benchmark.json to show in the Benchmark tab\",\n    )\n    parser.add_argument(\n        \"--static\", \"-s\", type=Path, default=None,\n        help=\"Write standalone HTML to this path instead of starting a server\",\n    )\n    args = parser.parse_args()\n\n    workspace = args.workspace.resolve()\n    if not workspace.is_dir():\n        print(f\"Error: {workspace} is not a directory\", file=sys.stderr)\n        sys.exit(1)\n\n    runs = find_runs(workspace)\n    if not runs:\n        print(f\"No runs found in {workspace}\", file=sys.stderr)\n        sys.exit(1)\n\n    skill_name = args.skill_name or workspace.name.replace(\"-workspace\", \"\")\n    feedback_path = workspace / \"feedback.json\"\n\n    previous: dict[str, dict] = {}\n    if args.previous_workspace:\n        previous = load_previous_iteration(args.previous_workspace.resolve())\n\n    benchmark_path = args.benchmark.resolve() if args.benchmark else None\n    benchmark = None\n    if benchmark_path and benchmark_path.exists():\n        try:\n            benchmark = json.loads(benchmark_path.read_text())\n        except (json.JSONDecodeError, OSError):\n            pass\n\n    if args.static:\n        html = generate_html(runs, skill_name, previous, benchmark)\n        args.static.parent.mkdir(parents=True, exist_ok=True)\n        args.static.write_text(html)\n        print(f\"\\n  Static viewer written to: {args.static}\\n\")\n        sys.exit(0)\n\n    # Kill any existing process on the target port\n    port = args.port\n    _kill_port(port)\n    handler = partial(ReviewHandler, workspace, skill_name, feedback_path, previous, benchmark_path)\n    try:\n        server = HTTPServer((\"127.0.0.1\", port), handler)\n    except OSError:\n        # Port still in use after kill attempt — find a free one\n        server = HTTPServer((\"127.0.0.1\", 0), handler)\n        port = server.server_address[1]\n\n    url = f\"http://localhost:{port}\"\n    print(f\"\\n  Eval Viewer\")\n    print(f\"  ─────────────────────────────────\")\n    print(f\"  URL:       {url}\")\n    print(f\"  Workspace: {workspace}\")\n    print(f\"  Feedback:  {feedback_path}\")\n    if previous:\n        print(f\"  Previous:  {args.previous_workspace} ({len(previous)} runs)\")\n    if benchmark_path:\n        print(f\"  Benchmark: {benchmark_path}\")\n    print(f\"\\n  Press Ctrl+C to stop.\\n\")\n\n    webbrowser.open(url)\n\n    try:\n        server.serve_forever()\n    except KeyboardInterrupt:\n        print(\"\\nStopped.\")\n        server.server_close()\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "skills/skill-creator/eval-viewer/viewer.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <title>Eval Review</title>\n  <link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">\n  <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin>\n  <link href=\"https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&family=Lora:wght@400;500&display=swap\" rel=\"stylesheet\">\n  <script src=\"https://cdn.sheetjs.com/xlsx-0.20.3/package/dist/xlsx.full.min.js\" integrity=\"sha384-EnyY0/GSHQGSxSgMwaIPzSESbqoOLSexfnSMN2AP+39Ckmn92stwABZynq1JyzdT\" crossorigin=\"anonymous\"></script>\n  <style>\n    :root {\n      --bg: #faf9f5;\n      --surface: #ffffff;\n      --border: #e8e6dc;\n      --text: #141413;\n      --text-muted: #b0aea5;\n      --accent: #d97757;\n      --accent-hover: #c4613f;\n      --green: #788c5d;\n      --green-bg: #eef2e8;\n      --red: #c44;\n      --red-bg: #fceaea;\n      --header-bg: #141413;\n      --header-text: #faf9f5;\n      --radius: 6px;\n    }\n\n    * { box-sizing: border-box; margin: 0; padding: 0; }\n\n    body {\n      font-family: 'Lora', Georgia, serif;\n      background: var(--bg);\n      color: var(--text);\n      height: 100vh;\n      display: flex;\n      flex-direction: column;\n    }\n\n    /* ---- Header ---- */\n    .header {\n      background: var(--header-bg);\n      color: var(--header-text);\n      padding: 1rem 2rem;\n      display: flex;\n      justify-content: space-between;\n      align-items: center;\n      flex-shrink: 0;\n    }\n    .header h1 {\n      font-family: 'Poppins', sans-serif;\n      font-size: 1.25rem;\n      font-weight: 600;\n    }\n    .header .instructions {\n      font-size: 0.8rem;\n      opacity: 0.7;\n      margin-top: 0.25rem;\n    }\n    .header .progress {\n      font-size: 0.875rem;\n      opacity: 0.8;\n      text-align: right;\n    }\n\n    /* ---- Main content ---- */\n    .main {\n      flex: 1;\n      overflow-y: auto;\n      padding: 1.5rem 2rem;\n      display: flex;\n      flex-direction: column;\n      gap: 1.25rem;\n    }\n\n    /* ---- Sections ---- */\n    .section {\n      background: var(--surface);\n      border: 1px solid var(--border);\n      border-radius: var(--radius);\n      flex-shrink: 0;\n    }\n    .section-header {\n      font-family: 'Poppins', sans-serif;\n      padding: 0.75rem 1rem;\n      font-size: 0.75rem;\n      font-weight: 500;\n      text-transform: uppercase;\n      letter-spacing: 0.05em;\n      color: var(--text-muted);\n      border-bottom: 1px solid var(--border);\n      background: var(--bg);\n    }\n    .section-body {\n      padding: 1rem;\n    }\n\n    /* ---- Config badge ---- */\n    .config-badge {\n      display: inline-block;\n      padding: 0.2rem 0.625rem;\n      border-radius: 9999px;\n      font-family: 'Poppins', sans-serif;\n      font-size: 0.6875rem;\n      font-weight: 600;\n      text-transform: uppercase;\n      letter-spacing: 0.03em;\n      margin-left: 0.75rem;\n      vertical-align: middle;\n    }\n    .config-badge.config-primary {\n      background: rgba(33, 150, 243, 0.12);\n      color: #1976d2;\n    }\n    .config-badge.config-baseline {\n      background: rgba(255, 193, 7, 0.15);\n      color: #f57f17;\n    }\n\n    /* ---- Prompt ---- */\n    .prompt-text {\n      white-space: pre-wrap;\n      font-size: 0.9375rem;\n      line-height: 1.6;\n    }\n\n    /* ---- Outputs ---- */\n    .output-file {\n      border: 1px solid var(--border);\n      border-radius: var(--radius);\n      overflow: hidden;\n    }\n    .output-file + .output-file {\n      margin-top: 1rem;\n    }\n    .output-file-header {\n      padding: 0.5rem 0.75rem;\n      font-size: 0.8rem;\n      font-weight: 600;\n      color: var(--text-muted);\n      background: var(--bg);\n      border-bottom: 1px solid var(--border);\n      font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;\n      display: flex;\n      justify-content: space-between;\n      align-items: center;\n    }\n    .output-file-header .dl-btn {\n      font-size: 0.7rem;\n      color: var(--accent);\n      text-decoration: none;\n      cursor: pointer;\n      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;\n      font-weight: 500;\n      opacity: 0.8;\n    }\n    .output-file-header .dl-btn:hover {\n      opacity: 1;\n      text-decoration: underline;\n    }\n    .output-file-content {\n      padding: 0.75rem;\n      overflow-x: auto;\n    }\n    .output-file-content pre {\n      font-size: 0.8125rem;\n      line-height: 1.5;\n      white-space: pre-wrap;\n      word-break: break-word;\n      font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;\n    }\n    .output-file-content img {\n      max-width: 100%;\n      height: auto;\n      border-radius: 4px;\n    }\n    .output-file-content iframe {\n      width: 100%;\n      height: 600px;\n      border: none;\n    }\n    .output-file-content table {\n      border-collapse: collapse;\n      font-size: 0.8125rem;\n      width: 100%;\n    }\n    .output-file-content table td,\n    .output-file-content table th {\n      border: 1px solid var(--border);\n      padding: 0.375rem 0.5rem;\n      text-align: left;\n    }\n    .output-file-content table th {\n      background: var(--bg);\n      font-weight: 600;\n    }\n    .output-file-content .download-link {\n      display: inline-flex;\n      align-items: center;\n      gap: 0.5rem;\n      padding: 0.5rem 1rem;\n      background: var(--bg);\n      border: 1px solid var(--border);\n      border-radius: 4px;\n      color: var(--accent);\n      text-decoration: none;\n      font-size: 0.875rem;\n      cursor: pointer;\n    }\n    .output-file-content .download-link:hover {\n      background: var(--border);\n    }\n    .empty-state {\n      color: var(--text-muted);\n      font-style: italic;\n      padding: 2rem;\n      text-align: center;\n    }\n\n    /* ---- Feedback ---- */\n    .prev-feedback {\n      background: var(--bg);\n      border: 1px solid var(--border);\n      border-radius: 4px;\n      padding: 0.625rem 0.75rem;\n      margin-top: 0.75rem;\n      font-size: 0.8125rem;\n      color: var(--text-muted);\n      line-height: 1.5;\n    }\n    .prev-feedback-label {\n      font-size: 0.7rem;\n      font-weight: 600;\n      text-transform: uppercase;\n      letter-spacing: 0.04em;\n      margin-bottom: 0.25rem;\n      color: var(--text-muted);\n    }\n    .feedback-textarea {\n      width: 100%;\n      min-height: 100px;\n      padding: 0.75rem;\n      border: 1px solid var(--border);\n      border-radius: 4px;\n      font-family: inherit;\n      font-size: 0.9375rem;\n      line-height: 1.5;\n      resize: vertical;\n      color: var(--text);\n    }\n    .feedback-textarea:focus {\n      outline: none;\n      border-color: var(--accent);\n      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);\n    }\n    .feedback-status {\n      font-size: 0.75rem;\n      color: var(--text-muted);\n      margin-top: 0.5rem;\n      min-height: 1.1em;\n    }\n\n    /* ---- Grades (collapsible) ---- */\n    .grades-toggle {\n      display: flex;\n      align-items: center;\n      cursor: pointer;\n      user-select: none;\n    }\n    .grades-toggle:hover {\n      color: var(--accent);\n    }\n    .grades-toggle .arrow {\n      margin-right: 0.5rem;\n      transition: transform 0.15s;\n      font-size: 0.75rem;\n    }\n    .grades-toggle .arrow.open {\n      transform: rotate(90deg);\n    }\n    .grades-content {\n      display: none;\n      margin-top: 0.75rem;\n    }\n    .grades-content.open {\n      display: block;\n    }\n    .grades-summary {\n      font-size: 0.875rem;\n      margin-bottom: 0.75rem;\n      display: flex;\n      align-items: center;\n      gap: 0.5rem;\n    }\n    .grade-badge {\n      display: inline-block;\n      padding: 0.125rem 0.5rem;\n      border-radius: 9999px;\n      font-size: 0.75rem;\n      font-weight: 600;\n    }\n    .grade-pass { background: var(--green-bg); color: var(--green); }\n    .grade-fail { background: var(--red-bg); color: var(--red); }\n    .assertion-list {\n      list-style: none;\n    }\n    .assertion-item {\n      padding: 0.625rem 0;\n      border-bottom: 1px solid var(--border);\n      font-size: 0.8125rem;\n    }\n    .assertion-item:last-child { border-bottom: none; }\n    .assertion-status {\n      font-weight: 600;\n      margin-right: 0.5rem;\n    }\n    .assertion-status.pass { color: var(--green); }\n    .assertion-status.fail { color: var(--red); }\n    .assertion-evidence {\n      color: var(--text-muted);\n      font-size: 0.75rem;\n      margin-top: 0.25rem;\n      padding-left: 1.5rem;\n    }\n\n    /* ---- View tabs ---- */\n    .view-tabs {\n      display: flex;\n      gap: 0;\n      padding: 0 2rem;\n      background: var(--bg);\n      border-bottom: 1px solid var(--border);\n      flex-shrink: 0;\n    }\n    .view-tab {\n      font-family: 'Poppins', sans-serif;\n      padding: 0.625rem 1.25rem;\n      font-size: 0.8125rem;\n      font-weight: 500;\n      cursor: pointer;\n      border: none;\n      background: none;\n      color: var(--text-muted);\n      border-bottom: 2px solid transparent;\n      transition: all 0.15s;\n    }\n    .view-tab:hover { color: var(--text); }\n    .view-tab.active {\n      color: var(--accent);\n      border-bottom-color: var(--accent);\n    }\n    .view-panel { display: none; }\n    .view-panel.active { display: flex; flex-direction: column; flex: 1; overflow: hidden; }\n\n    /* ---- Benchmark view ---- */\n    .benchmark-view {\n      padding: 1.5rem 2rem;\n      overflow-y: auto;\n      flex: 1;\n    }\n    .benchmark-table {\n      border-collapse: collapse;\n      background: var(--surface);\n      border: 1px solid var(--border);\n      border-radius: var(--radius);\n      font-size: 0.8125rem;\n      width: 100%;\n      margin-bottom: 1.5rem;\n    }\n    .benchmark-table th, .benchmark-table td {\n      padding: 0.625rem 0.75rem;\n      text-align: left;\n      border: 1px solid var(--border);\n    }\n    .benchmark-table th {\n      font-family: 'Poppins', sans-serif;\n      background: var(--header-bg);\n      color: var(--header-text);\n      font-weight: 500;\n      font-size: 0.75rem;\n      text-transform: uppercase;\n      letter-spacing: 0.04em;\n    }\n    .benchmark-table tr:hover { background: var(--bg); }\n    .benchmark-table tr.benchmark-row-with { background: rgba(33, 150, 243, 0.06); }\n    .benchmark-table tr.benchmark-row-without { background: rgba(255, 193, 7, 0.06); }\n    .benchmark-table tr.benchmark-row-with:hover { background: rgba(33, 150, 243, 0.12); }\n    .benchmark-table tr.benchmark-row-without:hover { background: rgba(255, 193, 7, 0.12); }\n    .benchmark-table tr.benchmark-row-avg { font-weight: 600; border-top: 2px solid var(--border); }\n    .benchmark-table tr.benchmark-row-avg.benchmark-row-with { background: rgba(33, 150, 243, 0.12); }\n    .benchmark-table tr.benchmark-row-avg.benchmark-row-without { background: rgba(255, 193, 7, 0.12); }\n    .benchmark-delta-positive { color: var(--green); font-weight: 600; }\n    .benchmark-delta-negative { color: var(--red); font-weight: 600; }\n    .benchmark-notes {\n      background: var(--surface);\n      border: 1px solid var(--border);\n      border-radius: var(--radius);\n      padding: 1rem;\n    }\n    .benchmark-notes h3 {\n      font-family: 'Poppins', sans-serif;\n      font-size: 0.875rem;\n      margin-bottom: 0.75rem;\n    }\n    .benchmark-notes ul {\n      list-style: disc;\n      padding-left: 1.25rem;\n    }\n    .benchmark-notes li {\n      font-size: 0.8125rem;\n      line-height: 1.6;\n      margin-bottom: 0.375rem;\n    }\n    .benchmark-empty {\n      color: var(--text-muted);\n      font-style: italic;\n      text-align: center;\n      padding: 3rem;\n    }\n\n    /* ---- Navigation ---- */\n    .nav {\n      display: flex;\n      justify-content: space-between;\n      align-items: center;\n      padding: 1rem 2rem;\n      border-top: 1px solid var(--border);\n      background: var(--surface);\n      flex-shrink: 0;\n    }\n    .nav-btn {\n      font-family: 'Poppins', sans-serif;\n      padding: 0.5rem 1.25rem;\n      border: 1px solid var(--border);\n      border-radius: var(--radius);\n      background: var(--surface);\n      cursor: pointer;\n      font-size: 0.875rem;\n      font-weight: 500;\n      color: var(--text);\n      transition: all 0.15s;\n    }\n    .nav-btn:hover:not(:disabled) {\n      background: var(--bg);\n      border-color: var(--text-muted);\n    }\n    .nav-btn:disabled {\n      opacity: 0.4;\n      cursor: not-allowed;\n    }\n    .done-btn {\n      font-family: 'Poppins', sans-serif;\n      padding: 0.5rem 1.5rem;\n      border: 1px solid var(--border);\n      border-radius: var(--radius);\n      background: var(--surface);\n      color: var(--text);\n      cursor: pointer;\n      font-size: 0.875rem;\n      font-weight: 500;\n      transition: all 0.15s;\n    }\n    .done-btn:hover {\n      background: var(--bg);\n      border-color: var(--text-muted);\n    }\n    .done-btn.ready {\n      border: none;\n      background: var(--accent);\n      color: white;\n      font-weight: 600;\n    }\n    .done-btn.ready:hover {\n      background: var(--accent-hover);\n    }\n    /* ---- Done overlay ---- */\n    .done-overlay {\n      display: none;\n      position: fixed;\n      inset: 0;\n      background: rgba(0, 0, 0, 0.5);\n      z-index: 100;\n      justify-content: center;\n      align-items: center;\n    }\n    .done-overlay.visible {\n      display: flex;\n    }\n    .done-card {\n      background: var(--surface);\n      border-radius: 12px;\n      padding: 2rem 3rem;\n      text-align: center;\n      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);\n      max-width: 500px;\n    }\n    .done-card h2 {\n      font-size: 1.5rem;\n      margin-bottom: 0.5rem;\n    }\n    .done-card p {\n      color: var(--text-muted);\n      margin-bottom: 1.5rem;\n      line-height: 1.5;\n    }\n    .done-card .btn-row {\n      display: flex;\n      gap: 0.5rem;\n      justify-content: center;\n    }\n    .done-card button {\n      padding: 0.5rem 1.25rem;\n      border: 1px solid var(--border);\n      border-radius: var(--radius);\n      background: var(--surface);\n      cursor: pointer;\n      font-size: 0.875rem;\n    }\n    .done-card button:hover {\n      background: var(--bg);\n    }\n    /* ---- Toast ---- */\n    .toast {\n      position: fixed;\n      bottom: 5rem;\n      left: 50%;\n      transform: translateX(-50%);\n      background: var(--header-bg);\n      color: var(--header-text);\n      padding: 0.625rem 1.25rem;\n      border-radius: var(--radius);\n      font-size: 0.875rem;\n      opacity: 0;\n      transition: opacity 0.3s;\n      pointer-events: none;\n      z-index: 200;\n    }\n    .toast.visible {\n      opacity: 1;\n    }\n  </style>\n</head>\n<body>\n  <div id=\"app\" style=\"height:100vh; display:flex; flex-direction:column;\">\n    <div class=\"header\">\n      <div>\n        <h1>Eval Review: <span id=\"skill-name\"></span></h1>\n        <div class=\"instructions\">Review each output and leave feedback below. Navigate with arrow keys or buttons. When done, copy feedback and paste into Claude Code.</div>\n      </div>\n      <div class=\"progress\" id=\"progress\"></div>\n    </div>\n\n    <!-- View tabs (only shown when benchmark data exists) -->\n    <div class=\"view-tabs\" id=\"view-tabs\" style=\"display:none;\">\n      <button class=\"view-tab active\" onclick=\"switchView('outputs')\">Outputs</button>\n      <button class=\"view-tab\" onclick=\"switchView('benchmark')\">Benchmark</button>\n    </div>\n\n    <!-- Outputs panel (qualitative review) -->\n    <div class=\"view-panel active\" id=\"panel-outputs\">\n    <div class=\"main\">\n      <!-- Prompt -->\n      <div class=\"section\">\n        <div class=\"section-header\">Prompt <span class=\"config-badge\" id=\"config-badge\" style=\"display:none;\"></span></div>\n        <div class=\"section-body\">\n          <div class=\"prompt-text\" id=\"prompt-text\"></div>\n        </div>\n      </div>\n\n      <!-- Outputs -->\n      <div class=\"section\">\n        <div class=\"section-header\">Output</div>\n        <div class=\"section-body\" id=\"outputs-body\">\n          <div class=\"empty-state\">No output files found</div>\n        </div>\n      </div>\n\n      <!-- Previous Output (collapsible) -->\n      <div class=\"section\" id=\"prev-outputs-section\" style=\"display:none;\">\n        <div class=\"section-header\">\n          <div class=\"grades-toggle\" onclick=\"togglePrevOutputs()\">\n            <span class=\"arrow\" id=\"prev-outputs-arrow\">&#9654;</span>\n            Previous Output\n          </div>\n        </div>\n        <div class=\"grades-content\" id=\"prev-outputs-content\"></div>\n      </div>\n\n      <!-- Grades (collapsible) -->\n      <div class=\"section\" id=\"grades-section\" style=\"display:none;\">\n        <div class=\"section-header\">\n          <div class=\"grades-toggle\" onclick=\"toggleGrades()\">\n            <span class=\"arrow\" id=\"grades-arrow\">&#9654;</span>\n            Formal Grades\n          </div>\n        </div>\n        <div class=\"grades-content\" id=\"grades-content\"></div>\n      </div>\n\n      <!-- Feedback -->\n      <div class=\"section\">\n        <div class=\"section-header\">Your Feedback</div>\n        <div class=\"section-body\">\n          <textarea\n            class=\"feedback-textarea\"\n            id=\"feedback\"\n            placeholder=\"What do you think of this output? Any issues, suggestions, or things that look great?\"\n          ></textarea>\n          <div class=\"feedback-status\" id=\"feedback-status\"></div>\n          <div class=\"prev-feedback\" id=\"prev-feedback\" style=\"display:none;\">\n            <div class=\"prev-feedback-label\">Previous feedback</div>\n            <div id=\"prev-feedback-text\"></div>\n          </div>\n        </div>\n      </div>\n    </div>\n\n    <div class=\"nav\" id=\"outputs-nav\">\n      <button class=\"nav-btn\" id=\"prev-btn\" onclick=\"navigate(-1)\">&#8592; Previous</button>\n      <button class=\"done-btn\" id=\"done-btn\" onclick=\"showDoneDialog()\">Submit All Reviews</button>\n      <button class=\"nav-btn\" id=\"next-btn\" onclick=\"navigate(1)\">Next &#8594;</button>\n    </div>\n    </div><!-- end panel-outputs -->\n\n    <!-- Benchmark panel (quantitative stats) -->\n    <div class=\"view-panel\" id=\"panel-benchmark\">\n      <div class=\"benchmark-view\" id=\"benchmark-content\">\n        <div class=\"benchmark-empty\">No benchmark data available. Run a benchmark to see quantitative results here.</div>\n      </div>\n    </div>\n  </div>\n\n  <!-- Done overlay -->\n  <div class=\"done-overlay\" id=\"done-overlay\">\n    <div class=\"done-card\">\n      <h2>Review Complete</h2>\n      <p>Your feedback has been saved. Go back to your Claude Code session and tell Claude you're done reviewing.</p>\n      <div class=\"btn-row\">\n        <button onclick=\"closeDoneDialog()\">OK</button>\n      </div>\n    </div>\n  </div>\n\n  <!-- Toast -->\n  <div class=\"toast\" id=\"toast\"></div>\n\n  <script>\n    // ---- Embedded data (injected by generate_review.py) ----\n    /*__EMBEDDED_DATA__*/\n\n    // ---- State ----\n    let feedbackMap = {};  // run_id -> feedback text\n    let currentIndex = 0;\n    let visitedRuns = new Set();\n\n    // ---- Init ----\n    async function init() {\n      // Load saved feedback from server — but only if this isn't a fresh\n      // iteration (indicated by previous_feedback being present). When\n      // previous feedback exists, the feedback.json on disk is stale from\n      // the prior iteration and should not pre-fill the textareas.\n      const hasPrevious = Object.keys(EMBEDDED_DATA.previous_feedback || {}).length > 0\n        || Object.keys(EMBEDDED_DATA.previous_outputs || {}).length > 0;\n      if (!hasPrevious) {\n        try {\n          const resp = await fetch(\"/api/feedback\");\n          const data = await resp.json();\n          if (data.reviews) {\n            for (const r of data.reviews) feedbackMap[r.run_id] = r.feedback;\n          }\n        } catch { /* first run, no feedback yet */ }\n      }\n\n      document.getElementById(\"skill-name\").textContent = EMBEDDED_DATA.skill_name;\n      showRun(0);\n\n      // Wire up feedback auto-save\n      const textarea = document.getElementById(\"feedback\");\n      let saveTimeout = null;\n      textarea.addEventListener(\"input\", () => {\n        clearTimeout(saveTimeout);\n        document.getElementById(\"feedback-status\").textContent = \"\";\n        saveTimeout = setTimeout(() => saveCurrentFeedback(), 800);\n      });\n    }\n\n    // ---- Navigation ----\n    function navigate(delta) {\n      const newIndex = currentIndex + delta;\n      if (newIndex >= 0 && newIndex < EMBEDDED_DATA.runs.length) {\n        saveCurrentFeedback();\n        showRun(newIndex);\n      }\n    }\n\n    function updateNavButtons() {\n      document.getElementById(\"prev-btn\").disabled = currentIndex === 0;\n      document.getElementById(\"next-btn\").disabled =\n        currentIndex === EMBEDDED_DATA.runs.length - 1;\n    }\n\n    // ---- Show a run ----\n    function showRun(index) {\n      currentIndex = index;\n      const run = EMBEDDED_DATA.runs[index];\n\n      // Progress\n      document.getElementById(\"progress\").textContent =\n        `${index + 1} of ${EMBEDDED_DATA.runs.length}`;\n\n      // Prompt\n      document.getElementById(\"prompt-text\").textContent = run.prompt;\n\n      // Config badge\n      const badge = document.getElementById(\"config-badge\");\n      const configMatch = run.id.match(/(with_skill|without_skill|new_skill|old_skill)/);\n      if (configMatch) {\n        const config = configMatch[1];\n        const isBaseline = config === \"without_skill\" || config === \"old_skill\";\n        badge.textContent = config.replace(/_/g, \" \");\n        badge.className = \"config-badge \" + (isBaseline ? \"config-baseline\" : \"config-primary\");\n        badge.style.display = \"inline-block\";\n      } else {\n        badge.style.display = \"none\";\n      }\n\n      // Outputs\n      renderOutputs(run);\n\n      // Previous outputs\n      renderPrevOutputs(run);\n\n      // Grades\n      renderGrades(run);\n\n      // Previous feedback\n      const prevFb = (EMBEDDED_DATA.previous_feedback || {})[run.id];\n      const prevEl = document.getElementById(\"prev-feedback\");\n      if (prevFb) {\n        document.getElementById(\"prev-feedback-text\").textContent = prevFb;\n        prevEl.style.display = \"block\";\n      } else {\n        prevEl.style.display = \"none\";\n      }\n\n      // Feedback\n      document.getElementById(\"feedback\").value = feedbackMap[run.id] || \"\";\n      document.getElementById(\"feedback-status\").textContent = \"\";\n\n      updateNavButtons();\n\n      // Track visited runs and promote done button when all visited\n      visitedRuns.add(index);\n      const doneBtn = document.getElementById(\"done-btn\");\n      if (visitedRuns.size >= EMBEDDED_DATA.runs.length) {\n        doneBtn.classList.add(\"ready\");\n      }\n\n      // Scroll main content to top\n      document.querySelector(\".main\").scrollTop = 0;\n    }\n\n    // ---- Render outputs ----\n    function renderOutputs(run) {\n      const container = document.getElementById(\"outputs-body\");\n      container.innerHTML = \"\";\n\n      const outputs = run.outputs || [];\n      if (outputs.length === 0) {\n        container.innerHTML = '<div class=\"empty-state\">No output files</div>';\n        return;\n      }\n\n      for (const file of outputs) {\n        const fileDiv = document.createElement(\"div\");\n        fileDiv.className = \"output-file\";\n\n        // Always show file header with download link\n        const header = document.createElement(\"div\");\n        header.className = \"output-file-header\";\n        const nameSpan = document.createElement(\"span\");\n        nameSpan.textContent = file.name;\n        header.appendChild(nameSpan);\n        const dlBtn = document.createElement(\"a\");\n        dlBtn.className = \"dl-btn\";\n        dlBtn.textContent = \"Download\";\n        dlBtn.download = file.name;\n        dlBtn.href = getDownloadUri(file);\n        header.appendChild(dlBtn);\n        fileDiv.appendChild(header);\n\n        const content = document.createElement(\"div\");\n        content.className = \"output-file-content\";\n\n        if (file.type === \"text\") {\n          const pre = document.createElement(\"pre\");\n          pre.textContent = file.content;\n          content.appendChild(pre);\n        } else if (file.type === \"image\") {\n          const img = document.createElement(\"img\");\n          img.src = file.data_uri;\n          img.alt = file.name;\n          content.appendChild(img);\n        } else if (file.type === \"pdf\") {\n          const iframe = document.createElement(\"iframe\");\n          iframe.src = file.data_uri;\n          content.appendChild(iframe);\n        } else if (file.type === \"xlsx\") {\n          renderXlsx(content, file.data_b64);\n        } else if (file.type === \"binary\") {\n          const a = document.createElement(\"a\");\n          a.className = \"download-link\";\n          a.href = file.data_uri;\n          a.download = file.name;\n          a.textContent = \"Download \" + file.name;\n          content.appendChild(a);\n        } else if (file.type === \"error\") {\n          const pre = document.createElement(\"pre\");\n          pre.textContent = file.content;\n          pre.style.color = \"var(--red)\";\n          content.appendChild(pre);\n        }\n\n        fileDiv.appendChild(content);\n        container.appendChild(fileDiv);\n      }\n    }\n\n    // ---- XLSX rendering via SheetJS ----\n    function renderXlsx(container, b64Data) {\n      try {\n        const raw = Uint8Array.from(atob(b64Data), c => c.charCodeAt(0));\n        const wb = XLSX.read(raw, { type: \"array\" });\n\n        for (let i = 0; i < wb.SheetNames.length; i++) {\n          const sheetName = wb.SheetNames[i];\n          const ws = wb.Sheets[sheetName];\n\n          if (wb.SheetNames.length > 1) {\n            const sheetLabel = document.createElement(\"div\");\n            sheetLabel.style.cssText =\n              \"font-weight:600; font-size:0.8rem; color:#b0aea5; margin-top:0.5rem; margin-bottom:0.25rem;\";\n            sheetLabel.textContent = \"Sheet: \" + sheetName;\n            container.appendChild(sheetLabel);\n          }\n\n          const htmlStr = XLSX.utils.sheet_to_html(ws, { editable: false });\n          const wrapper = document.createElement(\"div\");\n          wrapper.innerHTML = htmlStr;\n          container.appendChild(wrapper);\n        }\n      } catch (err) {\n        container.textContent = \"Error rendering spreadsheet: \" + err.message;\n      }\n    }\n\n    // ---- Grades ----\n    function renderGrades(run) {\n      const section = document.getElementById(\"grades-section\");\n      const content = document.getElementById(\"grades-content\");\n\n      if (!run.grading) {\n        section.style.display = \"none\";\n        return;\n      }\n\n      const grading = run.grading;\n      section.style.display = \"block\";\n      // Reset to collapsed\n      content.classList.remove(\"open\");\n      document.getElementById(\"grades-arrow\").classList.remove(\"open\");\n\n      const summary = grading.summary || {};\n      const expectations = grading.expectations || [];\n\n      let html = '<div style=\"padding: 1rem;\">';\n\n      // Summary line\n      const passRate = summary.pass_rate != null\n        ? Math.round(summary.pass_rate * 100) + \"%\"\n        : \"?\";\n      const badgeClass = summary.pass_rate >= 0.8 ? \"grade-pass\" : summary.pass_rate >= 0.5 ? \"\" : \"grade-fail\";\n      html += '<div class=\"grades-summary\">';\n      html += '<span class=\"grade-badge ' + badgeClass + '\">' + passRate + '</span>';\n      html += '<span>' + (summary.passed || 0) + ' passed, ' + (summary.failed || 0) + ' failed of ' + (summary.total || 0) + '</span>';\n      html += '</div>';\n\n      // Assertions list\n      html += '<ul class=\"assertion-list\">';\n      for (const exp of expectations) {\n        const statusClass = exp.passed ? \"pass\" : \"fail\";\n        const statusIcon = exp.passed ? \"\\u2713\" : \"\\u2717\";\n        html += '<li class=\"assertion-item\">';\n        html += '<span class=\"assertion-status ' + statusClass + '\">' + statusIcon + '</span>';\n        html += '<span>' + escapeHtml(exp.text) + '</span>';\n        if (exp.evidence) {\n          html += '<div class=\"assertion-evidence\">' + escapeHtml(exp.evidence) + '</div>';\n        }\n        html += '</li>';\n      }\n      html += '</ul>';\n\n      html += '</div>';\n      content.innerHTML = html;\n    }\n\n    function toggleGrades() {\n      const content = document.getElementById(\"grades-content\");\n      const arrow = document.getElementById(\"grades-arrow\");\n      content.classList.toggle(\"open\");\n      arrow.classList.toggle(\"open\");\n    }\n\n    // ---- Previous outputs (collapsible) ----\n    function renderPrevOutputs(run) {\n      const section = document.getElementById(\"prev-outputs-section\");\n      const content = document.getElementById(\"prev-outputs-content\");\n      const prevOutputs = (EMBEDDED_DATA.previous_outputs || {})[run.id];\n\n      if (!prevOutputs || prevOutputs.length === 0) {\n        section.style.display = \"none\";\n        return;\n      }\n\n      section.style.display = \"block\";\n      // Reset to collapsed\n      content.classList.remove(\"open\");\n      document.getElementById(\"prev-outputs-arrow\").classList.remove(\"open\");\n\n      // Render the files into the content area\n      content.innerHTML = \"\";\n      const wrapper = document.createElement(\"div\");\n      wrapper.style.padding = \"1rem\";\n\n      for (const file of prevOutputs) {\n        const fileDiv = document.createElement(\"div\");\n        fileDiv.className = \"output-file\";\n\n        const header = document.createElement(\"div\");\n        header.className = \"output-file-header\";\n        const nameSpan = document.createElement(\"span\");\n        nameSpan.textContent = file.name;\n        header.appendChild(nameSpan);\n        const dlBtn = document.createElement(\"a\");\n        dlBtn.className = \"dl-btn\";\n        dlBtn.textContent = \"Download\";\n        dlBtn.download = file.name;\n        dlBtn.href = getDownloadUri(file);\n        header.appendChild(dlBtn);\n        fileDiv.appendChild(header);\n\n        const fc = document.createElement(\"div\");\n        fc.className = \"output-file-content\";\n\n        if (file.type === \"text\") {\n          const pre = document.createElement(\"pre\");\n          pre.textContent = file.content;\n          fc.appendChild(pre);\n        } else if (file.type === \"image\") {\n          const img = document.createElement(\"img\");\n          img.src = file.data_uri;\n          img.alt = file.name;\n          fc.appendChild(img);\n        } else if (file.type === \"pdf\") {\n          const iframe = document.createElement(\"iframe\");\n          iframe.src = file.data_uri;\n          fc.appendChild(iframe);\n        } else if (file.type === \"xlsx\") {\n          renderXlsx(fc, file.data_b64);\n        } else if (file.type === \"binary\") {\n          const a = document.createElement(\"a\");\n          a.className = \"download-link\";\n          a.href = file.data_uri;\n          a.download = file.name;\n          a.textContent = \"Download \" + file.name;\n          fc.appendChild(a);\n        }\n\n        fileDiv.appendChild(fc);\n        wrapper.appendChild(fileDiv);\n      }\n\n      content.appendChild(wrapper);\n    }\n\n    function togglePrevOutputs() {\n      const content = document.getElementById(\"prev-outputs-content\");\n      const arrow = document.getElementById(\"prev-outputs-arrow\");\n      content.classList.toggle(\"open\");\n      arrow.classList.toggle(\"open\");\n    }\n\n    // ---- Feedback (saved to server -> feedback.json) ----\n    function saveCurrentFeedback() {\n      const run = EMBEDDED_DATA.runs[currentIndex];\n      const text = document.getElementById(\"feedback\").value;\n\n      if (text.trim() === \"\") {\n        delete feedbackMap[run.id];\n      } else {\n        feedbackMap[run.id] = text;\n      }\n\n      // Build reviews array from map\n      const reviews = [];\n      for (const [run_id, feedback] of Object.entries(feedbackMap)) {\n        if (feedback.trim()) {\n          reviews.push({ run_id, feedback, timestamp: new Date().toISOString() });\n        }\n      }\n\n      fetch(\"/api/feedback\", {\n        method: \"POST\",\n        headers: { \"Content-Type\": \"application/json\" },\n        body: JSON.stringify({ reviews, status: \"in_progress\" }),\n      }).then(() => {\n        document.getElementById(\"feedback-status\").textContent = \"Saved\";\n      }).catch(() => {\n        // Static mode or server unavailable — no-op on auto-save,\n        // feedback will be downloaded on final submit\n        document.getElementById(\"feedback-status\").textContent = \"Will download on submit\";\n      });\n    }\n\n    // ---- Done ----\n    function showDoneDialog() {\n      // Save current textarea to feedbackMap (but don't POST yet)\n      const run = EMBEDDED_DATA.runs[currentIndex];\n      const text = document.getElementById(\"feedback\").value;\n      if (text.trim() === \"\") {\n        delete feedbackMap[run.id];\n      } else {\n        feedbackMap[run.id] = text;\n      }\n\n      // POST once with status: complete — include ALL runs so the model\n      // can distinguish \"no feedback\" (looks good) from \"not reviewed\"\n      const reviews = [];\n      const ts = new Date().toISOString();\n      for (const r of EMBEDDED_DATA.runs) {\n        reviews.push({ run_id: r.id, feedback: feedbackMap[r.id] || \"\", timestamp: ts });\n      }\n      const payload = JSON.stringify({ reviews, status: \"complete\" }, null, 2);\n      fetch(\"/api/feedback\", {\n        method: \"POST\",\n        headers: { \"Content-Type\": \"application/json\" },\n        body: payload,\n      }).then(() => {\n        document.getElementById(\"done-overlay\").classList.add(\"visible\");\n      }).catch(() => {\n        // Server not available (static mode) — download as file\n        const blob = new Blob([payload], { type: \"application/json\" });\n        const url = URL.createObjectURL(blob);\n        const a = document.createElement(\"a\");\n        a.href = url;\n        a.download = \"feedback.json\";\n        a.click();\n        URL.revokeObjectURL(url);\n        document.getElementById(\"done-overlay\").classList.add(\"visible\");\n      });\n    }\n\n    function closeDoneDialog() {\n      // Reset status back to in_progress\n      saveCurrentFeedback();\n      document.getElementById(\"done-overlay\").classList.remove(\"visible\");\n    }\n\n    // ---- Toast ----\n    function showToast(message) {\n      const toast = document.getElementById(\"toast\");\n      toast.textContent = message;\n      toast.classList.add(\"visible\");\n      setTimeout(() => toast.classList.remove(\"visible\"), 2000);\n    }\n\n    // ---- Keyboard nav ----\n    document.addEventListener(\"keydown\", (e) => {\n      // Don't capture when typing in textarea\n      if (e.target.tagName === \"TEXTAREA\") return;\n\n      if (e.key === \"ArrowLeft\" || e.key === \"ArrowUp\") {\n        e.preventDefault();\n        navigate(-1);\n      } else if (e.key === \"ArrowRight\" || e.key === \"ArrowDown\") {\n        e.preventDefault();\n        navigate(1);\n      }\n    });\n\n    // ---- Util ----\n    function getDownloadUri(file) {\n      if (file.data_uri) return file.data_uri;\n      if (file.data_b64) return \"data:application/octet-stream;base64,\" + file.data_b64;\n      if (file.type === \"text\") return \"data:text/plain;charset=utf-8,\" + encodeURIComponent(file.content);\n      return \"#\";\n    }\n\n    function escapeHtml(text) {\n      const div = document.createElement(\"div\");\n      div.textContent = text;\n      return div.innerHTML;\n    }\n\n    // ---- View switching ----\n    function switchView(view) {\n      document.querySelectorAll(\".view-tab\").forEach(t => t.classList.remove(\"active\"));\n      document.querySelectorAll(\".view-panel\").forEach(p => p.classList.remove(\"active\"));\n      document.querySelector(`[onclick=\"switchView('${view}')\"]`).classList.add(\"active\");\n      document.getElementById(\"panel-\" + view).classList.add(\"active\");\n    }\n\n    // ---- Benchmark rendering ----\n    function renderBenchmark() {\n      const data = EMBEDDED_DATA.benchmark;\n      if (!data) return;\n\n      // Show the tabs\n      document.getElementById(\"view-tabs\").style.display = \"flex\";\n\n      const container = document.getElementById(\"benchmark-content\");\n      const summary = data.run_summary || {};\n      const metadata = data.metadata || {};\n      const notes = data.notes || [];\n\n      let html = \"\";\n\n      // Header\n      html += \"<h2 style='font-family: Poppins, sans-serif; margin-bottom: 0.5rem;'>Benchmark Results</h2>\";\n      html += \"<p style='color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1.25rem;'>\";\n      if (metadata.skill_name) html += \"<strong>\" + escapeHtml(metadata.skill_name) + \"</strong> &mdash; \";\n      if (metadata.timestamp) html += metadata.timestamp + \" &mdash; \";\n      if (metadata.evals_run) html += \"Evals: \" + metadata.evals_run.join(\", \") + \" &mdash; \";\n      html += (metadata.runs_per_configuration || \"?\") + \" runs per configuration\";\n      html += \"</p>\";\n\n      // Summary table\n      html += '<table class=\"benchmark-table\">';\n\n      function fmtStat(stat, pct) {\n        if (!stat) return \"—\";\n        const suffix = pct ? \"%\" : \"\";\n        const m = pct ? (stat.mean * 100).toFixed(0) : stat.mean.toFixed(1);\n        const s = pct ? (stat.stddev * 100).toFixed(0) : stat.stddev.toFixed(1);\n        return m + suffix + \" ± \" + s + suffix;\n      }\n\n      function deltaClass(val) {\n        if (!val) return \"\";\n        const n = parseFloat(val);\n        if (n > 0) return \"benchmark-delta-positive\";\n        if (n < 0) return \"benchmark-delta-negative\";\n        return \"\";\n      }\n\n      // Discover config names dynamically (everything except \"delta\")\n      const configs = Object.keys(summary).filter(k => k !== \"delta\");\n      const configA = configs[0] || \"config_a\";\n      const configB = configs[1] || \"config_b\";\n      const labelA = configA.replace(/_/g, \" \").replace(/\\b\\w/g, c => c.toUpperCase());\n      const labelB = configB.replace(/_/g, \" \").replace(/\\b\\w/g, c => c.toUpperCase());\n      const a = summary[configA] || {};\n      const b = summary[configB] || {};\n      const delta = summary.delta || {};\n\n      html += \"<thead><tr><th>Metric</th><th>\" + escapeHtml(labelA) + \"</th><th>\" + escapeHtml(labelB) + \"</th><th>Delta</th></tr></thead>\";\n      html += \"<tbody>\";\n\n      html += \"<tr><td><strong>Pass Rate</strong></td>\";\n      html += \"<td>\" + fmtStat(a.pass_rate, true) + \"</td>\";\n      html += \"<td>\" + fmtStat(b.pass_rate, true) + \"</td>\";\n      html += '<td class=\"' + deltaClass(delta.pass_rate) + '\">' + (delta.pass_rate || \"—\") + \"</td></tr>\";\n\n      // Time (only show row if data exists)\n      if (a.time_seconds || b.time_seconds) {\n        html += \"<tr><td><strong>Time (s)</strong></td>\";\n        html += \"<td>\" + fmtStat(a.time_seconds, false) + \"</td>\";\n        html += \"<td>\" + fmtStat(b.time_seconds, false) + \"</td>\";\n        html += '<td class=\"' + deltaClass(delta.time_seconds) + '\">' + (delta.time_seconds ? delta.time_seconds + \"s\" : \"—\") + \"</td></tr>\";\n      }\n\n      // Tokens (only show row if data exists)\n      if (a.tokens || b.tokens) {\n        html += \"<tr><td><strong>Tokens</strong></td>\";\n        html += \"<td>\" + fmtStat(a.tokens, false) + \"</td>\";\n        html += \"<td>\" + fmtStat(b.tokens, false) + \"</td>\";\n        html += '<td class=\"' + deltaClass(delta.tokens) + '\">' + (delta.tokens || \"—\") + \"</td></tr>\";\n      }\n\n      html += \"</tbody></table>\";\n\n      // Per-eval breakdown (if runs data available)\n      const runs = data.runs || [];\n      if (runs.length > 0) {\n        const evalIds = [...new Set(runs.map(r => r.eval_id))].sort((a, b) => a - b);\n\n        html += \"<h3 style='font-family: Poppins, sans-serif; margin-bottom: 0.75rem;'>Per-Eval Breakdown</h3>\";\n\n        const hasTime = runs.some(r => r.result && r.result.time_seconds != null);\n        const hasErrors = runs.some(r => r.result && r.result.errors > 0);\n\n        for (const evalId of evalIds) {\n          const evalRuns = runs.filter(r => r.eval_id === evalId);\n          const evalName = evalRuns[0] && evalRuns[0].eval_name ? evalRuns[0].eval_name : \"Eval \" + evalId;\n\n          html += \"<h4 style='font-family: Poppins, sans-serif; margin: 1rem 0 0.5rem; color: var(--text);'>\" + escapeHtml(evalName) + \"</h4>\";\n          html += '<table class=\"benchmark-table\">';\n          html += \"<thead><tr><th>Config</th><th>Run</th><th>Pass Rate</th>\";\n          if (hasTime) html += \"<th>Time (s)</th>\";\n          if (hasErrors) html += \"<th>Crashes During Execution</th>\";\n          html += \"</tr></thead>\";\n          html += \"<tbody>\";\n\n          // Group by config and render with average rows\n          const configGroups = [...new Set(evalRuns.map(r => r.configuration))];\n          for (let ci = 0; ci < configGroups.length; ci++) {\n            const config = configGroups[ci];\n            const configRuns = evalRuns.filter(r => r.configuration === config);\n            if (configRuns.length === 0) continue;\n\n            const rowClass = ci === 0 ? \"benchmark-row-with\" : \"benchmark-row-without\";\n            const configLabel = config.replace(/_/g, \" \").replace(/\\b\\w/g, c => c.toUpperCase());\n\n            for (const run of configRuns) {\n              const r = run.result || {};\n              const prClass = r.pass_rate >= 0.8 ? \"benchmark-delta-positive\" : r.pass_rate < 0.5 ? \"benchmark-delta-negative\" : \"\";\n              html += '<tr class=\"' + rowClass + '\">';\n              html += \"<td>\" + configLabel + \"</td>\";\n              html += \"<td>\" + run.run_number + \"</td>\";\n              html += '<td class=\"' + prClass + '\">' + ((r.pass_rate || 0) * 100).toFixed(0) + \"% (\" + (r.passed || 0) + \"/\" + (r.total || 0) + \")</td>\";\n              if (hasTime) html += \"<td>\" + (r.time_seconds != null ? r.time_seconds.toFixed(1) : \"—\") + \"</td>\";\n              if (hasErrors) html += \"<td>\" + (r.errors || 0) + \"</td>\";\n              html += \"</tr>\";\n            }\n\n            // Average row\n            const rates = configRuns.map(r => (r.result || {}).pass_rate || 0);\n            const avgRate = rates.reduce((a, b) => a + b, 0) / rates.length;\n            const avgPrClass = avgRate >= 0.8 ? \"benchmark-delta-positive\" : avgRate < 0.5 ? \"benchmark-delta-negative\" : \"\";\n            html += '<tr class=\"benchmark-row-avg ' + rowClass + '\">';\n            html += \"<td>\" + configLabel + \"</td>\";\n            html += \"<td>Avg</td>\";\n            html += '<td class=\"' + avgPrClass + '\">' + (avgRate * 100).toFixed(0) + \"%</td>\";\n            if (hasTime) {\n              const times = configRuns.map(r => (r.result || {}).time_seconds).filter(t => t != null);\n              html += \"<td>\" + (times.length ? (times.reduce((a, b) => a + b, 0) / times.length).toFixed(1) : \"—\") + \"</td>\";\n            }\n            if (hasErrors) html += \"<td></td>\";\n            html += \"</tr>\";\n          }\n          html += \"</tbody></table>\";\n\n          // Per-assertion detail for this eval\n          const runsWithExpectations = {};\n          for (const config of configGroups) {\n            runsWithExpectations[config] = evalRuns.filter(r => r.configuration === config && r.expectations && r.expectations.length > 0);\n          }\n          const hasAnyExpectations = Object.values(runsWithExpectations).some(runs => runs.length > 0);\n          if (hasAnyExpectations) {\n            // Collect all unique assertion texts across all configs\n            const allAssertions = [];\n            const seen = new Set();\n            for (const config of configGroups) {\n              for (const run of runsWithExpectations[config]) {\n                for (const exp of (run.expectations || [])) {\n                  if (!seen.has(exp.text)) {\n                    seen.add(exp.text);\n                    allAssertions.push(exp.text);\n                  }\n                }\n              }\n            }\n\n            html += '<table class=\"benchmark-table\" style=\"margin-top: 0.5rem;\">';\n            html += \"<thead><tr><th>Assertion</th>\";\n            for (const config of configGroups) {\n              const label = config.replace(/_/g, \" \").replace(/\\b\\w/g, c => c.toUpperCase());\n              html += \"<th>\" + escapeHtml(label) + \"</th>\";\n            }\n            html += \"</tr></thead><tbody>\";\n\n            for (const assertionText of allAssertions) {\n              html += \"<tr><td>\" + escapeHtml(assertionText) + \"</td>\";\n\n              for (const config of configGroups) {\n                html += \"<td>\";\n                for (const run of runsWithExpectations[config]) {\n                  const exp = (run.expectations || []).find(e => e.text === assertionText);\n                  if (exp) {\n                    const cls = exp.passed ? \"benchmark-delta-positive\" : \"benchmark-delta-negative\";\n                    const icon = exp.passed ? \"\\u2713\" : \"\\u2717\";\n                    html += '<span class=\"' + cls + '\" title=\"Run ' + run.run_number + ': ' + escapeHtml(exp.evidence || \"\") + '\">' + icon + \"</span> \";\n                  } else {\n                    html += \"— \";\n                  }\n                }\n                html += \"</td>\";\n              }\n              html += \"</tr>\";\n            }\n            html += \"</tbody></table>\";\n          }\n        }\n      }\n\n      // Notes\n      if (notes.length > 0) {\n        html += '<div class=\"benchmark-notes\">';\n        html += \"<h3>Analysis Notes</h3>\";\n        html += \"<ul>\";\n        for (const note of notes) {\n          html += \"<li>\" + escapeHtml(note) + \"</li>\";\n        }\n        html += \"</ul></div>\";\n      }\n\n      container.innerHTML = html;\n    }\n\n    // ---- Start ----\n    init();\n    renderBenchmark();\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "skills/skill-creator/references/schemas.md",
    "content": "# JSON Schemas\n\nThis document defines the JSON schemas used by skill-creator.\n\n---\n\n## evals.json\n\nDefines the evals for a skill. Located at `evals/evals.json` within the skill directory.\n\n```json\n{\n  \"skill_name\": \"example-skill\",\n  \"evals\": [\n    {\n      \"id\": 1,\n      \"prompt\": \"User's example prompt\",\n      \"expected_output\": \"Description of expected result\",\n      \"files\": [\"evals/files/sample1.pdf\"],\n      \"expectations\": [\n        \"The output includes X\",\n        \"The skill used script Y\"\n      ]\n    }\n  ]\n}\n```\n\n**Fields:**\n- `skill_name`: Name matching the skill's frontmatter\n- `evals[].id`: Unique integer identifier\n- `evals[].prompt`: The task to execute\n- `evals[].expected_output`: Human-readable description of success\n- `evals[].files`: Optional list of input file paths (relative to skill root)\n- `evals[].expectations`: List of verifiable statements\n\n---\n\n## history.json\n\nTracks version progression in Improve mode. Located at workspace root.\n\n```json\n{\n  \"started_at\": \"2026-01-15T10:30:00Z\",\n  \"skill_name\": \"pdf\",\n  \"current_best\": \"v2\",\n  \"iterations\": [\n    {\n      \"version\": \"v0\",\n      \"parent\": null,\n      \"expectation_pass_rate\": 0.65,\n      \"grading_result\": \"baseline\",\n      \"is_current_best\": false\n    },\n    {\n      \"version\": \"v1\",\n      \"parent\": \"v0\",\n      \"expectation_pass_rate\": 0.75,\n      \"grading_result\": \"won\",\n      \"is_current_best\": false\n    },\n    {\n      \"version\": \"v2\",\n      \"parent\": \"v1\",\n      \"expectation_pass_rate\": 0.85,\n      \"grading_result\": \"won\",\n      \"is_current_best\": true\n    }\n  ]\n}\n```\n\n**Fields:**\n- `started_at`: ISO timestamp of when improvement started\n- `skill_name`: Name of the skill being improved\n- `current_best`: Version identifier of the best performer\n- `iterations[].version`: Version identifier (v0, v1, ...)\n- `iterations[].parent`: Parent version this was derived from\n- `iterations[].expectation_pass_rate`: Pass rate from grading\n- `iterations[].grading_result`: \"baseline\", \"won\", \"lost\", or \"tie\"\n- `iterations[].is_current_best`: Whether this is the current best version\n\n---\n\n## grading.json\n\nOutput from the grader agent. Located at `<run-dir>/grading.json`.\n\n```json\n{\n  \"expectations\": [\n    {\n      \"text\": \"The output includes the name 'John Smith'\",\n      \"passed\": true,\n      \"evidence\": \"Found in transcript Step 3: 'Extracted names: John Smith, Sarah Johnson'\"\n    },\n    {\n      \"text\": \"The spreadsheet has a SUM formula in cell B10\",\n      \"passed\": false,\n      \"evidence\": \"No spreadsheet was created. The output was a text file.\"\n    }\n  ],\n  \"summary\": {\n    \"passed\": 2,\n    \"failed\": 1,\n    \"total\": 3,\n    \"pass_rate\": 0.67\n  },\n  \"execution_metrics\": {\n    \"tool_calls\": {\n      \"Read\": 5,\n      \"Write\": 2,\n      \"Bash\": 8\n    },\n    \"total_tool_calls\": 15,\n    \"total_steps\": 6,\n    \"errors_encountered\": 0,\n    \"output_chars\": 12450,\n    \"transcript_chars\": 3200\n  },\n  \"timing\": {\n    \"executor_duration_seconds\": 165.0,\n    \"grader_duration_seconds\": 26.0,\n    \"total_duration_seconds\": 191.0\n  },\n  \"claims\": [\n    {\n      \"claim\": \"The form has 12 fillable fields\",\n      \"type\": \"factual\",\n      \"verified\": true,\n      \"evidence\": \"Counted 12 fields in field_info.json\"\n    }\n  ],\n  \"user_notes_summary\": {\n    \"uncertainties\": [\"Used 2023 data, may be stale\"],\n    \"needs_review\": [],\n    \"workarounds\": [\"Fell back to text overlay for non-fillable fields\"]\n  },\n  \"eval_feedback\": {\n    \"suggestions\": [\n      {\n        \"assertion\": \"The output includes the name 'John Smith'\",\n        \"reason\": \"A hallucinated document that mentions the name would also pass\"\n      }\n    ],\n    \"overall\": \"Assertions check presence but not correctness.\"\n  }\n}\n```\n\n**Fields:**\n- `expectations[]`: Graded expectations with evidence\n- `summary`: Aggregate pass/fail counts\n- `execution_metrics`: Tool usage and output size (from executor's metrics.json)\n- `timing`: Wall clock timing (from timing.json)\n- `claims`: Extracted and verified claims from the output\n- `user_notes_summary`: Issues flagged by the executor\n- `eval_feedback`: (optional) Improvement suggestions for the evals, only present when the grader identifies issues worth raising\n\n---\n\n## metrics.json\n\nOutput from the executor agent. Located at `<run-dir>/outputs/metrics.json`.\n\n```json\n{\n  \"tool_calls\": {\n    \"Read\": 5,\n    \"Write\": 2,\n    \"Bash\": 8,\n    \"Edit\": 1,\n    \"Glob\": 2,\n    \"Grep\": 0\n  },\n  \"total_tool_calls\": 18,\n  \"total_steps\": 6,\n  \"files_created\": [\"filled_form.pdf\", \"field_values.json\"],\n  \"errors_encountered\": 0,\n  \"output_chars\": 12450,\n  \"transcript_chars\": 3200\n}\n```\n\n**Fields:**\n- `tool_calls`: Count per tool type\n- `total_tool_calls`: Sum of all tool calls\n- `total_steps`: Number of major execution steps\n- `files_created`: List of output files created\n- `errors_encountered`: Number of errors during execution\n- `output_chars`: Total character count of output files\n- `transcript_chars`: Character count of transcript\n\n---\n\n## timing.json\n\nWall clock timing for a run. Located at `<run-dir>/timing.json`.\n\n**How to capture:** When a subagent task completes, the task notification includes `total_tokens` and `duration_ms`. Save these immediately — they are not persisted anywhere else and cannot be recovered after the fact.\n\n```json\n{\n  \"total_tokens\": 84852,\n  \"duration_ms\": 23332,\n  \"total_duration_seconds\": 23.3,\n  \"executor_start\": \"2026-01-15T10:30:00Z\",\n  \"executor_end\": \"2026-01-15T10:32:45Z\",\n  \"executor_duration_seconds\": 165.0,\n  \"grader_start\": \"2026-01-15T10:32:46Z\",\n  \"grader_end\": \"2026-01-15T10:33:12Z\",\n  \"grader_duration_seconds\": 26.0\n}\n```\n\n---\n\n## benchmark.json\n\nOutput from Benchmark mode. Located at `benchmarks/<timestamp>/benchmark.json`.\n\n```json\n{\n  \"metadata\": {\n    \"skill_name\": \"pdf\",\n    \"skill_path\": \"/path/to/pdf\",\n    \"executor_model\": \"claude-sonnet-4-20250514\",\n    \"analyzer_model\": \"most-capable-model\",\n    \"timestamp\": \"2026-01-15T10:30:00Z\",\n    \"evals_run\": [1, 2, 3],\n    \"runs_per_configuration\": 3\n  },\n\n  \"runs\": [\n    {\n      \"eval_id\": 1,\n      \"eval_name\": \"Ocean\",\n      \"configuration\": \"with_skill\",\n      \"run_number\": 1,\n      \"result\": {\n        \"pass_rate\": 0.85,\n        \"passed\": 6,\n        \"failed\": 1,\n        \"total\": 7,\n        \"time_seconds\": 42.5,\n        \"tokens\": 3800,\n        \"tool_calls\": 18,\n        \"errors\": 0\n      },\n      \"expectations\": [\n        {\"text\": \"...\", \"passed\": true, \"evidence\": \"...\"}\n      ],\n      \"notes\": [\n        \"Used 2023 data, may be stale\",\n        \"Fell back to text overlay for non-fillable fields\"\n      ]\n    }\n  ],\n\n  \"run_summary\": {\n    \"with_skill\": {\n      \"pass_rate\": {\"mean\": 0.85, \"stddev\": 0.05, \"min\": 0.80, \"max\": 0.90},\n      \"time_seconds\": {\"mean\": 45.0, \"stddev\": 12.0, \"min\": 32.0, \"max\": 58.0},\n      \"tokens\": {\"mean\": 3800, \"stddev\": 400, \"min\": 3200, \"max\": 4100}\n    },\n    \"without_skill\": {\n      \"pass_rate\": {\"mean\": 0.35, \"stddev\": 0.08, \"min\": 0.28, \"max\": 0.45},\n      \"time_seconds\": {\"mean\": 32.0, \"stddev\": 8.0, \"min\": 24.0, \"max\": 42.0},\n      \"tokens\": {\"mean\": 2100, \"stddev\": 300, \"min\": 1800, \"max\": 2500}\n    },\n    \"delta\": {\n      \"pass_rate\": \"+0.50\",\n      \"time_seconds\": \"+13.0\",\n      \"tokens\": \"+1700\"\n    }\n  },\n\n  \"notes\": [\n    \"Assertion 'Output is a PDF file' passes 100% in both configurations - may not differentiate skill value\",\n    \"Eval 3 shows high variance (50% ± 40%) - may be flaky or model-dependent\",\n    \"Without-skill runs consistently fail on table extraction expectations\",\n    \"Skill adds 13s average execution time but improves pass rate by 50%\"\n  ]\n}\n```\n\n**Fields:**\n- `metadata`: Information about the benchmark run\n  - `skill_name`: Name of the skill\n  - `timestamp`: When the benchmark was run\n  - `evals_run`: List of eval names or IDs\n  - `runs_per_configuration`: Number of runs per config (e.g. 3)\n- `runs[]`: Individual run results\n  - `eval_id`: Numeric eval identifier\n  - `eval_name`: Human-readable eval name (used as section header in the viewer)\n  - `configuration`: Must be `\"with_skill\"` or `\"without_skill\"` (the viewer uses this exact string for grouping and color coding)\n  - `run_number`: Integer run number (1, 2, 3...)\n  - `result`: Nested object with `pass_rate`, `passed`, `total`, `time_seconds`, `tokens`, `errors`\n- `run_summary`: Statistical aggregates per configuration\n  - `with_skill` / `without_skill`: Each contains `pass_rate`, `time_seconds`, `tokens` objects with `mean` and `stddev` fields\n  - `delta`: Difference strings like `\"+0.50\"`, `\"+13.0\"`, `\"+1700\"`\n- `notes`: Freeform observations from the analyzer\n\n**Important:** The viewer reads these field names exactly. Using `config` instead of `configuration`, or putting `pass_rate` at the top level of a run instead of nested under `result`, will cause the viewer to show empty/zero values. Always reference this schema when generating benchmark.json manually.\n\n---\n\n## comparison.json\n\nOutput from blind comparator. Located at `<grading-dir>/comparison-N.json`.\n\n```json\n{\n  \"winner\": \"A\",\n  \"reasoning\": \"Output A provides a complete solution with proper formatting and all required fields. Output B is missing the date field and has formatting inconsistencies.\",\n  \"rubric\": {\n    \"A\": {\n      \"content\": {\n        \"correctness\": 5,\n        \"completeness\": 5,\n        \"accuracy\": 4\n      },\n      \"structure\": {\n        \"organization\": 4,\n        \"formatting\": 5,\n        \"usability\": 4\n      },\n      \"content_score\": 4.7,\n      \"structure_score\": 4.3,\n      \"overall_score\": 9.0\n    },\n    \"B\": {\n      \"content\": {\n        \"correctness\": 3,\n        \"completeness\": 2,\n        \"accuracy\": 3\n      },\n      \"structure\": {\n        \"organization\": 3,\n        \"formatting\": 2,\n        \"usability\": 3\n      },\n      \"content_score\": 2.7,\n      \"structure_score\": 2.7,\n      \"overall_score\": 5.4\n    }\n  },\n  \"output_quality\": {\n    \"A\": {\n      \"score\": 9,\n      \"strengths\": [\"Complete solution\", \"Well-formatted\", \"All fields present\"],\n      \"weaknesses\": [\"Minor style inconsistency in header\"]\n    },\n    \"B\": {\n      \"score\": 5,\n      \"strengths\": [\"Readable output\", \"Correct basic structure\"],\n      \"weaknesses\": [\"Missing date field\", \"Formatting inconsistencies\", \"Partial data extraction\"]\n    }\n  },\n  \"expectation_results\": {\n    \"A\": {\n      \"passed\": 4,\n      \"total\": 5,\n      \"pass_rate\": 0.80,\n      \"details\": [\n        {\"text\": \"Output includes name\", \"passed\": true}\n      ]\n    },\n    \"B\": {\n      \"passed\": 3,\n      \"total\": 5,\n      \"pass_rate\": 0.60,\n      \"details\": [\n        {\"text\": \"Output includes name\", \"passed\": true}\n      ]\n    }\n  }\n}\n```\n\n---\n\n## analysis.json\n\nOutput from post-hoc analyzer. Located at `<grading-dir>/analysis.json`.\n\n```json\n{\n  \"comparison_summary\": {\n    \"winner\": \"A\",\n    \"winner_skill\": \"path/to/winner/skill\",\n    \"loser_skill\": \"path/to/loser/skill\",\n    \"comparator_reasoning\": \"Brief summary of why comparator chose winner\"\n  },\n  \"winner_strengths\": [\n    \"Clear step-by-step instructions for handling multi-page documents\",\n    \"Included validation script that caught formatting errors\"\n  ],\n  \"loser_weaknesses\": [\n    \"Vague instruction 'process the document appropriately' led to inconsistent behavior\",\n    \"No script for validation, agent had to improvise\"\n  ],\n  \"instruction_following\": {\n    \"winner\": {\n      \"score\": 9,\n      \"issues\": [\"Minor: skipped optional logging step\"]\n    },\n    \"loser\": {\n      \"score\": 6,\n      \"issues\": [\n        \"Did not use the skill's formatting template\",\n        \"Invented own approach instead of following step 3\"\n      ]\n    }\n  },\n  \"improvement_suggestions\": [\n    {\n      \"priority\": \"high\",\n      \"category\": \"instructions\",\n      \"suggestion\": \"Replace 'process the document appropriately' with explicit steps\",\n      \"expected_impact\": \"Would eliminate ambiguity that caused inconsistent behavior\"\n    }\n  ],\n  \"transcript_insights\": {\n    \"winner_execution_pattern\": \"Read skill -> Followed 5-step process -> Used validation script\",\n    \"loser_execution_pattern\": \"Read skill -> Unclear on approach -> Tried 3 different methods\"\n  }\n}\n```\n"
  },
  {
    "path": "skills/skill-creator/scripts/__init__.py",
    "content": ""
  },
  {
    "path": "skills/skill-creator/scripts/aggregate_benchmark.py",
    "content": "#!/usr/bin/env python3\n\"\"\"\nAggregate individual run results into benchmark summary statistics.\n\nReads grading.json files from run directories and produces:\n- run_summary with mean, stddev, min, max for each metric\n- delta between with_skill and without_skill configurations\n\nUsage:\n    python aggregate_benchmark.py <benchmark_dir>\n\nExample:\n    python aggregate_benchmark.py benchmarks/2026-01-15T10-30-00/\n\nThe script supports two directory layouts:\n\n    Workspace layout (from skill-creator iterations):\n    <benchmark_dir>/\n    └── eval-N/\n        ├── with_skill/\n        │   ├── run-1/grading.json\n        │   └── run-2/grading.json\n        └── without_skill/\n            ├── run-1/grading.json\n            └── run-2/grading.json\n\n    Legacy layout (with runs/ subdirectory):\n    <benchmark_dir>/\n    └── runs/\n        └── eval-N/\n            ├── with_skill/\n            │   └── run-1/grading.json\n            └── without_skill/\n                └── run-1/grading.json\n\"\"\"\n\nimport argparse\nimport json\nimport math\nimport sys\nfrom datetime import datetime, timezone\nfrom pathlib import Path\n\n\ndef calculate_stats(values: list[float]) -> dict:\n    \"\"\"Calculate mean, stddev, min, max for a list of values.\"\"\"\n    if not values:\n        return {\"mean\": 0.0, \"stddev\": 0.0, \"min\": 0.0, \"max\": 0.0}\n\n    n = len(values)\n    mean = sum(values) / n\n\n    if n > 1:\n        variance = sum((x - mean) ** 2 for x in values) / (n - 1)\n        stddev = math.sqrt(variance)\n    else:\n        stddev = 0.0\n\n    return {\n        \"mean\": round(mean, 4),\n        \"stddev\": round(stddev, 4),\n        \"min\": round(min(values), 4),\n        \"max\": round(max(values), 4)\n    }\n\n\ndef load_run_results(benchmark_dir: Path) -> dict:\n    \"\"\"\n    Load all run results from a benchmark directory.\n\n    Returns dict keyed by config name (e.g. \"with_skill\"/\"without_skill\",\n    or \"new_skill\"/\"old_skill\"), each containing a list of run results.\n    \"\"\"\n    # Support both layouts: eval dirs directly under benchmark_dir, or under runs/\n    runs_dir = benchmark_dir / \"runs\"\n    if runs_dir.exists():\n        search_dir = runs_dir\n    elif list(benchmark_dir.glob(\"eval-*\")):\n        search_dir = benchmark_dir\n    else:\n        print(f\"No eval directories found in {benchmark_dir} or {benchmark_dir / 'runs'}\")\n        return {}\n\n    results: dict[str, list] = {}\n\n    for eval_idx, eval_dir in enumerate(sorted(search_dir.glob(\"eval-*\"))):\n        metadata_path = eval_dir / \"eval_metadata.json\"\n        if metadata_path.exists():\n            try:\n                with open(metadata_path) as mf:\n                    eval_id = json.load(mf).get(\"eval_id\", eval_idx)\n            except (json.JSONDecodeError, OSError):\n                eval_id = eval_idx\n        else:\n            try:\n                eval_id = int(eval_dir.name.split(\"-\")[1])\n            except ValueError:\n                eval_id = eval_idx\n\n        # Discover config directories dynamically rather than hardcoding names\n        for config_dir in sorted(eval_dir.iterdir()):\n            if not config_dir.is_dir():\n                continue\n            # Skip non-config directories (inputs, outputs, etc.)\n            if not list(config_dir.glob(\"run-*\")):\n                continue\n            config = config_dir.name\n            if config not in results:\n                results[config] = []\n\n            for run_dir in sorted(config_dir.glob(\"run-*\")):\n                run_number = int(run_dir.name.split(\"-\")[1])\n                grading_file = run_dir / \"grading.json\"\n\n                if not grading_file.exists():\n                    print(f\"Warning: grading.json not found in {run_dir}\")\n                    continue\n\n                try:\n                    with open(grading_file) as f:\n                        grading = json.load(f)\n                except json.JSONDecodeError as e:\n                    print(f\"Warning: Invalid JSON in {grading_file}: {e}\")\n                    continue\n\n                # Extract metrics\n                result = {\n                    \"eval_id\": eval_id,\n                    \"run_number\": run_number,\n                    \"pass_rate\": grading.get(\"summary\", {}).get(\"pass_rate\", 0.0),\n                    \"passed\": grading.get(\"summary\", {}).get(\"passed\", 0),\n                    \"failed\": grading.get(\"summary\", {}).get(\"failed\", 0),\n                    \"total\": grading.get(\"summary\", {}).get(\"total\", 0),\n                }\n\n                # Extract timing — check grading.json first, then sibling timing.json\n                timing = grading.get(\"timing\", {})\n                result[\"time_seconds\"] = timing.get(\"total_duration_seconds\", 0.0)\n                timing_file = run_dir / \"timing.json\"\n                if result[\"time_seconds\"] == 0.0 and timing_file.exists():\n                    try:\n                        with open(timing_file) as tf:\n                            timing_data = json.load(tf)\n                        result[\"time_seconds\"] = timing_data.get(\"total_duration_seconds\", 0.0)\n                        result[\"tokens\"] = timing_data.get(\"total_tokens\", 0)\n                    except json.JSONDecodeError:\n                        pass\n\n                # Extract metrics if available\n                metrics = grading.get(\"execution_metrics\", {})\n                result[\"tool_calls\"] = metrics.get(\"total_tool_calls\", 0)\n                if not result.get(\"tokens\"):\n                    result[\"tokens\"] = metrics.get(\"output_chars\", 0)\n                result[\"errors\"] = metrics.get(\"errors_encountered\", 0)\n\n                # Extract expectations — viewer requires fields: text, passed, evidence\n                raw_expectations = grading.get(\"expectations\", [])\n                for exp in raw_expectations:\n                    if \"text\" not in exp or \"passed\" not in exp:\n                        print(f\"Warning: expectation in {grading_file} missing required fields (text, passed, evidence): {exp}\")\n                result[\"expectations\"] = raw_expectations\n\n                # Extract notes from user_notes_summary\n                notes_summary = grading.get(\"user_notes_summary\", {})\n                notes = []\n                notes.extend(notes_summary.get(\"uncertainties\", []))\n                notes.extend(notes_summary.get(\"needs_review\", []))\n                notes.extend(notes_summary.get(\"workarounds\", []))\n                result[\"notes\"] = notes\n\n                results[config].append(result)\n\n    return results\n\n\ndef aggregate_results(results: dict) -> dict:\n    \"\"\"\n    Aggregate run results into summary statistics.\n\n    Returns run_summary with stats for each configuration and delta.\n    \"\"\"\n    run_summary = {}\n    configs = list(results.keys())\n\n    for config in configs:\n        runs = results.get(config, [])\n\n        if not runs:\n            run_summary[config] = {\n                \"pass_rate\": {\"mean\": 0.0, \"stddev\": 0.0, \"min\": 0.0, \"max\": 0.0},\n                \"time_seconds\": {\"mean\": 0.0, \"stddev\": 0.0, \"min\": 0.0, \"max\": 0.0},\n                \"tokens\": {\"mean\": 0, \"stddev\": 0, \"min\": 0, \"max\": 0}\n            }\n            continue\n\n        pass_rates = [r[\"pass_rate\"] for r in runs]\n        times = [r[\"time_seconds\"] for r in runs]\n        tokens = [r.get(\"tokens\", 0) for r in runs]\n\n        run_summary[config] = {\n            \"pass_rate\": calculate_stats(pass_rates),\n            \"time_seconds\": calculate_stats(times),\n            \"tokens\": calculate_stats(tokens)\n        }\n\n    # Calculate delta between the first two configs (if two exist)\n    if len(configs) >= 2:\n        primary = run_summary.get(configs[0], {})\n        baseline = run_summary.get(configs[1], {})\n    else:\n        primary = run_summary.get(configs[0], {}) if configs else {}\n        baseline = {}\n\n    delta_pass_rate = primary.get(\"pass_rate\", {}).get(\"mean\", 0) - baseline.get(\"pass_rate\", {}).get(\"mean\", 0)\n    delta_time = primary.get(\"time_seconds\", {}).get(\"mean\", 0) - baseline.get(\"time_seconds\", {}).get(\"mean\", 0)\n    delta_tokens = primary.get(\"tokens\", {}).get(\"mean\", 0) - baseline.get(\"tokens\", {}).get(\"mean\", 0)\n\n    run_summary[\"delta\"] = {\n        \"pass_rate\": f\"{delta_pass_rate:+.2f}\",\n        \"time_seconds\": f\"{delta_time:+.1f}\",\n        \"tokens\": f\"{delta_tokens:+.0f}\"\n    }\n\n    return run_summary\n\n\ndef generate_benchmark(benchmark_dir: Path, skill_name: str = \"\", skill_path: str = \"\") -> dict:\n    \"\"\"\n    Generate complete benchmark.json from run results.\n    \"\"\"\n    results = load_run_results(benchmark_dir)\n    run_summary = aggregate_results(results)\n\n    # Build runs array for benchmark.json\n    runs = []\n    for config in results:\n        for result in results[config]:\n            runs.append({\n                \"eval_id\": result[\"eval_id\"],\n                \"configuration\": config,\n                \"run_number\": result[\"run_number\"],\n                \"result\": {\n                    \"pass_rate\": result[\"pass_rate\"],\n                    \"passed\": result[\"passed\"],\n                    \"failed\": result[\"failed\"],\n                    \"total\": result[\"total\"],\n                    \"time_seconds\": result[\"time_seconds\"],\n                    \"tokens\": result.get(\"tokens\", 0),\n                    \"tool_calls\": result.get(\"tool_calls\", 0),\n                    \"errors\": result.get(\"errors\", 0)\n                },\n                \"expectations\": result[\"expectations\"],\n                \"notes\": result[\"notes\"]\n            })\n\n    # Determine eval IDs from results\n    eval_ids = sorted(set(\n        r[\"eval_id\"]\n        for config in results.values()\n        for r in config\n    ))\n\n    benchmark = {\n        \"metadata\": {\n            \"skill_name\": skill_name or \"<skill-name>\",\n            \"skill_path\": skill_path or \"<path/to/skill>\",\n            \"executor_model\": \"<model-name>\",\n            \"analyzer_model\": \"<model-name>\",\n            \"timestamp\": datetime.now(timezone.utc).strftime(\"%Y-%m-%dT%H:%M:%SZ\"),\n            \"evals_run\": eval_ids,\n            \"runs_per_configuration\": 3\n        },\n        \"runs\": runs,\n        \"run_summary\": run_summary,\n        \"notes\": []  # To be filled by analyzer\n    }\n\n    return benchmark\n\n\ndef generate_markdown(benchmark: dict) -> str:\n    \"\"\"Generate human-readable benchmark.md from benchmark data.\"\"\"\n    metadata = benchmark[\"metadata\"]\n    run_summary = benchmark[\"run_summary\"]\n\n    # Determine config names (excluding \"delta\")\n    configs = [k for k in run_summary if k != \"delta\"]\n    config_a = configs[0] if len(configs) >= 1 else \"config_a\"\n    config_b = configs[1] if len(configs) >= 2 else \"config_b\"\n    label_a = config_a.replace(\"_\", \" \").title()\n    label_b = config_b.replace(\"_\", \" \").title()\n\n    lines = [\n        f\"# Skill Benchmark: {metadata['skill_name']}\",\n        \"\",\n        f\"**Model**: {metadata['executor_model']}\",\n        f\"**Date**: {metadata['timestamp']}\",\n        f\"**Evals**: {', '.join(map(str, metadata['evals_run']))} ({metadata['runs_per_configuration']} runs each per configuration)\",\n        \"\",\n        \"## Summary\",\n        \"\",\n        f\"| Metric | {label_a} | {label_b} | Delta |\",\n        \"|--------|------------|---------------|-------|\",\n    ]\n\n    a_summary = run_summary.get(config_a, {})\n    b_summary = run_summary.get(config_b, {})\n    delta = run_summary.get(\"delta\", {})\n\n    # Format pass rate\n    a_pr = a_summary.get(\"pass_rate\", {})\n    b_pr = b_summary.get(\"pass_rate\", {})\n    lines.append(f\"| Pass Rate | {a_pr.get('mean', 0)*100:.0f}% ± {a_pr.get('stddev', 0)*100:.0f}% | {b_pr.get('mean', 0)*100:.0f}% ± {b_pr.get('stddev', 0)*100:.0f}% | {delta.get('pass_rate', '—')} |\")\n\n    # Format time\n    a_time = a_summary.get(\"time_seconds\", {})\n    b_time = b_summary.get(\"time_seconds\", {})\n    lines.append(f\"| Time | {a_time.get('mean', 0):.1f}s ± {a_time.get('stddev', 0):.1f}s | {b_time.get('mean', 0):.1f}s ± {b_time.get('stddev', 0):.1f}s | {delta.get('time_seconds', '—')}s |\")\n\n    # Format tokens\n    a_tokens = a_summary.get(\"tokens\", {})\n    b_tokens = b_summary.get(\"tokens\", {})\n    lines.append(f\"| Tokens | {a_tokens.get('mean', 0):.0f} ± {a_tokens.get('stddev', 0):.0f} | {b_tokens.get('mean', 0):.0f} ± {b_tokens.get('stddev', 0):.0f} | {delta.get('tokens', '—')} |\")\n\n    # Notes section\n    if benchmark.get(\"notes\"):\n        lines.extend([\n            \"\",\n            \"## Notes\",\n            \"\"\n        ])\n        for note in benchmark[\"notes\"]:\n            lines.append(f\"- {note}\")\n\n    return \"\\n\".join(lines)\n\n\ndef main():\n    parser = argparse.ArgumentParser(\n        description=\"Aggregate benchmark run results into summary statistics\"\n    )\n    parser.add_argument(\n        \"benchmark_dir\",\n        type=Path,\n        help=\"Path to the benchmark directory\"\n    )\n    parser.add_argument(\n        \"--skill-name\",\n        default=\"\",\n        help=\"Name of the skill being benchmarked\"\n    )\n    parser.add_argument(\n        \"--skill-path\",\n        default=\"\",\n        help=\"Path to the skill being benchmarked\"\n    )\n    parser.add_argument(\n        \"--output\", \"-o\",\n        type=Path,\n        help=\"Output path for benchmark.json (default: <benchmark_dir>/benchmark.json)\"\n    )\n\n    args = parser.parse_args()\n\n    if not args.benchmark_dir.exists():\n        print(f\"Directory not found: {args.benchmark_dir}\")\n        sys.exit(1)\n\n    # Generate benchmark\n    benchmark = generate_benchmark(args.benchmark_dir, args.skill_name, args.skill_path)\n\n    # Determine output paths\n    output_json = args.output or (args.benchmark_dir / \"benchmark.json\")\n    output_md = output_json.with_suffix(\".md\")\n\n    # Write benchmark.json\n    with open(output_json, \"w\") as f:\n        json.dump(benchmark, f, indent=2)\n    print(f\"Generated: {output_json}\")\n\n    # Write benchmark.md\n    markdown = generate_markdown(benchmark)\n    with open(output_md, \"w\") as f:\n        f.write(markdown)\n    print(f\"Generated: {output_md}\")\n\n    # Print summary\n    run_summary = benchmark[\"run_summary\"]\n    configs = [k for k in run_summary if k != \"delta\"]\n    delta = run_summary.get(\"delta\", {})\n\n    print(f\"\\nSummary:\")\n    for config in configs:\n        pr = run_summary[config][\"pass_rate\"][\"mean\"]\n        label = config.replace(\"_\", \" \").title()\n        print(f\"  {label}: {pr*100:.1f}% pass rate\")\n    print(f\"  Delta:         {delta.get('pass_rate', '—')}\")\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "skills/skill-creator/scripts/generate_report.py",
    "content": "#!/usr/bin/env python3\n\"\"\"Generate an HTML report from run_loop.py output.\n\nTakes the JSON output from run_loop.py and generates a visual HTML report\nshowing each description attempt with check/x for each test case.\nDistinguishes between train and test queries.\n\"\"\"\n\nimport argparse\nimport html\nimport json\nimport sys\nfrom pathlib import Path\n\n\ndef generate_html(data: dict, auto_refresh: bool = False, skill_name: str = \"\") -> str:\n    \"\"\"Generate HTML report from loop output data. If auto_refresh is True, adds a meta refresh tag.\"\"\"\n    history = data.get(\"history\", [])\n    holdout = data.get(\"holdout\", 0)\n    title_prefix = html.escape(skill_name + \" \\u2014 \") if skill_name else \"\"\n\n    # Get all unique queries from train and test sets, with should_trigger info\n    train_queries: list[dict] = []\n    test_queries: list[dict] = []\n    if history:\n        for r in history[0].get(\"train_results\", history[0].get(\"results\", [])):\n            train_queries.append({\"query\": r[\"query\"], \"should_trigger\": r.get(\"should_trigger\", True)})\n        if history[0].get(\"test_results\"):\n            for r in history[0].get(\"test_results\", []):\n                test_queries.append({\"query\": r[\"query\"], \"should_trigger\": r.get(\"should_trigger\", True)})\n\n    refresh_tag = '    <meta http-equiv=\"refresh\" content=\"5\">\\n' if auto_refresh else \"\"\n\n    html_parts = [\"\"\"<!DOCTYPE html>\n<html>\n<head>\n    <meta charset=\"utf-8\">\n\"\"\" + refresh_tag + \"\"\"    <title>\"\"\" + title_prefix + \"\"\"Skill Description Optimization</title>\n    <link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">\n    <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin>\n    <link href=\"https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&family=Lora:wght@400;500&display=swap\" rel=\"stylesheet\">\n    <style>\n        body {\n            font-family: 'Lora', Georgia, serif;\n            max-width: 100%;\n            margin: 0 auto;\n            padding: 20px;\n            background: #faf9f5;\n            color: #141413;\n        }\n        h1 { font-family: 'Poppins', sans-serif; color: #141413; }\n        .explainer {\n            background: white;\n            padding: 15px;\n            border-radius: 6px;\n            margin-bottom: 20px;\n            border: 1px solid #e8e6dc;\n            color: #b0aea5;\n            font-size: 0.875rem;\n            line-height: 1.6;\n        }\n        .summary {\n            background: white;\n            padding: 15px;\n            border-radius: 6px;\n            margin-bottom: 20px;\n            border: 1px solid #e8e6dc;\n        }\n        .summary p { margin: 5px 0; }\n        .best { color: #788c5d; font-weight: bold; }\n        .table-container {\n            overflow-x: auto;\n            width: 100%;\n        }\n        table {\n            border-collapse: collapse;\n            background: white;\n            border: 1px solid #e8e6dc;\n            border-radius: 6px;\n            font-size: 12px;\n            min-width: 100%;\n        }\n        th, td {\n            padding: 8px;\n            text-align: left;\n            border: 1px solid #e8e6dc;\n            white-space: normal;\n            word-wrap: break-word;\n        }\n        th {\n            font-family: 'Poppins', sans-serif;\n            background: #141413;\n            color: #faf9f5;\n            font-weight: 500;\n        }\n        th.test-col {\n            background: #6a9bcc;\n        }\n        th.query-col { min-width: 200px; }\n        td.description {\n            font-family: monospace;\n            font-size: 11px;\n            word-wrap: break-word;\n            max-width: 400px;\n        }\n        td.result {\n            text-align: center;\n            font-size: 16px;\n            min-width: 40px;\n        }\n        td.test-result {\n            background: #f0f6fc;\n        }\n        .pass { color: #788c5d; }\n        .fail { color: #c44; }\n        .rate {\n            font-size: 9px;\n            color: #b0aea5;\n            display: block;\n        }\n        tr:hover { background: #faf9f5; }\n        .score {\n            display: inline-block;\n            padding: 2px 6px;\n            border-radius: 4px;\n            font-weight: bold;\n            font-size: 11px;\n        }\n        .score-good { background: #eef2e8; color: #788c5d; }\n        .score-ok { background: #fef3c7; color: #d97706; }\n        .score-bad { background: #fceaea; color: #c44; }\n        .train-label { color: #b0aea5; font-size: 10px; }\n        .test-label { color: #6a9bcc; font-size: 10px; font-weight: bold; }\n        .best-row { background: #f5f8f2; }\n        th.positive-col { border-bottom: 3px solid #788c5d; }\n        th.negative-col { border-bottom: 3px solid #c44; }\n        th.test-col.positive-col { border-bottom: 3px solid #788c5d; }\n        th.test-col.negative-col { border-bottom: 3px solid #c44; }\n        .legend { font-family: 'Poppins', sans-serif; display: flex; gap: 20px; margin-bottom: 10px; font-size: 13px; align-items: center; }\n        .legend-item { display: flex; align-items: center; gap: 6px; }\n        .legend-swatch { width: 16px; height: 16px; border-radius: 3px; display: inline-block; }\n        .swatch-positive { background: #141413; border-bottom: 3px solid #788c5d; }\n        .swatch-negative { background: #141413; border-bottom: 3px solid #c44; }\n        .swatch-test { background: #6a9bcc; }\n        .swatch-train { background: #141413; }\n    </style>\n</head>\n<body>\n    <h1>\"\"\" + title_prefix + \"\"\"Skill Description Optimization</h1>\n    <div class=\"explainer\">\n        <strong>Optimizing your skill's description.</strong> This page updates automatically as Claude tests different versions of your skill's description. Each row is an iteration — a new description attempt. The columns show test queries: green checkmarks mean the skill triggered correctly (or correctly didn't trigger), red crosses mean it got it wrong. The \"Train\" score shows performance on queries used to improve the description; the \"Test\" score shows performance on held-out queries the optimizer hasn't seen. When it's done, Claude will apply the best-performing description to your skill.\n    </div>\n\"\"\"]\n\n    # Summary section\n    best_test_score = data.get('best_test_score')\n    best_train_score = data.get('best_train_score')\n    html_parts.append(f\"\"\"\n    <div class=\"summary\">\n        <p><strong>Original:</strong> {html.escape(data.get('original_description', 'N/A'))}</p>\n        <p class=\"best\"><strong>Best:</strong> {html.escape(data.get('best_description', 'N/A'))}</p>\n        <p><strong>Best Score:</strong> {data.get('best_score', 'N/A')} {'(test)' if best_test_score else '(train)'}</p>\n        <p><strong>Iterations:</strong> {data.get('iterations_run', 0)} | <strong>Train:</strong> {data.get('train_size', '?')} | <strong>Test:</strong> {data.get('test_size', '?')}</p>\n    </div>\n\"\"\")\n\n    # Legend\n    html_parts.append(\"\"\"\n    <div class=\"legend\">\n        <span style=\"font-weight:600\">Query columns:</span>\n        <span class=\"legend-item\"><span class=\"legend-swatch swatch-positive\"></span> Should trigger</span>\n        <span class=\"legend-item\"><span class=\"legend-swatch swatch-negative\"></span> Should NOT trigger</span>\n        <span class=\"legend-item\"><span class=\"legend-swatch swatch-train\"></span> Train</span>\n        <span class=\"legend-item\"><span class=\"legend-swatch swatch-test\"></span> Test</span>\n    </div>\n\"\"\")\n\n    # Table header\n    html_parts.append(\"\"\"\n    <div class=\"table-container\">\n    <table>\n        <thead>\n            <tr>\n                <th>Iter</th>\n                <th>Train</th>\n                <th>Test</th>\n                <th class=\"query-col\">Description</th>\n\"\"\")\n\n    # Add column headers for train queries\n    for qinfo in train_queries:\n        polarity = \"positive-col\" if qinfo[\"should_trigger\"] else \"negative-col\"\n        html_parts.append(f'                <th class=\"{polarity}\">{html.escape(qinfo[\"query\"])}</th>\\n')\n\n    # Add column headers for test queries (different color)\n    for qinfo in test_queries:\n        polarity = \"positive-col\" if qinfo[\"should_trigger\"] else \"negative-col\"\n        html_parts.append(f'                <th class=\"test-col {polarity}\">{html.escape(qinfo[\"query\"])}</th>\\n')\n\n    html_parts.append(\"\"\"            </tr>\n        </thead>\n        <tbody>\n\"\"\")\n\n    # Find best iteration for highlighting\n    if test_queries:\n        best_iter = max(history, key=lambda h: h.get(\"test_passed\") or 0).get(\"iteration\")\n    else:\n        best_iter = max(history, key=lambda h: h.get(\"train_passed\", h.get(\"passed\", 0))).get(\"iteration\")\n\n    # Add rows for each iteration\n    for h in history:\n        iteration = h.get(\"iteration\", \"?\")\n        train_passed = h.get(\"train_passed\", h.get(\"passed\", 0))\n        train_total = h.get(\"train_total\", h.get(\"total\", 0))\n        test_passed = h.get(\"test_passed\")\n        test_total = h.get(\"test_total\")\n        description = h.get(\"description\", \"\")\n        train_results = h.get(\"train_results\", h.get(\"results\", []))\n        test_results = h.get(\"test_results\", [])\n\n        # Create lookups for results by query\n        train_by_query = {r[\"query\"]: r for r in train_results}\n        test_by_query = {r[\"query\"]: r for r in test_results} if test_results else {}\n\n        # Compute aggregate correct/total runs across all retries\n        def aggregate_runs(results: list[dict]) -> tuple[int, int]:\n            correct = 0\n            total = 0\n            for r in results:\n                runs = r.get(\"runs\", 0)\n                triggers = r.get(\"triggers\", 0)\n                total += runs\n                if r.get(\"should_trigger\", True):\n                    correct += triggers\n                else:\n                    correct += runs - triggers\n            return correct, total\n\n        train_correct, train_runs = aggregate_runs(train_results)\n        test_correct, test_runs = aggregate_runs(test_results)\n\n        # Determine score classes\n        def score_class(correct: int, total: int) -> str:\n            if total > 0:\n                ratio = correct / total\n                if ratio >= 0.8:\n                    return \"score-good\"\n                elif ratio >= 0.5:\n                    return \"score-ok\"\n            return \"score-bad\"\n\n        train_class = score_class(train_correct, train_runs)\n        test_class = score_class(test_correct, test_runs)\n\n        row_class = \"best-row\" if iteration == best_iter else \"\"\n\n        html_parts.append(f\"\"\"            <tr class=\"{row_class}\">\n                <td>{iteration}</td>\n                <td><span class=\"score {train_class}\">{train_correct}/{train_runs}</span></td>\n                <td><span class=\"score {test_class}\">{test_correct}/{test_runs}</span></td>\n                <td class=\"description\">{html.escape(description)}</td>\n\"\"\")\n\n        # Add result for each train query\n        for qinfo in train_queries:\n            r = train_by_query.get(qinfo[\"query\"], {})\n            did_pass = r.get(\"pass\", False)\n            triggers = r.get(\"triggers\", 0)\n            runs = r.get(\"runs\", 0)\n\n            icon = \"✓\" if did_pass else \"✗\"\n            css_class = \"pass\" if did_pass else \"fail\"\n\n            html_parts.append(f'                <td class=\"result {css_class}\">{icon}<span class=\"rate\">{triggers}/{runs}</span></td>\\n')\n\n        # Add result for each test query (with different background)\n        for qinfo in test_queries:\n            r = test_by_query.get(qinfo[\"query\"], {})\n            did_pass = r.get(\"pass\", False)\n            triggers = r.get(\"triggers\", 0)\n            runs = r.get(\"runs\", 0)\n\n            icon = \"✓\" if did_pass else \"✗\"\n            css_class = \"pass\" if did_pass else \"fail\"\n\n            html_parts.append(f'                <td class=\"result test-result {css_class}\">{icon}<span class=\"rate\">{triggers}/{runs}</span></td>\\n')\n\n        html_parts.append(\"            </tr>\\n\")\n\n    html_parts.append(\"\"\"        </tbody>\n    </table>\n    </div>\n\"\"\")\n\n    html_parts.append(\"\"\"\n</body>\n</html>\n\"\"\")\n\n    return \"\".join(html_parts)\n\n\ndef main():\n    parser = argparse.ArgumentParser(description=\"Generate HTML report from run_loop output\")\n    parser.add_argument(\"input\", help=\"Path to JSON output from run_loop.py (or - for stdin)\")\n    parser.add_argument(\"-o\", \"--output\", default=None, help=\"Output HTML file (default: stdout)\")\n    parser.add_argument(\"--skill-name\", default=\"\", help=\"Skill name to include in the report title\")\n    args = parser.parse_args()\n\n    if args.input == \"-\":\n        data = json.load(sys.stdin)\n    else:\n        data = json.loads(Path(args.input).read_text())\n\n    html_output = generate_html(data, skill_name=args.skill_name)\n\n    if args.output:\n        Path(args.output).write_text(html_output)\n        print(f\"Report written to {args.output}\", file=sys.stderr)\n    else:\n        print(html_output)\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "skills/skill-creator/scripts/improve_description.py",
    "content": "#!/usr/bin/env python3\n\"\"\"Improve a skill description based on eval results.\n\nTakes eval results (from run_eval.py) and generates an improved description\nby calling `claude -p` as a subprocess (same auth pattern as run_eval.py —\nuses the session's Claude Code auth, no separate ANTHROPIC_API_KEY needed).\n\"\"\"\n\nimport argparse\nimport json\nimport os\nimport re\nimport subprocess\nimport sys\nfrom pathlib import Path\n\nfrom scripts.utils import parse_skill_md\n\n\ndef _call_claude(prompt: str, model: str | None, timeout: int = 300) -> str:\n    \"\"\"Run `claude -p` with the prompt on stdin and return the text response.\n\n    Prompt goes over stdin (not argv) because it embeds the full SKILL.md\n    body and can easily exceed comfortable argv length.\n    \"\"\"\n    cmd = [\"claude\", \"-p\", \"--output-format\", \"text\"]\n    if model:\n        cmd.extend([\"--model\", model])\n\n    # Remove CLAUDECODE env var to allow nesting claude -p inside a\n    # Claude Code session. The guard is for interactive terminal conflicts;\n    # programmatic subprocess usage is safe. Same pattern as run_eval.py.\n    env = {k: v for k, v in os.environ.items() if k != \"CLAUDECODE\"}\n\n    result = subprocess.run(\n        cmd,\n        input=prompt,\n        capture_output=True,\n        text=True,\n        env=env,\n        timeout=timeout,\n    )\n    if result.returncode != 0:\n        raise RuntimeError(\n            f\"claude -p exited {result.returncode}\\nstderr: {result.stderr}\"\n        )\n    return result.stdout\n\n\ndef improve_description(\n    skill_name: str,\n    skill_content: str,\n    current_description: str,\n    eval_results: dict,\n    history: list[dict],\n    model: str,\n    test_results: dict | None = None,\n    log_dir: Path | None = None,\n    iteration: int | None = None,\n) -> str:\n    \"\"\"Call Claude to improve the description based on eval results.\"\"\"\n    failed_triggers = [\n        r for r in eval_results[\"results\"]\n        if r[\"should_trigger\"] and not r[\"pass\"]\n    ]\n    false_triggers = [\n        r for r in eval_results[\"results\"]\n        if not r[\"should_trigger\"] and not r[\"pass\"]\n    ]\n\n    # Build scores summary\n    train_score = f\"{eval_results['summary']['passed']}/{eval_results['summary']['total']}\"\n    if test_results:\n        test_score = f\"{test_results['summary']['passed']}/{test_results['summary']['total']}\"\n        scores_summary = f\"Train: {train_score}, Test: {test_score}\"\n    else:\n        scores_summary = f\"Train: {train_score}\"\n\n    prompt = f\"\"\"You are optimizing a skill description for a Claude Code skill called \"{skill_name}\". A \"skill\" is sort of like a prompt, but with progressive disclosure -- there's a title and description that Claude sees when deciding whether to use the skill, and then if it does use the skill, it reads the .md file which has lots more details and potentially links to other resources in the skill folder like helper files and scripts and additional documentation or examples.\n\nThe description appears in Claude's \"available_skills\" list. When a user sends a query, Claude decides whether to invoke the skill based solely on the title and on this description. Your goal is to write a description that triggers for relevant queries, and doesn't trigger for irrelevant ones.\n\nHere's the current description:\n<current_description>\n\"{current_description}\"\n</current_description>\n\nCurrent scores ({scores_summary}):\n<scores_summary>\n\"\"\"\n    if failed_triggers:\n        prompt += \"FAILED TO TRIGGER (should have triggered but didn't):\\n\"\n        for r in failed_triggers:\n            prompt += f'  - \"{r[\"query\"]}\" (triggered {r[\"triggers\"]}/{r[\"runs\"]} times)\\n'\n        prompt += \"\\n\"\n\n    if false_triggers:\n        prompt += \"FALSE TRIGGERS (triggered but shouldn't have):\\n\"\n        for r in false_triggers:\n            prompt += f'  - \"{r[\"query\"]}\" (triggered {r[\"triggers\"]}/{r[\"runs\"]} times)\\n'\n        prompt += \"\\n\"\n\n    if history:\n        prompt += \"PREVIOUS ATTEMPTS (do NOT repeat these — try something structurally different):\\n\\n\"\n        for h in history:\n            train_s = f\"{h.get('train_passed', h.get('passed', 0))}/{h.get('train_total', h.get('total', 0))}\"\n            test_s = f\"{h.get('test_passed', '?')}/{h.get('test_total', '?')}\" if h.get('test_passed') is not None else None\n            score_str = f\"train={train_s}\" + (f\", test={test_s}\" if test_s else \"\")\n            prompt += f'<attempt {score_str}>\\n'\n            prompt += f'Description: \"{h[\"description\"]}\"\\n'\n            if \"results\" in h:\n                prompt += \"Train results:\\n\"\n                for r in h[\"results\"]:\n                    status = \"PASS\" if r[\"pass\"] else \"FAIL\"\n                    prompt += f'  [{status}] \"{r[\"query\"][:80]}\" (triggered {r[\"triggers\"]}/{r[\"runs\"]})\\n'\n            if h.get(\"note\"):\n                prompt += f'Note: {h[\"note\"]}\\n'\n            prompt += \"</attempt>\\n\\n\"\n\n    prompt += f\"\"\"</scores_summary>\n\nSkill content (for context on what the skill does):\n<skill_content>\n{skill_content}\n</skill_content>\n\nBased on the failures, write a new and improved description that is more likely to trigger correctly. When I say \"based on the failures\", it's a bit of a tricky line to walk because we don't want to overfit to the specific cases you're seeing. So what I DON'T want you to do is produce an ever-expanding list of specific queries that this skill should or shouldn't trigger for. Instead, try to generalize from the failures to broader categories of user intent and situations where this skill would be useful or not useful. The reason for this is twofold:\n\n1. Avoid overfitting\n2. The list might get loooong and it's injected into ALL queries and there might be a lot of skills, so we don't want to blow too much space on any given description.\n\nConcretely, your description should not be more than about 100-200 words, even if that comes at the cost of accuracy. There is a hard limit of 1024 characters — descriptions over that will be truncated, so stay comfortably under it.\n\nHere are some tips that we've found to work well in writing these descriptions:\n- The skill should be phrased in the imperative -- \"Use this skill for\" rather than \"this skill does\"\n- The skill description should focus on the user's intent, what they are trying to achieve, vs. the implementation details of how the skill works.\n- The description competes with other skills for Claude's attention — make it distinctive and immediately recognizable.\n- If you're getting lots of failures after repeated attempts, change things up. Try different sentence structures or wordings.\n\nI'd encourage you to be creative and mix up the style in different iterations since you'll have multiple opportunities to try different approaches and we'll just grab the highest-scoring one at the end. \n\nPlease respond with only the new description text in <new_description> tags, nothing else.\"\"\"\n\n    text = _call_claude(prompt, model)\n\n    match = re.search(r\"<new_description>(.*?)</new_description>\", text, re.DOTALL)\n    description = match.group(1).strip().strip('\"') if match else text.strip().strip('\"')\n\n    transcript: dict = {\n        \"iteration\": iteration,\n        \"prompt\": prompt,\n        \"response\": text,\n        \"parsed_description\": description,\n        \"char_count\": len(description),\n        \"over_limit\": len(description) > 1024,\n    }\n\n    # Safety net: the prompt already states the 1024-char hard limit, but if\n    # the model blew past it anyway, make one fresh single-turn call that\n    # quotes the too-long version and asks for a shorter rewrite. (The old\n    # SDK path did this as a true multi-turn; `claude -p` is one-shot, so we\n    # inline the prior output into the new prompt instead.)\n    if len(description) > 1024:\n        shorten_prompt = (\n            f\"{prompt}\\n\\n\"\n            f\"---\\n\\n\"\n            f\"A previous attempt produced this description, which at \"\n            f\"{len(description)} characters is over the 1024-character hard limit:\\n\\n\"\n            f'\"{description}\"\\n\\n'\n            f\"Rewrite it to be under 1024 characters while keeping the most \"\n            f\"important trigger words and intent coverage. Respond with only \"\n            f\"the new description in <new_description> tags.\"\n        )\n        shorten_text = _call_claude(shorten_prompt, model)\n        match = re.search(r\"<new_description>(.*?)</new_description>\", shorten_text, re.DOTALL)\n        shortened = match.group(1).strip().strip('\"') if match else shorten_text.strip().strip('\"')\n\n        transcript[\"rewrite_prompt\"] = shorten_prompt\n        transcript[\"rewrite_response\"] = shorten_text\n        transcript[\"rewrite_description\"] = shortened\n        transcript[\"rewrite_char_count\"] = len(shortened)\n        description = shortened\n\n    transcript[\"final_description\"] = description\n\n    if log_dir:\n        log_dir.mkdir(parents=True, exist_ok=True)\n        log_file = log_dir / f\"improve_iter_{iteration or 'unknown'}.json\"\n        log_file.write_text(json.dumps(transcript, indent=2))\n\n    return description\n\n\ndef main():\n    parser = argparse.ArgumentParser(description=\"Improve a skill description based on eval results\")\n    parser.add_argument(\"--eval-results\", required=True, help=\"Path to eval results JSON (from run_eval.py)\")\n    parser.add_argument(\"--skill-path\", required=True, help=\"Path to skill directory\")\n    parser.add_argument(\"--history\", default=None, help=\"Path to history JSON (previous attempts)\")\n    parser.add_argument(\"--model\", required=True, help=\"Model for improvement\")\n    parser.add_argument(\"--verbose\", action=\"store_true\", help=\"Print thinking to stderr\")\n    args = parser.parse_args()\n\n    skill_path = Path(args.skill_path)\n    if not (skill_path / \"SKILL.md\").exists():\n        print(f\"Error: No SKILL.md found at {skill_path}\", file=sys.stderr)\n        sys.exit(1)\n\n    eval_results = json.loads(Path(args.eval_results).read_text())\n    history = []\n    if args.history:\n        history = json.loads(Path(args.history).read_text())\n\n    name, _, content = parse_skill_md(skill_path)\n    current_description = eval_results[\"description\"]\n\n    if args.verbose:\n        print(f\"Current: {current_description}\", file=sys.stderr)\n        print(f\"Score: {eval_results['summary']['passed']}/{eval_results['summary']['total']}\", file=sys.stderr)\n\n    new_description = improve_description(\n        skill_name=name,\n        skill_content=content,\n        current_description=current_description,\n        eval_results=eval_results,\n        history=history,\n        model=args.model,\n    )\n\n    if args.verbose:\n        print(f\"Improved: {new_description}\", file=sys.stderr)\n\n    # Output as JSON with both the new description and updated history\n    output = {\n        \"description\": new_description,\n        \"history\": history + [{\n            \"description\": current_description,\n            \"passed\": eval_results[\"summary\"][\"passed\"],\n            \"failed\": eval_results[\"summary\"][\"failed\"],\n            \"total\": eval_results[\"summary\"][\"total\"],\n            \"results\": eval_results[\"results\"],\n        }],\n    }\n    print(json.dumps(output, indent=2))\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "skills/skill-creator/scripts/package_skill.py",
    "content": "#!/usr/bin/env python3\n\"\"\"\nSkill Packager - Creates a distributable .skill file of a skill folder\n\nUsage:\n    python utils/package_skill.py <path/to/skill-folder> [output-directory]\n\nExample:\n    python utils/package_skill.py skills/public/my-skill\n    python utils/package_skill.py skills/public/my-skill ./dist\n\"\"\"\n\nimport fnmatch\nimport sys\nimport zipfile\nfrom pathlib import Path\nfrom scripts.quick_validate import validate_skill\n\n# Patterns to exclude when packaging skills.\nEXCLUDE_DIRS = {\"__pycache__\", \"node_modules\"}\nEXCLUDE_GLOBS = {\"*.pyc\"}\nEXCLUDE_FILES = {\".DS_Store\"}\n# Directories excluded only at the skill root (not when nested deeper).\nROOT_EXCLUDE_DIRS = {\"evals\"}\n\n\ndef should_exclude(rel_path: Path) -> bool:\n    \"\"\"Check if a path should be excluded from packaging.\"\"\"\n    parts = rel_path.parts\n    if any(part in EXCLUDE_DIRS for part in parts):\n        return True\n    # rel_path is relative to skill_path.parent, so parts[0] is the skill\n    # folder name and parts[1] (if present) is the first subdir.\n    if len(parts) > 1 and parts[1] in ROOT_EXCLUDE_DIRS:\n        return True\n    name = rel_path.name\n    if name in EXCLUDE_FILES:\n        return True\n    return any(fnmatch.fnmatch(name, pat) for pat in EXCLUDE_GLOBS)\n\n\ndef package_skill(skill_path, output_dir=None):\n    \"\"\"\n    Package a skill folder into a .skill file.\n\n    Args:\n        skill_path: Path to the skill folder\n        output_dir: Optional output directory for the .skill file (defaults to current directory)\n\n    Returns:\n        Path to the created .skill file, or None if error\n    \"\"\"\n    skill_path = Path(skill_path).resolve()\n\n    # Validate skill folder exists\n    if not skill_path.exists():\n        print(f\"❌ Error: Skill folder not found: {skill_path}\")\n        return None\n\n    if not skill_path.is_dir():\n        print(f\"❌ Error: Path is not a directory: {skill_path}\")\n        return None\n\n    # Validate SKILL.md exists\n    skill_md = skill_path / \"SKILL.md\"\n    if not skill_md.exists():\n        print(f\"❌ Error: SKILL.md not found in {skill_path}\")\n        return None\n\n    # Run validation before packaging\n    print(\"🔍 Validating skill...\")\n    valid, message = validate_skill(skill_path)\n    if not valid:\n        print(f\"❌ Validation failed: {message}\")\n        print(\"   Please fix the validation errors before packaging.\")\n        return None\n    print(f\"✅ {message}\\n\")\n\n    # Determine output location\n    skill_name = skill_path.name\n    if output_dir:\n        output_path = Path(output_dir).resolve()\n        output_path.mkdir(parents=True, exist_ok=True)\n    else:\n        output_path = Path.cwd()\n\n    skill_filename = output_path / f\"{skill_name}.skill\"\n\n    # Create the .skill file (zip format)\n    try:\n        with zipfile.ZipFile(skill_filename, 'w', zipfile.ZIP_DEFLATED) as zipf:\n            # Walk through the skill directory, excluding build artifacts\n            for file_path in skill_path.rglob('*'):\n                if not file_path.is_file():\n                    continue\n                arcname = file_path.relative_to(skill_path.parent)\n                if should_exclude(arcname):\n                    print(f\"  Skipped: {arcname}\")\n                    continue\n                zipf.write(file_path, arcname)\n                print(f\"  Added: {arcname}\")\n\n        print(f\"\\n✅ Successfully packaged skill to: {skill_filename}\")\n        return skill_filename\n\n    except Exception as e:\n        print(f\"❌ Error creating .skill file: {e}\")\n        return None\n\n\ndef main():\n    if len(sys.argv) < 2:\n        print(\"Usage: python utils/package_skill.py <path/to/skill-folder> [output-directory]\")\n        print(\"\\nExample:\")\n        print(\"  python utils/package_skill.py skills/public/my-skill\")\n        print(\"  python utils/package_skill.py skills/public/my-skill ./dist\")\n        sys.exit(1)\n\n    skill_path = sys.argv[1]\n    output_dir = sys.argv[2] if len(sys.argv) > 2 else None\n\n    print(f\"📦 Packaging skill: {skill_path}\")\n    if output_dir:\n        print(f\"   Output directory: {output_dir}\")\n    print()\n\n    result = package_skill(skill_path, output_dir)\n\n    if result:\n        sys.exit(0)\n    else:\n        sys.exit(1)\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "skills/skill-creator/scripts/quick_validate.py",
    "content": "#!/usr/bin/env python3\n\"\"\"\nQuick validation script for skills - minimal version\n\"\"\"\n\nimport sys\nimport os\nimport re\nimport yaml\nfrom pathlib import Path\n\ndef validate_skill(skill_path):\n    \"\"\"Basic validation of a skill\"\"\"\n    skill_path = Path(skill_path)\n\n    # Check SKILL.md exists\n    skill_md = skill_path / 'SKILL.md'\n    if not skill_md.exists():\n        return False, \"SKILL.md not found\"\n\n    # Read and validate frontmatter\n    content = skill_md.read_text()\n    if not content.startswith('---'):\n        return False, \"No YAML frontmatter found\"\n\n    # Extract frontmatter\n    match = re.match(r'^---\\n(.*?)\\n---', content, re.DOTALL)\n    if not match:\n        return False, \"Invalid frontmatter format\"\n\n    frontmatter_text = match.group(1)\n\n    # Parse YAML frontmatter\n    try:\n        frontmatter = yaml.safe_load(frontmatter_text)\n        if not isinstance(frontmatter, dict):\n            return False, \"Frontmatter must be a YAML dictionary\"\n    except yaml.YAMLError as e:\n        return False, f\"Invalid YAML in frontmatter: {e}\"\n\n    # Define allowed properties\n    ALLOWED_PROPERTIES = {'name', 'description', 'license', 'allowed-tools', 'metadata', 'compatibility'}\n\n    # Check for unexpected properties (excluding nested keys under metadata)\n    unexpected_keys = set(frontmatter.keys()) - ALLOWED_PROPERTIES\n    if unexpected_keys:\n        return False, (\n            f\"Unexpected key(s) in SKILL.md frontmatter: {', '.join(sorted(unexpected_keys))}. \"\n            f\"Allowed properties are: {', '.join(sorted(ALLOWED_PROPERTIES))}\"\n        )\n\n    # Check required fields\n    if 'name' not in frontmatter:\n        return False, \"Missing 'name' in frontmatter\"\n    if 'description' not in frontmatter:\n        return False, \"Missing 'description' in frontmatter\"\n\n    # Extract name for validation\n    name = frontmatter.get('name', '')\n    if not isinstance(name, str):\n        return False, f\"Name must be a string, got {type(name).__name__}\"\n    name = name.strip()\n    if name:\n        # Check naming convention (kebab-case: lowercase with hyphens)\n        if not re.match(r'^[a-z0-9-]+$', name):\n            return False, f\"Name '{name}' should be kebab-case (lowercase letters, digits, and hyphens only)\"\n        if name.startswith('-') or name.endswith('-') or '--' in name:\n            return False, f\"Name '{name}' cannot start/end with hyphen or contain consecutive hyphens\"\n        # Check name length (max 64 characters per spec)\n        if len(name) > 64:\n            return False, f\"Name is too long ({len(name)} characters). Maximum is 64 characters.\"\n\n    # Extract and validate description\n    description = frontmatter.get('description', '')\n    if not isinstance(description, str):\n        return False, f\"Description must be a string, got {type(description).__name__}\"\n    description = description.strip()\n    if description:\n        # Check for angle brackets\n        if '<' in description or '>' in description:\n            return False, \"Description cannot contain angle brackets (< or >)\"\n        # Check description length (max 1024 characters per spec)\n        if len(description) > 1024:\n            return False, f\"Description is too long ({len(description)} characters). Maximum is 1024 characters.\"\n\n    # Validate compatibility field if present (optional)\n    compatibility = frontmatter.get('compatibility', '')\n    if compatibility:\n        if not isinstance(compatibility, str):\n            return False, f\"Compatibility must be a string, got {type(compatibility).__name__}\"\n        if len(compatibility) > 500:\n            return False, f\"Compatibility is too long ({len(compatibility)} characters). Maximum is 500 characters.\"\n\n    return True, \"Skill is valid!\"\n\nif __name__ == \"__main__\":\n    if len(sys.argv) != 2:\n        print(\"Usage: python quick_validate.py <skill_directory>\")\n        sys.exit(1)\n    \n    valid, message = validate_skill(sys.argv[1])\n    print(message)\n    sys.exit(0 if valid else 1)"
  },
  {
    "path": "skills/skill-creator/scripts/run_eval.py",
    "content": "#!/usr/bin/env python3\n\"\"\"Run trigger evaluation for a skill description.\n\nTests whether a skill's description causes Claude to trigger (read the skill)\nfor a set of queries. Outputs results as JSON.\n\"\"\"\n\nimport argparse\nimport json\nimport os\nimport select\nimport subprocess\nimport sys\nimport time\nimport uuid\nfrom concurrent.futures import ProcessPoolExecutor, as_completed\nfrom pathlib import Path\n\nfrom scripts.utils import parse_skill_md\n\n\ndef find_project_root() -> Path:\n    \"\"\"Find the project root by walking up from cwd looking for .claude/.\n\n    Mimics how Claude Code discovers its project root, so the command file\n    we create ends up where claude -p will look for it.\n    \"\"\"\n    current = Path.cwd()\n    for parent in [current, *current.parents]:\n        if (parent / \".claude\").is_dir():\n            return parent\n    return current\n\n\ndef run_single_query(\n    query: str,\n    skill_name: str,\n    skill_description: str,\n    timeout: int,\n    project_root: str,\n    model: str | None = None,\n) -> bool:\n    \"\"\"Run a single query and return whether the skill was triggered.\n\n    Creates a command file in .claude/commands/ so it appears in Claude's\n    available_skills list, then runs `claude -p` with the raw query.\n    Uses --include-partial-messages to detect triggering early from\n    stream events (content_block_start) rather than waiting for the\n    full assistant message, which only arrives after tool execution.\n    \"\"\"\n    unique_id = uuid.uuid4().hex[:8]\n    clean_name = f\"{skill_name}-skill-{unique_id}\"\n    project_commands_dir = Path(project_root) / \".claude\" / \"commands\"\n    command_file = project_commands_dir / f\"{clean_name}.md\"\n\n    try:\n        project_commands_dir.mkdir(parents=True, exist_ok=True)\n        # Use YAML block scalar to avoid breaking on quotes in description\n        indented_desc = \"\\n  \".join(skill_description.split(\"\\n\"))\n        command_content = (\n            f\"---\\n\"\n            f\"description: |\\n\"\n            f\"  {indented_desc}\\n\"\n            f\"---\\n\\n\"\n            f\"# {skill_name}\\n\\n\"\n            f\"This skill handles: {skill_description}\\n\"\n        )\n        command_file.write_text(command_content)\n\n        cmd = [\n            \"claude\",\n            \"-p\", query,\n            \"--output-format\", \"stream-json\",\n            \"--verbose\",\n            \"--include-partial-messages\",\n        ]\n        if model:\n            cmd.extend([\"--model\", model])\n\n        # Remove CLAUDECODE env var to allow nesting claude -p inside a\n        # Claude Code session. The guard is for interactive terminal conflicts;\n        # programmatic subprocess usage is safe.\n        env = {k: v for k, v in os.environ.items() if k != \"CLAUDECODE\"}\n\n        process = subprocess.Popen(\n            cmd,\n            stdout=subprocess.PIPE,\n            stderr=subprocess.DEVNULL,\n            cwd=project_root,\n            env=env,\n        )\n\n        triggered = False\n        start_time = time.time()\n        buffer = \"\"\n        # Track state for stream event detection\n        pending_tool_name = None\n        accumulated_json = \"\"\n\n        try:\n            while time.time() - start_time < timeout:\n                if process.poll() is not None:\n                    remaining = process.stdout.read()\n                    if remaining:\n                        buffer += remaining.decode(\"utf-8\", errors=\"replace\")\n                    break\n\n                ready, _, _ = select.select([process.stdout], [], [], 1.0)\n                if not ready:\n                    continue\n\n                chunk = os.read(process.stdout.fileno(), 8192)\n                if not chunk:\n                    break\n                buffer += chunk.decode(\"utf-8\", errors=\"replace\")\n\n                while \"\\n\" in buffer:\n                    line, buffer = buffer.split(\"\\n\", 1)\n                    line = line.strip()\n                    if not line:\n                        continue\n\n                    try:\n                        event = json.loads(line)\n                    except json.JSONDecodeError:\n                        continue\n\n                    # Early detection via stream events\n                    if event.get(\"type\") == \"stream_event\":\n                        se = event.get(\"event\", {})\n                        se_type = se.get(\"type\", \"\")\n\n                        if se_type == \"content_block_start\":\n                            cb = se.get(\"content_block\", {})\n                            if cb.get(\"type\") == \"tool_use\":\n                                tool_name = cb.get(\"name\", \"\")\n                                if tool_name in (\"Skill\", \"Read\"):\n                                    pending_tool_name = tool_name\n                                    accumulated_json = \"\"\n                                else:\n                                    return False\n\n                        elif se_type == \"content_block_delta\" and pending_tool_name:\n                            delta = se.get(\"delta\", {})\n                            if delta.get(\"type\") == \"input_json_delta\":\n                                accumulated_json += delta.get(\"partial_json\", \"\")\n                                if clean_name in accumulated_json:\n                                    return True\n\n                        elif se_type in (\"content_block_stop\", \"message_stop\"):\n                            if pending_tool_name:\n                                return clean_name in accumulated_json\n                            if se_type == \"message_stop\":\n                                return False\n\n                    # Fallback: full assistant message\n                    elif event.get(\"type\") == \"assistant\":\n                        message = event.get(\"message\", {})\n                        for content_item in message.get(\"content\", []):\n                            if content_item.get(\"type\") != \"tool_use\":\n                                continue\n                            tool_name = content_item.get(\"name\", \"\")\n                            tool_input = content_item.get(\"input\", {})\n                            if tool_name == \"Skill\" and clean_name in tool_input.get(\"skill\", \"\"):\n                                triggered = True\n                            elif tool_name == \"Read\" and clean_name in tool_input.get(\"file_path\", \"\"):\n                                triggered = True\n                            return triggered\n\n                    elif event.get(\"type\") == \"result\":\n                        return triggered\n        finally:\n            # Clean up process on any exit path (return, exception, timeout)\n            if process.poll() is None:\n                process.kill()\n                process.wait()\n\n        return triggered\n    finally:\n        if command_file.exists():\n            command_file.unlink()\n\n\ndef run_eval(\n    eval_set: list[dict],\n    skill_name: str,\n    description: str,\n    num_workers: int,\n    timeout: int,\n    project_root: Path,\n    runs_per_query: int = 1,\n    trigger_threshold: float = 0.5,\n    model: str | None = None,\n) -> dict:\n    \"\"\"Run the full eval set and return results.\"\"\"\n    results = []\n\n    with ProcessPoolExecutor(max_workers=num_workers) as executor:\n        future_to_info = {}\n        for item in eval_set:\n            for run_idx in range(runs_per_query):\n                future = executor.submit(\n                    run_single_query,\n                    item[\"query\"],\n                    skill_name,\n                    description,\n                    timeout,\n                    str(project_root),\n                    model,\n                )\n                future_to_info[future] = (item, run_idx)\n\n        query_triggers: dict[str, list[bool]] = {}\n        query_items: dict[str, dict] = {}\n        for future in as_completed(future_to_info):\n            item, _ = future_to_info[future]\n            query = item[\"query\"]\n            query_items[query] = item\n            if query not in query_triggers:\n                query_triggers[query] = []\n            try:\n                query_triggers[query].append(future.result())\n            except Exception as e:\n                print(f\"Warning: query failed: {e}\", file=sys.stderr)\n                query_triggers[query].append(False)\n\n    for query, triggers in query_triggers.items():\n        item = query_items[query]\n        trigger_rate = sum(triggers) / len(triggers)\n        should_trigger = item[\"should_trigger\"]\n        if should_trigger:\n            did_pass = trigger_rate >= trigger_threshold\n        else:\n            did_pass = trigger_rate < trigger_threshold\n        results.append({\n            \"query\": query,\n            \"should_trigger\": should_trigger,\n            \"trigger_rate\": trigger_rate,\n            \"triggers\": sum(triggers),\n            \"runs\": len(triggers),\n            \"pass\": did_pass,\n        })\n\n    passed = sum(1 for r in results if r[\"pass\"])\n    total = len(results)\n\n    return {\n        \"skill_name\": skill_name,\n        \"description\": description,\n        \"results\": results,\n        \"summary\": {\n            \"total\": total,\n            \"passed\": passed,\n            \"failed\": total - passed,\n        },\n    }\n\n\ndef main():\n    parser = argparse.ArgumentParser(description=\"Run trigger evaluation for a skill description\")\n    parser.add_argument(\"--eval-set\", required=True, help=\"Path to eval set JSON file\")\n    parser.add_argument(\"--skill-path\", required=True, help=\"Path to skill directory\")\n    parser.add_argument(\"--description\", default=None, help=\"Override description to test\")\n    parser.add_argument(\"--num-workers\", type=int, default=10, help=\"Number of parallel workers\")\n    parser.add_argument(\"--timeout\", type=int, default=30, help=\"Timeout per query in seconds\")\n    parser.add_argument(\"--runs-per-query\", type=int, default=3, help=\"Number of runs per query\")\n    parser.add_argument(\"--trigger-threshold\", type=float, default=0.5, help=\"Trigger rate threshold\")\n    parser.add_argument(\"--model\", default=None, help=\"Model to use for claude -p (default: user's configured model)\")\n    parser.add_argument(\"--verbose\", action=\"store_true\", help=\"Print progress to stderr\")\n    args = parser.parse_args()\n\n    eval_set = json.loads(Path(args.eval_set).read_text())\n    skill_path = Path(args.skill_path)\n\n    if not (skill_path / \"SKILL.md\").exists():\n        print(f\"Error: No SKILL.md found at {skill_path}\", file=sys.stderr)\n        sys.exit(1)\n\n    name, original_description, content = parse_skill_md(skill_path)\n    description = args.description or original_description\n    project_root = find_project_root()\n\n    if args.verbose:\n        print(f\"Evaluating: {description}\", file=sys.stderr)\n\n    output = run_eval(\n        eval_set=eval_set,\n        skill_name=name,\n        description=description,\n        num_workers=args.num_workers,\n        timeout=args.timeout,\n        project_root=project_root,\n        runs_per_query=args.runs_per_query,\n        trigger_threshold=args.trigger_threshold,\n        model=args.model,\n    )\n\n    if args.verbose:\n        summary = output[\"summary\"]\n        print(f\"Results: {summary['passed']}/{summary['total']} passed\", file=sys.stderr)\n        for r in output[\"results\"]:\n            status = \"PASS\" if r[\"pass\"] else \"FAIL\"\n            rate_str = f\"{r['triggers']}/{r['runs']}\"\n            print(f\"  [{status}] rate={rate_str} expected={r['should_trigger']}: {r['query'][:70]}\", file=sys.stderr)\n\n    print(json.dumps(output, indent=2))\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "skills/skill-creator/scripts/run_loop.py",
    "content": "#!/usr/bin/env python3\n\"\"\"Run the eval + improve loop until all pass or max iterations reached.\n\nCombines run_eval.py and improve_description.py in a loop, tracking history\nand returning the best description found. Supports train/test split to prevent\noverfitting.\n\"\"\"\n\nimport argparse\nimport json\nimport random\nimport sys\nimport tempfile\nimport time\nimport webbrowser\nfrom pathlib import Path\n\nfrom scripts.generate_report import generate_html\nfrom scripts.improve_description import improve_description\nfrom scripts.run_eval import find_project_root, run_eval\nfrom scripts.utils import parse_skill_md\n\n\ndef split_eval_set(eval_set: list[dict], holdout: float, seed: int = 42) -> tuple[list[dict], list[dict]]:\n    \"\"\"Split eval set into train and test sets, stratified by should_trigger.\"\"\"\n    random.seed(seed)\n\n    # Separate by should_trigger\n    trigger = [e for e in eval_set if e[\"should_trigger\"]]\n    no_trigger = [e for e in eval_set if not e[\"should_trigger\"]]\n\n    # Shuffle each group\n    random.shuffle(trigger)\n    random.shuffle(no_trigger)\n\n    # Calculate split points\n    n_trigger_test = max(1, int(len(trigger) * holdout))\n    n_no_trigger_test = max(1, int(len(no_trigger) * holdout))\n\n    # Split\n    test_set = trigger[:n_trigger_test] + no_trigger[:n_no_trigger_test]\n    train_set = trigger[n_trigger_test:] + no_trigger[n_no_trigger_test:]\n\n    return train_set, test_set\n\n\ndef run_loop(\n    eval_set: list[dict],\n    skill_path: Path,\n    description_override: str | None,\n    num_workers: int,\n    timeout: int,\n    max_iterations: int,\n    runs_per_query: int,\n    trigger_threshold: float,\n    holdout: float,\n    model: str,\n    verbose: bool,\n    live_report_path: Path | None = None,\n    log_dir: Path | None = None,\n) -> dict:\n    \"\"\"Run the eval + improvement loop.\"\"\"\n    project_root = find_project_root()\n    name, original_description, content = parse_skill_md(skill_path)\n    current_description = description_override or original_description\n\n    # Split into train/test if holdout > 0\n    if holdout > 0:\n        train_set, test_set = split_eval_set(eval_set, holdout)\n        if verbose:\n            print(f\"Split: {len(train_set)} train, {len(test_set)} test (holdout={holdout})\", file=sys.stderr)\n    else:\n        train_set = eval_set\n        test_set = []\n\n    history = []\n    exit_reason = \"unknown\"\n\n    for iteration in range(1, max_iterations + 1):\n        if verbose:\n            print(f\"\\n{'='*60}\", file=sys.stderr)\n            print(f\"Iteration {iteration}/{max_iterations}\", file=sys.stderr)\n            print(f\"Description: {current_description}\", file=sys.stderr)\n            print(f\"{'='*60}\", file=sys.stderr)\n\n        # Evaluate train + test together in one batch for parallelism\n        all_queries = train_set + test_set\n        t0 = time.time()\n        all_results = run_eval(\n            eval_set=all_queries,\n            skill_name=name,\n            description=current_description,\n            num_workers=num_workers,\n            timeout=timeout,\n            project_root=project_root,\n            runs_per_query=runs_per_query,\n            trigger_threshold=trigger_threshold,\n            model=model,\n        )\n        eval_elapsed = time.time() - t0\n\n        # Split results back into train/test by matching queries\n        train_queries_set = {q[\"query\"] for q in train_set}\n        train_result_list = [r for r in all_results[\"results\"] if r[\"query\"] in train_queries_set]\n        test_result_list = [r for r in all_results[\"results\"] if r[\"query\"] not in train_queries_set]\n\n        train_passed = sum(1 for r in train_result_list if r[\"pass\"])\n        train_total = len(train_result_list)\n        train_summary = {\"passed\": train_passed, \"failed\": train_total - train_passed, \"total\": train_total}\n        train_results = {\"results\": train_result_list, \"summary\": train_summary}\n\n        if test_set:\n            test_passed = sum(1 for r in test_result_list if r[\"pass\"])\n            test_total = len(test_result_list)\n            test_summary = {\"passed\": test_passed, \"failed\": test_total - test_passed, \"total\": test_total}\n            test_results = {\"results\": test_result_list, \"summary\": test_summary}\n        else:\n            test_results = None\n            test_summary = None\n\n        history.append({\n            \"iteration\": iteration,\n            \"description\": current_description,\n            \"train_passed\": train_summary[\"passed\"],\n            \"train_failed\": train_summary[\"failed\"],\n            \"train_total\": train_summary[\"total\"],\n            \"train_results\": train_results[\"results\"],\n            \"test_passed\": test_summary[\"passed\"] if test_summary else None,\n            \"test_failed\": test_summary[\"failed\"] if test_summary else None,\n            \"test_total\": test_summary[\"total\"] if test_summary else None,\n            \"test_results\": test_results[\"results\"] if test_results else None,\n            # For backward compat with report generator\n            \"passed\": train_summary[\"passed\"],\n            \"failed\": train_summary[\"failed\"],\n            \"total\": train_summary[\"total\"],\n            \"results\": train_results[\"results\"],\n        })\n\n        # Write live report if path provided\n        if live_report_path:\n            partial_output = {\n                \"original_description\": original_description,\n                \"best_description\": current_description,\n                \"best_score\": \"in progress\",\n                \"iterations_run\": len(history),\n                \"holdout\": holdout,\n                \"train_size\": len(train_set),\n                \"test_size\": len(test_set),\n                \"history\": history,\n            }\n            live_report_path.write_text(generate_html(partial_output, auto_refresh=True, skill_name=name))\n\n        if verbose:\n            def print_eval_stats(label, results, elapsed):\n                pos = [r for r in results if r[\"should_trigger\"]]\n                neg = [r for r in results if not r[\"should_trigger\"]]\n                tp = sum(r[\"triggers\"] for r in pos)\n                pos_runs = sum(r[\"runs\"] for r in pos)\n                fn = pos_runs - tp\n                fp = sum(r[\"triggers\"] for r in neg)\n                neg_runs = sum(r[\"runs\"] for r in neg)\n                tn = neg_runs - fp\n                total = tp + tn + fp + fn\n                precision = tp / (tp + fp) if (tp + fp) > 0 else 1.0\n                recall = tp / (tp + fn) if (tp + fn) > 0 else 1.0\n                accuracy = (tp + tn) / total if total > 0 else 0.0\n                print(f\"{label}: {tp+tn}/{total} correct, precision={precision:.0%} recall={recall:.0%} accuracy={accuracy:.0%} ({elapsed:.1f}s)\", file=sys.stderr)\n                for r in results:\n                    status = \"PASS\" if r[\"pass\"] else \"FAIL\"\n                    rate_str = f\"{r['triggers']}/{r['runs']}\"\n                    print(f\"  [{status}] rate={rate_str} expected={r['should_trigger']}: {r['query'][:60]}\", file=sys.stderr)\n\n            print_eval_stats(\"Train\", train_results[\"results\"], eval_elapsed)\n            if test_summary:\n                print_eval_stats(\"Test \", test_results[\"results\"], 0)\n\n        if train_summary[\"failed\"] == 0:\n            exit_reason = f\"all_passed (iteration {iteration})\"\n            if verbose:\n                print(f\"\\nAll train queries passed on iteration {iteration}!\", file=sys.stderr)\n            break\n\n        if iteration == max_iterations:\n            exit_reason = f\"max_iterations ({max_iterations})\"\n            if verbose:\n                print(f\"\\nMax iterations reached ({max_iterations}).\", file=sys.stderr)\n            break\n\n        # Improve the description based on train results\n        if verbose:\n            print(f\"\\nImproving description...\", file=sys.stderr)\n\n        t0 = time.time()\n        # Strip test scores from history so improvement model can't see them\n        blinded_history = [\n            {k: v for k, v in h.items() if not k.startswith(\"test_\")}\n            for h in history\n        ]\n        new_description = improve_description(\n            skill_name=name,\n            skill_content=content,\n            current_description=current_description,\n            eval_results=train_results,\n            history=blinded_history,\n            model=model,\n            log_dir=log_dir,\n            iteration=iteration,\n        )\n        improve_elapsed = time.time() - t0\n\n        if verbose:\n            print(f\"Proposed ({improve_elapsed:.1f}s): {new_description}\", file=sys.stderr)\n\n        current_description = new_description\n\n    # Find the best iteration by TEST score (or train if no test set)\n    if test_set:\n        best = max(history, key=lambda h: h[\"test_passed\"] or 0)\n        best_score = f\"{best['test_passed']}/{best['test_total']}\"\n    else:\n        best = max(history, key=lambda h: h[\"train_passed\"])\n        best_score = f\"{best['train_passed']}/{best['train_total']}\"\n\n    if verbose:\n        print(f\"\\nExit reason: {exit_reason}\", file=sys.stderr)\n        print(f\"Best score: {best_score} (iteration {best['iteration']})\", file=sys.stderr)\n\n    return {\n        \"exit_reason\": exit_reason,\n        \"original_description\": original_description,\n        \"best_description\": best[\"description\"],\n        \"best_score\": best_score,\n        \"best_train_score\": f\"{best['train_passed']}/{best['train_total']}\",\n        \"best_test_score\": f\"{best['test_passed']}/{best['test_total']}\" if test_set else None,\n        \"final_description\": current_description,\n        \"iterations_run\": len(history),\n        \"holdout\": holdout,\n        \"train_size\": len(train_set),\n        \"test_size\": len(test_set),\n        \"history\": history,\n    }\n\n\ndef main():\n    parser = argparse.ArgumentParser(description=\"Run eval + improve loop\")\n    parser.add_argument(\"--eval-set\", required=True, help=\"Path to eval set JSON file\")\n    parser.add_argument(\"--skill-path\", required=True, help=\"Path to skill directory\")\n    parser.add_argument(\"--description\", default=None, help=\"Override starting description\")\n    parser.add_argument(\"--num-workers\", type=int, default=10, help=\"Number of parallel workers\")\n    parser.add_argument(\"--timeout\", type=int, default=30, help=\"Timeout per query in seconds\")\n    parser.add_argument(\"--max-iterations\", type=int, default=5, help=\"Max improvement iterations\")\n    parser.add_argument(\"--runs-per-query\", type=int, default=3, help=\"Number of runs per query\")\n    parser.add_argument(\"--trigger-threshold\", type=float, default=0.5, help=\"Trigger rate threshold\")\n    parser.add_argument(\"--holdout\", type=float, default=0.4, help=\"Fraction of eval set to hold out for testing (0 to disable)\")\n    parser.add_argument(\"--model\", required=True, help=\"Model for improvement\")\n    parser.add_argument(\"--verbose\", action=\"store_true\", help=\"Print progress to stderr\")\n    parser.add_argument(\"--report\", default=\"auto\", help=\"Generate HTML report at this path (default: 'auto' for temp file, 'none' to disable)\")\n    parser.add_argument(\"--results-dir\", default=None, help=\"Save all outputs (results.json, report.html, log.txt) to a timestamped subdirectory here\")\n    args = parser.parse_args()\n\n    eval_set = json.loads(Path(args.eval_set).read_text())\n    skill_path = Path(args.skill_path)\n\n    if not (skill_path / \"SKILL.md\").exists():\n        print(f\"Error: No SKILL.md found at {skill_path}\", file=sys.stderr)\n        sys.exit(1)\n\n    name, _, _ = parse_skill_md(skill_path)\n\n    # Set up live report path\n    if args.report != \"none\":\n        if args.report == \"auto\":\n            timestamp = time.strftime(\"%Y%m%d_%H%M%S\")\n            live_report_path = Path(tempfile.gettempdir()) / f\"skill_description_report_{skill_path.name}_{timestamp}.html\"\n        else:\n            live_report_path = Path(args.report)\n        # Open the report immediately so the user can watch\n        live_report_path.write_text(\"<html><body><h1>Starting optimization loop...</h1><meta http-equiv='refresh' content='5'></body></html>\")\n        webbrowser.open(str(live_report_path))\n    else:\n        live_report_path = None\n\n    # Determine output directory (create before run_loop so logs can be written)\n    if args.results_dir:\n        timestamp = time.strftime(\"%Y-%m-%d_%H%M%S\")\n        results_dir = Path(args.results_dir) / timestamp\n        results_dir.mkdir(parents=True, exist_ok=True)\n    else:\n        results_dir = None\n\n    log_dir = results_dir / \"logs\" if results_dir else None\n\n    output = run_loop(\n        eval_set=eval_set,\n        skill_path=skill_path,\n        description_override=args.description,\n        num_workers=args.num_workers,\n        timeout=args.timeout,\n        max_iterations=args.max_iterations,\n        runs_per_query=args.runs_per_query,\n        trigger_threshold=args.trigger_threshold,\n        holdout=args.holdout,\n        model=args.model,\n        verbose=args.verbose,\n        live_report_path=live_report_path,\n        log_dir=log_dir,\n    )\n\n    # Save JSON output\n    json_output = json.dumps(output, indent=2)\n    print(json_output)\n    if results_dir:\n        (results_dir / \"results.json\").write_text(json_output)\n\n    # Write final HTML report (without auto-refresh)\n    if live_report_path:\n        live_report_path.write_text(generate_html(output, auto_refresh=False, skill_name=name))\n        print(f\"\\nReport: {live_report_path}\", file=sys.stderr)\n\n    if results_dir and live_report_path:\n        (results_dir / \"report.html\").write_text(generate_html(output, auto_refresh=False, skill_name=name))\n\n    if results_dir:\n        print(f\"Results saved to: {results_dir}\", file=sys.stderr)\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "skills/skill-creator/scripts/utils.py",
    "content": "\"\"\"Shared utilities for skill-creator scripts.\"\"\"\n\nfrom pathlib import Path\n\n\n\ndef parse_skill_md(skill_path: Path) -> tuple[str, str, str]:\n    \"\"\"Parse a SKILL.md file, returning (name, description, full_content).\"\"\"\n    content = (skill_path / \"SKILL.md\").read_text()\n    lines = content.split(\"\\n\")\n\n    if lines[0].strip() != \"---\":\n        raise ValueError(\"SKILL.md missing frontmatter (no opening ---)\")\n\n    end_idx = None\n    for i, line in enumerate(lines[1:], start=1):\n        if line.strip() == \"---\":\n            end_idx = i\n            break\n\n    if end_idx is None:\n        raise ValueError(\"SKILL.md missing frontmatter (no closing ---)\")\n\n    name = \"\"\n    description = \"\"\n    frontmatter_lines = lines[1:end_idx]\n    i = 0\n    while i < len(frontmatter_lines):\n        line = frontmatter_lines[i]\n        if line.startswith(\"name:\"):\n            name = line[len(\"name:\"):].strip().strip('\"').strip(\"'\")\n        elif line.startswith(\"description:\"):\n            value = line[len(\"description:\"):].strip()\n            # Handle YAML multiline indicators (>, |, >-, |-)\n            if value in (\">\", \"|\", \">-\", \"|-\"):\n                continuation_lines: list[str] = []\n                i += 1\n                while i < len(frontmatter_lines) and (frontmatter_lines[i].startswith(\"  \") or frontmatter_lines[i].startswith(\"\\t\")):\n                    continuation_lines.append(frontmatter_lines[i].strip())\n                    i += 1\n                description = \" \".join(continuation_lines)\n                continue\n            else:\n                description = value.strip('\"').strip(\"'\")\n        i += 1\n\n    return name, description, content\n"
  },
  {
    "path": "skills/slack-gif-creator/LICENSE.txt",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License."
  },
  {
    "path": "skills/slack-gif-creator/SKILL.md",
    "content": "---\nname: slack-gif-creator\ndescription: Knowledge and utilities for creating animated GIFs optimized for Slack. Provides constraints, validation tools, and animation concepts. Use when users request animated GIFs for Slack like \"make me a GIF of X doing Y for Slack.\"\nlicense: Complete terms in LICENSE.txt\n---\n\n# Slack GIF Creator\n\nA toolkit providing utilities and knowledge for creating animated GIFs optimized for Slack.\n\n## Slack Requirements\n\n**Dimensions:**\n- Emoji GIFs: 128x128 (recommended)\n- Message GIFs: 480x480\n\n**Parameters:**\n- FPS: 10-30 (lower is smaller file size)\n- Colors: 48-128 (fewer = smaller file size)\n- Duration: Keep under 3 seconds for emoji GIFs\n\n## Core Workflow\n\n```python\nfrom core.gif_builder import GIFBuilder\nfrom PIL import Image, ImageDraw\n\n# 1. Create builder\nbuilder = GIFBuilder(width=128, height=128, fps=10)\n\n# 2. Generate frames\nfor i in range(12):\n    frame = Image.new('RGB', (128, 128), (240, 248, 255))\n    draw = ImageDraw.Draw(frame)\n\n    # Draw your animation using PIL primitives\n    # (circles, polygons, lines, etc.)\n\n    builder.add_frame(frame)\n\n# 3. Save with optimization\nbuilder.save('output.gif', num_colors=48, optimize_for_emoji=True)\n```\n\n## Drawing Graphics\n\n### Working with User-Uploaded Images\nIf a user uploads an image, consider whether they want to:\n- **Use it directly** (e.g., \"animate this\", \"split this into frames\")\n- **Use it as inspiration** (e.g., \"make something like this\")\n\nLoad and work with images using PIL:\n```python\nfrom PIL import Image\n\nuploaded = Image.open('file.png')\n# Use directly, or just as reference for colors/style\n```\n\n### Drawing from Scratch\nWhen drawing graphics from scratch, use PIL ImageDraw primitives:\n\n```python\nfrom PIL import ImageDraw\n\ndraw = ImageDraw.Draw(frame)\n\n# Circles/ovals\ndraw.ellipse([x1, y1, x2, y2], fill=(r, g, b), outline=(r, g, b), width=3)\n\n# Stars, triangles, any polygon\npoints = [(x1, y1), (x2, y2), (x3, y3), ...]\ndraw.polygon(points, fill=(r, g, b), outline=(r, g, b), width=3)\n\n# Lines\ndraw.line([(x1, y1), (x2, y2)], fill=(r, g, b), width=5)\n\n# Rectangles\ndraw.rectangle([x1, y1, x2, y2], fill=(r, g, b), outline=(r, g, b), width=3)\n```\n\n**Don't use:** Emoji fonts (unreliable across platforms) or assume pre-packaged graphics exist in this skill.\n\n### Making Graphics Look Good\n\nGraphics should look polished and creative, not basic. Here's how:\n\n**Use thicker lines** - Always set `width=2` or higher for outlines and lines. Thin lines (width=1) look choppy and amateurish.\n\n**Add visual depth**:\n- Use gradients for backgrounds (`create_gradient_background`)\n- Layer multiple shapes for complexity (e.g., a star with a smaller star inside)\n\n**Make shapes more interesting**:\n- Don't just draw a plain circle - add highlights, rings, or patterns\n- Stars can have glows (draw larger, semi-transparent versions behind)\n- Combine multiple shapes (stars + sparkles, circles + rings)\n\n**Pay attention to colors**:\n- Use vibrant, complementary colors\n- Add contrast (dark outlines on light shapes, light outlines on dark shapes)\n- Consider the overall composition\n\n**For complex shapes** (hearts, snowflakes, etc.):\n- Use combinations of polygons and ellipses\n- Calculate points carefully for symmetry\n- Add details (a heart can have a highlight curve, snowflakes have intricate branches)\n\nBe creative and detailed! A good Slack GIF should look polished, not like placeholder graphics.\n\n## Available Utilities\n\n### GIFBuilder (`core.gif_builder`)\nAssembles frames and optimizes for Slack:\n```python\nbuilder = GIFBuilder(width=128, height=128, fps=10)\nbuilder.add_frame(frame)  # Add PIL Image\nbuilder.add_frames(frames)  # Add list of frames\nbuilder.save('out.gif', num_colors=48, optimize_for_emoji=True, remove_duplicates=True)\n```\n\n### Validators (`core.validators`)\nCheck if GIF meets Slack requirements:\n```python\nfrom core.validators import validate_gif, is_slack_ready\n\n# Detailed validation\npasses, info = validate_gif('my.gif', is_emoji=True, verbose=True)\n\n# Quick check\nif is_slack_ready('my.gif'):\n    print(\"Ready!\")\n```\n\n### Easing Functions (`core.easing`)\nSmooth motion instead of linear:\n```python\nfrom core.easing import interpolate\n\n# Progress from 0.0 to 1.0\nt = i / (num_frames - 1)\n\n# Apply easing\ny = interpolate(start=0, end=400, t=t, easing='ease_out')\n\n# Available: linear, ease_in, ease_out, ease_in_out,\n#           bounce_out, elastic_out, back_out\n```\n\n### Frame Helpers (`core.frame_composer`)\nConvenience functions for common needs:\n```python\nfrom core.frame_composer import (\n    create_blank_frame,         # Solid color background\n    create_gradient_background,  # Vertical gradient\n    draw_circle,                # Helper for circles\n    draw_text,                  # Simple text rendering\n    draw_star                   # 5-pointed star\n)\n```\n\n## Animation Concepts\n\n### Shake/Vibrate\nOffset object position with oscillation:\n- Use `math.sin()` or `math.cos()` with frame index\n- Add small random variations for natural feel\n- Apply to x and/or y position\n\n### Pulse/Heartbeat\nScale object size rhythmically:\n- Use `math.sin(t * frequency * 2 * math.pi)` for smooth pulse\n- For heartbeat: two quick pulses then pause (adjust sine wave)\n- Scale between 0.8 and 1.2 of base size\n\n### Bounce\nObject falls and bounces:\n- Use `interpolate()` with `easing='bounce_out'` for landing\n- Use `easing='ease_in'` for falling (accelerating)\n- Apply gravity by increasing y velocity each frame\n\n### Spin/Rotate\nRotate object around center:\n- PIL: `image.rotate(angle, resample=Image.BICUBIC)`\n- For wobble: use sine wave for angle instead of linear\n\n### Fade In/Out\nGradually appear or disappear:\n- Create RGBA image, adjust alpha channel\n- Or use `Image.blend(image1, image2, alpha)`\n- Fade in: alpha from 0 to 1\n- Fade out: alpha from 1 to 0\n\n### Slide\nMove object from off-screen to position:\n- Start position: outside frame bounds\n- End position: target location\n- Use `interpolate()` with `easing='ease_out'` for smooth stop\n- For overshoot: use `easing='back_out'`\n\n### Zoom\nScale and position for zoom effect:\n- Zoom in: scale from 0.1 to 2.0, crop center\n- Zoom out: scale from 2.0 to 1.0\n- Can add motion blur for drama (PIL filter)\n\n### Explode/Particle Burst\nCreate particles radiating outward:\n- Generate particles with random angles and velocities\n- Update each particle: `x += vx`, `y += vy`\n- Add gravity: `vy += gravity_constant`\n- Fade out particles over time (reduce alpha)\n\n## Optimization Strategies\n\nOnly when asked to make the file size smaller, implement a few of the following methods:\n\n1. **Fewer frames** - Lower FPS (10 instead of 20) or shorter duration\n2. **Fewer colors** - `num_colors=48` instead of 128\n3. **Smaller dimensions** - 128x128 instead of 480x480\n4. **Remove duplicates** - `remove_duplicates=True` in save()\n5. **Emoji mode** - `optimize_for_emoji=True` auto-optimizes\n\n```python\n# Maximum optimization for emoji\nbuilder.save(\n    'emoji.gif',\n    num_colors=48,\n    optimize_for_emoji=True,\n    remove_duplicates=True\n)\n```\n\n## Philosophy\n\nThis skill provides:\n- **Knowledge**: Slack's requirements and animation concepts\n- **Utilities**: GIFBuilder, validators, easing functions\n- **Flexibility**: Create the animation logic using PIL primitives\n\nIt does NOT provide:\n- Rigid animation templates or pre-made functions\n- Emoji font rendering (unreliable across platforms)\n- A library of pre-packaged graphics built into the skill\n\n**Note on user uploads**: This skill doesn't include pre-built graphics, but if a user uploads an image, use PIL to load and work with it - interpret based on their request whether they want it used directly or just as inspiration.\n\nBe creative! Combine concepts (bouncing + rotating, pulsing + sliding, etc.) and use PIL's full capabilities.\n\n## Dependencies\n\n```bash\npip install pillow imageio numpy\n```\n"
  },
  {
    "path": "skills/slack-gif-creator/core/easing.py",
    "content": "#!/usr/bin/env python3\n\"\"\"\nEasing Functions - Timing functions for smooth animations.\n\nProvides various easing functions for natural motion and timing.\nAll functions take a value t (0.0 to 1.0) and return eased value (0.0 to 1.0).\n\"\"\"\n\nimport math\n\n\ndef linear(t: float) -> float:\n    \"\"\"Linear interpolation (no easing).\"\"\"\n    return t\n\n\ndef ease_in_quad(t: float) -> float:\n    \"\"\"Quadratic ease-in (slow start, accelerating).\"\"\"\n    return t * t\n\n\ndef ease_out_quad(t: float) -> float:\n    \"\"\"Quadratic ease-out (fast start, decelerating).\"\"\"\n    return t * (2 - t)\n\n\ndef ease_in_out_quad(t: float) -> float:\n    \"\"\"Quadratic ease-in-out (slow start and end).\"\"\"\n    if t < 0.5:\n        return 2 * t * t\n    return -1 + (4 - 2 * t) * t\n\n\ndef ease_in_cubic(t: float) -> float:\n    \"\"\"Cubic ease-in (slow start).\"\"\"\n    return t * t * t\n\n\ndef ease_out_cubic(t: float) -> float:\n    \"\"\"Cubic ease-out (fast start).\"\"\"\n    return (t - 1) * (t - 1) * (t - 1) + 1\n\n\ndef ease_in_out_cubic(t: float) -> float:\n    \"\"\"Cubic ease-in-out.\"\"\"\n    if t < 0.5:\n        return 4 * t * t * t\n    return (t - 1) * (2 * t - 2) * (2 * t - 2) + 1\n\n\ndef ease_in_bounce(t: float) -> float:\n    \"\"\"Bounce ease-in (bouncy start).\"\"\"\n    return 1 - ease_out_bounce(1 - t)\n\n\ndef ease_out_bounce(t: float) -> float:\n    \"\"\"Bounce ease-out (bouncy end).\"\"\"\n    if t < 1 / 2.75:\n        return 7.5625 * t * t\n    elif t < 2 / 2.75:\n        t -= 1.5 / 2.75\n        return 7.5625 * t * t + 0.75\n    elif t < 2.5 / 2.75:\n        t -= 2.25 / 2.75\n        return 7.5625 * t * t + 0.9375\n    else:\n        t -= 2.625 / 2.75\n        return 7.5625 * t * t + 0.984375\n\n\ndef ease_in_out_bounce(t: float) -> float:\n    \"\"\"Bounce ease-in-out.\"\"\"\n    if t < 0.5:\n        return ease_in_bounce(t * 2) * 0.5\n    return ease_out_bounce(t * 2 - 1) * 0.5 + 0.5\n\n\ndef ease_in_elastic(t: float) -> float:\n    \"\"\"Elastic ease-in (spring effect).\"\"\"\n    if t == 0 or t == 1:\n        return t\n    return -math.pow(2, 10 * (t - 1)) * math.sin((t - 1.1) * 5 * math.pi)\n\n\ndef ease_out_elastic(t: float) -> float:\n    \"\"\"Elastic ease-out (spring effect).\"\"\"\n    if t == 0 or t == 1:\n        return t\n    return math.pow(2, -10 * t) * math.sin((t - 0.1) * 5 * math.pi) + 1\n\n\ndef ease_in_out_elastic(t: float) -> float:\n    \"\"\"Elastic ease-in-out.\"\"\"\n    if t == 0 or t == 1:\n        return t\n    t = t * 2 - 1\n    if t < 0:\n        return -0.5 * math.pow(2, 10 * t) * math.sin((t - 0.1) * 5 * math.pi)\n    return math.pow(2, -10 * t) * math.sin((t - 0.1) * 5 * math.pi) * 0.5 + 1\n\n\n# Convenience mapping\nEASING_FUNCTIONS = {\n    \"linear\": linear,\n    \"ease_in\": ease_in_quad,\n    \"ease_out\": ease_out_quad,\n    \"ease_in_out\": ease_in_out_quad,\n    \"bounce_in\": ease_in_bounce,\n    \"bounce_out\": ease_out_bounce,\n    \"bounce\": ease_in_out_bounce,\n    \"elastic_in\": ease_in_elastic,\n    \"elastic_out\": ease_out_elastic,\n    \"elastic\": ease_in_out_elastic,\n}\n\n\ndef get_easing(name: str = \"linear\"):\n    \"\"\"Get easing function by name.\"\"\"\n    return EASING_FUNCTIONS.get(name, linear)\n\n\ndef interpolate(start: float, end: float, t: float, easing: str = \"linear\") -> float:\n    \"\"\"\n    Interpolate between two values with easing.\n\n    Args:\n        start: Start value\n        end: End value\n        t: Progress from 0.0 to 1.0\n        easing: Name of easing function\n\n    Returns:\n        Interpolated value\n    \"\"\"\n    ease_func = get_easing(easing)\n    eased_t = ease_func(t)\n    return start + (end - start) * eased_t\n\n\ndef ease_back_in(t: float) -> float:\n    \"\"\"Back ease-in (slight overshoot backward before forward motion).\"\"\"\n    c1 = 1.70158\n    c3 = c1 + 1\n    return c3 * t * t * t - c1 * t * t\n\n\ndef ease_back_out(t: float) -> float:\n    \"\"\"Back ease-out (overshoot forward then settle back).\"\"\"\n    c1 = 1.70158\n    c3 = c1 + 1\n    return 1 + c3 * pow(t - 1, 3) + c1 * pow(t - 1, 2)\n\n\ndef ease_back_in_out(t: float) -> float:\n    \"\"\"Back ease-in-out (overshoot at both ends).\"\"\"\n    c1 = 1.70158\n    c2 = c1 * 1.525\n    if t < 0.5:\n        return (pow(2 * t, 2) * ((c2 + 1) * 2 * t - c2)) / 2\n    return (pow(2 * t - 2, 2) * ((c2 + 1) * (t * 2 - 2) + c2) + 2) / 2\n\n\ndef apply_squash_stretch(\n    base_scale: tuple[float, float], intensity: float, direction: str = \"vertical\"\n) -> tuple[float, float]:\n    \"\"\"\n    Calculate squash and stretch scales for more dynamic animation.\n\n    Args:\n        base_scale: (width_scale, height_scale) base scales\n        intensity: Squash/stretch intensity (0.0-1.0)\n        direction: 'vertical', 'horizontal', or 'both'\n\n    Returns:\n        (width_scale, height_scale) with squash/stretch applied\n    \"\"\"\n    width_scale, height_scale = base_scale\n\n    if direction == \"vertical\":\n        # Compress vertically, expand horizontally (preserve volume)\n        height_scale *= 1 - intensity * 0.5\n        width_scale *= 1 + intensity * 0.5\n    elif direction == \"horizontal\":\n        # Compress horizontally, expand vertically\n        width_scale *= 1 - intensity * 0.5\n        height_scale *= 1 + intensity * 0.5\n    elif direction == \"both\":\n        # General squash (both dimensions)\n        width_scale *= 1 - intensity * 0.3\n        height_scale *= 1 - intensity * 0.3\n\n    return (width_scale, height_scale)\n\n\ndef calculate_arc_motion(\n    start: tuple[float, float], end: tuple[float, float], height: float, t: float\n) -> tuple[float, float]:\n    \"\"\"\n    Calculate position along a parabolic arc (natural motion path).\n\n    Args:\n        start: (x, y) starting position\n        end: (x, y) ending position\n        height: Arc height at midpoint (positive = upward)\n        t: Progress (0.0-1.0)\n\n    Returns:\n        (x, y) position along arc\n    \"\"\"\n    x1, y1 = start\n    x2, y2 = end\n\n    # Linear interpolation for x\n    x = x1 + (x2 - x1) * t\n\n    # Parabolic interpolation for y\n    # y = start + progress * (end - start) + arc_offset\n    # Arc offset peaks at t=0.5\n    arc_offset = 4 * height * t * (1 - t)\n    y = y1 + (y2 - y1) * t - arc_offset\n\n    return (x, y)\n\n\n# Add new easing functions to the convenience mapping\nEASING_FUNCTIONS.update(\n    {\n        \"back_in\": ease_back_in,\n        \"back_out\": ease_back_out,\n        \"back_in_out\": ease_back_in_out,\n        \"anticipate\": ease_back_in,  # Alias\n        \"overshoot\": ease_back_out,  # Alias\n    }\n)\n"
  },
  {
    "path": "skills/slack-gif-creator/core/frame_composer.py",
    "content": "#!/usr/bin/env python3\n\"\"\"\nFrame Composer - Utilities for composing visual elements into frames.\n\nProvides functions for drawing shapes, text, emojis, and compositing elements\ntogether to create animation frames.\n\"\"\"\n\nfrom typing import Optional\n\nimport numpy as np\nfrom PIL import Image, ImageDraw, ImageFont\n\n\ndef create_blank_frame(\n    width: int, height: int, color: tuple[int, int, int] = (255, 255, 255)\n) -> Image.Image:\n    \"\"\"\n    Create a blank frame with solid color background.\n\n    Args:\n        width: Frame width\n        height: Frame height\n        color: RGB color tuple (default: white)\n\n    Returns:\n        PIL Image\n    \"\"\"\n    return Image.new(\"RGB\", (width, height), color)\n\n\ndef draw_circle(\n    frame: Image.Image,\n    center: tuple[int, int],\n    radius: int,\n    fill_color: Optional[tuple[int, int, int]] = None,\n    outline_color: Optional[tuple[int, int, int]] = None,\n    outline_width: int = 1,\n) -> Image.Image:\n    \"\"\"\n    Draw a circle on a frame.\n\n    Args:\n        frame: PIL Image to draw on\n        center: (x, y) center position\n        radius: Circle radius\n        fill_color: RGB fill color (None for no fill)\n        outline_color: RGB outline color (None for no outline)\n        outline_width: Outline width in pixels\n\n    Returns:\n        Modified frame\n    \"\"\"\n    draw = ImageDraw.Draw(frame)\n    x, y = center\n    bbox = [x - radius, y - radius, x + radius, y + radius]\n    draw.ellipse(bbox, fill=fill_color, outline=outline_color, width=outline_width)\n    return frame\n\n\ndef draw_text(\n    frame: Image.Image,\n    text: str,\n    position: tuple[int, int],\n    color: tuple[int, int, int] = (0, 0, 0),\n    centered: bool = False,\n) -> Image.Image:\n    \"\"\"\n    Draw text on a frame.\n\n    Args:\n        frame: PIL Image to draw on\n        text: Text to draw\n        position: (x, y) position (top-left unless centered=True)\n        color: RGB text color\n        centered: If True, center text at position\n\n    Returns:\n        Modified frame\n    \"\"\"\n    draw = ImageDraw.Draw(frame)\n\n    # Uses Pillow's default font.\n    # If the font should be changed for the emoji, add additional logic here.\n    font = ImageFont.load_default()\n\n    if centered:\n        bbox = draw.textbbox((0, 0), text, font=font)\n        text_width = bbox[2] - bbox[0]\n        text_height = bbox[3] - bbox[1]\n        x = position[0] - text_width // 2\n        y = position[1] - text_height // 2\n        position = (x, y)\n\n    draw.text(position, text, fill=color, font=font)\n    return frame\n\n\ndef create_gradient_background(\n    width: int,\n    height: int,\n    top_color: tuple[int, int, int],\n    bottom_color: tuple[int, int, int],\n) -> Image.Image:\n    \"\"\"\n    Create a vertical gradient background.\n\n    Args:\n        width: Frame width\n        height: Frame height\n        top_color: RGB color at top\n        bottom_color: RGB color at bottom\n\n    Returns:\n        PIL Image with gradient\n    \"\"\"\n    frame = Image.new(\"RGB\", (width, height))\n    draw = ImageDraw.Draw(frame)\n\n    # Calculate color step for each row\n    r1, g1, b1 = top_color\n    r2, g2, b2 = bottom_color\n\n    for y in range(height):\n        # Interpolate color\n        ratio = y / height\n        r = int(r1 * (1 - ratio) + r2 * ratio)\n        g = int(g1 * (1 - ratio) + g2 * ratio)\n        b = int(b1 * (1 - ratio) + b2 * ratio)\n\n        # Draw horizontal line\n        draw.line([(0, y), (width, y)], fill=(r, g, b))\n\n    return frame\n\n\ndef draw_star(\n    frame: Image.Image,\n    center: tuple[int, int],\n    size: int,\n    fill_color: tuple[int, int, int],\n    outline_color: Optional[tuple[int, int, int]] = None,\n    outline_width: int = 1,\n) -> Image.Image:\n    \"\"\"\n    Draw a 5-pointed star.\n\n    Args:\n        frame: PIL Image to draw on\n        center: (x, y) center position\n        size: Star size (outer radius)\n        fill_color: RGB fill color\n        outline_color: RGB outline color (None for no outline)\n        outline_width: Outline width\n\n    Returns:\n        Modified frame\n    \"\"\"\n    import math\n\n    draw = ImageDraw.Draw(frame)\n    x, y = center\n\n    # Calculate star points\n    points = []\n    for i in range(10):\n        angle = (i * 36 - 90) * math.pi / 180  # 36 degrees per point, start at top\n        radius = size if i % 2 == 0 else size * 0.4  # Alternate between outer and inner\n        px = x + radius * math.cos(angle)\n        py = y + radius * math.sin(angle)\n        points.append((px, py))\n\n    # Draw star\n    draw.polygon(points, fill=fill_color, outline=outline_color, width=outline_width)\n\n    return frame\n"
  },
  {
    "path": "skills/slack-gif-creator/core/gif_builder.py",
    "content": "#!/usr/bin/env python3\n\"\"\"\nGIF Builder - Core module for assembling frames into GIFs optimized for Slack.\n\nThis module provides the main interface for creating GIFs from programmatically\ngenerated frames, with automatic optimization for Slack's requirements.\n\"\"\"\n\nfrom pathlib import Path\nfrom typing import Optional\n\nimport imageio.v3 as imageio\nimport numpy as np\nfrom PIL import Image\n\n\nclass GIFBuilder:\n    \"\"\"Builder for creating optimized GIFs from frames.\"\"\"\n\n    def __init__(self, width: int = 480, height: int = 480, fps: int = 15):\n        \"\"\"\n        Initialize GIF builder.\n\n        Args:\n            width: Frame width in pixels\n            height: Frame height in pixels\n            fps: Frames per second\n        \"\"\"\n        self.width = width\n        self.height = height\n        self.fps = fps\n        self.frames: list[np.ndarray] = []\n\n    def add_frame(self, frame: np.ndarray | Image.Image):\n        \"\"\"\n        Add a frame to the GIF.\n\n        Args:\n            frame: Frame as numpy array or PIL Image (will be converted to RGB)\n        \"\"\"\n        if isinstance(frame, Image.Image):\n            frame = np.array(frame.convert(\"RGB\"))\n\n        # Ensure frame is correct size\n        if frame.shape[:2] != (self.height, self.width):\n            pil_frame = Image.fromarray(frame)\n            pil_frame = pil_frame.resize(\n                (self.width, self.height), Image.Resampling.LANCZOS\n            )\n            frame = np.array(pil_frame)\n\n        self.frames.append(frame)\n\n    def add_frames(self, frames: list[np.ndarray | Image.Image]):\n        \"\"\"Add multiple frames at once.\"\"\"\n        for frame in frames:\n            self.add_frame(frame)\n\n    def optimize_colors(\n        self, num_colors: int = 128, use_global_palette: bool = True\n    ) -> list[np.ndarray]:\n        \"\"\"\n        Reduce colors in all frames using quantization.\n\n        Args:\n            num_colors: Target number of colors (8-256)\n            use_global_palette: Use a single palette for all frames (better compression)\n\n        Returns:\n            List of color-optimized frames\n        \"\"\"\n        optimized = []\n\n        if use_global_palette and len(self.frames) > 1:\n            # Create a global palette from all frames\n            # Sample frames to build palette\n            sample_size = min(5, len(self.frames))\n            sample_indices = [\n                int(i * len(self.frames) / sample_size) for i in range(sample_size)\n            ]\n            sample_frames = [self.frames[i] for i in sample_indices]\n\n            # Combine sample frames into a single image for palette generation\n            # Flatten each frame to get all pixels, then stack them\n            all_pixels = np.vstack(\n                [f.reshape(-1, 3) for f in sample_frames]\n            )  # (total_pixels, 3)\n\n            # Create a properly-shaped RGB image from the pixel data\n            # We'll make a roughly square image from all the pixels\n            total_pixels = len(all_pixels)\n            width = min(512, int(np.sqrt(total_pixels)))  # Reasonable width, max 512\n            height = (total_pixels + width - 1) // width  # Ceiling division\n\n            # Pad if necessary to fill the rectangle\n            pixels_needed = width * height\n            if pixels_needed > total_pixels:\n                padding = np.zeros((pixels_needed - total_pixels, 3), dtype=np.uint8)\n                all_pixels = np.vstack([all_pixels, padding])\n\n            # Reshape to proper RGB image format (H, W, 3)\n            img_array = (\n                all_pixels[:pixels_needed].reshape(height, width, 3).astype(np.uint8)\n            )\n            combined_img = Image.fromarray(img_array, mode=\"RGB\")\n\n            # Generate global palette\n            global_palette = combined_img.quantize(colors=num_colors, method=2)\n\n            # Apply global palette to all frames\n            for frame in self.frames:\n                pil_frame = Image.fromarray(frame)\n                quantized = pil_frame.quantize(palette=global_palette, dither=1)\n                optimized.append(np.array(quantized.convert(\"RGB\")))\n        else:\n            # Use per-frame quantization\n            for frame in self.frames:\n                pil_frame = Image.fromarray(frame)\n                quantized = pil_frame.quantize(colors=num_colors, method=2, dither=1)\n                optimized.append(np.array(quantized.convert(\"RGB\")))\n\n        return optimized\n\n    def deduplicate_frames(self, threshold: float = 0.9995) -> int:\n        \"\"\"\n        Remove duplicate or near-duplicate consecutive frames.\n\n        Args:\n            threshold: Similarity threshold (0.0-1.0). Higher = more strict (0.9995 = nearly identical).\n                      Use 0.9995+ to preserve subtle animations, 0.98 for aggressive removal.\n\n        Returns:\n            Number of frames removed\n        \"\"\"\n        if len(self.frames) < 2:\n            return 0\n\n        deduplicated = [self.frames[0]]\n        removed_count = 0\n\n        for i in range(1, len(self.frames)):\n            # Compare with previous frame\n            prev_frame = np.array(deduplicated[-1], dtype=np.float32)\n            curr_frame = np.array(self.frames[i], dtype=np.float32)\n\n            # Calculate similarity (normalized)\n            diff = np.abs(prev_frame - curr_frame)\n            similarity = 1.0 - (np.mean(diff) / 255.0)\n\n            # Keep frame if sufficiently different\n            # High threshold (0.9995+) means only remove nearly identical frames\n            if similarity < threshold:\n                deduplicated.append(self.frames[i])\n            else:\n                removed_count += 1\n\n        self.frames = deduplicated\n        return removed_count\n\n    def save(\n        self,\n        output_path: str | Path,\n        num_colors: int = 128,\n        optimize_for_emoji: bool = False,\n        remove_duplicates: bool = False,\n    ) -> dict:\n        \"\"\"\n        Save frames as optimized GIF for Slack.\n\n        Args:\n            output_path: Where to save the GIF\n            num_colors: Number of colors to use (fewer = smaller file)\n            optimize_for_emoji: If True, optimize for emoji size (128x128, fewer colors)\n            remove_duplicates: If True, remove duplicate consecutive frames (opt-in)\n\n        Returns:\n            Dictionary with file info (path, size, dimensions, frame_count)\n        \"\"\"\n        if not self.frames:\n            raise ValueError(\"No frames to save. Add frames with add_frame() first.\")\n\n        output_path = Path(output_path)\n\n        # Remove duplicate frames to reduce file size\n        if remove_duplicates:\n            removed = self.deduplicate_frames(threshold=0.9995)\n            if removed > 0:\n                print(\n                    f\"  Removed {removed} nearly identical frames (preserved subtle animations)\"\n                )\n\n        # Optimize for emoji if requested\n        if optimize_for_emoji:\n            if self.width > 128 or self.height > 128:\n                print(\n                    f\"  Resizing from {self.width}x{self.height} to 128x128 for emoji\"\n                )\n                self.width = 128\n                self.height = 128\n                # Resize all frames\n                resized_frames = []\n                for frame in self.frames:\n                    pil_frame = Image.fromarray(frame)\n                    pil_frame = pil_frame.resize((128, 128), Image.Resampling.LANCZOS)\n                    resized_frames.append(np.array(pil_frame))\n                self.frames = resized_frames\n            num_colors = min(num_colors, 48)  # More aggressive color limit for emoji\n\n            # More aggressive FPS reduction for emoji\n            if len(self.frames) > 12:\n                print(\n                    f\"  Reducing frames from {len(self.frames)} to ~12 for emoji size\"\n                )\n                # Keep every nth frame to get close to 12 frames\n                keep_every = max(1, len(self.frames) // 12)\n                self.frames = [\n                    self.frames[i] for i in range(0, len(self.frames), keep_every)\n                ]\n\n        # Optimize colors with global palette\n        optimized_frames = self.optimize_colors(num_colors, use_global_palette=True)\n\n        # Calculate frame duration in milliseconds\n        frame_duration = 1000 / self.fps\n\n        # Save GIF\n        imageio.imwrite(\n            output_path,\n            optimized_frames,\n            duration=frame_duration,\n            loop=0,  # Infinite loop\n        )\n\n        # Get file info\n        file_size_kb = output_path.stat().st_size / 1024\n        file_size_mb = file_size_kb / 1024\n\n        info = {\n            \"path\": str(output_path),\n            \"size_kb\": file_size_kb,\n            \"size_mb\": file_size_mb,\n            \"dimensions\": f\"{self.width}x{self.height}\",\n            \"frame_count\": len(optimized_frames),\n            \"fps\": self.fps,\n            \"duration_seconds\": len(optimized_frames) / self.fps,\n            \"colors\": num_colors,\n        }\n\n        # Print info\n        print(f\"\\n✓ GIF created successfully!\")\n        print(f\"  Path: {output_path}\")\n        print(f\"  Size: {file_size_kb:.1f} KB ({file_size_mb:.2f} MB)\")\n        print(f\"  Dimensions: {self.width}x{self.height}\")\n        print(f\"  Frames: {len(optimized_frames)} @ {self.fps} fps\")\n        print(f\"  Duration: {info['duration_seconds']:.1f}s\")\n        print(f\"  Colors: {num_colors}\")\n\n        # Size info\n        if optimize_for_emoji:\n            print(f\"  Optimized for emoji (128x128, reduced colors)\")\n        if file_size_mb > 1.0:\n            print(f\"\\n  Note: Large file size ({file_size_kb:.1f} KB)\")\n            print(\"  Consider: fewer frames, smaller dimensions, or fewer colors\")\n\n        return info\n\n    def clear(self):\n        \"\"\"Clear all frames (useful for creating multiple GIFs).\"\"\"\n        self.frames = []\n"
  },
  {
    "path": "skills/slack-gif-creator/core/validators.py",
    "content": "#!/usr/bin/env python3\n\"\"\"\nValidators - Check if GIFs meet Slack's requirements.\n\nThese validators help ensure your GIFs meet Slack's size and dimension constraints.\n\"\"\"\n\nfrom pathlib import Path\n\n\ndef validate_gif(\n    gif_path: str | Path, is_emoji: bool = True, verbose: bool = True\n) -> tuple[bool, dict]:\n    \"\"\"\n    Validate GIF for Slack (dimensions, size, frame count).\n\n    Args:\n        gif_path: Path to GIF file\n        is_emoji: True for emoji (128x128 recommended), False for message GIF\n        verbose: Print validation details\n\n    Returns:\n        Tuple of (passes: bool, results: dict with all details)\n    \"\"\"\n    from PIL import Image\n\n    gif_path = Path(gif_path)\n\n    if not gif_path.exists():\n        return False, {\"error\": f\"File not found: {gif_path}\"}\n\n    # Get file size\n    size_bytes = gif_path.stat().st_size\n    size_kb = size_bytes / 1024\n    size_mb = size_kb / 1024\n\n    # Get dimensions and frame info\n    try:\n        with Image.open(gif_path) as img:\n            width, height = img.size\n\n            # Count frames\n            frame_count = 0\n            try:\n                while True:\n                    img.seek(frame_count)\n                    frame_count += 1\n            except EOFError:\n                pass\n\n            # Get duration\n            try:\n                duration_ms = img.info.get(\"duration\", 100)\n                total_duration = (duration_ms * frame_count) / 1000\n                fps = frame_count / total_duration if total_duration > 0 else 0\n            except:\n                total_duration = None\n                fps = None\n\n    except Exception as e:\n        return False, {\"error\": f\"Failed to read GIF: {e}\"}\n\n    # Validate dimensions\n    if is_emoji:\n        optimal = width == height == 128\n        acceptable = width == height and 64 <= width <= 128\n        dim_pass = acceptable\n    else:\n        aspect_ratio = (\n            max(width, height) / min(width, height)\n            if min(width, height) > 0\n            else float(\"inf\")\n        )\n        dim_pass = aspect_ratio <= 2.0 and 320 <= min(width, height) <= 640\n\n    results = {\n        \"file\": str(gif_path),\n        \"passes\": dim_pass,\n        \"width\": width,\n        \"height\": height,\n        \"size_kb\": size_kb,\n        \"size_mb\": size_mb,\n        \"frame_count\": frame_count,\n        \"duration_seconds\": total_duration,\n        \"fps\": fps,\n        \"is_emoji\": is_emoji,\n        \"optimal\": optimal if is_emoji else None,\n    }\n\n    # Print if verbose\n    if verbose:\n        print(f\"\\nValidating {gif_path.name}:\")\n        print(\n            f\"  Dimensions: {width}x{height}\"\n            + (\n                f\" ({'optimal' if optimal else 'acceptable'})\"\n                if is_emoji and acceptable\n                else \"\"\n            )\n        )\n        print(\n            f\"  Size: {size_kb:.1f} KB\"\n            + (f\" ({size_mb:.2f} MB)\" if size_mb >= 1.0 else \"\")\n        )\n        print(\n            f\"  Frames: {frame_count}\"\n            + (f\" @ {fps:.1f} fps ({total_duration:.1f}s)\" if fps else \"\")\n        )\n\n        if not dim_pass:\n            print(\n                f\"  Note: {'Emoji should be 128x128' if is_emoji else 'Unusual dimensions for Slack'}\"\n            )\n\n        if size_mb > 5.0:\n            print(f\"  Note: Large file size - consider fewer frames/colors\")\n\n    return dim_pass, results\n\n\ndef is_slack_ready(\n    gif_path: str | Path, is_emoji: bool = True, verbose: bool = True\n) -> bool:\n    \"\"\"\n    Quick check if GIF is ready for Slack.\n\n    Args:\n        gif_path: Path to GIF file\n        is_emoji: True for emoji GIF, False for message GIF\n        verbose: Print feedback\n\n    Returns:\n        True if dimensions are acceptable\n    \"\"\"\n    passes, _ = validate_gif(gif_path, is_emoji, verbose)\n    return passes\n"
  },
  {
    "path": "skills/slack-gif-creator/requirements.txt",
    "content": "pillow>=10.0.0\nimageio>=2.31.0\nimageio-ffmpeg>=0.4.9\nnumpy>=1.24.0"
  },
  {
    "path": "skills/theme-factory/LICENSE.txt",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License."
  },
  {
    "path": "skills/theme-factory/SKILL.md",
    "content": "---\nname: theme-factory\ndescription: Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact that has been creating, or can generate a new theme on-the-fly.\nlicense: Complete terms in LICENSE.txt\n---\n\n\n# Theme Factory Skill\n\nThis skill provides a curated collection of professional font and color themes themes, each with carefully selected color palettes and font pairings. Once a theme is chosen, it can be applied to any artifact.\n\n## Purpose\n\nTo apply consistent, professional styling to presentation slide decks, use this skill. Each theme includes:\n- A cohesive color palette with hex codes\n- Complementary font pairings for headers and body text\n- A distinct visual identity suitable for different contexts and audiences\n\n## Usage Instructions\n\nTo apply styling to a slide deck or other artifact:\n\n1. **Show the theme showcase**: Display the `theme-showcase.pdf` file to allow users to see all available themes visually. Do not make any modifications to it; simply show the file for viewing.\n2. **Ask for their choice**: Ask which theme to apply to the deck\n3. **Wait for selection**: Get explicit confirmation about the chosen theme\n4. **Apply the theme**: Once a theme has been chosen, apply the selected theme's colors and fonts to the deck/artifact\n\n## Themes Available\n\nThe following 10 themes are available, each showcased in `theme-showcase.pdf`:\n\n1. **Ocean Depths** - Professional and calming maritime theme\n2. **Sunset Boulevard** - Warm and vibrant sunset colors\n3. **Forest Canopy** - Natural and grounded earth tones\n4. **Modern Minimalist** - Clean and contemporary grayscale\n5. **Golden Hour** - Rich and warm autumnal palette\n6. **Arctic Frost** - Cool and crisp winter-inspired theme\n7. **Desert Rose** - Soft and sophisticated dusty tones\n8. **Tech Innovation** - Bold and modern tech aesthetic\n9. **Botanical Garden** - Fresh and organic garden colors\n10. **Midnight Galaxy** - Dramatic and cosmic deep tones\n\n## Theme Details\n\nEach theme is defined in the `themes/` directory with complete specifications including:\n- Cohesive color palette with hex codes\n- Complementary font pairings for headers and body text\n- Distinct visual identity suitable for different contexts and audiences\n\n## Application Process\n\nAfter a preferred theme is selected:\n1. Read the corresponding theme file from the `themes/` directory\n2. Apply the specified colors and fonts consistently throughout the deck\n3. Ensure proper contrast and readability\n4. Maintain the theme's visual identity across all slides\n\n## Create your Own Theme\nTo handle cases where none of the existing themes work for an artifact, create a custom theme. Based on provided inputs, generate a new theme similar to the ones above. Give the theme a similar name describing what the font/color combinations represent. Use any basic description provided to choose appropriate colors/fonts. After generating the theme, show it for review and verification. Following that, apply the theme as described above.\n"
  },
  {
    "path": "skills/theme-factory/themes/arctic-frost.md",
    "content": "# Arctic Frost\n\nA cool and crisp winter-inspired theme that conveys clarity, precision, and professionalism.\n\n## Color Palette\n\n- **Ice Blue**: `#d4e4f7` - Light backgrounds and highlights\n- **Steel Blue**: `#4a6fa5` - Primary accent color\n- **Silver**: `#c0c0c0` - Metallic accent elements\n- **Crisp White**: `#fafafa` - Clean backgrounds and text\n\n## Typography\n\n- **Headers**: DejaVu Sans Bold\n- **Body Text**: DejaVu Sans\n\n## Best Used For\n\nHealthcare presentations, technology solutions, winter sports, clean tech, pharmaceutical content.\n"
  },
  {
    "path": "skills/theme-factory/themes/botanical-garden.md",
    "content": "# Botanical Garden\n\nA fresh and organic theme featuring vibrant garden-inspired colors for lively presentations.\n\n## Color Palette\n\n- **Fern Green**: `#4a7c59` - Rich natural green\n- **Marigold**: `#f9a620` - Bright floral accent\n- **Terracotta**: `#b7472a` - Earthy warm tone\n- **Cream**: `#f5f3ed` - Soft neutral backgrounds\n\n## Typography\n\n- **Headers**: DejaVu Serif Bold\n- **Body Text**: DejaVu Sans\n\n## Best Used For\n\nGarden centers, food presentations, farm-to-table content, botanical brands, natural products.\n"
  },
  {
    "path": "skills/theme-factory/themes/desert-rose.md",
    "content": "# Desert Rose\n\nA soft and sophisticated theme with dusty, muted tones perfect for elegant presentations.\n\n## Color Palette\n\n- **Dusty Rose**: `#d4a5a5` - Soft primary color\n- **Clay**: `#b87d6d` - Earthy accent\n- **Sand**: `#e8d5c4` - Warm neutral backgrounds\n- **Deep Burgundy**: `#5d2e46` - Rich dark contrast\n\n## Typography\n\n- **Headers**: FreeSans Bold\n- **Body Text**: FreeSans\n\n## Best Used For\n\nFashion presentations, beauty brands, wedding planning, interior design, boutique businesses.\n"
  },
  {
    "path": "skills/theme-factory/themes/forest-canopy.md",
    "content": "# Forest Canopy\n\nA natural and grounded theme featuring earth tones inspired by dense forest environments.\n\n## Color Palette\n\n- **Forest Green**: `#2d4a2b` - Primary dark green\n- **Sage**: `#7d8471` - Muted green accent\n- **Olive**: `#a4ac86` - Light accent color\n- **Ivory**: `#faf9f6` - Backgrounds and text\n\n## Typography\n\n- **Headers**: FreeSerif Bold\n- **Body Text**: FreeSans\n\n## Best Used For\n\nEnvironmental presentations, sustainability reports, outdoor brands, wellness content, organic products.\n"
  },
  {
    "path": "skills/theme-factory/themes/golden-hour.md",
    "content": "# Golden Hour\n\nA rich and warm autumnal palette that creates an inviting and sophisticated atmosphere.\n\n## Color Palette\n\n- **Mustard Yellow**: `#f4a900` - Bold primary accent\n- **Terracotta**: `#c1666b` - Warm secondary color\n- **Warm Beige**: `#d4b896` - Neutral backgrounds\n- **Chocolate Brown**: `#4a403a` - Dark text and anchors\n\n## Typography\n\n- **Headers**: FreeSans Bold\n- **Body Text**: FreeSans\n\n## Best Used For\n\nRestaurant presentations, hospitality brands, fall campaigns, cozy lifestyle content, artisan products.\n"
  },
  {
    "path": "skills/theme-factory/themes/midnight-galaxy.md",
    "content": "# Midnight Galaxy\n\nA dramatic and cosmic theme with deep purples and mystical tones for impactful presentations.\n\n## Color Palette\n\n- **Deep Purple**: `#2b1e3e` - Rich dark base\n- **Cosmic Blue**: `#4a4e8f` - Mystical mid-tone\n- **Lavender**: `#a490c2` - Soft accent color\n- **Silver**: `#e6e6fa` - Light highlights and text\n\n## Typography\n\n- **Headers**: FreeSans Bold\n- **Body Text**: FreeSans\n\n## Best Used For\n\nEntertainment industry, gaming presentations, nightlife venues, luxury brands, creative agencies.\n"
  },
  {
    "path": "skills/theme-factory/themes/modern-minimalist.md",
    "content": "# Modern Minimalist\n\nA clean and contemporary theme with a sophisticated grayscale palette for maximum versatility.\n\n## Color Palette\n\n- **Charcoal**: `#36454f` - Primary dark color\n- **Slate Gray**: `#708090` - Medium gray for accents\n- **Light Gray**: `#d3d3d3` - Backgrounds and dividers\n- **White**: `#ffffff` - Text and clean backgrounds\n\n## Typography\n\n- **Headers**: DejaVu Sans Bold\n- **Body Text**: DejaVu Sans\n\n## Best Used For\n\nTech presentations, architecture portfolios, design showcases, modern business proposals, data visualization.\n"
  },
  {
    "path": "skills/theme-factory/themes/ocean-depths.md",
    "content": "# Ocean Depths\n\nA professional and calming maritime theme that evokes the serenity of deep ocean waters.\n\n## Color Palette\n\n- **Deep Navy**: `#1a2332` - Primary background color\n- **Teal**: `#2d8b8b` - Accent color for highlights and emphasis\n- **Seafoam**: `#a8dadc` - Secondary accent for lighter elements\n- **Cream**: `#f1faee` - Text and light backgrounds\n\n## Typography\n\n- **Headers**: DejaVu Sans Bold\n- **Body Text**: DejaVu Sans\n\n## Best Used For\n\nCorporate presentations, financial reports, professional consulting decks, trust-building content.\n"
  },
  {
    "path": "skills/theme-factory/themes/sunset-boulevard.md",
    "content": "# Sunset Boulevard\n\nA warm and vibrant theme inspired by golden hour sunsets, perfect for energetic and creative presentations.\n\n## Color Palette\n\n- **Burnt Orange**: `#e76f51` - Primary accent color\n- **Coral**: `#f4a261` - Secondary warm accent\n- **Warm Sand**: `#e9c46a` - Highlighting and backgrounds\n- **Deep Purple**: `#264653` - Dark contrast and text\n\n## Typography\n\n- **Headers**: DejaVu Serif Bold\n- **Body Text**: DejaVu Sans\n\n## Best Used For\n\nCreative pitches, marketing presentations, lifestyle brands, event promotions, inspirational content.\n"
  },
  {
    "path": "skills/theme-factory/themes/tech-innovation.md",
    "content": "# Tech Innovation\n\nA bold and modern theme with high-contrast colors perfect for cutting-edge technology presentations.\n\n## Color Palette\n\n- **Electric Blue**: `#0066ff` - Vibrant primary accent\n- **Neon Cyan**: `#00ffff` - Bright highlight color\n- **Dark Gray**: `#1e1e1e` - Deep backgrounds\n- **White**: `#ffffff` - Clean text and contrast\n\n## Typography\n\n- **Headers**: DejaVu Sans Bold\n- **Body Text**: DejaVu Sans\n\n## Best Used For\n\nTech startups, software launches, innovation showcases, AI/ML presentations, digital transformation content.\n"
  },
  {
    "path": "skills/web-artifacts-builder/LICENSE.txt",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License."
  },
  {
    "path": "skills/web-artifacts-builder/SKILL.md",
    "content": "---\nname: web-artifacts-builder\ndescription: Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.\nlicense: Complete terms in LICENSE.txt\n---\n\n# Web Artifacts Builder\n\nTo build powerful frontend claude.ai artifacts, follow these steps:\n1. Initialize the frontend repo using `scripts/init-artifact.sh`\n2. Develop your artifact by editing the generated code\n3. Bundle all code into a single HTML file using `scripts/bundle-artifact.sh`\n4. Display artifact to user\n5. (Optional) Test the artifact\n\n**Stack**: React 18 + TypeScript + Vite + Parcel (bundling) + Tailwind CSS + shadcn/ui\n\n## Design & Style Guidelines\n\nVERY IMPORTANT: To avoid what is often referred to as \"AI slop\", avoid using excessive centered layouts, purple gradients, uniform rounded corners, and Inter font.\n\n## Quick Start\n\n### Step 1: Initialize Project\n\nRun the initialization script to create a new React project:\n```bash\nbash scripts/init-artifact.sh <project-name>\ncd <project-name>\n```\n\nThis creates a fully configured project with:\n- ✅ React + TypeScript (via Vite)\n- ✅ Tailwind CSS 3.4.1 with shadcn/ui theming system\n- ✅ Path aliases (`@/`) configured\n- ✅ 40+ shadcn/ui components pre-installed\n- ✅ All Radix UI dependencies included\n- ✅ Parcel configured for bundling (via .parcelrc)\n- ✅ Node 18+ compatibility (auto-detects and pins Vite version)\n\n### Step 2: Develop Your Artifact\n\nTo build the artifact, edit the generated files. See **Common Development Tasks** below for guidance.\n\n### Step 3: Bundle to Single HTML File\n\nTo bundle the React app into a single HTML artifact:\n```bash\nbash scripts/bundle-artifact.sh\n```\n\nThis creates `bundle.html` - a self-contained artifact with all JavaScript, CSS, and dependencies inlined. This file can be directly shared in Claude conversations as an artifact.\n\n**Requirements**: Your project must have an `index.html` in the root directory.\n\n**What the script does**:\n- Installs bundling dependencies (parcel, @parcel/config-default, parcel-resolver-tspaths, html-inline)\n- Creates `.parcelrc` config with path alias support\n- Builds with Parcel (no source maps)\n- Inlines all assets into single HTML using html-inline\n\n### Step 4: Share Artifact with User\n\nFinally, share the bundled HTML file in conversation with the user so they can view it as an artifact.\n\n### Step 5: Testing/Visualizing the Artifact (Optional)\n\nNote: This is a completely optional step. Only perform if necessary or requested.\n\nTo test/visualize the artifact, use available tools (including other Skills or built-in tools like Playwright or Puppeteer). In general, avoid testing the artifact upfront as it adds latency between the request and when the finished artifact can be seen. Test later, after presenting the artifact, if requested or if issues arise.\n\n## Reference\n\n- **shadcn/ui components**: https://ui.shadcn.com/docs/components"
  },
  {
    "path": "skills/web-artifacts-builder/scripts/bundle-artifact.sh",
    "content": "#!/bin/bash\nset -e\n\necho \"📦 Bundling React app to single HTML artifact...\"\n\n# Check if we're in a project directory\nif [ ! -f \"package.json\" ]; then\n  echo \"❌ Error: No package.json found. Run this script from your project root.\"\n  exit 1\nfi\n\n# Check if index.html exists\nif [ ! -f \"index.html\" ]; then\n  echo \"❌ Error: No index.html found in project root.\"\n  echo \"   This script requires an index.html entry point.\"\n  exit 1\nfi\n\n# Install bundling dependencies\necho \"📦 Installing bundling dependencies...\"\npnpm add -D parcel @parcel/config-default parcel-resolver-tspaths html-inline\n\n# Create Parcel config with tspaths resolver\nif [ ! -f \".parcelrc\" ]; then\n  echo \"🔧 Creating Parcel configuration with path alias support...\"\n  cat > .parcelrc << 'EOF'\n{\n  \"extends\": \"@parcel/config-default\",\n  \"resolvers\": [\"parcel-resolver-tspaths\", \"...\"]\n}\nEOF\nfi\n\n# Clean previous build\necho \"🧹 Cleaning previous build...\"\nrm -rf dist bundle.html\n\n# Build with Parcel\necho \"🔨 Building with Parcel...\"\npnpm exec parcel build index.html --dist-dir dist --no-source-maps\n\n# Inline everything into single HTML\necho \"🎯 Inlining all assets into single HTML file...\"\npnpm exec html-inline dist/index.html > bundle.html\n\n# Get file size\nFILE_SIZE=$(du -h bundle.html | cut -f1)\n\necho \"\"\necho \"✅ Bundle complete!\"\necho \"📄 Output: bundle.html ($FILE_SIZE)\"\necho \"\"\necho \"You can now use this single HTML file as an artifact in Claude conversations.\"\necho \"To test locally: open bundle.html in your browser\""
  },
  {
    "path": "skills/web-artifacts-builder/scripts/init-artifact.sh",
    "content": "#!/bin/bash\n\n# Exit on error\nset -e\n\n# Detect Node version\nNODE_VERSION=$(node -v | cut -d'v' -f2 | cut -d'.' -f1)\n\necho \"🔍 Detected Node.js version: $NODE_VERSION\"\n\nif [ \"$NODE_VERSION\" -lt 18 ]; then\n  echo \"❌ Error: Node.js 18 or higher is required\"\n  echo \"   Current version: $(node -v)\"\n  exit 1\nfi\n\n# Set Vite version based on Node version\nif [ \"$NODE_VERSION\" -ge 20 ]; then\n  VITE_VERSION=\"latest\"\n  echo \"✅ Using Vite latest (Node 20+)\"\nelse\n  VITE_VERSION=\"5.4.11\"\n  echo \"✅ Using Vite $VITE_VERSION (Node 18 compatible)\"\nfi\n\n# Detect OS and set sed syntax\nif [[ \"$OSTYPE\" == \"darwin\"* ]]; then\n  SED_INPLACE=\"sed -i ''\"\nelse\n  SED_INPLACE=\"sed -i\"\nfi\n\n# Check if pnpm is installed\nif ! command -v pnpm &> /dev/null; then\n  echo \"📦 pnpm not found. Installing pnpm...\"\n  npm install -g pnpm\nfi\n\n# Check if project name is provided\nif [ -z \"$1\" ]; then\n  echo \"❌ Usage: ./create-react-shadcn-complete.sh <project-name>\"\n  exit 1\nfi\n\nPROJECT_NAME=\"$1\"\nSCRIPT_DIR=\"$(cd \"$(dirname \"${BASH_SOURCE[0]}\")\" && pwd)\"\nCOMPONENTS_TARBALL=\"$SCRIPT_DIR/shadcn-components.tar.gz\"\n\n# Check if components tarball exists\nif [ ! -f \"$COMPONENTS_TARBALL\" ]; then\n  echo \"❌ Error: shadcn-components.tar.gz not found in script directory\"\n  echo \"   Expected location: $COMPONENTS_TARBALL\"\n  exit 1\nfi\n\necho \"🚀 Creating new React + Vite project: $PROJECT_NAME\"\n\n# Create new Vite project (always use latest create-vite, pin vite version later)\npnpm create vite \"$PROJECT_NAME\" --template react-ts\n\n# Navigate into project directory\ncd \"$PROJECT_NAME\"\n\necho \"🧹 Cleaning up Vite template...\"\n$SED_INPLACE '/<link rel=\"icon\".*vite\\.svg/d' index.html\n$SED_INPLACE 's/<title>.*<\\/title>/<title>'\"$PROJECT_NAME\"'<\\/title>/' index.html\n\necho \"📦 Installing base dependencies...\"\npnpm install\n\n# Pin Vite version for Node 18\nif [ \"$NODE_VERSION\" -lt 20 ]; then\n  echo \"📌 Pinning Vite to $VITE_VERSION for Node 18 compatibility...\"\n  pnpm add -D vite@$VITE_VERSION\nfi\n\necho \"📦 Installing Tailwind CSS and dependencies...\"\npnpm install -D tailwindcss@3.4.1 postcss autoprefixer @types/node tailwindcss-animate\npnpm install class-variance-authority clsx tailwind-merge lucide-react next-themes\n\necho \"⚙️  Creating Tailwind and PostCSS configuration...\"\ncat > postcss.config.js << 'EOF'\nexport default {\n  plugins: {\n    tailwindcss: {},\n    autoprefixer: {},\n  },\n}\nEOF\n\necho \"📝 Configuring Tailwind with shadcn theme...\"\ncat > tailwind.config.js << 'EOF'\n/** @type {import('tailwindcss').Config} */\nmodule.exports = {\n  darkMode: [\"class\"],\n  content: [\n    \"./index.html\",\n    \"./src/**/*.{js,ts,jsx,tsx}\",\n  ],\n  theme: {\n    extend: {\n      colors: {\n        border: \"hsl(var(--border))\",\n        input: \"hsl(var(--input))\",\n        ring: \"hsl(var(--ring))\",\n        background: \"hsl(var(--background))\",\n        foreground: \"hsl(var(--foreground))\",\n        primary: {\n          DEFAULT: \"hsl(var(--primary))\",\n          foreground: \"hsl(var(--primary-foreground))\",\n        },\n        secondary: {\n          DEFAULT: \"hsl(var(--secondary))\",\n          foreground: \"hsl(var(--secondary-foreground))\",\n        },\n        destructive: {\n          DEFAULT: \"hsl(var(--destructive))\",\n          foreground: \"hsl(var(--destructive-foreground))\",\n        },\n        muted: {\n          DEFAULT: \"hsl(var(--muted))\",\n          foreground: \"hsl(var(--muted-foreground))\",\n        },\n        accent: {\n          DEFAULT: \"hsl(var(--accent))\",\n          foreground: \"hsl(var(--accent-foreground))\",\n        },\n        popover: {\n          DEFAULT: \"hsl(var(--popover))\",\n          foreground: \"hsl(var(--popover-foreground))\",\n        },\n        card: {\n          DEFAULT: \"hsl(var(--card))\",\n          foreground: \"hsl(var(--card-foreground))\",\n        },\n      },\n      borderRadius: {\n        lg: \"var(--radius)\",\n        md: \"calc(var(--radius) - 2px)\",\n        sm: \"calc(var(--radius) - 4px)\",\n      },\n      keyframes: {\n        \"accordion-down\": {\n          from: { height: \"0\" },\n          to: { height: \"var(--radix-accordion-content-height)\" },\n        },\n        \"accordion-up\": {\n          from: { height: \"var(--radix-accordion-content-height)\" },\n          to: { height: \"0\" },\n        },\n      },\n      animation: {\n        \"accordion-down\": \"accordion-down 0.2s ease-out\",\n        \"accordion-up\": \"accordion-up 0.2s ease-out\",\n      },\n    },\n  },\n  plugins: [require(\"tailwindcss-animate\")],\n}\nEOF\n\n# Add Tailwind directives and CSS variables to index.css\necho \"🎨 Adding Tailwind directives and CSS variables...\"\ncat > src/index.css << 'EOF'\n@tailwind base;\n@tailwind components;\n@tailwind utilities;\n\n@layer base {\n  :root {\n    --background: 0 0% 100%;\n    --foreground: 0 0% 3.9%;\n    --card: 0 0% 100%;\n    --card-foreground: 0 0% 3.9%;\n    --popover: 0 0% 100%;\n    --popover-foreground: 0 0% 3.9%;\n    --primary: 0 0% 9%;\n    --primary-foreground: 0 0% 98%;\n    --secondary: 0 0% 96.1%;\n    --secondary-foreground: 0 0% 9%;\n    --muted: 0 0% 96.1%;\n    --muted-foreground: 0 0% 45.1%;\n    --accent: 0 0% 96.1%;\n    --accent-foreground: 0 0% 9%;\n    --destructive: 0 84.2% 60.2%;\n    --destructive-foreground: 0 0% 98%;\n    --border: 0 0% 89.8%;\n    --input: 0 0% 89.8%;\n    --ring: 0 0% 3.9%;\n    --radius: 0.5rem;\n  }\n\n  .dark {\n    --background: 0 0% 3.9%;\n    --foreground: 0 0% 98%;\n    --card: 0 0% 3.9%;\n    --card-foreground: 0 0% 98%;\n    --popover: 0 0% 3.9%;\n    --popover-foreground: 0 0% 98%;\n    --primary: 0 0% 98%;\n    --primary-foreground: 0 0% 9%;\n    --secondary: 0 0% 14.9%;\n    --secondary-foreground: 0 0% 98%;\n    --muted: 0 0% 14.9%;\n    --muted-foreground: 0 0% 63.9%;\n    --accent: 0 0% 14.9%;\n    --accent-foreground: 0 0% 98%;\n    --destructive: 0 62.8% 30.6%;\n    --destructive-foreground: 0 0% 98%;\n    --border: 0 0% 14.9%;\n    --input: 0 0% 14.9%;\n    --ring: 0 0% 83.1%;\n  }\n}\n\n@layer base {\n  * {\n    @apply border-border;\n  }\n  body {\n    @apply bg-background text-foreground;\n  }\n}\nEOF\n\n# Add path aliases to tsconfig.json\necho \"🔧 Adding path aliases to tsconfig.json...\"\nnode -e \"\nconst fs = require('fs');\nconst config = JSON.parse(fs.readFileSync('tsconfig.json', 'utf8'));\nconfig.compilerOptions = config.compilerOptions || {};\nconfig.compilerOptions.baseUrl = '.';\nconfig.compilerOptions.paths = { '@/*': ['./src/*'] };\nfs.writeFileSync('tsconfig.json', JSON.stringify(config, null, 2));\n\"\n\n# Add path aliases to tsconfig.app.json\necho \"🔧 Adding path aliases to tsconfig.app.json...\"\nnode -e \"\nconst fs = require('fs');\nconst path = 'tsconfig.app.json';\nconst content = fs.readFileSync(path, 'utf8');\n// Remove comments manually\nconst lines = content.split('\\n').filter(line => !line.trim().startsWith('//'));\nconst jsonContent = lines.join('\\n');\nconst config = JSON.parse(jsonContent.replace(/\\/\\*[\\s\\S]*?\\*\\//g, '').replace(/,(\\s*[}\\]])/g, '\\$1'));\nconfig.compilerOptions = config.compilerOptions || {};\nconfig.compilerOptions.baseUrl = '.';\nconfig.compilerOptions.paths = { '@/*': ['./src/*'] };\nfs.writeFileSync(path, JSON.stringify(config, null, 2));\n\"\n\n# Update vite.config.ts\necho \"⚙️  Updating Vite configuration...\"\ncat > vite.config.ts << 'EOF'\nimport path from \"path\";\nimport react from \"@vitejs/plugin-react\";\nimport { defineConfig } from \"vite\";\n\nexport default defineConfig({\n  plugins: [react()],\n  resolve: {\n    alias: {\n      \"@\": path.resolve(__dirname, \"./src\"),\n    },\n  },\n});\nEOF\n\n# Install all shadcn/ui dependencies\necho \"📦 Installing shadcn/ui dependencies...\"\npnpm install @radix-ui/react-accordion @radix-ui/react-aspect-ratio @radix-ui/react-avatar @radix-ui/react-checkbox @radix-ui/react-collapsible @radix-ui/react-context-menu @radix-ui/react-dialog @radix-ui/react-dropdown-menu @radix-ui/react-hover-card @radix-ui/react-label @radix-ui/react-menubar @radix-ui/react-navigation-menu @radix-ui/react-popover @radix-ui/react-progress @radix-ui/react-radio-group @radix-ui/react-scroll-area @radix-ui/react-select @radix-ui/react-separator @radix-ui/react-slider @radix-ui/react-slot @radix-ui/react-switch @radix-ui/react-tabs @radix-ui/react-toast @radix-ui/react-toggle @radix-ui/react-toggle-group @radix-ui/react-tooltip\npnpm install sonner cmdk vaul embla-carousel-react react-day-picker react-resizable-panels date-fns react-hook-form @hookform/resolvers zod\n\n# Extract shadcn components from tarball\necho \"📦 Extracting shadcn/ui components...\"\ntar -xzf \"$COMPONENTS_TARBALL\" -C src/\n\n# Create components.json for reference\necho \"📝 Creating components.json config...\"\ncat > components.json << 'EOF'\n{\n  \"$schema\": \"https://ui.shadcn.com/schema.json\",\n  \"style\": \"default\",\n  \"rsc\": false,\n  \"tsx\": true,\n  \"tailwind\": {\n    \"config\": \"tailwind.config.js\",\n    \"css\": \"src/index.css\",\n    \"baseColor\": \"slate\",\n    \"cssVariables\": true,\n    \"prefix\": \"\"\n  },\n  \"aliases\": {\n    \"components\": \"@/components\",\n    \"utils\": \"@/lib/utils\",\n    \"ui\": \"@/components/ui\",\n    \"lib\": \"@/lib\",\n    \"hooks\": \"@/hooks\"\n  }\n}\nEOF\n\necho \"✅ Setup complete! You can now use Tailwind CSS and shadcn/ui in your project.\"\necho \"\"\necho \"📦 Included components (40+ total):\"\necho \"  - accordion, alert, aspect-ratio, avatar, badge, breadcrumb\"\necho \"  - button, calendar, card, carousel, checkbox, collapsible\"\necho \"  - command, context-menu, dialog, drawer, dropdown-menu\"\necho \"  - form, hover-card, input, label, menubar, navigation-menu\"\necho \"  - popover, progress, radio-group, resizable, scroll-area\"\necho \"  - select, separator, sheet, skeleton, slider, sonner\"\necho \"  - switch, table, tabs, textarea, toast, toggle, toggle-group, tooltip\"\necho \"\"\necho \"To start developing:\"\necho \"  cd $PROJECT_NAME\"\necho \"  pnpm dev\"\necho \"\"\necho \"📚 Import components like:\"\necho \"  import { Button } from '@/components/ui/button'\"\necho \"  import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/card'\"\necho \"  import { Dialog, DialogContent, DialogTrigger } from '@/components/ui/dialog'\"\n"
  },
  {
    "path": "skills/webapp-testing/LICENSE.txt",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License."
  },
  {
    "path": "skills/webapp-testing/SKILL.md",
    "content": "---\nname: webapp-testing\ndescription: Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.\nlicense: Complete terms in LICENSE.txt\n---\n\n# Web Application Testing\n\nTo test local web applications, write native Python Playwright scripts.\n\n**Helper Scripts Available**:\n- `scripts/with_server.py` - Manages server lifecycle (supports multiple servers)\n\n**Always run scripts with `--help` first** to see usage. DO NOT read the source until you try running the script first and find that a customized solution is abslutely necessary. These scripts can be very large and thus pollute your context window. They exist to be called directly as black-box scripts rather than ingested into your context window.\n\n## Decision Tree: Choosing Your Approach\n\n```\nUser task → Is it static HTML?\n    ├─ Yes → Read HTML file directly to identify selectors\n    │         ├─ Success → Write Playwright script using selectors\n    │         └─ Fails/Incomplete → Treat as dynamic (below)\n    │\n    └─ No (dynamic webapp) → Is the server already running?\n        ├─ No → Run: python scripts/with_server.py --help\n        │        Then use the helper + write simplified Playwright script\n        │\n        └─ Yes → Reconnaissance-then-action:\n            1. Navigate and wait for networkidle\n            2. Take screenshot or inspect DOM\n            3. Identify selectors from rendered state\n            4. Execute actions with discovered selectors\n```\n\n## Example: Using with_server.py\n\nTo start a server, run `--help` first, then use the helper:\n\n**Single server:**\n```bash\npython scripts/with_server.py --server \"npm run dev\" --port 5173 -- python your_automation.py\n```\n\n**Multiple servers (e.g., backend + frontend):**\n```bash\npython scripts/with_server.py \\\n  --server \"cd backend && python server.py\" --port 3000 \\\n  --server \"cd frontend && npm run dev\" --port 5173 \\\n  -- python your_automation.py\n```\n\nTo create an automation script, include only Playwright logic (servers are managed automatically):\n```python\nfrom playwright.sync_api import sync_playwright\n\nwith sync_playwright() as p:\n    browser = p.chromium.launch(headless=True) # Always launch chromium in headless mode\n    page = browser.new_page()\n    page.goto('http://localhost:5173') # Server already running and ready\n    page.wait_for_load_state('networkidle') # CRITICAL: Wait for JS to execute\n    # ... your automation logic\n    browser.close()\n```\n\n## Reconnaissance-Then-Action Pattern\n\n1. **Inspect rendered DOM**:\n   ```python\n   page.screenshot(path='/tmp/inspect.png', full_page=True)\n   content = page.content()\n   page.locator('button').all()\n   ```\n\n2. **Identify selectors** from inspection results\n\n3. **Execute actions** using discovered selectors\n\n## Common Pitfall\n\n❌ **Don't** inspect the DOM before waiting for `networkidle` on dynamic apps\n✅ **Do** wait for `page.wait_for_load_state('networkidle')` before inspection\n\n## Best Practices\n\n- **Use bundled scripts as black boxes** - To accomplish a task, consider whether one of the scripts available in `scripts/` can help. These scripts handle common, complex workflows reliably without cluttering the context window. Use `--help` to see usage, then invoke directly. \n- Use `sync_playwright()` for synchronous scripts\n- Always close the browser when done\n- Use descriptive selectors: `text=`, `role=`, CSS selectors, or IDs\n- Add appropriate waits: `page.wait_for_selector()` or `page.wait_for_timeout()`\n\n## Reference Files\n\n- **examples/** - Examples showing common patterns:\n  - `element_discovery.py` - Discovering buttons, links, and inputs on a page\n  - `static_html_automation.py` - Using file:// URLs for local HTML\n  - `console_logging.py` - Capturing console logs during automation"
  },
  {
    "path": "skills/webapp-testing/examples/console_logging.py",
    "content": "from playwright.sync_api import sync_playwright\n\n# Example: Capturing console logs during browser automation\n\nurl = 'http://localhost:5173'  # Replace with your URL\n\nconsole_logs = []\n\nwith sync_playwright() as p:\n    browser = p.chromium.launch(headless=True)\n    page = browser.new_page(viewport={'width': 1920, 'height': 1080})\n\n    # Set up console log capture\n    def handle_console_message(msg):\n        console_logs.append(f\"[{msg.type}] {msg.text}\")\n        print(f\"Console: [{msg.type}] {msg.text}\")\n\n    page.on(\"console\", handle_console_message)\n\n    # Navigate to page\n    page.goto(url)\n    page.wait_for_load_state('networkidle')\n\n    # Interact with the page (triggers console logs)\n    page.click('text=Dashboard')\n    page.wait_for_timeout(1000)\n\n    browser.close()\n\n# Save console logs to file\nwith open('/mnt/user-data/outputs/console.log', 'w') as f:\n    f.write('\\n'.join(console_logs))\n\nprint(f\"\\nCaptured {len(console_logs)} console messages\")\nprint(f\"Logs saved to: /mnt/user-data/outputs/console.log\")"
  },
  {
    "path": "skills/webapp-testing/examples/element_discovery.py",
    "content": "from playwright.sync_api import sync_playwright\n\n# Example: Discovering buttons and other elements on a page\n\nwith sync_playwright() as p:\n    browser = p.chromium.launch(headless=True)\n    page = browser.new_page()\n\n    # Navigate to page and wait for it to fully load\n    page.goto('http://localhost:5173')\n    page.wait_for_load_state('networkidle')\n\n    # Discover all buttons on the page\n    buttons = page.locator('button').all()\n    print(f\"Found {len(buttons)} buttons:\")\n    for i, button in enumerate(buttons):\n        text = button.inner_text() if button.is_visible() else \"[hidden]\"\n        print(f\"  [{i}] {text}\")\n\n    # Discover links\n    links = page.locator('a[href]').all()\n    print(f\"\\nFound {len(links)} links:\")\n    for link in links[:5]:  # Show first 5\n        text = link.inner_text().strip()\n        href = link.get_attribute('href')\n        print(f\"  - {text} -> {href}\")\n\n    # Discover input fields\n    inputs = page.locator('input, textarea, select').all()\n    print(f\"\\nFound {len(inputs)} input fields:\")\n    for input_elem in inputs:\n        name = input_elem.get_attribute('name') or input_elem.get_attribute('id') or \"[unnamed]\"\n        input_type = input_elem.get_attribute('type') or 'text'\n        print(f\"  - {name} ({input_type})\")\n\n    # Take screenshot for visual reference\n    page.screenshot(path='/tmp/page_discovery.png', full_page=True)\n    print(\"\\nScreenshot saved to /tmp/page_discovery.png\")\n\n    browser.close()"
  },
  {
    "path": "skills/webapp-testing/examples/static_html_automation.py",
    "content": "from playwright.sync_api import sync_playwright\nimport os\n\n# Example: Automating interaction with static HTML files using file:// URLs\n\nhtml_file_path = os.path.abspath('path/to/your/file.html')\nfile_url = f'file://{html_file_path}'\n\nwith sync_playwright() as p:\n    browser = p.chromium.launch(headless=True)\n    page = browser.new_page(viewport={'width': 1920, 'height': 1080})\n\n    # Navigate to local HTML file\n    page.goto(file_url)\n\n    # Take screenshot\n    page.screenshot(path='/mnt/user-data/outputs/static_page.png', full_page=True)\n\n    # Interact with elements\n    page.click('text=Click Me')\n    page.fill('#name', 'John Doe')\n    page.fill('#email', 'john@example.com')\n\n    # Submit form\n    page.click('button[type=\"submit\"]')\n    page.wait_for_timeout(500)\n\n    # Take final screenshot\n    page.screenshot(path='/mnt/user-data/outputs/after_submit.png', full_page=True)\n\n    browser.close()\n\nprint(\"Static HTML automation completed!\")"
  },
  {
    "path": "skills/webapp-testing/scripts/with_server.py",
    "content": "#!/usr/bin/env python3\n\"\"\"\nStart one or more servers, wait for them to be ready, run a command, then clean up.\n\nUsage:\n    # Single server\n    python scripts/with_server.py --server \"npm run dev\" --port 5173 -- python automation.py\n    python scripts/with_server.py --server \"npm start\" --port 3000 -- python test.py\n\n    # Multiple servers\n    python scripts/with_server.py \\\n      --server \"cd backend && python server.py\" --port 3000 \\\n      --server \"cd frontend && npm run dev\" --port 5173 \\\n      -- python test.py\n\"\"\"\n\nimport subprocess\nimport socket\nimport time\nimport sys\nimport argparse\n\ndef is_server_ready(port, timeout=30):\n    \"\"\"Wait for server to be ready by polling the port.\"\"\"\n    start_time = time.time()\n    while time.time() - start_time < timeout:\n        try:\n            with socket.create_connection(('localhost', port), timeout=1):\n                return True\n        except (socket.error, ConnectionRefusedError):\n            time.sleep(0.5)\n    return False\n\n\ndef main():\n    parser = argparse.ArgumentParser(description='Run command with one or more servers')\n    parser.add_argument('--server', action='append', dest='servers', required=True, help='Server command (can be repeated)')\n    parser.add_argument('--port', action='append', dest='ports', type=int, required=True, help='Port for each server (must match --server count)')\n    parser.add_argument('--timeout', type=int, default=30, help='Timeout in seconds per server (default: 30)')\n    parser.add_argument('command', nargs=argparse.REMAINDER, help='Command to run after server(s) ready')\n\n    args = parser.parse_args()\n\n    # Remove the '--' separator if present\n    if args.command and args.command[0] == '--':\n        args.command = args.command[1:]\n\n    if not args.command:\n        print(\"Error: No command specified to run\")\n        sys.exit(1)\n\n    # Parse server configurations\n    if len(args.servers) != len(args.ports):\n        print(\"Error: Number of --server and --port arguments must match\")\n        sys.exit(1)\n\n    servers = []\n    for cmd, port in zip(args.servers, args.ports):\n        servers.append({'cmd': cmd, 'port': port})\n\n    server_processes = []\n\n    try:\n        # Start all servers\n        for i, server in enumerate(servers):\n            print(f\"Starting server {i+1}/{len(servers)}: {server['cmd']}\")\n\n            # Use shell=True to support commands with cd and &&\n            process = subprocess.Popen(\n                server['cmd'],\n                shell=True,\n                stdout=subprocess.PIPE,\n                stderr=subprocess.PIPE\n            )\n            server_processes.append(process)\n\n            # Wait for this server to be ready\n            print(f\"Waiting for server on port {server['port']}...\")\n            if not is_server_ready(server['port'], timeout=args.timeout):\n                raise RuntimeError(f\"Server failed to start on port {server['port']} within {args.timeout}s\")\n\n            print(f\"Server ready on port {server['port']}\")\n\n        print(f\"\\nAll {len(servers)} server(s) ready\")\n\n        # Run the command\n        print(f\"Running: {' '.join(args.command)}\\n\")\n        result = subprocess.run(args.command)\n        sys.exit(result.returncode)\n\n    finally:\n        # Clean up all servers\n        print(f\"\\nStopping {len(server_processes)} server(s)...\")\n        for i, process in enumerate(server_processes):\n            try:\n                process.terminate()\n                process.wait(timeout=5)\n            except subprocess.TimeoutExpired:\n                process.kill()\n                process.wait()\n            print(f\"Server {i+1} stopped\")\n        print(\"All servers stopped\")\n\n\nif __name__ == '__main__':\n    main()"
  },
  {
    "path": "skills/xlsx/LICENSE.txt",
    "content": "© 2025 Anthropic, PBC. All rights reserved.\n\nLICENSE: Use of these materials (including all code, prompts, assets, files,\nand other components of this Skill) is governed by your agreement with\nAnthropic regarding use of Anthropic's services. If no separate agreement\nexists, use is governed by Anthropic's Consumer Terms of Service or\nCommercial Terms of Service, as applicable:\nhttps://www.anthropic.com/legal/consumer-terms\nhttps://www.anthropic.com/legal/commercial-terms\nYour applicable agreement is referred to as the \"Agreement.\" \"Services\" are\nas defined in the Agreement.\n\nADDITIONAL RESTRICTIONS: Notwithstanding anything in the Agreement to the\ncontrary, users may not:\n\n- Extract these materials from the Services or retain copies of these\n  materials outside the Services\n- Reproduce or copy these materials, except for temporary copies created\n  automatically during authorized use of the Services\n- Create derivative works based on these materials\n- Distribute, sublicense, or transfer these materials to any third party\n- Make, offer to sell, sell, or import any inventions embodied in these\n  materials\n- Reverse engineer, decompile, or disassemble these materials\n\nThe receipt, viewing, or possession of these materials does not convey or\nimply any license or right beyond those expressly granted above.\n\nAnthropic retains all right, title, and interest in these materials,\nincluding all copyrights, patents, and other intellectual property rights.\n"
  },
  {
    "path": "skills/xlsx/SKILL.md",
    "content": "---\nname: xlsx\ndescription: \"Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or from other data sources; or convert between tabular file formats. Trigger especially when the user references a spreadsheet file by name or path — even casually (like \\\"the xlsx in my downloads\\\") — and wants something done to it or produced from it. Also trigger for cleaning or restructuring messy tabular data files (malformed rows, misplaced headers, junk data) into proper spreadsheets. The deliverable must be a spreadsheet file. Do NOT trigger when the primary deliverable is a Word document, HTML report, standalone Python script, database pipeline, or Google Sheets API integration, even if tabular data is involved.\"\nlicense: Proprietary. LICENSE.txt has complete terms\n---\n\n# Requirements for Outputs\n\n## All Excel files\n\n### Professional Font\n- Use a consistent, professional font (e.g., Arial, Times New Roman) for all deliverables unless otherwise instructed by the user\n\n### Zero Formula Errors\n- Every Excel model MUST be delivered with ZERO formula errors (#REF!, #DIV/0!, #VALUE!, #N/A, #NAME?)\n\n### Preserve Existing Templates (when updating templates)\n- Study and EXACTLY match existing format, style, and conventions when modifying files\n- Never impose standardized formatting on files with established patterns\n- Existing template conventions ALWAYS override these guidelines\n\n## Financial models\n\n### Color Coding Standards\nUnless otherwise stated by the user or existing template\n\n#### Industry-Standard Color Conventions\n- **Blue text (RGB: 0,0,255)**: Hardcoded inputs, and numbers users will change for scenarios\n- **Black text (RGB: 0,0,0)**: ALL formulas and calculations\n- **Green text (RGB: 0,128,0)**: Links pulling from other worksheets within same workbook\n- **Red text (RGB: 255,0,0)**: External links to other files\n- **Yellow background (RGB: 255,255,0)**: Key assumptions needing attention or cells that need to be updated\n\n### Number Formatting Standards\n\n#### Required Format Rules\n- **Years**: Format as text strings (e.g., \"2024\" not \"2,024\")\n- **Currency**: Use $#,##0 format; ALWAYS specify units in headers (\"Revenue ($mm)\")\n- **Zeros**: Use number formatting to make all zeros \"-\", including percentages (e.g., \"$#,##0;($#,##0);-\")\n- **Percentages**: Default to 0.0% format (one decimal)\n- **Multiples**: Format as 0.0x for valuation multiples (EV/EBITDA, P/E)\n- **Negative numbers**: Use parentheses (123) not minus -123\n\n### Formula Construction Rules\n\n#### Assumptions Placement\n- Place ALL assumptions (growth rates, margins, multiples, etc.) in separate assumption cells\n- Use cell references instead of hardcoded values in formulas\n- Example: Use =B5*(1+$B$6) instead of =B5*1.05\n\n#### Formula Error Prevention\n- Verify all cell references are correct\n- Check for off-by-one errors in ranges\n- Ensure consistent formulas across all projection periods\n- Test with edge cases (zero values, negative numbers)\n- Verify no unintended circular references\n\n#### Documentation Requirements for Hardcodes\n- Comment or in cells beside (if end of table). Format: \"Source: [System/Document], [Date], [Specific Reference], [URL if applicable]\"\n- Examples:\n  - \"Source: Company 10-K, FY2024, Page 45, Revenue Note, [SEC EDGAR URL]\"\n  - \"Source: Company 10-Q, Q2 2025, Exhibit 99.1, [SEC EDGAR URL]\"\n  - \"Source: Bloomberg Terminal, 8/15/2025, AAPL US Equity\"\n  - \"Source: FactSet, 8/20/2025, Consensus Estimates Screen\"\n\n# XLSX creation, editing, and analysis\n\n## Overview\n\nA user may ask you to create, edit, or analyze the contents of an .xlsx file. You have different tools and workflows available for different tasks.\n\n## Important Requirements\n\n**LibreOffice Required for Formula Recalculation**: You can assume LibreOffice is installed for recalculating formula values using the `scripts/recalc.py` script. The script automatically configures LibreOffice on first run, including in sandboxed environments where Unix sockets are restricted (handled by `scripts/office/soffice.py`)\n\n## Reading and analyzing data\n\n### Data analysis with pandas\nFor data analysis, visualization, and basic operations, use **pandas** which provides powerful data manipulation capabilities:\n\n```python\nimport pandas as pd\n\n# Read Excel\ndf = pd.read_excel('file.xlsx')  # Default: first sheet\nall_sheets = pd.read_excel('file.xlsx', sheet_name=None)  # All sheets as dict\n\n# Analyze\ndf.head()      # Preview data\ndf.info()      # Column info\ndf.describe()  # Statistics\n\n# Write Excel\ndf.to_excel('output.xlsx', index=False)\n```\n\n## Excel File Workflows\n\n## CRITICAL: Use Formulas, Not Hardcoded Values\n\n**Always use Excel formulas instead of calculating values in Python and hardcoding them.** This ensures the spreadsheet remains dynamic and updateable.\n\n### ❌ WRONG - Hardcoding Calculated Values\n```python\n# Bad: Calculating in Python and hardcoding result\ntotal = df['Sales'].sum()\nsheet['B10'] = total  # Hardcodes 5000\n\n# Bad: Computing growth rate in Python\ngrowth = (df.iloc[-1]['Revenue'] - df.iloc[0]['Revenue']) / df.iloc[0]['Revenue']\nsheet['C5'] = growth  # Hardcodes 0.15\n\n# Bad: Python calculation for average\navg = sum(values) / len(values)\nsheet['D20'] = avg  # Hardcodes 42.5\n```\n\n### ✅ CORRECT - Using Excel Formulas\n```python\n# Good: Let Excel calculate the sum\nsheet['B10'] = '=SUM(B2:B9)'\n\n# Good: Growth rate as Excel formula\nsheet['C5'] = '=(C4-C2)/C2'\n\n# Good: Average using Excel function\nsheet['D20'] = '=AVERAGE(D2:D19)'\n```\n\nThis applies to ALL calculations - totals, percentages, ratios, differences, etc. The spreadsheet should be able to recalculate when source data changes.\n\n## Common Workflow\n1. **Choose tool**: pandas for data, openpyxl for formulas/formatting\n2. **Create/Load**: Create new workbook or load existing file\n3. **Modify**: Add/edit data, formulas, and formatting\n4. **Save**: Write to file\n5. **Recalculate formulas (MANDATORY IF USING FORMULAS)**: Use the scripts/recalc.py script\n   ```bash\n   python scripts/recalc.py output.xlsx\n   ```\n6. **Verify and fix any errors**: \n   - The script returns JSON with error details\n   - If `status` is `errors_found`, check `error_summary` for specific error types and locations\n   - Fix the identified errors and recalculate again\n   - Common errors to fix:\n     - `#REF!`: Invalid cell references\n     - `#DIV/0!`: Division by zero\n     - `#VALUE!`: Wrong data type in formula\n     - `#NAME?`: Unrecognized formula name\n\n### Creating new Excel files\n\n```python\n# Using openpyxl for formulas and formatting\nfrom openpyxl import Workbook\nfrom openpyxl.styles import Font, PatternFill, Alignment\n\nwb = Workbook()\nsheet = wb.active\n\n# Add data\nsheet['A1'] = 'Hello'\nsheet['B1'] = 'World'\nsheet.append(['Row', 'of', 'data'])\n\n# Add formula\nsheet['B2'] = '=SUM(A1:A10)'\n\n# Formatting\nsheet['A1'].font = Font(bold=True, color='FF0000')\nsheet['A1'].fill = PatternFill('solid', start_color='FFFF00')\nsheet['A1'].alignment = Alignment(horizontal='center')\n\n# Column width\nsheet.column_dimensions['A'].width = 20\n\nwb.save('output.xlsx')\n```\n\n### Editing existing Excel files\n\n```python\n# Using openpyxl to preserve formulas and formatting\nfrom openpyxl import load_workbook\n\n# Load existing file\nwb = load_workbook('existing.xlsx')\nsheet = wb.active  # or wb['SheetName'] for specific sheet\n\n# Working with multiple sheets\nfor sheet_name in wb.sheetnames:\n    sheet = wb[sheet_name]\n    print(f\"Sheet: {sheet_name}\")\n\n# Modify cells\nsheet['A1'] = 'New Value'\nsheet.insert_rows(2)  # Insert row at position 2\nsheet.delete_cols(3)  # Delete column 3\n\n# Add new sheet\nnew_sheet = wb.create_sheet('NewSheet')\nnew_sheet['A1'] = 'Data'\n\nwb.save('modified.xlsx')\n```\n\n## Recalculating formulas\n\nExcel files created or modified by openpyxl contain formulas as strings but not calculated values. Use the provided `scripts/recalc.py` script to recalculate formulas:\n\n```bash\npython scripts/recalc.py <excel_file> [timeout_seconds]\n```\n\nExample:\n```bash\npython scripts/recalc.py output.xlsx 30\n```\n\nThe script:\n- Automatically sets up LibreOffice macro on first run\n- Recalculates all formulas in all sheets\n- Scans ALL cells for Excel errors (#REF!, #DIV/0!, etc.)\n- Returns JSON with detailed error locations and counts\n- Works on both Linux and macOS\n\n## Formula Verification Checklist\n\nQuick checks to ensure formulas work correctly:\n\n### Essential Verification\n- [ ] **Test 2-3 sample references**: Verify they pull correct values before building full model\n- [ ] **Column mapping**: Confirm Excel columns match (e.g., column 64 = BL, not BK)\n- [ ] **Row offset**: Remember Excel rows are 1-indexed (DataFrame row 5 = Excel row 6)\n\n### Common Pitfalls\n- [ ] **NaN handling**: Check for null values with `pd.notna()`\n- [ ] **Far-right columns**: FY data often in columns 50+ \n- [ ] **Multiple matches**: Search all occurrences, not just first\n- [ ] **Division by zero**: Check denominators before using `/` in formulas (#DIV/0!)\n- [ ] **Wrong references**: Verify all cell references point to intended cells (#REF!)\n- [ ] **Cross-sheet references**: Use correct format (Sheet1!A1) for linking sheets\n\n### Formula Testing Strategy\n- [ ] **Start small**: Test formulas on 2-3 cells before applying broadly\n- [ ] **Verify dependencies**: Check all cells referenced in formulas exist\n- [ ] **Test edge cases**: Include zero, negative, and very large values\n\n### Interpreting scripts/recalc.py Output\nThe script returns JSON with error details:\n```json\n{\n  \"status\": \"success\",           // or \"errors_found\"\n  \"total_errors\": 0,              // Total error count\n  \"total_formulas\": 42,           // Number of formulas in file\n  \"error_summary\": {              // Only present if errors found\n    \"#REF!\": {\n      \"count\": 2,\n      \"locations\": [\"Sheet1!B5\", \"Sheet1!C10\"]\n    }\n  }\n}\n```\n\n## Best Practices\n\n### Library Selection\n- **pandas**: Best for data analysis, bulk operations, and simple data export\n- **openpyxl**: Best for complex formatting, formulas, and Excel-specific features\n\n### Working with openpyxl\n- Cell indices are 1-based (row=1, column=1 refers to cell A1)\n- Use `data_only=True` to read calculated values: `load_workbook('file.xlsx', data_only=True)`\n- **Warning**: If opened with `data_only=True` and saved, formulas are replaced with values and permanently lost\n- For large files: Use `read_only=True` for reading or `write_only=True` for writing\n- Formulas are preserved but not evaluated - use scripts/recalc.py to update values\n\n### Working with pandas\n- Specify data types to avoid inference issues: `pd.read_excel('file.xlsx', dtype={'id': str})`\n- For large files, read specific columns: `pd.read_excel('file.xlsx', usecols=['A', 'C', 'E'])`\n- Handle dates properly: `pd.read_excel('file.xlsx', parse_dates=['date_column'])`\n\n## Code Style Guidelines\n**IMPORTANT**: When generating Python code for Excel operations:\n- Write minimal, concise Python code without unnecessary comments\n- Avoid verbose variable names and redundant operations\n- Avoid unnecessary print statements\n\n**For Excel files themselves**:\n- Add comments to cells with complex formulas or important assumptions\n- Document data sources for hardcoded values\n- Include notes for key calculations and model sections"
  },
  {
    "path": "skills/xlsx/scripts/office/helpers/__init__.py",
    "content": ""
  },
  {
    "path": "skills/xlsx/scripts/office/helpers/merge_runs.py",
    "content": "\"\"\"Merge adjacent runs with identical formatting in DOCX.\n\nMerges adjacent <w:r> elements that have identical <w:rPr> properties.\nWorks on runs in paragraphs and inside tracked changes (<w:ins>, <w:del>).\n\nAlso:\n- Removes rsid attributes from runs (revision metadata that doesn't affect rendering)\n- Removes proofErr elements (spell/grammar markers that block merging)\n\"\"\"\n\nfrom pathlib import Path\n\nimport defusedxml.minidom\n\n\ndef merge_runs(input_dir: str) -> tuple[int, str]:\n    doc_xml = Path(input_dir) / \"word\" / \"document.xml\"\n\n    if not doc_xml.exists():\n        return 0, f\"Error: {doc_xml} not found\"\n\n    try:\n        dom = defusedxml.minidom.parseString(doc_xml.read_text(encoding=\"utf-8\"))\n        root = dom.documentElement\n\n        _remove_elements(root, \"proofErr\")\n        _strip_run_rsid_attrs(root)\n\n        containers = {run.parentNode for run in _find_elements(root, \"r\")}\n\n        merge_count = 0\n        for container in containers:\n            merge_count += _merge_runs_in(container)\n\n        doc_xml.write_bytes(dom.toxml(encoding=\"UTF-8\"))\n        return merge_count, f\"Merged {merge_count} runs\"\n\n    except Exception as e:\n        return 0, f\"Error: {e}\"\n\n\n\n\ndef _find_elements(root, tag: str) -> list:\n    results = []\n\n    def traverse(node):\n        if node.nodeType == node.ELEMENT_NODE:\n            name = node.localName or node.tagName\n            if name == tag or name.endswith(f\":{tag}\"):\n                results.append(node)\n            for child in node.childNodes:\n                traverse(child)\n\n    traverse(root)\n    return results\n\n\ndef _get_child(parent, tag: str):\n    for child in parent.childNodes:\n        if child.nodeType == child.ELEMENT_NODE:\n            name = child.localName or child.tagName\n            if name == tag or name.endswith(f\":{tag}\"):\n                return child\n    return None\n\n\ndef _get_children(parent, tag: str) -> list:\n    results = []\n    for child in parent.childNodes:\n        if child.nodeType == child.ELEMENT_NODE:\n            name = child.localName or child.tagName\n            if name == tag or name.endswith(f\":{tag}\"):\n                results.append(child)\n    return results\n\n\ndef _is_adjacent(elem1, elem2) -> bool:\n    node = elem1.nextSibling\n    while node:\n        if node == elem2:\n            return True\n        if node.nodeType == node.ELEMENT_NODE:\n            return False\n        if node.nodeType == node.TEXT_NODE and node.data.strip():\n            return False\n        node = node.nextSibling\n    return False\n\n\n\n\ndef _remove_elements(root, tag: str):\n    for elem in _find_elements(root, tag):\n        if elem.parentNode:\n            elem.parentNode.removeChild(elem)\n\n\ndef _strip_run_rsid_attrs(root):\n    for run in _find_elements(root, \"r\"):\n        for attr in list(run.attributes.values()):\n            if \"rsid\" in attr.name.lower():\n                run.removeAttribute(attr.name)\n\n\n\n\ndef _merge_runs_in(container) -> int:\n    merge_count = 0\n    run = _first_child_run(container)\n\n    while run:\n        while True:\n            next_elem = _next_element_sibling(run)\n            if next_elem and _is_run(next_elem) and _can_merge(run, next_elem):\n                _merge_run_content(run, next_elem)\n                container.removeChild(next_elem)\n                merge_count += 1\n            else:\n                break\n\n        _consolidate_text(run)\n        run = _next_sibling_run(run)\n\n    return merge_count\n\n\ndef _first_child_run(container):\n    for child in container.childNodes:\n        if child.nodeType == child.ELEMENT_NODE and _is_run(child):\n            return child\n    return None\n\n\ndef _next_element_sibling(node):\n    sibling = node.nextSibling\n    while sibling:\n        if sibling.nodeType == sibling.ELEMENT_NODE:\n            return sibling\n        sibling = sibling.nextSibling\n    return None\n\n\ndef _next_sibling_run(node):\n    sibling = node.nextSibling\n    while sibling:\n        if sibling.nodeType == sibling.ELEMENT_NODE:\n            if _is_run(sibling):\n                return sibling\n        sibling = sibling.nextSibling\n    return None\n\n\ndef _is_run(node) -> bool:\n    name = node.localName or node.tagName\n    return name == \"r\" or name.endswith(\":r\")\n\n\ndef _can_merge(run1, run2) -> bool:\n    rpr1 = _get_child(run1, \"rPr\")\n    rpr2 = _get_child(run2, \"rPr\")\n\n    if (rpr1 is None) != (rpr2 is None):\n        return False\n    if rpr1 is None:\n        return True\n    return rpr1.toxml() == rpr2.toxml()  \n\n\ndef _merge_run_content(target, source):\n    for child in list(source.childNodes):\n        if child.nodeType == child.ELEMENT_NODE:\n            name = child.localName or child.tagName\n            if name != \"rPr\" and not name.endswith(\":rPr\"):\n                target.appendChild(child)\n\n\ndef _consolidate_text(run):\n    t_elements = _get_children(run, \"t\")\n\n    for i in range(len(t_elements) - 1, 0, -1):\n        curr, prev = t_elements[i], t_elements[i - 1]\n\n        if _is_adjacent(prev, curr):\n            prev_text = prev.firstChild.data if prev.firstChild else \"\"\n            curr_text = curr.firstChild.data if curr.firstChild else \"\"\n            merged = prev_text + curr_text\n\n            if prev.firstChild:\n                prev.firstChild.data = merged\n            else:\n                prev.appendChild(run.ownerDocument.createTextNode(merged))\n\n            if merged.startswith(\" \") or merged.endswith(\" \"):\n                prev.setAttribute(\"xml:space\", \"preserve\")\n            elif prev.hasAttribute(\"xml:space\"):\n                prev.removeAttribute(\"xml:space\")\n\n            run.removeChild(curr)\n"
  },
  {
    "path": "skills/xlsx/scripts/office/helpers/simplify_redlines.py",
    "content": "\"\"\"Simplify tracked changes by merging adjacent w:ins or w:del elements.\n\nMerges adjacent <w:ins> elements from the same author into a single element.\nSame for <w:del> elements. This makes heavily-redlined documents easier to\nwork with by reducing the number of tracked change wrappers.\n\nRules:\n- Only merges w:ins with w:ins, w:del with w:del (same element type)\n- Only merges if same author (ignores timestamp differences)\n- Only merges if truly adjacent (only whitespace between them)\n\"\"\"\n\nimport xml.etree.ElementTree as ET\nimport zipfile\nfrom pathlib import Path\n\nimport defusedxml.minidom\n\nWORD_NS = \"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n\n\ndef simplify_redlines(input_dir: str) -> tuple[int, str]:\n    doc_xml = Path(input_dir) / \"word\" / \"document.xml\"\n\n    if not doc_xml.exists():\n        return 0, f\"Error: {doc_xml} not found\"\n\n    try:\n        dom = defusedxml.minidom.parseString(doc_xml.read_text(encoding=\"utf-8\"))\n        root = dom.documentElement\n\n        merge_count = 0\n\n        containers = _find_elements(root, \"p\") + _find_elements(root, \"tc\")\n\n        for container in containers:\n            merge_count += _merge_tracked_changes_in(container, \"ins\")\n            merge_count += _merge_tracked_changes_in(container, \"del\")\n\n        doc_xml.write_bytes(dom.toxml(encoding=\"UTF-8\"))\n        return merge_count, f\"Simplified {merge_count} tracked changes\"\n\n    except Exception as e:\n        return 0, f\"Error: {e}\"\n\n\ndef _merge_tracked_changes_in(container, tag: str) -> int:\n    merge_count = 0\n\n    tracked = [\n        child\n        for child in container.childNodes\n        if child.nodeType == child.ELEMENT_NODE and _is_element(child, tag)\n    ]\n\n    if len(tracked) < 2:\n        return 0\n\n    i = 0\n    while i < len(tracked) - 1:\n        curr = tracked[i]\n        next_elem = tracked[i + 1]\n\n        if _can_merge_tracked(curr, next_elem):\n            _merge_tracked_content(curr, next_elem)\n            container.removeChild(next_elem)\n            tracked.pop(i + 1)\n            merge_count += 1\n        else:\n            i += 1\n\n    return merge_count\n\n\ndef _is_element(node, tag: str) -> bool:\n    name = node.localName or node.tagName\n    return name == tag or name.endswith(f\":{tag}\")\n\n\ndef _get_author(elem) -> str:\n    author = elem.getAttribute(\"w:author\")\n    if not author:\n        for attr in elem.attributes.values():\n            if attr.localName == \"author\" or attr.name.endswith(\":author\"):\n                return attr.value\n    return author\n\n\ndef _can_merge_tracked(elem1, elem2) -> bool:\n    if _get_author(elem1) != _get_author(elem2):\n        return False\n\n    node = elem1.nextSibling\n    while node and node != elem2:\n        if node.nodeType == node.ELEMENT_NODE:\n            return False\n        if node.nodeType == node.TEXT_NODE and node.data.strip():\n            return False\n        node = node.nextSibling\n\n    return True\n\n\ndef _merge_tracked_content(target, source):\n    while source.firstChild:\n        child = source.firstChild\n        source.removeChild(child)\n        target.appendChild(child)\n\n\ndef _find_elements(root, tag: str) -> list:\n    results = []\n\n    def traverse(node):\n        if node.nodeType == node.ELEMENT_NODE:\n            name = node.localName or node.tagName\n            if name == tag or name.endswith(f\":{tag}\"):\n                results.append(node)\n            for child in node.childNodes:\n                traverse(child)\n\n    traverse(root)\n    return results\n\n\ndef get_tracked_change_authors(doc_xml_path: Path) -> dict[str, int]:\n    if not doc_xml_path.exists():\n        return {}\n\n    try:\n        tree = ET.parse(doc_xml_path)\n        root = tree.getroot()\n    except ET.ParseError:\n        return {}\n\n    namespaces = {\"w\": WORD_NS}\n    author_attr = f\"{{{WORD_NS}}}author\"\n\n    authors: dict[str, int] = {}\n    for tag in [\"ins\", \"del\"]:\n        for elem in root.findall(f\".//w:{tag}\", namespaces):\n            author = elem.get(author_attr)\n            if author:\n                authors[author] = authors.get(author, 0) + 1\n\n    return authors\n\n\ndef _get_authors_from_docx(docx_path: Path) -> dict[str, int]:\n    try:\n        with zipfile.ZipFile(docx_path, \"r\") as zf:\n            if \"word/document.xml\" not in zf.namelist():\n                return {}\n            with zf.open(\"word/document.xml\") as f:\n                tree = ET.parse(f)\n                root = tree.getroot()\n\n                namespaces = {\"w\": WORD_NS}\n                author_attr = f\"{{{WORD_NS}}}author\"\n\n                authors: dict[str, int] = {}\n                for tag in [\"ins\", \"del\"]:\n                    for elem in root.findall(f\".//w:{tag}\", namespaces):\n                        author = elem.get(author_attr)\n                        if author:\n                            authors[author] = authors.get(author, 0) + 1\n                return authors\n    except (zipfile.BadZipFile, ET.ParseError):\n        return {}\n\n\ndef infer_author(modified_dir: Path, original_docx: Path, default: str = \"Claude\") -> str:\n    modified_xml = modified_dir / \"word\" / \"document.xml\"\n    modified_authors = get_tracked_change_authors(modified_xml)\n\n    if not modified_authors:\n        return default\n\n    original_authors = _get_authors_from_docx(original_docx)\n\n    new_changes: dict[str, int] = {}\n    for author, count in modified_authors.items():\n        original_count = original_authors.get(author, 0)\n        diff = count - original_count\n        if diff > 0:\n            new_changes[author] = diff\n\n    if not new_changes:\n        return default\n\n    if len(new_changes) == 1:\n        return next(iter(new_changes))\n\n    raise ValueError(\n        f\"Multiple authors added new changes: {new_changes}. \"\n        \"Cannot infer which author to validate.\"\n    )\n"
  },
  {
    "path": "skills/xlsx/scripts/office/pack.py",
    "content": "\"\"\"Pack a directory into a DOCX, PPTX, or XLSX file.\n\nValidates with auto-repair, condenses XML formatting, and creates the Office file.\n\nUsage:\n    python pack.py <input_directory> <output_file> [--original <file>] [--validate true|false]\n\nExamples:\n    python pack.py unpacked/ output.docx --original input.docx\n    python pack.py unpacked/ output.pptx --validate false\n\"\"\"\n\nimport argparse\nimport sys\nimport shutil\nimport tempfile\nimport zipfile\nfrom pathlib import Path\n\nimport defusedxml.minidom\n\nfrom validators import DOCXSchemaValidator, PPTXSchemaValidator, RedliningValidator\n\ndef pack(\n    input_directory: str,\n    output_file: str,\n    original_file: str | None = None,\n    validate: bool = True,\n    infer_author_func=None,\n) -> tuple[None, str]:\n    input_dir = Path(input_directory)\n    output_path = Path(output_file)\n    suffix = output_path.suffix.lower()\n\n    if not input_dir.is_dir():\n        return None, f\"Error: {input_dir} is not a directory\"\n\n    if suffix not in {\".docx\", \".pptx\", \".xlsx\"}:\n        return None, f\"Error: {output_file} must be a .docx, .pptx, or .xlsx file\"\n\n    if validate and original_file:\n        original_path = Path(original_file)\n        if original_path.exists():\n            success, output = _run_validation(\n                input_dir, original_path, suffix, infer_author_func\n            )\n            if output:\n                print(output)\n            if not success:\n                return None, f\"Error: Validation failed for {input_dir}\"\n\n    with tempfile.TemporaryDirectory() as temp_dir:\n        temp_content_dir = Path(temp_dir) / \"content\"\n        shutil.copytree(input_dir, temp_content_dir)\n\n        for pattern in [\"*.xml\", \"*.rels\"]:\n            for xml_file in temp_content_dir.rglob(pattern):\n                _condense_xml(xml_file)\n\n        output_path.parent.mkdir(parents=True, exist_ok=True)\n        with zipfile.ZipFile(output_path, \"w\", zipfile.ZIP_DEFLATED) as zf:\n            for f in temp_content_dir.rglob(\"*\"):\n                if f.is_file():\n                    zf.write(f, f.relative_to(temp_content_dir))\n\n    return None, f\"Successfully packed {input_dir} to {output_file}\"\n\n\ndef _run_validation(\n    unpacked_dir: Path,\n    original_file: Path,\n    suffix: str,\n    infer_author_func=None,\n) -> tuple[bool, str | None]:\n    output_lines = []\n    validators = []\n\n    if suffix == \".docx\":\n        author = \"Claude\"\n        if infer_author_func:\n            try:\n                author = infer_author_func(unpacked_dir, original_file)\n            except ValueError as e:\n                print(f\"Warning: {e} Using default author 'Claude'.\", file=sys.stderr)\n\n        validators = [\n            DOCXSchemaValidator(unpacked_dir, original_file),\n            RedliningValidator(unpacked_dir, original_file, author=author),\n        ]\n    elif suffix == \".pptx\":\n        validators = [PPTXSchemaValidator(unpacked_dir, original_file)]\n\n    if not validators:\n        return True, None\n\n    total_repairs = sum(v.repair() for v in validators)\n    if total_repairs:\n        output_lines.append(f\"Auto-repaired {total_repairs} issue(s)\")\n\n    success = all(v.validate() for v in validators)\n\n    if success:\n        output_lines.append(\"All validations PASSED!\")\n\n    return success, \"\\n\".join(output_lines) if output_lines else None\n\n\ndef _condense_xml(xml_file: Path) -> None:\n    try:\n        with open(xml_file, encoding=\"utf-8\") as f:\n            dom = defusedxml.minidom.parse(f)\n\n        for element in dom.getElementsByTagName(\"*\"):\n            if element.tagName.endswith(\":t\"):\n                continue\n\n            for child in list(element.childNodes):\n                if (\n                    child.nodeType == child.TEXT_NODE\n                    and child.nodeValue\n                    and child.nodeValue.strip() == \"\"\n                ) or child.nodeType == child.COMMENT_NODE:\n                    element.removeChild(child)\n\n        xml_file.write_bytes(dom.toxml(encoding=\"UTF-8\"))\n    except Exception as e:\n        print(f\"ERROR: Failed to parse {xml_file.name}: {e}\", file=sys.stderr)\n        raise\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser(\n        description=\"Pack a directory into a DOCX, PPTX, or XLSX file\"\n    )\n    parser.add_argument(\"input_directory\", help=\"Unpacked Office document directory\")\n    parser.add_argument(\"output_file\", help=\"Output Office file (.docx/.pptx/.xlsx)\")\n    parser.add_argument(\n        \"--original\",\n        help=\"Original file for validation comparison\",\n    )\n    parser.add_argument(\n        \"--validate\",\n        type=lambda x: x.lower() == \"true\",\n        default=True,\n        metavar=\"true|false\",\n        help=\"Run validation with auto-repair (default: true)\",\n    )\n    args = parser.parse_args()\n\n    _, message = pack(\n        args.input_directory,\n        args.output_file,\n        original_file=args.original,\n        validate=args.validate,\n    )\n    print(message)\n\n    if \"Error\" in message:\n        sys.exit(1)\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/chart\"\n  xmlns:cdr=\"http://schemas.openxmlformats.org/drawingml/2006/chartDrawing\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/chart\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"unqualified\" blockDefault=\"#all\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/chartDrawing\"\n    schemaLocation=\"dml-chartDrawing.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:complexType name=\"CT_Boolean\">\n    <xsd:attribute name=\"val\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Double\">\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_UnsignedInt\">\n    <xsd:attribute name=\"val\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RelId\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Extension\">\n    <xsd:sequence>\n      <xsd:any processContents=\"lax\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"xsd:token\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExtensionList\">\n    <xsd:sequence>\n      <xsd:element name=\"ext\" type=\"CT_Extension\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumVal\">\n    <xsd:sequence>\n      <xsd:element name=\"v\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"idx\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"formatCode\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumData\">\n    <xsd:sequence>\n      <xsd:element name=\"formatCode\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ptCount\" type=\"CT_UnsignedInt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pt\" type=\"CT_NumVal\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumRef\">\n    <xsd:sequence>\n      <xsd:element name=\"f\" type=\"xsd:string\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"numCache\" type=\"CT_NumData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumDataSource\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"numRef\" type=\"CT_NumRef\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"numLit\" type=\"CT_NumData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StrVal\">\n    <xsd:sequence>\n      <xsd:element name=\"v\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"idx\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StrData\">\n    <xsd:sequence>\n      <xsd:element name=\"ptCount\" type=\"CT_UnsignedInt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pt\" type=\"CT_StrVal\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StrRef\">\n    <xsd:sequence>\n      <xsd:element name=\"f\" type=\"xsd:string\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"strCache\" type=\"CT_StrData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Tx\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"strRef\" type=\"CT_StrRef\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"rich\" type=\"a:CT_TextBody\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextLanguageID\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Lang\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Lvl\">\n    <xsd:sequence>\n      <xsd:element name=\"pt\" type=\"CT_StrVal\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MultiLvlStrData\">\n    <xsd:sequence>\n      <xsd:element name=\"ptCount\" type=\"CT_UnsignedInt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl\" type=\"CT_Lvl\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MultiLvlStrRef\">\n    <xsd:sequence>\n      <xsd:element name=\"f\" type=\"xsd:string\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"multiLvlStrCache\" type=\"CT_MultiLvlStrData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AxDataSource\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"multiLvlStrRef\" type=\"CT_MultiLvlStrRef\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"numRef\" type=\"CT_NumRef\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"numLit\" type=\"CT_NumData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"strRef\" type=\"CT_StrRef\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"strLit\" type=\"CT_StrData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SerTx\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"strRef\" type=\"CT_StrRef\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"v\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LayoutTarget\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"inner\"/>\n      <xsd:enumeration value=\"outer\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LayoutTarget\">\n    <xsd:attribute name=\"val\" type=\"ST_LayoutTarget\" default=\"outer\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LayoutMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"edge\"/>\n      <xsd:enumeration value=\"factor\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LayoutMode\">\n    <xsd:attribute name=\"val\" type=\"ST_LayoutMode\" default=\"factor\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ManualLayout\">\n    <xsd:sequence>\n      <xsd:element name=\"layoutTarget\" type=\"CT_LayoutTarget\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"xMode\" type=\"CT_LayoutMode\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"yMode\" type=\"CT_LayoutMode\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"wMode\" type=\"CT_LayoutMode\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hMode\" type=\"CT_LayoutMode\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"x\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"y\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"w\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"h\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Layout\">\n    <xsd:sequence>\n      <xsd:element name=\"manualLayout\" type=\"CT_ManualLayout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Title\">\n    <xsd:sequence>\n      <xsd:element name=\"tx\" type=\"CT_Tx\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"layout\" type=\"CT_Layout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"overlay\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RotX\">\n    <xsd:restriction base=\"xsd:byte\">\n      <xsd:minInclusive value=\"-90\"/>\n      <xsd:maxInclusive value=\"90\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_RotX\">\n    <xsd:attribute name=\"val\" type=\"ST_RotX\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HPercent\">\n    <xsd:union memberTypes=\"ST_HPercentWithSymbol ST_HPercentUShort\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HPercentWithSymbol\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(([5-9])|([1-9][0-9])|([1-4][0-9][0-9])|500)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HPercentUShort\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"5\"/>\n      <xsd:maxInclusive value=\"500\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_HPercent\">\n    <xsd:attribute name=\"val\" type=\"ST_HPercent\" default=\"100%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RotY\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"360\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_RotY\">\n    <xsd:attribute name=\"val\" type=\"ST_RotY\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DepthPercent\">\n    <xsd:union memberTypes=\"ST_DepthPercentWithSymbol ST_DepthPercentUShort\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DepthPercentWithSymbol\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(([2-9][0-9])|([1-9][0-9][0-9])|(1[0-9][0-9][0-9])|2000)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DepthPercentUShort\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"20\"/>\n      <xsd:maxInclusive value=\"2000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DepthPercent\">\n    <xsd:attribute name=\"val\" type=\"ST_DepthPercent\" default=\"100%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Perspective\">\n    <xsd:restriction base=\"xsd:unsignedByte\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"240\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Perspective\">\n    <xsd:attribute name=\"val\" type=\"ST_Perspective\" default=\"30\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_View3D\">\n    <xsd:sequence>\n      <xsd:element name=\"rotX\" type=\"CT_RotX\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hPercent\" type=\"CT_HPercent\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rotY\" type=\"CT_RotY\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"depthPercent\" type=\"CT_DepthPercent\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rAngAx\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"perspective\" type=\"CT_Perspective\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Surface\">\n    <xsd:sequence>\n      <xsd:element name=\"thickness\" type=\"CT_Thickness\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pictureOptions\" type=\"CT_PictureOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Thickness\">\n    <xsd:union memberTypes=\"ST_ThicknessPercent xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ThicknessPercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"([0-9]+)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Thickness\">\n    <xsd:attribute name=\"val\" type=\"ST_Thickness\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DTable\">\n    <xsd:sequence>\n      <xsd:element name=\"showHorzBorder\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showVertBorder\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showOutline\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showKeys\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_GapAmount\">\n    <xsd:union memberTypes=\"ST_GapAmountPercent ST_GapAmountUShort\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_GapAmountPercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(([0-9])|([1-9][0-9])|([1-4][0-9][0-9])|500)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_GapAmountUShort\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"500\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_GapAmount\">\n    <xsd:attribute name=\"val\" type=\"ST_GapAmount\" default=\"150%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Overlap\">\n    <xsd:union memberTypes=\"ST_OverlapPercent ST_OverlapByte\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OverlapPercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"(-?0*(([0-9])|([1-9][0-9])|100))%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OverlapByte\">\n    <xsd:restriction base=\"xsd:byte\">\n      <xsd:minInclusive value=\"-100\"/>\n      <xsd:maxInclusive value=\"100\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Overlap\">\n    <xsd:attribute name=\"val\" type=\"ST_Overlap\" default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BubbleScale\">\n    <xsd:union memberTypes=\"ST_BubbleScalePercent ST_BubbleScaleUInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BubbleScalePercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(([0-9])|([1-9][0-9])|([1-2][0-9][0-9])|300)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BubbleScaleUInt\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"300\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BubbleScale\">\n    <xsd:attribute name=\"val\" type=\"ST_BubbleScale\" default=\"100%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SizeRepresents\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"area\"/>\n      <xsd:enumeration value=\"w\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SizeRepresents\">\n    <xsd:attribute name=\"val\" type=\"ST_SizeRepresents\" default=\"area\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FirstSliceAng\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"360\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FirstSliceAng\">\n    <xsd:attribute name=\"val\" type=\"ST_FirstSliceAng\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HoleSize\">\n    <xsd:union memberTypes=\"ST_HoleSizePercent ST_HoleSizeUByte\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HoleSizePercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*([1-9]|([1-8][0-9])|90)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HoleSizeUByte\">\n    <xsd:restriction base=\"xsd:unsignedByte\">\n      <xsd:minInclusive value=\"1\"/>\n      <xsd:maxInclusive value=\"90\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_HoleSize\">\n    <xsd:attribute name=\"val\" type=\"ST_HoleSize\" default=\"10%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SplitType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"cust\"/>\n      <xsd:enumeration value=\"percent\"/>\n      <xsd:enumeration value=\"pos\"/>\n      <xsd:enumeration value=\"val\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SplitType\">\n    <xsd:attribute name=\"val\" type=\"ST_SplitType\" default=\"auto\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustSplit\">\n    <xsd:sequence>\n      <xsd:element name=\"secondPiePt\" type=\"CT_UnsignedInt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SecondPieSize\">\n    <xsd:union memberTypes=\"ST_SecondPieSizePercent ST_SecondPieSizeUShort\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_SecondPieSizePercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(([5-9])|([1-9][0-9])|(1[0-9][0-9])|200)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_SecondPieSizeUShort\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"5\"/>\n      <xsd:maxInclusive value=\"200\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SecondPieSize\">\n    <xsd:attribute name=\"val\" type=\"ST_SecondPieSize\" default=\"75%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumFmt\">\n    <xsd:attribute name=\"formatCode\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"sourceLinked\" type=\"xsd:boolean\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LblAlgn\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LblAlgn\">\n    <xsd:attribute name=\"val\" type=\"ST_LblAlgn\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DLblPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"bestFit\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"inBase\"/>\n      <xsd:enumeration value=\"inEnd\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"outEnd\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"t\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DLblPos\">\n    <xsd:attribute name=\"val\" type=\"ST_DLblPos\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_DLblShared\">\n    <xsd:sequence>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dLblPos\" type=\"CT_DLblPos\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showLegendKey\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showVal\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showCatName\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showSerName\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showPercent\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showBubbleSize\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"separator\" type=\"xsd:string\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:group name=\"Group_DLbl\">\n    <xsd:sequence>\n      <xsd:element name=\"layout\" type=\"CT_Layout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tx\" type=\"CT_Tx\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_DLblShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_DLbl\">\n    <xsd:sequence>\n      <xsd:element name=\"idx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice>\n        <xsd:element name=\"delete\" type=\"CT_Boolean\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:group ref=\"Group_DLbl\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"Group_DLbls\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_DLblShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showLeaderLines\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"leaderLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_DLbls\">\n    <xsd:sequence>\n      <xsd:element name=\"dLbl\" type=\"CT_DLbl\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:choice>\n        <xsd:element name=\"delete\" type=\"CT_Boolean\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:group ref=\"Group_DLbls\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MarkerStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"circle\"/>\n      <xsd:enumeration value=\"dash\"/>\n      <xsd:enumeration value=\"diamond\"/>\n      <xsd:enumeration value=\"dot\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"picture\"/>\n      <xsd:enumeration value=\"plus\"/>\n      <xsd:enumeration value=\"square\"/>\n      <xsd:enumeration value=\"star\"/>\n      <xsd:enumeration value=\"triangle\"/>\n      <xsd:enumeration value=\"x\"/>\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MarkerStyle\">\n    <xsd:attribute name=\"val\" type=\"ST_MarkerStyle\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MarkerSize\">\n    <xsd:restriction base=\"xsd:unsignedByte\">\n      <xsd:minInclusive value=\"2\"/>\n      <xsd:maxInclusive value=\"72\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MarkerSize\">\n    <xsd:attribute name=\"val\" type=\"ST_MarkerSize\" default=\"5\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Marker\">\n    <xsd:sequence>\n      <xsd:element name=\"symbol\" type=\"CT_MarkerStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"size\" type=\"CT_MarkerSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DPt\">\n    <xsd:sequence>\n      <xsd:element name=\"idx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"invertIfNegative\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"marker\" type=\"CT_Marker\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bubble3D\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"explosion\" type=\"CT_UnsignedInt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pictureOptions\" type=\"CT_PictureOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TrendlineType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"exp\"/>\n      <xsd:enumeration value=\"linear\"/>\n      <xsd:enumeration value=\"log\"/>\n      <xsd:enumeration value=\"movingAvg\"/>\n      <xsd:enumeration value=\"poly\"/>\n      <xsd:enumeration value=\"power\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TrendlineType\">\n    <xsd:attribute name=\"val\" type=\"ST_TrendlineType\" default=\"linear\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Order\">\n    <xsd:restriction base=\"xsd:unsignedByte\">\n      <xsd:minInclusive value=\"2\"/>\n      <xsd:maxInclusive value=\"6\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Order\">\n    <xsd:attribute name=\"val\" type=\"ST_Order\" default=\"2\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Period\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"2\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Period\">\n    <xsd:attribute name=\"val\" type=\"ST_Period\" default=\"2\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrendlineLbl\">\n    <xsd:sequence>\n      <xsd:element name=\"layout\" type=\"CT_Layout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tx\" type=\"CT_Tx\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Trendline\">\n    <xsd:sequence>\n      <xsd:element name=\"name\" type=\"xsd:string\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendlineType\" type=\"CT_TrendlineType\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"order\" type=\"CT_Order\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"period\" type=\"CT_Period\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"forward\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"backward\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"intercept\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dispRSqr\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dispEq\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendlineLbl\" type=\"CT_TrendlineLbl\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ErrDir\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"x\"/>\n      <xsd:enumeration value=\"y\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ErrDir\">\n    <xsd:attribute name=\"val\" type=\"ST_ErrDir\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ErrBarType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"both\"/>\n      <xsd:enumeration value=\"minus\"/>\n      <xsd:enumeration value=\"plus\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ErrBarType\">\n    <xsd:attribute name=\"val\" type=\"ST_ErrBarType\" default=\"both\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ErrValType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"cust\"/>\n      <xsd:enumeration value=\"fixedVal\"/>\n      <xsd:enumeration value=\"percentage\"/>\n      <xsd:enumeration value=\"stdDev\"/>\n      <xsd:enumeration value=\"stdErr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ErrValType\">\n    <xsd:attribute name=\"val\" type=\"ST_ErrValType\" default=\"fixedVal\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ErrBars\">\n    <xsd:sequence>\n      <xsd:element name=\"errDir\" type=\"CT_ErrDir\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"errBarType\" type=\"CT_ErrBarType\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"errValType\" type=\"CT_ErrValType\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"noEndCap\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"plus\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minus\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_UpDownBar\">\n    <xsd:sequence>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_UpDownBars\">\n    <xsd:sequence>\n      <xsd:element name=\"gapWidth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"upBars\" type=\"CT_UpDownBar\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"downBars\" type=\"CT_UpDownBar\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_SerShared\">\n    <xsd:sequence>\n      <xsd:element name=\"idx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"order\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tx\" type=\"CT_SerTx\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_LineSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"marker\" type=\"CT_Marker\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendline\" type=\"CT_Trendline\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"errBars\" type=\"CT_ErrBars\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cat\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smooth\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ScatterSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"marker\" type=\"CT_Marker\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendline\" type=\"CT_Trendline\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"errBars\" type=\"CT_ErrBars\" minOccurs=\"0\" maxOccurs=\"2\"/>\n      <xsd:element name=\"xVal\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"yVal\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smooth\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RadarSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"marker\" type=\"CT_Marker\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cat\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BarSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"invertIfNegative\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pictureOptions\" type=\"CT_PictureOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendline\" type=\"CT_Trendline\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"errBars\" type=\"CT_ErrBars\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cat\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shape\" type=\"CT_Shape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AreaSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pictureOptions\" type=\"CT_PictureOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendline\" type=\"CT_Trendline\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"errBars\" type=\"CT_ErrBars\" minOccurs=\"0\" maxOccurs=\"2\"/>\n      <xsd:element name=\"cat\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PieSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"explosion\" type=\"CT_UnsignedInt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cat\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BubbleSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"invertIfNegative\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dPt\" type=\"CT_DPt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trendline\" type=\"CT_Trendline\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"errBars\" type=\"CT_ErrBars\" minOccurs=\"0\" maxOccurs=\"2\"/>\n      <xsd:element name=\"xVal\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"yVal\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bubbleSize\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bubble3D\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SurfaceSer\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SerShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cat\" type=\"CT_AxDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"val\" type=\"CT_NumDataSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Grouping\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"percentStacked\"/>\n      <xsd:enumeration value=\"standard\"/>\n      <xsd:enumeration value=\"stacked\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Grouping\">\n    <xsd:attribute name=\"val\" type=\"ST_Grouping\" default=\"standard\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartLines\">\n    <xsd:sequence>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_LineChartShared\">\n    <xsd:sequence>\n      <xsd:element name=\"grouping\" type=\"CT_Grouping\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_LineSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dropLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_LineChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_LineChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hiLowLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"upDownBars\" type=\"CT_UpDownBars\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"marker\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smooth\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Line3DChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_LineChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gapDepth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"3\" maxOccurs=\"3\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StockChart\">\n    <xsd:sequence>\n      <xsd:element name=\"ser\" type=\"CT_LineSer\" minOccurs=\"3\" maxOccurs=\"4\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dropLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hiLowLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"upDownBars\" type=\"CT_UpDownBars\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ScatterStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"line\"/>\n      <xsd:enumeration value=\"lineMarker\"/>\n      <xsd:enumeration value=\"marker\"/>\n      <xsd:enumeration value=\"smooth\"/>\n      <xsd:enumeration value=\"smoothMarker\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ScatterStyle\">\n    <xsd:attribute name=\"val\" type=\"ST_ScatterStyle\" default=\"marker\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ScatterChart\">\n    <xsd:sequence>\n      <xsd:element name=\"scatterStyle\" type=\"CT_ScatterStyle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_ScatterSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RadarStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"standard\"/>\n      <xsd:enumeration value=\"marker\"/>\n      <xsd:enumeration value=\"filled\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_RadarStyle\">\n    <xsd:attribute name=\"val\" type=\"ST_RadarStyle\" default=\"standard\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RadarChart\">\n    <xsd:sequence>\n      <xsd:element name=\"radarStyle\" type=\"CT_RadarStyle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_RadarSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BarGrouping\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"percentStacked\"/>\n      <xsd:enumeration value=\"clustered\"/>\n      <xsd:enumeration value=\"standard\"/>\n      <xsd:enumeration value=\"stacked\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BarGrouping\">\n    <xsd:attribute name=\"val\" type=\"ST_BarGrouping\" default=\"clustered\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BarDir\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"bar\"/>\n      <xsd:enumeration value=\"col\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BarDir\">\n    <xsd:attribute name=\"val\" type=\"ST_BarDir\" default=\"col\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Shape\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"cone\"/>\n      <xsd:enumeration value=\"coneToMax\"/>\n      <xsd:enumeration value=\"box\"/>\n      <xsd:enumeration value=\"cylinder\"/>\n      <xsd:enumeration value=\"pyramid\"/>\n      <xsd:enumeration value=\"pyramidToMax\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Shape\">\n    <xsd:attribute name=\"val\" type=\"ST_Shape\" default=\"box\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_BarChartShared\">\n    <xsd:sequence>\n      <xsd:element name=\"barDir\" type=\"CT_BarDir\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grouping\" type=\"CT_BarGrouping\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_BarSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_BarChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_BarChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gapWidth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"overlap\" type=\"CT_Overlap\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"serLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Bar3DChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_BarChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gapWidth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gapDepth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shape\" type=\"CT_Shape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"3\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_AreaChartShared\">\n    <xsd:sequence>\n      <xsd:element name=\"grouping\" type=\"CT_Grouping\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_AreaSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dropLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_AreaChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_AreaChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Area3DChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_AreaChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gapDepth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"3\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_PieChartShared\">\n    <xsd:sequence>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_PieSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_PieChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_PieChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstSliceAng\" type=\"CT_FirstSliceAng\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Pie3DChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_PieChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DoughnutChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_PieChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstSliceAng\" type=\"CT_FirstSliceAng\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"holeSize\" type=\"CT_HoleSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_OfPieType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"pie\"/>\n      <xsd:enumeration value=\"bar\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_OfPieType\">\n    <xsd:attribute name=\"val\" type=\"ST_OfPieType\" default=\"pie\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OfPieChart\">\n    <xsd:sequence>\n      <xsd:element name=\"ofPieType\" type=\"CT_OfPieType\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_PieChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gapWidth\" type=\"CT_GapAmount\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"splitType\" type=\"CT_SplitType\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"splitPos\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custSplit\" type=\"CT_CustSplit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"secondPieSize\" type=\"CT_SecondPieSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"serLines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BubbleChart\">\n    <xsd:sequence>\n      <xsd:element name=\"varyColors\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_BubbleSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dLbls\" type=\"CT_DLbls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bubble3D\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bubbleScale\" type=\"CT_BubbleScale\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showNegBubbles\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sizeRepresents\" type=\"CT_SizeRepresents\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BandFmt\">\n    <xsd:sequence>\n      <xsd:element name=\"idx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BandFmts\">\n    <xsd:sequence>\n      <xsd:element name=\"bandFmt\" type=\"CT_BandFmt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_SurfaceChartShared\">\n    <xsd:sequence>\n      <xsd:element name=\"wireframe\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ser\" type=\"CT_SurfaceSer\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"bandFmts\" type=\"CT_BandFmts\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_SurfaceChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SurfaceChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"2\" maxOccurs=\"3\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Surface3DChart\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SurfaceChartShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"3\" maxOccurs=\"3\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AxPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"t\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_AxPos\">\n    <xsd:attribute name=\"val\" type=\"ST_AxPos\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Crosses\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"autoZero\"/>\n      <xsd:enumeration value=\"max\"/>\n      <xsd:enumeration value=\"min\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Crosses\">\n    <xsd:attribute name=\"val\" type=\"ST_Crosses\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CrossBetween\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"between\"/>\n      <xsd:enumeration value=\"midCat\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_CrossBetween\">\n    <xsd:attribute name=\"val\" type=\"ST_CrossBetween\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TickMark\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"cross\"/>\n      <xsd:enumeration value=\"in\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"out\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TickMark\">\n    <xsd:attribute name=\"val\" type=\"ST_TickMark\" default=\"cross\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TickLblPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"high\"/>\n      <xsd:enumeration value=\"low\"/>\n      <xsd:enumeration value=\"nextTo\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TickLblPos\">\n    <xsd:attribute name=\"val\" type=\"ST_TickLblPos\" default=\"nextTo\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Skip\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"1\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Skip\">\n    <xsd:attribute name=\"val\" type=\"ST_Skip\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TimeUnit\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"days\"/>\n      <xsd:enumeration value=\"months\"/>\n      <xsd:enumeration value=\"years\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TimeUnit\">\n    <xsd:attribute name=\"val\" type=\"ST_TimeUnit\" default=\"days\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AxisUnit\">\n    <xsd:restriction base=\"xsd:double\">\n      <xsd:minExclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_AxisUnit\">\n    <xsd:attribute name=\"val\" type=\"ST_AxisUnit\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BuiltInUnit\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"hundreds\"/>\n      <xsd:enumeration value=\"thousands\"/>\n      <xsd:enumeration value=\"tenThousands\"/>\n      <xsd:enumeration value=\"hundredThousands\"/>\n      <xsd:enumeration value=\"millions\"/>\n      <xsd:enumeration value=\"tenMillions\"/>\n      <xsd:enumeration value=\"hundredMillions\"/>\n      <xsd:enumeration value=\"billions\"/>\n      <xsd:enumeration value=\"trillions\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BuiltInUnit\">\n    <xsd:attribute name=\"val\" type=\"ST_BuiltInUnit\" default=\"thousands\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PictureFormat\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"stretch\"/>\n      <xsd:enumeration value=\"stack\"/>\n      <xsd:enumeration value=\"stackScale\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PictureFormat\">\n    <xsd:attribute name=\"val\" type=\"ST_PictureFormat\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PictureStackUnit\">\n    <xsd:restriction base=\"xsd:double\">\n      <xsd:minExclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PictureStackUnit\">\n    <xsd:attribute name=\"val\" type=\"ST_PictureStackUnit\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PictureOptions\">\n    <xsd:sequence>\n      <xsd:element name=\"applyToFront\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"applyToSides\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"applyToEnd\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pictureFormat\" type=\"CT_PictureFormat\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pictureStackUnit\" type=\"CT_PictureStackUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DispUnitsLbl\">\n    <xsd:sequence>\n      <xsd:element name=\"layout\" type=\"CT_Layout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tx\" type=\"CT_Tx\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DispUnits\">\n    <xsd:sequence>\n      <xsd:choice>\n        <xsd:element name=\"custUnit\" type=\"CT_Double\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"builtInUnit\" type=\"CT_BuiltInUnit\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"dispUnitsLbl\" type=\"CT_DispUnitsLbl\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Orientation\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"maxMin\"/>\n      <xsd:enumeration value=\"minMax\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Orientation\">\n    <xsd:attribute name=\"val\" type=\"ST_Orientation\" default=\"minMax\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LogBase\">\n    <xsd:restriction base=\"xsd:double\">\n      <xsd:minInclusive value=\"2\"/>\n      <xsd:maxInclusive value=\"1000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LogBase\">\n    <xsd:attribute name=\"val\" type=\"ST_LogBase\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Scaling\">\n    <xsd:sequence>\n      <xsd:element name=\"logBase\" type=\"CT_LogBase\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"orientation\" type=\"CT_Orientation\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"max\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"min\" type=\"CT_Double\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LblOffset\">\n    <xsd:union memberTypes=\"ST_LblOffsetPercent ST_LblOffsetUShort\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LblOffsetPercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(([0-9])|([1-9][0-9])|([1-9][0-9][0-9])|1000)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LblOffsetUShort\">\n    <xsd:restriction base=\"xsd:unsignedShort\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"1000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LblOffset\">\n    <xsd:attribute name=\"val\" type=\"ST_LblOffset\" default=\"100%\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_AxShared\">\n    <xsd:sequence>\n      <xsd:element name=\"axId\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scaling\" type=\"CT_Scaling\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"delete\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"axPos\" type=\"CT_AxPos\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"majorGridlines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minorGridlines\" type=\"CT_ChartLines\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"title\" type=\"CT_Title\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"majorTickMark\" type=\"CT_TickMark\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minorTickMark\" type=\"CT_TickMark\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tickLblPos\" type=\"CT_TickLblPos\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"crossAx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n        <xsd:element name=\"crosses\" type=\"CT_Crosses\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"crossesAt\" type=\"CT_Double\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_CatAx\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_AxShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"auto\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lblAlgn\" type=\"CT_LblAlgn\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lblOffset\" type=\"CT_LblOffset\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tickLblSkip\" type=\"CT_Skip\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tickMarkSkip\" type=\"CT_Skip\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"noMultiLvlLbl\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DateAx\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_AxShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"auto\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lblOffset\" type=\"CT_LblOffset\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"baseTimeUnit\" type=\"CT_TimeUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"majorUnit\" type=\"CT_AxisUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"majorTimeUnit\" type=\"CT_TimeUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minorUnit\" type=\"CT_AxisUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minorTimeUnit\" type=\"CT_TimeUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SerAx\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_AxShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tickLblSkip\" type=\"CT_Skip\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tickMarkSkip\" type=\"CT_Skip\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ValAx\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_AxShared\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"crossBetween\" type=\"CT_CrossBetween\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"majorUnit\" type=\"CT_AxisUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minorUnit\" type=\"CT_AxisUnit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dispUnits\" type=\"CT_DispUnits\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PlotArea\">\n    <xsd:sequence>\n      <xsd:element name=\"layout\" type=\"CT_Layout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"areaChart\" type=\"CT_AreaChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"area3DChart\" type=\"CT_Area3DChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"lineChart\" type=\"CT_LineChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"line3DChart\" type=\"CT_Line3DChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"stockChart\" type=\"CT_StockChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"radarChart\" type=\"CT_RadarChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"scatterChart\" type=\"CT_ScatterChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"pieChart\" type=\"CT_PieChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"pie3DChart\" type=\"CT_Pie3DChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"doughnutChart\" type=\"CT_DoughnutChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"barChart\" type=\"CT_BarChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"bar3DChart\" type=\"CT_Bar3DChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"ofPieChart\" type=\"CT_OfPieChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"surfaceChart\" type=\"CT_SurfaceChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"surface3DChart\" type=\"CT_Surface3DChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"bubbleChart\" type=\"CT_BubbleChart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"valAx\" type=\"CT_ValAx\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"catAx\" type=\"CT_CatAx\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"dateAx\" type=\"CT_DateAx\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"serAx\" type=\"CT_SerAx\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"dTable\" type=\"CT_DTable\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotFmt\">\n    <xsd:sequence>\n      <xsd:element name=\"idx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"marker\" type=\"CT_Marker\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dLbl\" type=\"CT_DLbl\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotFmts\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotFmt\" type=\"CT_PivotFmt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LegendPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"tr\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"t\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LegendPos\">\n    <xsd:attribute name=\"val\" type=\"ST_LegendPos\" default=\"r\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_LegendEntryData\">\n    <xsd:sequence>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_LegendEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"idx\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice>\n        <xsd:element name=\"delete\" type=\"CT_Boolean\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:group ref=\"EG_LegendEntryData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Legend\">\n    <xsd:sequence>\n      <xsd:element name=\"legendPos\" type=\"CT_LegendPos\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legendEntry\" type=\"CT_LegendEntry\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"layout\" type=\"CT_Layout\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"overlay\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DispBlanksAs\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"span\"/>\n      <xsd:enumeration value=\"gap\"/>\n      <xsd:enumeration value=\"zero\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DispBlanksAs\">\n    <xsd:attribute name=\"val\" type=\"ST_DispBlanksAs\" default=\"zero\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Chart\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_Title\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"autoTitleDeleted\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pivotFmts\" type=\"CT_PivotFmts\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"view3D\" type=\"CT_View3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"floor\" type=\"CT_Surface\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sideWall\" type=\"CT_Surface\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"backWall\" type=\"CT_Surface\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"plotArea\" type=\"CT_PlotArea\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legend\" type=\"CT_Legend\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"plotVisOnly\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dispBlanksAs\" type=\"CT_DispBlanksAs\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showDLblsOverMax\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Style\">\n    <xsd:restriction base=\"xsd:unsignedByte\">\n      <xsd:minInclusive value=\"1\"/>\n      <xsd:maxInclusive value=\"48\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Style\">\n    <xsd:attribute name=\"val\" type=\"ST_Style\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotSource\">\n    <xsd:sequence>\n      <xsd:element name=\"name\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fmtId\" type=\"CT_UnsignedInt\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Protection\">\n    <xsd:sequence>\n      <xsd:element name=\"chartObject\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"data\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"formatting\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"selection\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"userInterface\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HeaderFooter\">\n    <xsd:sequence>\n      <xsd:element name=\"oddHeader\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oddFooter\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"evenHeader\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"evenFooter\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstHeader\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstFooter\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"alignWithMargins\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"differentOddEven\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"differentFirst\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageMargins\">\n    <xsd:attribute name=\"l\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"r\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"t\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"header\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"footer\" type=\"xsd:double\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PageSetupOrientation\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"portrait\"/>\n      <xsd:enumeration value=\"landscape\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ExternalData\">\n    <xsd:sequence>\n      <xsd:element name=\"autoUpdate\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageSetup\">\n    <xsd:attribute name=\"paperSize\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"paperHeight\" type=\"s:ST_PositiveUniversalMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"paperWidth\" type=\"s:ST_PositiveUniversalMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"firstPageNumber\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"orientation\" type=\"ST_PageSetupOrientation\" use=\"optional\"\n      default=\"default\"/>\n    <xsd:attribute name=\"blackAndWhite\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"draft\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"useFirstPageNumber\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"horizontalDpi\" type=\"xsd:int\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"verticalDpi\" type=\"xsd:int\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"copies\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PrintSettings\">\n    <xsd:sequence>\n      <xsd:element name=\"headerFooter\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageMargins\" type=\"CT_PageMargins\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageSetup\" type=\"CT_PageSetup\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawingHF\" type=\"CT_RelId\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartSpace\">\n    <xsd:sequence>\n      <xsd:element name=\"date1904\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lang\" type=\"CT_TextLanguageID\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"roundedCorners\" type=\"CT_Boolean\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_Style\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrMapOvr\" type=\"a:CT_ColorMapping\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pivotSource\" type=\"CT_PivotSource\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"protection\" type=\"CT_Protection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"chart\" type=\"CT_Chart\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"externalData\" type=\"CT_ExternalData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"printSettings\" type=\"CT_PrintSettings\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"userShapes\" type=\"CT_RelId\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"chartSpace\" type=\"CT_ChartSpace\"/>\n  <xsd:element name=\"userShapes\" type=\"cdr:CT_Drawing\"/>\n  <xsd:element name=\"chart\" type=\"CT_RelId\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/chartDrawing\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/chartDrawing\"\n  elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:complexType name=\"CT_ShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvSpPr\" type=\"a:CT_NonVisualDrawingShapeProps\" minOccurs=\"1\" maxOccurs=\"1\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Shape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvSpPr\" type=\"CT_ShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txBody\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"textlink\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fLocksText\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConnectorNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvCxnSpPr\" type=\"a:CT_NonVisualConnectorProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Connector\">\n    <xsd:sequence>\n      <xsd:element name=\"nvCxnSpPr\" type=\"CT_ConnectorNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PictureNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvPicPr\" type=\"a:CT_NonVisualPictureProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Picture\">\n    <xsd:sequence>\n      <xsd:element name=\"nvPicPr\" type=\"CT_PictureNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blipFill\" type=\"a:CT_BlipFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicFrameNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGraphicFramePr\" type=\"a:CT_NonVisualGraphicFrameProperties\"\n        minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicFrame\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGraphicFramePr\" type=\"CT_GraphicFrameNonVisual\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"a:CT_Transform2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"a:graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGrpSpPr\" type=\"a:CT_NonVisualGroupDrawingShapeProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGrpSpPr\" type=\"CT_GroupShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grpSpPr\" type=\"a:CT_GroupShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"sp\" type=\"CT_Shape\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_GroupShape\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicFrame\"/>\n        <xsd:element name=\"cxnSp\" type=\"CT_Connector\"/>\n        <xsd:element name=\"pic\" type=\"CT_Picture\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ObjectChoices\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"sp\" type=\"CT_Shape\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_GroupShape\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicFrame\"/>\n        <xsd:element name=\"cxnSp\" type=\"CT_Connector\"/>\n        <xsd:element name=\"pic\" type=\"CT_Picture\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_MarkerCoordinate\">\n    <xsd:restriction base=\"xsd:double\">\n      <xsd:minInclusive value=\"0.0\"/>\n      <xsd:maxInclusive value=\"1.0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Marker\">\n    <xsd:sequence>\n      <xsd:element name=\"x\" type=\"ST_MarkerCoordinate\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"y\" type=\"ST_MarkerCoordinate\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RelSizeAnchor\">\n    <xsd:sequence>\n      <xsd:element name=\"from\" type=\"CT_Marker\"/>\n      <xsd:element name=\"to\" type=\"CT_Marker\"/>\n      <xsd:group ref=\"EG_ObjectChoices\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AbsSizeAnchor\">\n    <xsd:sequence>\n      <xsd:element name=\"from\" type=\"CT_Marker\"/>\n      <xsd:element name=\"ext\" type=\"a:CT_PositiveSize2D\"/>\n      <xsd:group ref=\"EG_ObjectChoices\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Anchor\">\n    <xsd:choice>\n      <xsd:element name=\"relSizeAnchor\" type=\"CT_RelSizeAnchor\"/>\n      <xsd:element name=\"absSizeAnchor\" type=\"CT_AbsSizeAnchor\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_Drawing\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_Anchor\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/diagram\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/diagram\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"unqualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:complexType name=\"CT_CTName\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CTDescription\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CTCategory\">\n    <xsd:attribute name=\"type\" type=\"xsd:anyURI\" use=\"required\"/>\n    <xsd:attribute name=\"pri\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CTCategories\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"cat\" type=\"CT_CTCategory\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ClrAppMethod\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"span\"/>\n      <xsd:enumeration value=\"cycle\"/>\n      <xsd:enumeration value=\"repeat\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HueDir\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"cw\"/>\n      <xsd:enumeration value=\"ccw\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Colors\">\n    <xsd:sequence>\n      <xsd:group ref=\"a:EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"meth\" type=\"ST_ClrAppMethod\" use=\"optional\" default=\"span\"/>\n    <xsd:attribute name=\"hueDir\" type=\"ST_HueDir\" use=\"optional\" default=\"cw\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CTStyleLabel\">\n    <xsd:sequence>\n      <xsd:element name=\"fillClrLst\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"linClrLst\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"effectClrLst\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txLinClrLst\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txFillClrLst\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txEffectClrLst\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorTransform\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_CTName\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"desc\" type=\"CT_CTDescription\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"catLst\" type=\"CT_CTCategories\" minOccurs=\"0\"/>\n      <xsd:element name=\"styleLbl\" type=\"CT_CTStyleLabel\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueId\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"minVer\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:element name=\"colorsDef\" type=\"CT_ColorTransform\"/>\n  <xsd:complexType name=\"CT_ColorTransformHeader\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_CTName\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"desc\" type=\"CT_CTDescription\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"catLst\" type=\"CT_CTCategories\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueId\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"minVer\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"resId\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:element name=\"colorsDefHdr\" type=\"CT_ColorTransformHeader\"/>\n  <xsd:complexType name=\"CT_ColorTransformHeaderLst\">\n    <xsd:sequence>\n      <xsd:element name=\"colorsDefHdr\" type=\"CT_ColorTransformHeader\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"colorsDefHdrLst\" type=\"CT_ColorTransformHeaderLst\"/>\n  <xsd:simpleType name=\"ST_PtType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"node\"/>\n      <xsd:enumeration value=\"asst\"/>\n      <xsd:enumeration value=\"doc\"/>\n      <xsd:enumeration value=\"pres\"/>\n      <xsd:enumeration value=\"parTrans\"/>\n      <xsd:enumeration value=\"sibTrans\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Pt\">\n    <xsd:sequence>\n      <xsd:element name=\"prSet\" type=\"CT_ElemPropSet\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"t\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"modelId\" type=\"ST_ModelId\" use=\"required\"/>\n    <xsd:attribute name=\"type\" type=\"ST_PtType\" use=\"optional\" default=\"node\"/>\n    <xsd:attribute name=\"cxnId\" type=\"ST_ModelId\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PtList\">\n    <xsd:sequence>\n      <xsd:element name=\"pt\" type=\"CT_Pt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CxnType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"parOf\"/>\n      <xsd:enumeration value=\"presOf\"/>\n      <xsd:enumeration value=\"presParOf\"/>\n      <xsd:enumeration value=\"unknownRelationship\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Cxn\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"modelId\" type=\"ST_ModelId\" use=\"required\"/>\n    <xsd:attribute name=\"type\" type=\"ST_CxnType\" use=\"optional\" default=\"parOf\"/>\n    <xsd:attribute name=\"srcId\" type=\"ST_ModelId\" use=\"required\"/>\n    <xsd:attribute name=\"destId\" type=\"ST_ModelId\" use=\"required\"/>\n    <xsd:attribute name=\"srcOrd\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"destOrd\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"parTransId\" type=\"ST_ModelId\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"sibTransId\" type=\"ST_ModelId\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"presId\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CxnList\">\n    <xsd:sequence>\n      <xsd:element name=\"cxn\" type=\"CT_Cxn\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataModel\">\n    <xsd:sequence>\n      <xsd:element name=\"ptLst\" type=\"CT_PtList\"/>\n      <xsd:element name=\"cxnLst\" type=\"CT_CxnList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bg\" type=\"a:CT_BackgroundFormatting\" minOccurs=\"0\"/>\n      <xsd:element name=\"whole\" type=\"a:CT_WholeE2oFormatting\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"dataModel\" type=\"CT_DataModel\"/>\n  <xsd:attributeGroup name=\"AG_IteratorAttributes\">\n    <xsd:attribute name=\"axis\" type=\"ST_AxisTypes\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"ptType\" type=\"ST_ElementTypes\" use=\"optional\" default=\"all\"/>\n    <xsd:attribute name=\"hideLastTrans\" type=\"ST_Booleans\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"st\" type=\"ST_Ints\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"cnt\" type=\"ST_UnsignedInts\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"step\" type=\"ST_Ints\" use=\"optional\" default=\"1\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_ConstraintAttributes\">\n    <xsd:attribute name=\"type\" type=\"ST_ConstraintType\" use=\"required\"/>\n    <xsd:attribute name=\"for\" type=\"ST_ConstraintRelationship\" use=\"optional\" default=\"self\"/>\n    <xsd:attribute name=\"forName\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"ptType\" type=\"ST_ElementType\" use=\"optional\" default=\"all\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_ConstraintRefAttributes\">\n    <xsd:attribute name=\"refType\" type=\"ST_ConstraintType\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"refFor\" type=\"ST_ConstraintRelationship\" use=\"optional\" default=\"self\"/>\n    <xsd:attribute name=\"refForName\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"refPtType\" type=\"ST_ElementType\" use=\"optional\" default=\"all\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_Constraint\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_ConstraintAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_ConstraintRefAttributes\"/>\n    <xsd:attribute name=\"op\" type=\"ST_BoolOperator\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"fact\" type=\"xsd:double\" use=\"optional\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Constraints\">\n    <xsd:sequence>\n      <xsd:element name=\"constr\" type=\"CT_Constraint\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumericRule\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_ConstraintAttributes\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"optional\" default=\"NaN\"/>\n    <xsd:attribute name=\"fact\" type=\"xsd:double\" use=\"optional\" default=\"NaN\"/>\n    <xsd:attribute name=\"max\" type=\"xsd:double\" use=\"optional\" default=\"NaN\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rules\">\n    <xsd:sequence>\n      <xsd:element name=\"rule\" type=\"CT_NumericRule\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PresentationOf\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_IteratorAttributes\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LayoutShapeType\" final=\"restriction\">\n    <xsd:union memberTypes=\"a:ST_ShapeType ST_OutputShapeType\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Index1\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"1\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Adj\">\n    <xsd:attribute name=\"idx\" type=\"ST_Index1\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AdjLst\">\n    <xsd:sequence>\n      <xsd:element name=\"adj\" type=\"CT_Adj\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Shape\">\n    <xsd:sequence>\n      <xsd:element name=\"adjLst\" type=\"CT_AdjLst\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rot\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"type\" type=\"ST_LayoutShapeType\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute ref=\"r:blip\" use=\"optional\"/>\n    <xsd:attribute name=\"zOrderOff\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"hideGeom\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"lkTxEntry\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"blipPhldr\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Parameter\">\n    <xsd:attribute name=\"type\" type=\"ST_ParameterId\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"ST_ParameterVal\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Algorithm\">\n    <xsd:sequence>\n      <xsd:element name=\"param\" type=\"CT_Parameter\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_AlgorithmType\" use=\"required\"/>\n    <xsd:attribute name=\"rev\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LayoutNode\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"alg\" type=\"CT_Algorithm\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shape\" type=\"CT_Shape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"presOf\" type=\"CT_PresentationOf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"constrLst\" type=\"CT_Constraints\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ruleLst\" type=\"CT_Rules\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"varLst\" type=\"CT_LayoutVariablePropertySet\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"forEach\" type=\"CT_ForEach\"/>\n      <xsd:element name=\"layoutNode\" type=\"CT_LayoutNode\"/>\n      <xsd:element name=\"choose\" type=\"CT_Choose\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"styleLbl\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"chOrder\" type=\"ST_ChildOrderType\" use=\"optional\" default=\"b\"/>\n    <xsd:attribute name=\"moveWith\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ForEach\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"alg\" type=\"CT_Algorithm\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shape\" type=\"CT_Shape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"presOf\" type=\"CT_PresentationOf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"constrLst\" type=\"CT_Constraints\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ruleLst\" type=\"CT_Rules\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"forEach\" type=\"CT_ForEach\"/>\n      <xsd:element name=\"layoutNode\" type=\"CT_LayoutNode\"/>\n      <xsd:element name=\"choose\" type=\"CT_Choose\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"ref\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attributeGroup ref=\"AG_IteratorAttributes\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_When\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"alg\" type=\"CT_Algorithm\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shape\" type=\"CT_Shape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"presOf\" type=\"CT_PresentationOf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"constrLst\" type=\"CT_Constraints\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ruleLst\" type=\"CT_Rules\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"forEach\" type=\"CT_ForEach\"/>\n      <xsd:element name=\"layoutNode\" type=\"CT_LayoutNode\"/>\n      <xsd:element name=\"choose\" type=\"CT_Choose\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attributeGroup ref=\"AG_IteratorAttributes\"/>\n    <xsd:attribute name=\"func\" type=\"ST_FunctionType\" use=\"required\"/>\n    <xsd:attribute name=\"arg\" type=\"ST_FunctionArgument\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"op\" type=\"ST_FunctionOperator\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"ST_FunctionValue\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Otherwise\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"alg\" type=\"CT_Algorithm\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shape\" type=\"CT_Shape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"presOf\" type=\"CT_PresentationOf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"constrLst\" type=\"CT_Constraints\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ruleLst\" type=\"CT_Rules\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"forEach\" type=\"CT_ForEach\"/>\n      <xsd:element name=\"layoutNode\" type=\"CT_LayoutNode\"/>\n      <xsd:element name=\"choose\" type=\"CT_Choose\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Choose\">\n    <xsd:sequence>\n      <xsd:element name=\"if\" type=\"CT_When\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"else\" type=\"CT_Otherwise\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SampleData\">\n    <xsd:sequence>\n      <xsd:element name=\"dataModel\" type=\"CT_DataModel\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"useDef\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Category\">\n    <xsd:attribute name=\"type\" type=\"xsd:anyURI\" use=\"required\"/>\n    <xsd:attribute name=\"pri\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Categories\">\n    <xsd:sequence>\n      <xsd:element name=\"cat\" type=\"CT_Category\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Name\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Description\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DiagramDefinition\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_Name\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"desc\" type=\"CT_Description\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"catLst\" type=\"CT_Categories\" minOccurs=\"0\"/>\n      <xsd:element name=\"sampData\" type=\"CT_SampleData\" minOccurs=\"0\"/>\n      <xsd:element name=\"styleData\" type=\"CT_SampleData\" minOccurs=\"0\"/>\n      <xsd:element name=\"clrData\" type=\"CT_SampleData\" minOccurs=\"0\"/>\n      <xsd:element name=\"layoutNode\" type=\"CT_LayoutNode\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueId\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"minVer\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"defStyle\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:element name=\"layoutDef\" type=\"CT_DiagramDefinition\"/>\n  <xsd:complexType name=\"CT_DiagramDefinitionHeader\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_Name\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"desc\" type=\"CT_Description\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"catLst\" type=\"CT_Categories\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueId\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"minVer\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"defStyle\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"resId\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:element name=\"layoutDefHdr\" type=\"CT_DiagramDefinitionHeader\"/>\n  <xsd:complexType name=\"CT_DiagramDefinitionHeaderLst\">\n    <xsd:sequence>\n      <xsd:element name=\"layoutDefHdr\" type=\"CT_DiagramDefinitionHeader\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"layoutDefHdrLst\" type=\"CT_DiagramDefinitionHeaderLst\"/>\n  <xsd:complexType name=\"CT_RelIds\">\n    <xsd:attribute ref=\"r:dm\" use=\"required\"/>\n    <xsd:attribute ref=\"r:lo\" use=\"required\"/>\n    <xsd:attribute ref=\"r:qs\" use=\"required\"/>\n    <xsd:attribute ref=\"r:cs\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"relIds\" type=\"CT_RelIds\"/>\n  <xsd:simpleType name=\"ST_ParameterVal\">\n    <xsd:union\n      memberTypes=\"ST_DiagramHorizontalAlignment ST_VerticalAlignment ST_ChildDirection ST_ChildAlignment ST_SecondaryChildAlignment ST_LinearDirection ST_SecondaryLinearDirection ST_StartingElement ST_BendPoint ST_ConnectorRouting ST_ArrowheadStyle ST_ConnectorDimension ST_RotationPath ST_CenterShapeMapping ST_NodeHorizontalAlignment ST_NodeVerticalAlignment ST_FallbackDimension ST_TextDirection ST_PyramidAccentPosition ST_PyramidAccentTextMargin ST_TextBlockDirection ST_TextAnchorHorizontal ST_TextAnchorVertical ST_DiagramTextAlignment ST_AutoTextRotation ST_GrowDirection ST_FlowDirection ST_ContinueDirection ST_Breakpoint ST_Offset ST_HierarchyAlignment xsd:int xsd:double xsd:boolean xsd:string ST_ConnectorPoint\"\n    />\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ModelId\">\n    <xsd:union memberTypes=\"xsd:int s:ST_Guid\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PrSetCustVal\">\n    <xsd:union memberTypes=\"s:ST_Percentage xsd:int\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ElemPropSet\">\n    <xsd:sequence>\n      <xsd:element name=\"presLayoutVars\" type=\"CT_LayoutVariablePropertySet\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"presAssocID\" type=\"ST_ModelId\" use=\"optional\"/>\n    <xsd:attribute name=\"presName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"presStyleLbl\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"presStyleIdx\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"presStyleCnt\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"loTypeId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"loCatId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"qsTypeId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"qsCatId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"csTypeId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"csCatId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"coherent3DOff\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"phldrT\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"phldr\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"custAng\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"custFlipVert\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"custFlipHor\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"custSzX\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"custSzY\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"custScaleX\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custScaleY\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custT\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"custLinFactX\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custLinFactY\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custLinFactNeighborX\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custLinFactNeighborY\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custRadScaleRad\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n    <xsd:attribute name=\"custRadScaleInc\" type=\"ST_PrSetCustVal\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Direction\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"norm\"/>\n      <xsd:enumeration value=\"rev\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HierBranchStyle\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"hang\"/>\n      <xsd:enumeration value=\"std\"/>\n      <xsd:enumeration value=\"init\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AnimOneStr\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"one\"/>\n      <xsd:enumeration value=\"branch\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AnimLvlStr\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"lvl\"/>\n      <xsd:enumeration value=\"ctr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_OrgChart\">\n    <xsd:attribute name=\"val\" type=\"xsd:boolean\" default=\"false\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_NodeCount\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"-1\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ChildMax\">\n    <xsd:attribute name=\"val\" type=\"ST_NodeCount\" default=\"-1\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChildPref\">\n    <xsd:attribute name=\"val\" type=\"ST_NodeCount\" default=\"-1\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BulletEnabled\">\n    <xsd:attribute name=\"val\" type=\"xsd:boolean\" default=\"false\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Direction\">\n    <xsd:attribute name=\"val\" type=\"ST_Direction\" default=\"norm\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HierBranchStyle\">\n    <xsd:attribute name=\"val\" type=\"ST_HierBranchStyle\" default=\"std\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AnimOne\">\n    <xsd:attribute name=\"val\" type=\"ST_AnimOneStr\" default=\"one\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AnimLvl\">\n    <xsd:attribute name=\"val\" type=\"ST_AnimLvlStr\" default=\"none\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ResizeHandlesStr\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"exact\"/>\n      <xsd:enumeration value=\"rel\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ResizeHandles\">\n    <xsd:attribute name=\"val\" type=\"ST_ResizeHandlesStr\" default=\"rel\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LayoutVariablePropertySet\">\n    <xsd:sequence>\n      <xsd:element name=\"orgChart\" type=\"CT_OrgChart\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"chMax\" type=\"CT_ChildMax\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"chPref\" type=\"CT_ChildPref\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bulletEnabled\" type=\"CT_BulletEnabled\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dir\" type=\"CT_Direction\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hierBranch\" type=\"CT_HierBranchStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"animOne\" type=\"CT_AnimOne\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"animLvl\" type=\"CT_AnimLvl\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"resizeHandles\" type=\"CT_ResizeHandles\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SDName\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SDDescription\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SDCategory\">\n    <xsd:attribute name=\"type\" type=\"xsd:anyURI\" use=\"required\"/>\n    <xsd:attribute name=\"pri\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SDCategories\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"cat\" type=\"CT_SDCategory\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextProps\">\n    <xsd:sequence>\n      <xsd:group ref=\"a:EG_Text3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StyleLabel\">\n    <xsd:sequence>\n      <xsd:element name=\"scene3d\" type=\"a:CT_Scene3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sp3d\" type=\"a:CT_Shape3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txPr\" type=\"CT_TextProps\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StyleDefinition\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_SDName\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"desc\" type=\"CT_SDDescription\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"catLst\" type=\"CT_SDCategories\" minOccurs=\"0\"/>\n      <xsd:element name=\"scene3d\" type=\"a:CT_Scene3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"styleLbl\" type=\"CT_StyleLabel\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueId\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"minVer\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:element name=\"styleDef\" type=\"CT_StyleDefinition\"/>\n  <xsd:complexType name=\"CT_StyleDefinitionHeader\">\n    <xsd:sequence>\n      <xsd:element name=\"title\" type=\"CT_SDName\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"desc\" type=\"CT_SDDescription\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"catLst\" type=\"CT_SDCategories\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueId\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"minVer\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"resId\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:element name=\"styleDefHdr\" type=\"CT_StyleDefinitionHeader\"/>\n  <xsd:complexType name=\"CT_StyleDefinitionHeaderLst\">\n    <xsd:sequence>\n      <xsd:element name=\"styleDefHdr\" type=\"CT_StyleDefinitionHeader\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"styleDefHdrLst\" type=\"CT_StyleDefinitionHeaderLst\"/>\n  <xsd:simpleType name=\"ST_AlgorithmType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"composite\"/>\n      <xsd:enumeration value=\"conn\"/>\n      <xsd:enumeration value=\"cycle\"/>\n      <xsd:enumeration value=\"hierChild\"/>\n      <xsd:enumeration value=\"hierRoot\"/>\n      <xsd:enumeration value=\"pyra\"/>\n      <xsd:enumeration value=\"lin\"/>\n      <xsd:enumeration value=\"sp\"/>\n      <xsd:enumeration value=\"tx\"/>\n      <xsd:enumeration value=\"snake\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AxisType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"self\"/>\n      <xsd:enumeration value=\"ch\"/>\n      <xsd:enumeration value=\"des\"/>\n      <xsd:enumeration value=\"desOrSelf\"/>\n      <xsd:enumeration value=\"par\"/>\n      <xsd:enumeration value=\"ancst\"/>\n      <xsd:enumeration value=\"ancstOrSelf\"/>\n      <xsd:enumeration value=\"followSib\"/>\n      <xsd:enumeration value=\"precedSib\"/>\n      <xsd:enumeration value=\"follow\"/>\n      <xsd:enumeration value=\"preced\"/>\n      <xsd:enumeration value=\"root\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AxisTypes\">\n    <xsd:list itemType=\"ST_AxisType\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BoolOperator\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"equ\"/>\n      <xsd:enumeration value=\"gte\"/>\n      <xsd:enumeration value=\"lte\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ChildOrderType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"t\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConstraintType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"alignOff\"/>\n      <xsd:enumeration value=\"begMarg\"/>\n      <xsd:enumeration value=\"bendDist\"/>\n      <xsd:enumeration value=\"begPad\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"bMarg\"/>\n      <xsd:enumeration value=\"bOff\"/>\n      <xsd:enumeration value=\"ctrX\"/>\n      <xsd:enumeration value=\"ctrXOff\"/>\n      <xsd:enumeration value=\"ctrY\"/>\n      <xsd:enumeration value=\"ctrYOff\"/>\n      <xsd:enumeration value=\"connDist\"/>\n      <xsd:enumeration value=\"diam\"/>\n      <xsd:enumeration value=\"endMarg\"/>\n      <xsd:enumeration value=\"endPad\"/>\n      <xsd:enumeration value=\"h\"/>\n      <xsd:enumeration value=\"hArH\"/>\n      <xsd:enumeration value=\"hOff\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"lMarg\"/>\n      <xsd:enumeration value=\"lOff\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"rMarg\"/>\n      <xsd:enumeration value=\"rOff\"/>\n      <xsd:enumeration value=\"primFontSz\"/>\n      <xsd:enumeration value=\"pyraAcctRatio\"/>\n      <xsd:enumeration value=\"secFontSz\"/>\n      <xsd:enumeration value=\"sibSp\"/>\n      <xsd:enumeration value=\"secSibSp\"/>\n      <xsd:enumeration value=\"sp\"/>\n      <xsd:enumeration value=\"stemThick\"/>\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"tMarg\"/>\n      <xsd:enumeration value=\"tOff\"/>\n      <xsd:enumeration value=\"userA\"/>\n      <xsd:enumeration value=\"userB\"/>\n      <xsd:enumeration value=\"userC\"/>\n      <xsd:enumeration value=\"userD\"/>\n      <xsd:enumeration value=\"userE\"/>\n      <xsd:enumeration value=\"userF\"/>\n      <xsd:enumeration value=\"userG\"/>\n      <xsd:enumeration value=\"userH\"/>\n      <xsd:enumeration value=\"userI\"/>\n      <xsd:enumeration value=\"userJ\"/>\n      <xsd:enumeration value=\"userK\"/>\n      <xsd:enumeration value=\"userL\"/>\n      <xsd:enumeration value=\"userM\"/>\n      <xsd:enumeration value=\"userN\"/>\n      <xsd:enumeration value=\"userO\"/>\n      <xsd:enumeration value=\"userP\"/>\n      <xsd:enumeration value=\"userQ\"/>\n      <xsd:enumeration value=\"userR\"/>\n      <xsd:enumeration value=\"userS\"/>\n      <xsd:enumeration value=\"userT\"/>\n      <xsd:enumeration value=\"userU\"/>\n      <xsd:enumeration value=\"userV\"/>\n      <xsd:enumeration value=\"userW\"/>\n      <xsd:enumeration value=\"userX\"/>\n      <xsd:enumeration value=\"userY\"/>\n      <xsd:enumeration value=\"userZ\"/>\n      <xsd:enumeration value=\"w\"/>\n      <xsd:enumeration value=\"wArH\"/>\n      <xsd:enumeration value=\"wOff\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConstraintRelationship\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"self\"/>\n      <xsd:enumeration value=\"ch\"/>\n      <xsd:enumeration value=\"des\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ElementType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"all\"/>\n      <xsd:enumeration value=\"doc\"/>\n      <xsd:enumeration value=\"node\"/>\n      <xsd:enumeration value=\"norm\"/>\n      <xsd:enumeration value=\"nonNorm\"/>\n      <xsd:enumeration value=\"asst\"/>\n      <xsd:enumeration value=\"nonAsst\"/>\n      <xsd:enumeration value=\"parTrans\"/>\n      <xsd:enumeration value=\"pres\"/>\n      <xsd:enumeration value=\"sibTrans\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ElementTypes\">\n    <xsd:list itemType=\"ST_ElementType\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ParameterId\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"horzAlign\"/>\n      <xsd:enumeration value=\"vertAlign\"/>\n      <xsd:enumeration value=\"chDir\"/>\n      <xsd:enumeration value=\"chAlign\"/>\n      <xsd:enumeration value=\"secChAlign\"/>\n      <xsd:enumeration value=\"linDir\"/>\n      <xsd:enumeration value=\"secLinDir\"/>\n      <xsd:enumeration value=\"stElem\"/>\n      <xsd:enumeration value=\"bendPt\"/>\n      <xsd:enumeration value=\"connRout\"/>\n      <xsd:enumeration value=\"begSty\"/>\n      <xsd:enumeration value=\"endSty\"/>\n      <xsd:enumeration value=\"dim\"/>\n      <xsd:enumeration value=\"rotPath\"/>\n      <xsd:enumeration value=\"ctrShpMap\"/>\n      <xsd:enumeration value=\"nodeHorzAlign\"/>\n      <xsd:enumeration value=\"nodeVertAlign\"/>\n      <xsd:enumeration value=\"fallback\"/>\n      <xsd:enumeration value=\"txDir\"/>\n      <xsd:enumeration value=\"pyraAcctPos\"/>\n      <xsd:enumeration value=\"pyraAcctTxMar\"/>\n      <xsd:enumeration value=\"txBlDir\"/>\n      <xsd:enumeration value=\"txAnchorHorz\"/>\n      <xsd:enumeration value=\"txAnchorVert\"/>\n      <xsd:enumeration value=\"txAnchorHorzCh\"/>\n      <xsd:enumeration value=\"txAnchorVertCh\"/>\n      <xsd:enumeration value=\"parTxLTRAlign\"/>\n      <xsd:enumeration value=\"parTxRTLAlign\"/>\n      <xsd:enumeration value=\"shpTxLTRAlignCh\"/>\n      <xsd:enumeration value=\"shpTxRTLAlignCh\"/>\n      <xsd:enumeration value=\"autoTxRot\"/>\n      <xsd:enumeration value=\"grDir\"/>\n      <xsd:enumeration value=\"flowDir\"/>\n      <xsd:enumeration value=\"contDir\"/>\n      <xsd:enumeration value=\"bkpt\"/>\n      <xsd:enumeration value=\"off\"/>\n      <xsd:enumeration value=\"hierAlign\"/>\n      <xsd:enumeration value=\"bkPtFixedVal\"/>\n      <xsd:enumeration value=\"stBulletLvl\"/>\n      <xsd:enumeration value=\"stAng\"/>\n      <xsd:enumeration value=\"spanAng\"/>\n      <xsd:enumeration value=\"ar\"/>\n      <xsd:enumeration value=\"lnSpPar\"/>\n      <xsd:enumeration value=\"lnSpAfParP\"/>\n      <xsd:enumeration value=\"lnSpCh\"/>\n      <xsd:enumeration value=\"lnSpAfChP\"/>\n      <xsd:enumeration value=\"rtShortDist\"/>\n      <xsd:enumeration value=\"alignTx\"/>\n      <xsd:enumeration value=\"pyraLvlNode\"/>\n      <xsd:enumeration value=\"pyraAcctBkgdNode\"/>\n      <xsd:enumeration value=\"pyraAcctTxNode\"/>\n      <xsd:enumeration value=\"srcNode\"/>\n      <xsd:enumeration value=\"dstNode\"/>\n      <xsd:enumeration value=\"begPts\"/>\n      <xsd:enumeration value=\"endPts\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Ints\">\n    <xsd:list itemType=\"xsd:int\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UnsignedInts\">\n    <xsd:list itemType=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Booleans\">\n    <xsd:list itemType=\"xsd:boolean\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FunctionType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"cnt\"/>\n      <xsd:enumeration value=\"pos\"/>\n      <xsd:enumeration value=\"revPos\"/>\n      <xsd:enumeration value=\"posEven\"/>\n      <xsd:enumeration value=\"posOdd\"/>\n      <xsd:enumeration value=\"var\"/>\n      <xsd:enumeration value=\"depth\"/>\n      <xsd:enumeration value=\"maxDepth\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FunctionOperator\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"equ\"/>\n      <xsd:enumeration value=\"neq\"/>\n      <xsd:enumeration value=\"gt\"/>\n      <xsd:enumeration value=\"lt\"/>\n      <xsd:enumeration value=\"gte\"/>\n      <xsd:enumeration value=\"lte\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DiagramHorizontalAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VerticalAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"mid\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ChildDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"horz\"/>\n      <xsd:enumeration value=\"vert\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ChildAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_SecondaryChildAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LinearDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"fromL\"/>\n      <xsd:enumeration value=\"fromR\"/>\n      <xsd:enumeration value=\"fromT\"/>\n      <xsd:enumeration value=\"fromB\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_SecondaryLinearDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"fromL\"/>\n      <xsd:enumeration value=\"fromR\"/>\n      <xsd:enumeration value=\"fromT\"/>\n      <xsd:enumeration value=\"fromB\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StartingElement\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"node\"/>\n      <xsd:enumeration value=\"trans\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RotationPath\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"alongPath\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CenterShapeMapping\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"fNode\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BendPoint\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"beg\"/>\n      <xsd:enumeration value=\"def\"/>\n      <xsd:enumeration value=\"end\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConnectorRouting\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"stra\"/>\n      <xsd:enumeration value=\"bend\"/>\n      <xsd:enumeration value=\"curve\"/>\n      <xsd:enumeration value=\"longCurve\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ArrowheadStyle\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"arr\"/>\n      <xsd:enumeration value=\"noArr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConnectorDimension\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"1D\"/>\n      <xsd:enumeration value=\"2D\"/>\n      <xsd:enumeration value=\"cust\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConnectorPoint\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"bCtr\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"midL\"/>\n      <xsd:enumeration value=\"midR\"/>\n      <xsd:enumeration value=\"tCtr\"/>\n      <xsd:enumeration value=\"bL\"/>\n      <xsd:enumeration value=\"bR\"/>\n      <xsd:enumeration value=\"tL\"/>\n      <xsd:enumeration value=\"tR\"/>\n      <xsd:enumeration value=\"radial\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_NodeHorizontalAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"r\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_NodeVerticalAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"mid\"/>\n      <xsd:enumeration value=\"b\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FallbackDimension\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"1D\"/>\n      <xsd:enumeration value=\"2D\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"fromT\"/>\n      <xsd:enumeration value=\"fromB\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PyramidAccentPosition\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"bef\"/>\n      <xsd:enumeration value=\"aft\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PyramidAccentTextMargin\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"step\"/>\n      <xsd:enumeration value=\"stack\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextBlockDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"horz\"/>\n      <xsd:enumeration value=\"vert\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextAnchorHorizontal\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"ctr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextAnchorVertical\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"mid\"/>\n      <xsd:enumeration value=\"b\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DiagramTextAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"r\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AutoTextRotation\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"upr\"/>\n      <xsd:enumeration value=\"grav\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_GrowDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"tL\"/>\n      <xsd:enumeration value=\"tR\"/>\n      <xsd:enumeration value=\"bL\"/>\n      <xsd:enumeration value=\"bR\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FlowDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"row\"/>\n      <xsd:enumeration value=\"col\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ContinueDirection\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"revDir\"/>\n      <xsd:enumeration value=\"sameDir\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Breakpoint\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"endCnv\"/>\n      <xsd:enumeration value=\"bal\"/>\n      <xsd:enumeration value=\"fixed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Offset\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"off\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HierarchyAlignment\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"tL\"/>\n      <xsd:enumeration value=\"tR\"/>\n      <xsd:enumeration value=\"tCtrCh\"/>\n      <xsd:enumeration value=\"tCtrDes\"/>\n      <xsd:enumeration value=\"bL\"/>\n      <xsd:enumeration value=\"bR\"/>\n      <xsd:enumeration value=\"bCtrCh\"/>\n      <xsd:enumeration value=\"bCtrDes\"/>\n      <xsd:enumeration value=\"lT\"/>\n      <xsd:enumeration value=\"lB\"/>\n      <xsd:enumeration value=\"lCtrCh\"/>\n      <xsd:enumeration value=\"lCtrDes\"/>\n      <xsd:enumeration value=\"rT\"/>\n      <xsd:enumeration value=\"rB\"/>\n      <xsd:enumeration value=\"rCtrCh\"/>\n      <xsd:enumeration value=\"rCtrDes\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FunctionValue\" final=\"restriction\">\n    <xsd:union\n      memberTypes=\"xsd:int xsd:boolean ST_Direction ST_HierBranchStyle ST_AnimOneStr ST_AnimLvlStr ST_ResizeHandlesStr\"\n    />\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VariableType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"orgChart\"/>\n      <xsd:enumeration value=\"chMax\"/>\n      <xsd:enumeration value=\"chPref\"/>\n      <xsd:enumeration value=\"bulEnabled\"/>\n      <xsd:enumeration value=\"dir\"/>\n      <xsd:enumeration value=\"hierBranch\"/>\n      <xsd:enumeration value=\"animOne\"/>\n      <xsd:enumeration value=\"animLvl\"/>\n      <xsd:enumeration value=\"resizeHandles\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FunctionArgument\" final=\"restriction\">\n    <xsd:union memberTypes=\"ST_VariableType\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OutputShapeType\" final=\"restriction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"conn\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/lockedCanvas\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  elementFormDefault=\"qualified\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/lockedCanvas\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:element name=\"lockedCanvas\" type=\"a:CT_GvmlGroupShape\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/diagram\"\n    schemaLocation=\"dml-diagram.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/chart\"\n    schemaLocation=\"dml-chart.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/picture\"\n    schemaLocation=\"dml-picture.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/lockedCanvas\"\n    schemaLocation=\"dml-lockedCanvas.xsd\"/>\n  <xsd:complexType name=\"CT_AudioFile\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:link\" use=\"required\"/>\n    <xsd:attribute name=\"contentType\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VideoFile\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:link\" use=\"required\"/>\n    <xsd:attribute name=\"contentType\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_QuickTimeFile\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:link\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AudioCDTime\">\n    <xsd:attribute name=\"track\" type=\"xsd:unsignedByte\" use=\"required\"/>\n    <xsd:attribute name=\"time\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AudioCD\">\n    <xsd:sequence>\n      <xsd:element name=\"st\" type=\"CT_AudioCDTime\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"end\" type=\"CT_AudioCDTime\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Media\">\n    <xsd:choice>\n      <xsd:element name=\"audioCd\" type=\"CT_AudioCD\"/>\n      <xsd:element name=\"wavAudioFile\" type=\"CT_EmbeddedWAVAudioFile\"/>\n      <xsd:element name=\"audioFile\" type=\"CT_AudioFile\"/>\n      <xsd:element name=\"videoFile\" type=\"CT_VideoFile\"/>\n      <xsd:element name=\"quickTimeFile\" type=\"CT_QuickTimeFile\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:element name=\"videoFile\" type=\"CT_VideoFile\"/>\n  <xsd:simpleType name=\"ST_StyleMatrixColumnIndex\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FontCollectionIndex\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"major\"/>\n      <xsd:enumeration value=\"minor\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ColorSchemeIndex\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"dk1\"/>\n      <xsd:enumeration value=\"lt1\"/>\n      <xsd:enumeration value=\"dk2\"/>\n      <xsd:enumeration value=\"lt2\"/>\n      <xsd:enumeration value=\"accent1\"/>\n      <xsd:enumeration value=\"accent2\"/>\n      <xsd:enumeration value=\"accent3\"/>\n      <xsd:enumeration value=\"accent4\"/>\n      <xsd:enumeration value=\"accent5\"/>\n      <xsd:enumeration value=\"accent6\"/>\n      <xsd:enumeration value=\"hlink\"/>\n      <xsd:enumeration value=\"folHlink\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ColorScheme\">\n    <xsd:sequence>\n      <xsd:element name=\"dk1\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lt1\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dk2\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lt2\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"accent1\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"accent2\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"accent3\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"accent4\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"accent5\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"accent6\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hlink\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"folHlink\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SupplementalFont\">\n    <xsd:attribute name=\"script\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"typeface\" type=\"ST_TextTypeface\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomColorList\">\n    <xsd:sequence>\n      <xsd:element name=\"custClr\" type=\"CT_CustomColor\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontCollection\">\n    <xsd:sequence>\n      <xsd:element name=\"latin\" type=\"CT_TextFont\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ea\" type=\"CT_TextFont\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cs\" type=\"CT_TextFont\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"font\" type=\"CT_SupplementalFont\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EffectStyleItem\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scene3d\" type=\"CT_Scene3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sp3d\" type=\"CT_Shape3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontScheme\">\n    <xsd:sequence>\n      <xsd:element name=\"majorFont\" type=\"CT_FontCollection\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"minorFont\" type=\"CT_FontCollection\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FillStyleList\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"3\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LineStyleList\">\n    <xsd:sequence>\n      <xsd:element name=\"ln\" type=\"CT_LineProperties\" minOccurs=\"3\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EffectStyleList\">\n    <xsd:sequence>\n      <xsd:element name=\"effectStyle\" type=\"CT_EffectStyleItem\" minOccurs=\"3\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BackgroundFillStyleList\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"3\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StyleMatrix\">\n    <xsd:sequence>\n      <xsd:element name=\"fillStyleLst\" type=\"CT_FillStyleList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnStyleLst\" type=\"CT_LineStyleList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"effectStyleLst\" type=\"CT_EffectStyleList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bgFillStyleLst\" type=\"CT_BackgroundFillStyleList\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BaseStyles\">\n    <xsd:sequence>\n      <xsd:element name=\"clrScheme\" type=\"CT_ColorScheme\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fontScheme\" type=\"CT_FontScheme\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fmtScheme\" type=\"CT_StyleMatrix\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OfficeArtExtension\">\n    <xsd:sequence>\n      <xsd:any processContents=\"lax\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"xsd:token\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Coordinate\">\n    <xsd:union memberTypes=\"ST_CoordinateUnqualified s:ST_UniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CoordinateUnqualified\">\n    <xsd:restriction base=\"xsd:long\">\n      <xsd:minInclusive value=\"-27273042329600\"/>\n      <xsd:maxInclusive value=\"27273042316900\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Coordinate32\">\n    <xsd:union memberTypes=\"ST_Coordinate32Unqualified s:ST_UniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Coordinate32Unqualified\">\n    <xsd:restriction base=\"xsd:int\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositiveCoordinate\">\n    <xsd:restriction base=\"xsd:long\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"27273042316900\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositiveCoordinate32\">\n    <xsd:restriction base=\"ST_Coordinate32Unqualified\">\n      <xsd:minInclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Angle\">\n    <xsd:restriction base=\"xsd:int\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Angle\">\n    <xsd:attribute name=\"val\" type=\"ST_Angle\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FixedAngle\">\n    <xsd:restriction base=\"ST_Angle\">\n      <xsd:minExclusive value=\"-5400000\"/>\n      <xsd:maxExclusive value=\"5400000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositiveFixedAngle\">\n    <xsd:restriction base=\"ST_Angle\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxExclusive value=\"21600000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PositiveFixedAngle\">\n    <xsd:attribute name=\"val\" type=\"ST_PositiveFixedAngle\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Percentage\">\n    <xsd:union memberTypes=\"ST_PercentageDecimal s:ST_Percentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PercentageDecimal\">\n    <xsd:restriction base=\"xsd:int\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Percentage\">\n    <xsd:attribute name=\"val\" type=\"ST_Percentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PositivePercentage\">\n    <xsd:union memberTypes=\"ST_PositivePercentageDecimal s:ST_PositivePercentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositivePercentageDecimal\">\n    <xsd:restriction base=\"ST_PercentageDecimal\">\n      <xsd:minInclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PositivePercentage\">\n    <xsd:attribute name=\"val\" type=\"ST_PositivePercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FixedPercentage\">\n    <xsd:union memberTypes=\"ST_FixedPercentageDecimal s:ST_FixedPercentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FixedPercentageDecimal\">\n    <xsd:restriction base=\"ST_PercentageDecimal\">\n      <xsd:minInclusive value=\"-100000\"/>\n      <xsd:maxInclusive value=\"100000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FixedPercentage\">\n    <xsd:attribute name=\"val\" type=\"ST_FixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PositiveFixedPercentage\">\n    <xsd:union memberTypes=\"ST_PositiveFixedPercentageDecimal s:ST_PositiveFixedPercentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositiveFixedPercentageDecimal\">\n    <xsd:restriction base=\"ST_PercentageDecimal\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"100000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PositiveFixedPercentage\">\n    <xsd:attribute name=\"val\" type=\"ST_PositiveFixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Ratio\">\n    <xsd:attribute name=\"n\" type=\"xsd:long\" use=\"required\"/>\n    <xsd:attribute name=\"d\" type=\"xsd:long\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Point2D\">\n    <xsd:attribute name=\"x\" type=\"ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"y\" type=\"ST_Coordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PositiveSize2D\">\n    <xsd:attribute name=\"cx\" type=\"ST_PositiveCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"cy\" type=\"ST_PositiveCoordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ComplementTransform\"/>\n  <xsd:complexType name=\"CT_InverseTransform\"/>\n  <xsd:complexType name=\"CT_GrayscaleTransform\"/>\n  <xsd:complexType name=\"CT_GammaTransform\"/>\n  <xsd:complexType name=\"CT_InverseGammaTransform\"/>\n  <xsd:group name=\"EG_ColorTransform\">\n    <xsd:choice>\n      <xsd:element name=\"tint\" type=\"CT_PositiveFixedPercentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shade\" type=\"CT_PositiveFixedPercentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"comp\" type=\"CT_ComplementTransform\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"inv\" type=\"CT_InverseTransform\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gray\" type=\"CT_GrayscaleTransform\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alpha\" type=\"CT_PositiveFixedPercentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaOff\" type=\"CT_FixedPercentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaMod\" type=\"CT_PositivePercentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hue\" type=\"CT_PositiveFixedAngle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hueOff\" type=\"CT_Angle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hueMod\" type=\"CT_PositivePercentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sat\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"satOff\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"satMod\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lum\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lumOff\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lumMod\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"red\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"redOff\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"redMod\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"green\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"greenOff\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"greenMod\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blue\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blueOff\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blueMod\" type=\"CT_Percentage\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gamma\" type=\"CT_GammaTransform\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"invGamma\" type=\"CT_InverseGammaTransform\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_ScRgbColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"r\" type=\"ST_Percentage\" use=\"required\"/>\n    <xsd:attribute name=\"g\" type=\"ST_Percentage\" use=\"required\"/>\n    <xsd:attribute name=\"b\" type=\"ST_Percentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SRgbColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"val\" type=\"s:ST_HexColorRGB\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HslColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"hue\" type=\"ST_PositiveFixedAngle\" use=\"required\"/>\n    <xsd:attribute name=\"sat\" type=\"ST_Percentage\" use=\"required\"/>\n    <xsd:attribute name=\"lum\" type=\"ST_Percentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SystemColorVal\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"scrollBar\"/>\n      <xsd:enumeration value=\"background\"/>\n      <xsd:enumeration value=\"activeCaption\"/>\n      <xsd:enumeration value=\"inactiveCaption\"/>\n      <xsd:enumeration value=\"menu\"/>\n      <xsd:enumeration value=\"window\"/>\n      <xsd:enumeration value=\"windowFrame\"/>\n      <xsd:enumeration value=\"menuText\"/>\n      <xsd:enumeration value=\"windowText\"/>\n      <xsd:enumeration value=\"captionText\"/>\n      <xsd:enumeration value=\"activeBorder\"/>\n      <xsd:enumeration value=\"inactiveBorder\"/>\n      <xsd:enumeration value=\"appWorkspace\"/>\n      <xsd:enumeration value=\"highlight\"/>\n      <xsd:enumeration value=\"highlightText\"/>\n      <xsd:enumeration value=\"btnFace\"/>\n      <xsd:enumeration value=\"btnShadow\"/>\n      <xsd:enumeration value=\"grayText\"/>\n      <xsd:enumeration value=\"btnText\"/>\n      <xsd:enumeration value=\"inactiveCaptionText\"/>\n      <xsd:enumeration value=\"btnHighlight\"/>\n      <xsd:enumeration value=\"3dDkShadow\"/>\n      <xsd:enumeration value=\"3dLight\"/>\n      <xsd:enumeration value=\"infoText\"/>\n      <xsd:enumeration value=\"infoBk\"/>\n      <xsd:enumeration value=\"hotLight\"/>\n      <xsd:enumeration value=\"gradientActiveCaption\"/>\n      <xsd:enumeration value=\"gradientInactiveCaption\"/>\n      <xsd:enumeration value=\"menuHighlight\"/>\n      <xsd:enumeration value=\"menuBar\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SystemColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"val\" type=\"ST_SystemColorVal\" use=\"required\"/>\n    <xsd:attribute name=\"lastClr\" type=\"s:ST_HexColorRGB\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SchemeColorVal\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"bg1\"/>\n      <xsd:enumeration value=\"tx1\"/>\n      <xsd:enumeration value=\"bg2\"/>\n      <xsd:enumeration value=\"tx2\"/>\n      <xsd:enumeration value=\"accent1\"/>\n      <xsd:enumeration value=\"accent2\"/>\n      <xsd:enumeration value=\"accent3\"/>\n      <xsd:enumeration value=\"accent4\"/>\n      <xsd:enumeration value=\"accent5\"/>\n      <xsd:enumeration value=\"accent6\"/>\n      <xsd:enumeration value=\"hlink\"/>\n      <xsd:enumeration value=\"folHlink\"/>\n      <xsd:enumeration value=\"phClr\"/>\n      <xsd:enumeration value=\"dk1\"/>\n      <xsd:enumeration value=\"lt1\"/>\n      <xsd:enumeration value=\"dk2\"/>\n      <xsd:enumeration value=\"lt2\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SchemeColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"val\" type=\"ST_SchemeColorVal\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PresetColorVal\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"aliceBlue\"/>\n      <xsd:enumeration value=\"antiqueWhite\"/>\n      <xsd:enumeration value=\"aqua\"/>\n      <xsd:enumeration value=\"aquamarine\"/>\n      <xsd:enumeration value=\"azure\"/>\n      <xsd:enumeration value=\"beige\"/>\n      <xsd:enumeration value=\"bisque\"/>\n      <xsd:enumeration value=\"black\"/>\n      <xsd:enumeration value=\"blanchedAlmond\"/>\n      <xsd:enumeration value=\"blue\"/>\n      <xsd:enumeration value=\"blueViolet\"/>\n      <xsd:enumeration value=\"brown\"/>\n      <xsd:enumeration value=\"burlyWood\"/>\n      <xsd:enumeration value=\"cadetBlue\"/>\n      <xsd:enumeration value=\"chartreuse\"/>\n      <xsd:enumeration value=\"chocolate\"/>\n      <xsd:enumeration value=\"coral\"/>\n      <xsd:enumeration value=\"cornflowerBlue\"/>\n      <xsd:enumeration value=\"cornsilk\"/>\n      <xsd:enumeration value=\"crimson\"/>\n      <xsd:enumeration value=\"cyan\"/>\n      <xsd:enumeration value=\"darkBlue\"/>\n      <xsd:enumeration value=\"darkCyan\"/>\n      <xsd:enumeration value=\"darkGoldenrod\"/>\n      <xsd:enumeration value=\"darkGray\"/>\n      <xsd:enumeration value=\"darkGrey\"/>\n      <xsd:enumeration value=\"darkGreen\"/>\n      <xsd:enumeration value=\"darkKhaki\"/>\n      <xsd:enumeration value=\"darkMagenta\"/>\n      <xsd:enumeration value=\"darkOliveGreen\"/>\n      <xsd:enumeration value=\"darkOrange\"/>\n      <xsd:enumeration value=\"darkOrchid\"/>\n      <xsd:enumeration value=\"darkRed\"/>\n      <xsd:enumeration value=\"darkSalmon\"/>\n      <xsd:enumeration value=\"darkSeaGreen\"/>\n      <xsd:enumeration value=\"darkSlateBlue\"/>\n      <xsd:enumeration value=\"darkSlateGray\"/>\n      <xsd:enumeration value=\"darkSlateGrey\"/>\n      <xsd:enumeration value=\"darkTurquoise\"/>\n      <xsd:enumeration value=\"darkViolet\"/>\n      <xsd:enumeration value=\"dkBlue\"/>\n      <xsd:enumeration value=\"dkCyan\"/>\n      <xsd:enumeration value=\"dkGoldenrod\"/>\n      <xsd:enumeration value=\"dkGray\"/>\n      <xsd:enumeration value=\"dkGrey\"/>\n      <xsd:enumeration value=\"dkGreen\"/>\n      <xsd:enumeration value=\"dkKhaki\"/>\n      <xsd:enumeration value=\"dkMagenta\"/>\n      <xsd:enumeration value=\"dkOliveGreen\"/>\n      <xsd:enumeration value=\"dkOrange\"/>\n      <xsd:enumeration value=\"dkOrchid\"/>\n      <xsd:enumeration value=\"dkRed\"/>\n      <xsd:enumeration value=\"dkSalmon\"/>\n      <xsd:enumeration value=\"dkSeaGreen\"/>\n      <xsd:enumeration value=\"dkSlateBlue\"/>\n      <xsd:enumeration value=\"dkSlateGray\"/>\n      <xsd:enumeration value=\"dkSlateGrey\"/>\n      <xsd:enumeration value=\"dkTurquoise\"/>\n      <xsd:enumeration value=\"dkViolet\"/>\n      <xsd:enumeration value=\"deepPink\"/>\n      <xsd:enumeration value=\"deepSkyBlue\"/>\n      <xsd:enumeration value=\"dimGray\"/>\n      <xsd:enumeration value=\"dimGrey\"/>\n      <xsd:enumeration value=\"dodgerBlue\"/>\n      <xsd:enumeration value=\"firebrick\"/>\n      <xsd:enumeration value=\"floralWhite\"/>\n      <xsd:enumeration value=\"forestGreen\"/>\n      <xsd:enumeration value=\"fuchsia\"/>\n      <xsd:enumeration value=\"gainsboro\"/>\n      <xsd:enumeration value=\"ghostWhite\"/>\n      <xsd:enumeration value=\"gold\"/>\n      <xsd:enumeration value=\"goldenrod\"/>\n      <xsd:enumeration value=\"gray\"/>\n      <xsd:enumeration value=\"grey\"/>\n      <xsd:enumeration value=\"green\"/>\n      <xsd:enumeration value=\"greenYellow\"/>\n      <xsd:enumeration value=\"honeydew\"/>\n      <xsd:enumeration value=\"hotPink\"/>\n      <xsd:enumeration value=\"indianRed\"/>\n      <xsd:enumeration value=\"indigo\"/>\n      <xsd:enumeration value=\"ivory\"/>\n      <xsd:enumeration value=\"khaki\"/>\n      <xsd:enumeration value=\"lavender\"/>\n      <xsd:enumeration value=\"lavenderBlush\"/>\n      <xsd:enumeration value=\"lawnGreen\"/>\n      <xsd:enumeration value=\"lemonChiffon\"/>\n      <xsd:enumeration value=\"lightBlue\"/>\n      <xsd:enumeration value=\"lightCoral\"/>\n      <xsd:enumeration value=\"lightCyan\"/>\n      <xsd:enumeration value=\"lightGoldenrodYellow\"/>\n      <xsd:enumeration value=\"lightGray\"/>\n      <xsd:enumeration value=\"lightGrey\"/>\n      <xsd:enumeration value=\"lightGreen\"/>\n      <xsd:enumeration value=\"lightPink\"/>\n      <xsd:enumeration value=\"lightSalmon\"/>\n      <xsd:enumeration value=\"lightSeaGreen\"/>\n      <xsd:enumeration value=\"lightSkyBlue\"/>\n      <xsd:enumeration value=\"lightSlateGray\"/>\n      <xsd:enumeration value=\"lightSlateGrey\"/>\n      <xsd:enumeration value=\"lightSteelBlue\"/>\n      <xsd:enumeration value=\"lightYellow\"/>\n      <xsd:enumeration value=\"ltBlue\"/>\n      <xsd:enumeration value=\"ltCoral\"/>\n      <xsd:enumeration value=\"ltCyan\"/>\n      <xsd:enumeration value=\"ltGoldenrodYellow\"/>\n      <xsd:enumeration value=\"ltGray\"/>\n      <xsd:enumeration value=\"ltGrey\"/>\n      <xsd:enumeration value=\"ltGreen\"/>\n      <xsd:enumeration value=\"ltPink\"/>\n      <xsd:enumeration value=\"ltSalmon\"/>\n      <xsd:enumeration value=\"ltSeaGreen\"/>\n      <xsd:enumeration value=\"ltSkyBlue\"/>\n      <xsd:enumeration value=\"ltSlateGray\"/>\n      <xsd:enumeration value=\"ltSlateGrey\"/>\n      <xsd:enumeration value=\"ltSteelBlue\"/>\n      <xsd:enumeration value=\"ltYellow\"/>\n      <xsd:enumeration value=\"lime\"/>\n      <xsd:enumeration value=\"limeGreen\"/>\n      <xsd:enumeration value=\"linen\"/>\n      <xsd:enumeration value=\"magenta\"/>\n      <xsd:enumeration value=\"maroon\"/>\n      <xsd:enumeration value=\"medAquamarine\"/>\n      <xsd:enumeration value=\"medBlue\"/>\n      <xsd:enumeration value=\"medOrchid\"/>\n      <xsd:enumeration value=\"medPurple\"/>\n      <xsd:enumeration value=\"medSeaGreen\"/>\n      <xsd:enumeration value=\"medSlateBlue\"/>\n      <xsd:enumeration value=\"medSpringGreen\"/>\n      <xsd:enumeration value=\"medTurquoise\"/>\n      <xsd:enumeration value=\"medVioletRed\"/>\n      <xsd:enumeration value=\"mediumAquamarine\"/>\n      <xsd:enumeration value=\"mediumBlue\"/>\n      <xsd:enumeration value=\"mediumOrchid\"/>\n      <xsd:enumeration value=\"mediumPurple\"/>\n      <xsd:enumeration value=\"mediumSeaGreen\"/>\n      <xsd:enumeration value=\"mediumSlateBlue\"/>\n      <xsd:enumeration value=\"mediumSpringGreen\"/>\n      <xsd:enumeration value=\"mediumTurquoise\"/>\n      <xsd:enumeration value=\"mediumVioletRed\"/>\n      <xsd:enumeration value=\"midnightBlue\"/>\n      <xsd:enumeration value=\"mintCream\"/>\n      <xsd:enumeration value=\"mistyRose\"/>\n      <xsd:enumeration value=\"moccasin\"/>\n      <xsd:enumeration value=\"navajoWhite\"/>\n      <xsd:enumeration value=\"navy\"/>\n      <xsd:enumeration value=\"oldLace\"/>\n      <xsd:enumeration value=\"olive\"/>\n      <xsd:enumeration value=\"oliveDrab\"/>\n      <xsd:enumeration value=\"orange\"/>\n      <xsd:enumeration value=\"orangeRed\"/>\n      <xsd:enumeration value=\"orchid\"/>\n      <xsd:enumeration value=\"paleGoldenrod\"/>\n      <xsd:enumeration value=\"paleGreen\"/>\n      <xsd:enumeration value=\"paleTurquoise\"/>\n      <xsd:enumeration value=\"paleVioletRed\"/>\n      <xsd:enumeration value=\"papayaWhip\"/>\n      <xsd:enumeration value=\"peachPuff\"/>\n      <xsd:enumeration value=\"peru\"/>\n      <xsd:enumeration value=\"pink\"/>\n      <xsd:enumeration value=\"plum\"/>\n      <xsd:enumeration value=\"powderBlue\"/>\n      <xsd:enumeration value=\"purple\"/>\n      <xsd:enumeration value=\"red\"/>\n      <xsd:enumeration value=\"rosyBrown\"/>\n      <xsd:enumeration value=\"royalBlue\"/>\n      <xsd:enumeration value=\"saddleBrown\"/>\n      <xsd:enumeration value=\"salmon\"/>\n      <xsd:enumeration value=\"sandyBrown\"/>\n      <xsd:enumeration value=\"seaGreen\"/>\n      <xsd:enumeration value=\"seaShell\"/>\n      <xsd:enumeration value=\"sienna\"/>\n      <xsd:enumeration value=\"silver\"/>\n      <xsd:enumeration value=\"skyBlue\"/>\n      <xsd:enumeration value=\"slateBlue\"/>\n      <xsd:enumeration value=\"slateGray\"/>\n      <xsd:enumeration value=\"slateGrey\"/>\n      <xsd:enumeration value=\"snow\"/>\n      <xsd:enumeration value=\"springGreen\"/>\n      <xsd:enumeration value=\"steelBlue\"/>\n      <xsd:enumeration value=\"tan\"/>\n      <xsd:enumeration value=\"teal\"/>\n      <xsd:enumeration value=\"thistle\"/>\n      <xsd:enumeration value=\"tomato\"/>\n      <xsd:enumeration value=\"turquoise\"/>\n      <xsd:enumeration value=\"violet\"/>\n      <xsd:enumeration value=\"wheat\"/>\n      <xsd:enumeration value=\"white\"/>\n      <xsd:enumeration value=\"whiteSmoke\"/>\n      <xsd:enumeration value=\"yellow\"/>\n      <xsd:enumeration value=\"yellowGreen\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PresetColor\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"val\" type=\"ST_PresetColorVal\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_OfficeArtExtensionList\">\n    <xsd:sequence>\n      <xsd:element name=\"ext\" type=\"CT_OfficeArtExtension\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_OfficeArtExtensionList\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_OfficeArtExtensionList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Scale2D\">\n    <xsd:sequence>\n      <xsd:element name=\"sx\" type=\"CT_Ratio\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sy\" type=\"CT_Ratio\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Transform2D\">\n    <xsd:sequence>\n      <xsd:element name=\"off\" type=\"CT_Point2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ext\" type=\"CT_PositiveSize2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rot\" type=\"ST_Angle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"flipH\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"flipV\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupTransform2D\">\n    <xsd:sequence>\n      <xsd:element name=\"off\" type=\"CT_Point2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ext\" type=\"CT_PositiveSize2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"chOff\" type=\"CT_Point2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"chExt\" type=\"CT_PositiveSize2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rot\" type=\"ST_Angle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"flipH\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"flipV\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Point3D\">\n    <xsd:attribute name=\"x\" type=\"ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"y\" type=\"ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"z\" type=\"ST_Coordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Vector3D\">\n    <xsd:attribute name=\"dx\" type=\"ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"dy\" type=\"ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"dz\" type=\"ST_Coordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SphereCoords\">\n    <xsd:attribute name=\"lat\" type=\"ST_PositiveFixedAngle\" use=\"required\"/>\n    <xsd:attribute name=\"lon\" type=\"ST_PositiveFixedAngle\" use=\"required\"/>\n    <xsd:attribute name=\"rev\" type=\"ST_PositiveFixedAngle\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RelativeRect\">\n    <xsd:attribute name=\"l\" type=\"ST_Percentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"t\" type=\"ST_Percentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"r\" type=\"ST_Percentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"b\" type=\"ST_Percentage\" use=\"optional\" default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RectAlignment\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"tl\"/>\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"tr\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"bl\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"br\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:group name=\"EG_ColorChoice\">\n    <xsd:choice>\n      <xsd:element name=\"scrgbClr\" type=\"CT_ScRgbColor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"srgbClr\" type=\"CT_SRgbColor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hslClr\" type=\"CT_HslColor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sysClr\" type=\"CT_SystemColor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"schemeClr\" type=\"CT_SchemeColor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prstClr\" type=\"CT_PresetColor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_Color\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorMRU\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BlackWhiteMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"clr\"/>\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"gray\"/>\n      <xsd:enumeration value=\"ltGray\"/>\n      <xsd:enumeration value=\"invGray\"/>\n      <xsd:enumeration value=\"grayWhite\"/>\n      <xsd:enumeration value=\"blackGray\"/>\n      <xsd:enumeration value=\"blackWhite\"/>\n      <xsd:enumeration value=\"black\"/>\n      <xsd:enumeration value=\"white\"/>\n      <xsd:enumeration value=\"hidden\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:attributeGroup name=\"AG_Blob\">\n    <xsd:attribute ref=\"r:embed\" use=\"optional\" default=\"\"/>\n    <xsd:attribute ref=\"r:link\" use=\"optional\" default=\"\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_EmbeddedWAVAudioFile\">\n    <xsd:attribute ref=\"r:embed\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Hyperlink\">\n    <xsd:sequence>\n      <xsd:element name=\"snd\" type=\"CT_EmbeddedWAVAudioFile\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"invalidUrl\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"action\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"tgtFrame\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"tooltip\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"history\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"highlightClick\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"endSnd\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DrawingElementId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:attributeGroup name=\"AG_Locking\">\n    <xsd:attribute name=\"noGrp\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noSelect\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noRot\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noChangeAspect\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noMove\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noResize\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noEditPoints\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noAdjustHandles\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noChangeArrowheads\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noChangeShapeType\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_ConnectorLocking\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Locking\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShapeLocking\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Locking\"/>\n    <xsd:attribute name=\"noTextEdit\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PictureLocking\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Locking\"/>\n    <xsd:attribute name=\"noCrop\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupLocking\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"noGrp\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noUngrp\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noSelect\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noRot\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noChangeAspect\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noMove\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noResize\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObjectFrameLocking\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"noGrp\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noDrilldown\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noSelect\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noChangeAspect\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noMove\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"noResize\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ContentPartLocking\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Locking\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualDrawingProps\">\n    <xsd:sequence>\n      <xsd:element name=\"hlinkClick\" type=\"CT_Hyperlink\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hlinkHover\" type=\"CT_Hyperlink\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"ST_DrawingElementId\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"descr\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"title\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualDrawingShapeProps\">\n    <xsd:sequence>\n      <xsd:element name=\"spLocks\" type=\"CT_ShapeLocking\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"txBox\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualConnectorProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"cxnSpLocks\" type=\"CT_ConnectorLocking\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"stCxn\" type=\"CT_Connection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"endCxn\" type=\"CT_Connection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualPictureProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"picLocks\" type=\"CT_PictureLocking\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"preferRelativeResize\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualGroupDrawingShapeProps\">\n    <xsd:sequence>\n      <xsd:element name=\"grpSpLocks\" type=\"CT_GroupLocking\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualGraphicFrameProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"graphicFrameLocks\" type=\"CT_GraphicalObjectFrameLocking\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NonVisualContentPartProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"cpLocks\" type=\"CT_ContentPartLocking\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"isComment\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObjectData\">\n    <xsd:sequence>\n      <xsd:any minOccurs=\"0\" maxOccurs=\"unbounded\" processContents=\"strict\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"xsd:token\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObject\">\n    <xsd:sequence>\n      <xsd:element name=\"graphicData\" type=\"CT_GraphicalObjectData\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"graphic\" type=\"CT_GraphicalObject\"/>\n  <xsd:simpleType name=\"ST_ChartBuildStep\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"category\"/>\n      <xsd:enumeration value=\"ptInCategory\"/>\n      <xsd:enumeration value=\"series\"/>\n      <xsd:enumeration value=\"ptInSeries\"/>\n      <xsd:enumeration value=\"allPts\"/>\n      <xsd:enumeration value=\"gridLegend\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DgmBuildStep\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sp\"/>\n      <xsd:enumeration value=\"bg\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_AnimationDgmElement\">\n    <xsd:attribute name=\"id\" type=\"s:ST_Guid\" use=\"optional\"\n      default=\"{00000000-0000-0000-0000-000000000000}\"/>\n    <xsd:attribute name=\"bldStep\" type=\"ST_DgmBuildStep\" use=\"optional\" default=\"sp\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AnimationChartElement\">\n    <xsd:attribute name=\"seriesIdx\" type=\"xsd:int\" use=\"optional\" default=\"-1\"/>\n    <xsd:attribute name=\"categoryIdx\" type=\"xsd:int\" use=\"optional\" default=\"-1\"/>\n    <xsd:attribute name=\"bldStep\" type=\"ST_ChartBuildStep\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AnimationElementChoice\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"dgm\" type=\"CT_AnimationDgmElement\"/>\n      <xsd:element name=\"chart\" type=\"CT_AnimationChartElement\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AnimationBuildType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"allAtOnce\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AnimationDgmOnlyBuildType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"one\"/>\n      <xsd:enumeration value=\"lvlOne\"/>\n      <xsd:enumeration value=\"lvlAtOnce\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AnimationDgmBuildType\">\n    <xsd:union memberTypes=\"ST_AnimationBuildType ST_AnimationDgmOnlyBuildType\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_AnimationDgmBuildProperties\">\n    <xsd:attribute name=\"bld\" type=\"ST_AnimationDgmBuildType\" use=\"optional\" default=\"allAtOnce\"/>\n    <xsd:attribute name=\"rev\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AnimationChartOnlyBuildType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"series\"/>\n      <xsd:enumeration value=\"category\"/>\n      <xsd:enumeration value=\"seriesEl\"/>\n      <xsd:enumeration value=\"categoryEl\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AnimationChartBuildType\">\n    <xsd:union memberTypes=\"ST_AnimationBuildType ST_AnimationChartOnlyBuildType\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_AnimationChartBuildProperties\">\n    <xsd:attribute name=\"bld\" type=\"ST_AnimationChartBuildType\" use=\"optional\" default=\"allAtOnce\"/>\n    <xsd:attribute name=\"animBg\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AnimationGraphicalObjectBuildProperties\">\n    <xsd:choice>\n      <xsd:element name=\"bldDgm\" type=\"CT_AnimationDgmBuildProperties\"/>\n      <xsd:element name=\"bldChart\" type=\"CT_AnimationChartBuildProperties\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BackgroundFormatting\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WholeE2oFormatting\">\n    <xsd:sequence>\n      <xsd:element name=\"ln\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlUseShapeRectangle\"/>\n  <xsd:complexType name=\"CT_GvmlTextShape\">\n    <xsd:sequence>\n      <xsd:element name=\"txBody\" type=\"CT_TextBody\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice>\n        <xsd:element name=\"useSpRect\" type=\"CT_GvmlUseShapeRectangle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"xfrm\" type=\"CT_Transform2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvSpPr\" type=\"CT_NonVisualDrawingShapeProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlShape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvSpPr\" type=\"CT_GvmlShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txSp\" type=\"CT_GvmlTextShape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlConnectorNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvCxnSpPr\" type=\"CT_NonVisualConnectorProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlConnector\">\n    <xsd:sequence>\n      <xsd:element name=\"nvCxnSpPr\" type=\"CT_GvmlConnectorNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlPictureNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvPicPr\" type=\"CT_NonVisualPictureProperties\" minOccurs=\"1\" maxOccurs=\"1\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlPicture\">\n    <xsd:sequence>\n      <xsd:element name=\"nvPicPr\" type=\"CT_GvmlPictureNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blipFill\" type=\"CT_BlipFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlGraphicFrameNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGraphicFramePr\" type=\"CT_NonVisualGraphicFrameProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlGraphicalObjectFrame\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGraphicFramePr\" type=\"CT_GvmlGraphicFrameNonVisual\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element ref=\"graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"CT_Transform2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlGroupShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGrpSpPr\" type=\"CT_NonVisualGroupDrawingShapeProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GvmlGroupShape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGrpSpPr\" type=\"CT_GvmlGroupShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grpSpPr\" type=\"CT_GroupShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"txSp\" type=\"CT_GvmlTextShape\"/>\n        <xsd:element name=\"sp\" type=\"CT_GvmlShape\"/>\n        <xsd:element name=\"cxnSp\" type=\"CT_GvmlConnector\"/>\n        <xsd:element name=\"pic\" type=\"CT_GvmlPicture\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GvmlGraphicalObjectFrame\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_GvmlGroupShape\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PresetCameraType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"legacyObliqueTopLeft\"/>\n      <xsd:enumeration value=\"legacyObliqueTop\"/>\n      <xsd:enumeration value=\"legacyObliqueTopRight\"/>\n      <xsd:enumeration value=\"legacyObliqueLeft\"/>\n      <xsd:enumeration value=\"legacyObliqueFront\"/>\n      <xsd:enumeration value=\"legacyObliqueRight\"/>\n      <xsd:enumeration value=\"legacyObliqueBottomLeft\"/>\n      <xsd:enumeration value=\"legacyObliqueBottom\"/>\n      <xsd:enumeration value=\"legacyObliqueBottomRight\"/>\n      <xsd:enumeration value=\"legacyPerspectiveTopLeft\"/>\n      <xsd:enumeration value=\"legacyPerspectiveTop\"/>\n      <xsd:enumeration value=\"legacyPerspectiveTopRight\"/>\n      <xsd:enumeration value=\"legacyPerspectiveLeft\"/>\n      <xsd:enumeration value=\"legacyPerspectiveFront\"/>\n      <xsd:enumeration value=\"legacyPerspectiveRight\"/>\n      <xsd:enumeration value=\"legacyPerspectiveBottomLeft\"/>\n      <xsd:enumeration value=\"legacyPerspectiveBottom\"/>\n      <xsd:enumeration value=\"legacyPerspectiveBottomRight\"/>\n      <xsd:enumeration value=\"orthographicFront\"/>\n      <xsd:enumeration value=\"isometricTopUp\"/>\n      <xsd:enumeration value=\"isometricTopDown\"/>\n      <xsd:enumeration value=\"isometricBottomUp\"/>\n      <xsd:enumeration value=\"isometricBottomDown\"/>\n      <xsd:enumeration value=\"isometricLeftUp\"/>\n      <xsd:enumeration value=\"isometricLeftDown\"/>\n      <xsd:enumeration value=\"isometricRightUp\"/>\n      <xsd:enumeration value=\"isometricRightDown\"/>\n      <xsd:enumeration value=\"isometricOffAxis1Left\"/>\n      <xsd:enumeration value=\"isometricOffAxis1Right\"/>\n      <xsd:enumeration value=\"isometricOffAxis1Top\"/>\n      <xsd:enumeration value=\"isometricOffAxis2Left\"/>\n      <xsd:enumeration value=\"isometricOffAxis2Right\"/>\n      <xsd:enumeration value=\"isometricOffAxis2Top\"/>\n      <xsd:enumeration value=\"isometricOffAxis3Left\"/>\n      <xsd:enumeration value=\"isometricOffAxis3Right\"/>\n      <xsd:enumeration value=\"isometricOffAxis3Bottom\"/>\n      <xsd:enumeration value=\"isometricOffAxis4Left\"/>\n      <xsd:enumeration value=\"isometricOffAxis4Right\"/>\n      <xsd:enumeration value=\"isometricOffAxis4Bottom\"/>\n      <xsd:enumeration value=\"obliqueTopLeft\"/>\n      <xsd:enumeration value=\"obliqueTop\"/>\n      <xsd:enumeration value=\"obliqueTopRight\"/>\n      <xsd:enumeration value=\"obliqueLeft\"/>\n      <xsd:enumeration value=\"obliqueRight\"/>\n      <xsd:enumeration value=\"obliqueBottomLeft\"/>\n      <xsd:enumeration value=\"obliqueBottom\"/>\n      <xsd:enumeration value=\"obliqueBottomRight\"/>\n      <xsd:enumeration value=\"perspectiveFront\"/>\n      <xsd:enumeration value=\"perspectiveLeft\"/>\n      <xsd:enumeration value=\"perspectiveRight\"/>\n      <xsd:enumeration value=\"perspectiveAbove\"/>\n      <xsd:enumeration value=\"perspectiveBelow\"/>\n      <xsd:enumeration value=\"perspectiveAboveLeftFacing\"/>\n      <xsd:enumeration value=\"perspectiveAboveRightFacing\"/>\n      <xsd:enumeration value=\"perspectiveContrastingLeftFacing\"/>\n      <xsd:enumeration value=\"perspectiveContrastingRightFacing\"/>\n      <xsd:enumeration value=\"perspectiveHeroicLeftFacing\"/>\n      <xsd:enumeration value=\"perspectiveHeroicRightFacing\"/>\n      <xsd:enumeration value=\"perspectiveHeroicExtremeLeftFacing\"/>\n      <xsd:enumeration value=\"perspectiveHeroicExtremeRightFacing\"/>\n      <xsd:enumeration value=\"perspectiveRelaxed\"/>\n      <xsd:enumeration value=\"perspectiveRelaxedModerately\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FOVAngle\">\n    <xsd:restriction base=\"ST_Angle\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"10800000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Camera\">\n    <xsd:sequence>\n      <xsd:element name=\"rot\" type=\"CT_SphereCoords\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prst\" type=\"ST_PresetCameraType\" use=\"required\"/>\n    <xsd:attribute name=\"fov\" type=\"ST_FOVAngle\" use=\"optional\"/>\n    <xsd:attribute name=\"zoom\" type=\"ST_PositivePercentage\" use=\"optional\" default=\"100%\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LightRigDirection\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"tl\"/>\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"tr\"/>\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"bl\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"br\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LightRigType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"legacyFlat1\"/>\n      <xsd:enumeration value=\"legacyFlat2\"/>\n      <xsd:enumeration value=\"legacyFlat3\"/>\n      <xsd:enumeration value=\"legacyFlat4\"/>\n      <xsd:enumeration value=\"legacyNormal1\"/>\n      <xsd:enumeration value=\"legacyNormal2\"/>\n      <xsd:enumeration value=\"legacyNormal3\"/>\n      <xsd:enumeration value=\"legacyNormal4\"/>\n      <xsd:enumeration value=\"legacyHarsh1\"/>\n      <xsd:enumeration value=\"legacyHarsh2\"/>\n      <xsd:enumeration value=\"legacyHarsh3\"/>\n      <xsd:enumeration value=\"legacyHarsh4\"/>\n      <xsd:enumeration value=\"threePt\"/>\n      <xsd:enumeration value=\"balanced\"/>\n      <xsd:enumeration value=\"soft\"/>\n      <xsd:enumeration value=\"harsh\"/>\n      <xsd:enumeration value=\"flood\"/>\n      <xsd:enumeration value=\"contrasting\"/>\n      <xsd:enumeration value=\"morning\"/>\n      <xsd:enumeration value=\"sunrise\"/>\n      <xsd:enumeration value=\"sunset\"/>\n      <xsd:enumeration value=\"chilly\"/>\n      <xsd:enumeration value=\"freezing\"/>\n      <xsd:enumeration value=\"flat\"/>\n      <xsd:enumeration value=\"twoPt\"/>\n      <xsd:enumeration value=\"glow\"/>\n      <xsd:enumeration value=\"brightRoom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LightRig\">\n    <xsd:sequence>\n      <xsd:element name=\"rot\" type=\"CT_SphereCoords\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rig\" type=\"ST_LightRigType\" use=\"required\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_LightRigDirection\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Scene3D\">\n    <xsd:sequence>\n      <xsd:element name=\"camera\" type=\"CT_Camera\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lightRig\" type=\"CT_LightRig\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"backdrop\" type=\"CT_Backdrop\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Backdrop\">\n    <xsd:sequence>\n      <xsd:element name=\"anchor\" type=\"CT_Point3D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"norm\" type=\"CT_Vector3D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"up\" type=\"CT_Vector3D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BevelPresetType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"relaxedInset\"/>\n      <xsd:enumeration value=\"circle\"/>\n      <xsd:enumeration value=\"slope\"/>\n      <xsd:enumeration value=\"cross\"/>\n      <xsd:enumeration value=\"angle\"/>\n      <xsd:enumeration value=\"softRound\"/>\n      <xsd:enumeration value=\"convex\"/>\n      <xsd:enumeration value=\"coolSlant\"/>\n      <xsd:enumeration value=\"divot\"/>\n      <xsd:enumeration value=\"riblet\"/>\n      <xsd:enumeration value=\"hardEdge\"/>\n      <xsd:enumeration value=\"artDeco\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Bevel\">\n    <xsd:attribute name=\"w\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"76200\"/>\n    <xsd:attribute name=\"h\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"76200\"/>\n    <xsd:attribute name=\"prst\" type=\"ST_BevelPresetType\" use=\"optional\" default=\"circle\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PresetMaterialType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"legacyMatte\"/>\n      <xsd:enumeration value=\"legacyPlastic\"/>\n      <xsd:enumeration value=\"legacyMetal\"/>\n      <xsd:enumeration value=\"legacyWireframe\"/>\n      <xsd:enumeration value=\"matte\"/>\n      <xsd:enumeration value=\"plastic\"/>\n      <xsd:enumeration value=\"metal\"/>\n      <xsd:enumeration value=\"warmMatte\"/>\n      <xsd:enumeration value=\"translucentPowder\"/>\n      <xsd:enumeration value=\"powder\"/>\n      <xsd:enumeration value=\"dkEdge\"/>\n      <xsd:enumeration value=\"softEdge\"/>\n      <xsd:enumeration value=\"clear\"/>\n      <xsd:enumeration value=\"flat\"/>\n      <xsd:enumeration value=\"softmetal\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Shape3D\">\n    <xsd:sequence>\n      <xsd:element name=\"bevelT\" type=\"CT_Bevel\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bevelB\" type=\"CT_Bevel\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extrusionClr\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"contourClr\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"z\" type=\"ST_Coordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"extrusionH\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"contourW\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"prstMaterial\" type=\"ST_PresetMaterialType\" use=\"optional\"\n      default=\"warmMatte\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FlatText\">\n    <xsd:attribute name=\"z\" type=\"ST_Coordinate\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Text3D\">\n    <xsd:choice>\n      <xsd:element name=\"sp3d\" type=\"CT_Shape3D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"flatTx\" type=\"CT_FlatText\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_AlphaBiLevelEffect\">\n    <xsd:attribute name=\"thresh\" type=\"ST_PositiveFixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AlphaCeilingEffect\"/>\n  <xsd:complexType name=\"CT_AlphaFloorEffect\"/>\n  <xsd:complexType name=\"CT_AlphaInverseEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AlphaModulateFixedEffect\">\n    <xsd:attribute name=\"amt\" type=\"ST_PositivePercentage\" use=\"optional\" default=\"100%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AlphaOutsetEffect\">\n    <xsd:attribute name=\"rad\" type=\"ST_Coordinate\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AlphaReplaceEffect\">\n    <xsd:attribute name=\"a\" type=\"ST_PositiveFixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BiLevelEffect\">\n    <xsd:attribute name=\"thresh\" type=\"ST_PositiveFixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BlurEffect\">\n    <xsd:attribute name=\"rad\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"grow\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorChangeEffect\">\n    <xsd:sequence>\n      <xsd:element name=\"clrFrom\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrTo\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"useA\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorReplaceEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DuotoneEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"2\" maxOccurs=\"2\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GlowEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rad\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GrayscaleEffect\"/>\n  <xsd:complexType name=\"CT_HSLEffect\">\n    <xsd:attribute name=\"hue\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"sat\" type=\"ST_FixedPercentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"lum\" type=\"ST_FixedPercentage\" use=\"optional\" default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_InnerShadowEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"blurRad\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"dist\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LuminanceEffect\">\n    <xsd:attribute name=\"bright\" type=\"ST_FixedPercentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"contrast\" type=\"ST_FixedPercentage\" use=\"optional\" default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OuterShadowEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"blurRad\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"dist\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"sx\" type=\"ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"sy\" type=\"ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"kx\" type=\"ST_FixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ky\" type=\"ST_FixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"algn\" type=\"ST_RectAlignment\" use=\"optional\" default=\"b\"/>\n    <xsd:attribute name=\"rotWithShape\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PresetShadowVal\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"shdw1\"/>\n      <xsd:enumeration value=\"shdw2\"/>\n      <xsd:enumeration value=\"shdw3\"/>\n      <xsd:enumeration value=\"shdw4\"/>\n      <xsd:enumeration value=\"shdw5\"/>\n      <xsd:enumeration value=\"shdw6\"/>\n      <xsd:enumeration value=\"shdw7\"/>\n      <xsd:enumeration value=\"shdw8\"/>\n      <xsd:enumeration value=\"shdw9\"/>\n      <xsd:enumeration value=\"shdw10\"/>\n      <xsd:enumeration value=\"shdw11\"/>\n      <xsd:enumeration value=\"shdw12\"/>\n      <xsd:enumeration value=\"shdw13\"/>\n      <xsd:enumeration value=\"shdw14\"/>\n      <xsd:enumeration value=\"shdw15\"/>\n      <xsd:enumeration value=\"shdw16\"/>\n      <xsd:enumeration value=\"shdw17\"/>\n      <xsd:enumeration value=\"shdw18\"/>\n      <xsd:enumeration value=\"shdw19\"/>\n      <xsd:enumeration value=\"shdw20\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PresetShadowEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prst\" type=\"ST_PresetShadowVal\" use=\"required\"/>\n    <xsd:attribute name=\"dist\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ReflectionEffect\">\n    <xsd:attribute name=\"blurRad\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"stA\" type=\"ST_PositiveFixedPercentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"stPos\" type=\"ST_PositiveFixedPercentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"endA\" type=\"ST_PositiveFixedPercentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"endPos\" type=\"ST_PositiveFixedPercentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"dist\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"fadeDir\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"5400000\"/>\n    <xsd:attribute name=\"sx\" type=\"ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"sy\" type=\"ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"kx\" type=\"ST_FixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ky\" type=\"ST_FixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"algn\" type=\"ST_RectAlignment\" use=\"optional\" default=\"b\"/>\n    <xsd:attribute name=\"rotWithShape\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RelativeOffsetEffect\">\n    <xsd:attribute name=\"tx\" type=\"ST_Percentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"ty\" type=\"ST_Percentage\" use=\"optional\" default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SoftEdgesEffect\">\n    <xsd:attribute name=\"rad\" type=\"ST_PositiveCoordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TintEffect\">\n    <xsd:attribute name=\"hue\" type=\"ST_PositiveFixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"amt\" type=\"ST_FixedPercentage\" use=\"optional\" default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TransformEffect\">\n    <xsd:attribute name=\"sx\" type=\"ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"sy\" type=\"ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"kx\" type=\"ST_FixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ky\" type=\"ST_FixedAngle\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"tx\" type=\"ST_Coordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ty\" type=\"ST_Coordinate\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NoFillProperties\"/>\n  <xsd:complexType name=\"CT_SolidColorFillProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LinearShadeProperties\">\n    <xsd:attribute name=\"ang\" type=\"ST_PositiveFixedAngle\" use=\"optional\"/>\n    <xsd:attribute name=\"scaled\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PathShadeType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"shape\"/>\n      <xsd:enumeration value=\"circle\"/>\n      <xsd:enumeration value=\"rect\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PathShadeProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"fillToRect\" type=\"CT_RelativeRect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"path\" type=\"ST_PathShadeType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ShadeProperties\">\n    <xsd:choice>\n      <xsd:element name=\"lin\" type=\"CT_LinearShadeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"path\" type=\"CT_PathShadeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_TileFlipMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"x\"/>\n      <xsd:enumeration value=\"y\"/>\n      <xsd:enumeration value=\"xy\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_GradientStop\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"pos\" type=\"ST_PositiveFixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GradientStopList\">\n    <xsd:sequence>\n      <xsd:element name=\"gs\" type=\"CT_GradientStop\" minOccurs=\"2\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GradientFillProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"gsLst\" type=\"CT_GradientStopList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ShadeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tileRect\" type=\"CT_RelativeRect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"flip\" type=\"ST_TileFlipMode\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"rotWithShape\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TileInfoProperties\">\n    <xsd:attribute name=\"tx\" type=\"ST_Coordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"ty\" type=\"ST_Coordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"sx\" type=\"ST_Percentage\" use=\"optional\"/>\n    <xsd:attribute name=\"sy\" type=\"ST_Percentage\" use=\"optional\"/>\n    <xsd:attribute name=\"flip\" type=\"ST_TileFlipMode\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"algn\" type=\"ST_RectAlignment\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StretchInfoProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"fillRect\" type=\"CT_RelativeRect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_FillModeProperties\">\n    <xsd:choice>\n      <xsd:element name=\"tile\" type=\"CT_TileInfoProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"stretch\" type=\"CT_StretchInfoProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_BlipCompression\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"email\"/>\n      <xsd:enumeration value=\"screen\"/>\n      <xsd:enumeration value=\"print\"/>\n      <xsd:enumeration value=\"hqprint\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Blip\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"alphaBiLevel\" type=\"CT_AlphaBiLevelEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"alphaCeiling\" type=\"CT_AlphaCeilingEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"alphaFloor\" type=\"CT_AlphaFloorEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"alphaInv\" type=\"CT_AlphaInverseEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"alphaMod\" type=\"CT_AlphaModulateEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"alphaModFix\" type=\"CT_AlphaModulateFixedEffect\" minOccurs=\"1\"\n          maxOccurs=\"1\"/>\n        <xsd:element name=\"alphaRepl\" type=\"CT_AlphaReplaceEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"biLevel\" type=\"CT_BiLevelEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"blur\" type=\"CT_BlurEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"clrChange\" type=\"CT_ColorChangeEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"clrRepl\" type=\"CT_ColorReplaceEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"duotone\" type=\"CT_DuotoneEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"fillOverlay\" type=\"CT_FillOverlayEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"grayscl\" type=\"CT_GrayscaleEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"hsl\" type=\"CT_HSLEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"lum\" type=\"CT_LuminanceEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"tint\" type=\"CT_TintEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Blob\"/>\n    <xsd:attribute name=\"cstate\" type=\"ST_BlipCompression\" use=\"optional\" default=\"none\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BlipFillProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"blip\" type=\"CT_Blip\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"srcRect\" type=\"CT_RelativeRect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_FillModeProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"dpi\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rotWithShape\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PresetPatternVal\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"pct5\"/>\n      <xsd:enumeration value=\"pct10\"/>\n      <xsd:enumeration value=\"pct20\"/>\n      <xsd:enumeration value=\"pct25\"/>\n      <xsd:enumeration value=\"pct30\"/>\n      <xsd:enumeration value=\"pct40\"/>\n      <xsd:enumeration value=\"pct50\"/>\n      <xsd:enumeration value=\"pct60\"/>\n      <xsd:enumeration value=\"pct70\"/>\n      <xsd:enumeration value=\"pct75\"/>\n      <xsd:enumeration value=\"pct80\"/>\n      <xsd:enumeration value=\"pct90\"/>\n      <xsd:enumeration value=\"horz\"/>\n      <xsd:enumeration value=\"vert\"/>\n      <xsd:enumeration value=\"ltHorz\"/>\n      <xsd:enumeration value=\"ltVert\"/>\n      <xsd:enumeration value=\"dkHorz\"/>\n      <xsd:enumeration value=\"dkVert\"/>\n      <xsd:enumeration value=\"narHorz\"/>\n      <xsd:enumeration value=\"narVert\"/>\n      <xsd:enumeration value=\"dashHorz\"/>\n      <xsd:enumeration value=\"dashVert\"/>\n      <xsd:enumeration value=\"cross\"/>\n      <xsd:enumeration value=\"dnDiag\"/>\n      <xsd:enumeration value=\"upDiag\"/>\n      <xsd:enumeration value=\"ltDnDiag\"/>\n      <xsd:enumeration value=\"ltUpDiag\"/>\n      <xsd:enumeration value=\"dkDnDiag\"/>\n      <xsd:enumeration value=\"dkUpDiag\"/>\n      <xsd:enumeration value=\"wdDnDiag\"/>\n      <xsd:enumeration value=\"wdUpDiag\"/>\n      <xsd:enumeration value=\"dashDnDiag\"/>\n      <xsd:enumeration value=\"dashUpDiag\"/>\n      <xsd:enumeration value=\"diagCross\"/>\n      <xsd:enumeration value=\"smCheck\"/>\n      <xsd:enumeration value=\"lgCheck\"/>\n      <xsd:enumeration value=\"smGrid\"/>\n      <xsd:enumeration value=\"lgGrid\"/>\n      <xsd:enumeration value=\"dotGrid\"/>\n      <xsd:enumeration value=\"smConfetti\"/>\n      <xsd:enumeration value=\"lgConfetti\"/>\n      <xsd:enumeration value=\"horzBrick\"/>\n      <xsd:enumeration value=\"diagBrick\"/>\n      <xsd:enumeration value=\"solidDmnd\"/>\n      <xsd:enumeration value=\"openDmnd\"/>\n      <xsd:enumeration value=\"dotDmnd\"/>\n      <xsd:enumeration value=\"plaid\"/>\n      <xsd:enumeration value=\"sphere\"/>\n      <xsd:enumeration value=\"weave\"/>\n      <xsd:enumeration value=\"divot\"/>\n      <xsd:enumeration value=\"shingle\"/>\n      <xsd:enumeration value=\"wave\"/>\n      <xsd:enumeration value=\"trellis\"/>\n      <xsd:enumeration value=\"zigZag\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PatternFillProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"fgClr\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bgClr\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prst\" type=\"ST_PresetPatternVal\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupFillProperties\"/>\n  <xsd:group name=\"EG_FillProperties\">\n    <xsd:choice>\n      <xsd:element name=\"noFill\" type=\"CT_NoFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"solidFill\" type=\"CT_SolidColorFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gradFill\" type=\"CT_GradientFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blipFill\" type=\"CT_BlipFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pattFill\" type=\"CT_PatternFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grpFill\" type=\"CT_GroupFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_FillProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FillEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BlendMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"over\"/>\n      <xsd:enumeration value=\"mult\"/>\n      <xsd:enumeration value=\"screen\"/>\n      <xsd:enumeration value=\"darken\"/>\n      <xsd:enumeration value=\"lighten\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FillOverlayEffect\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"blend\" type=\"ST_BlendMode\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EffectReference\">\n    <xsd:attribute name=\"ref\" type=\"xsd:token\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Effect\">\n    <xsd:choice>\n      <xsd:element name=\"cont\" type=\"CT_EffectContainer\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"effect\" type=\"CT_EffectReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaBiLevel\" type=\"CT_AlphaBiLevelEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaCeiling\" type=\"CT_AlphaCeilingEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaFloor\" type=\"CT_AlphaFloorEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaInv\" type=\"CT_AlphaInverseEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaMod\" type=\"CT_AlphaModulateEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaModFix\" type=\"CT_AlphaModulateFixedEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaOutset\" type=\"CT_AlphaOutsetEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alphaRepl\" type=\"CT_AlphaReplaceEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"biLevel\" type=\"CT_BiLevelEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blend\" type=\"CT_BlendEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blur\" type=\"CT_BlurEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrChange\" type=\"CT_ColorChangeEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrRepl\" type=\"CT_ColorReplaceEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"duotone\" type=\"CT_DuotoneEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fill\" type=\"CT_FillEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fillOverlay\" type=\"CT_FillOverlayEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"glow\" type=\"CT_GlowEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grayscl\" type=\"CT_GrayscaleEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hsl\" type=\"CT_HSLEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"innerShdw\" type=\"CT_InnerShadowEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lum\" type=\"CT_LuminanceEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"outerShdw\" type=\"CT_OuterShadowEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prstShdw\" type=\"CT_PresetShadowEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"reflection\" type=\"CT_ReflectionEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"relOff\" type=\"CT_RelativeOffsetEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"softEdge\" type=\"CT_SoftEdgesEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tint\" type=\"CT_TintEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"CT_TransformEffect\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_EffectContainerType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sib\"/>\n      <xsd:enumeration value=\"tree\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_EffectContainer\">\n    <xsd:group ref=\"EG_Effect\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    <xsd:attribute name=\"type\" type=\"ST_EffectContainerType\" use=\"optional\" default=\"sib\"/>\n    <xsd:attribute name=\"name\" type=\"xsd:token\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AlphaModulateEffect\">\n    <xsd:sequence>\n      <xsd:element name=\"cont\" type=\"CT_EffectContainer\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BlendEffect\">\n    <xsd:sequence>\n      <xsd:element name=\"cont\" type=\"CT_EffectContainer\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"blend\" type=\"ST_BlendMode\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EffectList\">\n    <xsd:sequence>\n      <xsd:element name=\"blur\" type=\"CT_BlurEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fillOverlay\" type=\"CT_FillOverlayEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"glow\" type=\"CT_GlowEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"innerShdw\" type=\"CT_InnerShadowEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"outerShdw\" type=\"CT_OuterShadowEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prstShdw\" type=\"CT_PresetShadowEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"reflection\" type=\"CT_ReflectionEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"softEdge\" type=\"CT_SoftEdgesEffect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_EffectProperties\">\n    <xsd:choice>\n      <xsd:element name=\"effectLst\" type=\"CT_EffectList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"effectDag\" type=\"CT_EffectContainer\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_EffectProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"blip\" type=\"CT_Blip\"/>\n  <xsd:simpleType name=\"ST_ShapeType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"line\"/>\n      <xsd:enumeration value=\"lineInv\"/>\n      <xsd:enumeration value=\"triangle\"/>\n      <xsd:enumeration value=\"rtTriangle\"/>\n      <xsd:enumeration value=\"rect\"/>\n      <xsd:enumeration value=\"diamond\"/>\n      <xsd:enumeration value=\"parallelogram\"/>\n      <xsd:enumeration value=\"trapezoid\"/>\n      <xsd:enumeration value=\"nonIsoscelesTrapezoid\"/>\n      <xsd:enumeration value=\"pentagon\"/>\n      <xsd:enumeration value=\"hexagon\"/>\n      <xsd:enumeration value=\"heptagon\"/>\n      <xsd:enumeration value=\"octagon\"/>\n      <xsd:enumeration value=\"decagon\"/>\n      <xsd:enumeration value=\"dodecagon\"/>\n      <xsd:enumeration value=\"star4\"/>\n      <xsd:enumeration value=\"star5\"/>\n      <xsd:enumeration value=\"star6\"/>\n      <xsd:enumeration value=\"star7\"/>\n      <xsd:enumeration value=\"star8\"/>\n      <xsd:enumeration value=\"star10\"/>\n      <xsd:enumeration value=\"star12\"/>\n      <xsd:enumeration value=\"star16\"/>\n      <xsd:enumeration value=\"star24\"/>\n      <xsd:enumeration value=\"star32\"/>\n      <xsd:enumeration value=\"roundRect\"/>\n      <xsd:enumeration value=\"round1Rect\"/>\n      <xsd:enumeration value=\"round2SameRect\"/>\n      <xsd:enumeration value=\"round2DiagRect\"/>\n      <xsd:enumeration value=\"snipRoundRect\"/>\n      <xsd:enumeration value=\"snip1Rect\"/>\n      <xsd:enumeration value=\"snip2SameRect\"/>\n      <xsd:enumeration value=\"snip2DiagRect\"/>\n      <xsd:enumeration value=\"plaque\"/>\n      <xsd:enumeration value=\"ellipse\"/>\n      <xsd:enumeration value=\"teardrop\"/>\n      <xsd:enumeration value=\"homePlate\"/>\n      <xsd:enumeration value=\"chevron\"/>\n      <xsd:enumeration value=\"pieWedge\"/>\n      <xsd:enumeration value=\"pie\"/>\n      <xsd:enumeration value=\"blockArc\"/>\n      <xsd:enumeration value=\"donut\"/>\n      <xsd:enumeration value=\"noSmoking\"/>\n      <xsd:enumeration value=\"rightArrow\"/>\n      <xsd:enumeration value=\"leftArrow\"/>\n      <xsd:enumeration value=\"upArrow\"/>\n      <xsd:enumeration value=\"downArrow\"/>\n      <xsd:enumeration value=\"stripedRightArrow\"/>\n      <xsd:enumeration value=\"notchedRightArrow\"/>\n      <xsd:enumeration value=\"bentUpArrow\"/>\n      <xsd:enumeration value=\"leftRightArrow\"/>\n      <xsd:enumeration value=\"upDownArrow\"/>\n      <xsd:enumeration value=\"leftUpArrow\"/>\n      <xsd:enumeration value=\"leftRightUpArrow\"/>\n      <xsd:enumeration value=\"quadArrow\"/>\n      <xsd:enumeration value=\"leftArrowCallout\"/>\n      <xsd:enumeration value=\"rightArrowCallout\"/>\n      <xsd:enumeration value=\"upArrowCallout\"/>\n      <xsd:enumeration value=\"downArrowCallout\"/>\n      <xsd:enumeration value=\"leftRightArrowCallout\"/>\n      <xsd:enumeration value=\"upDownArrowCallout\"/>\n      <xsd:enumeration value=\"quadArrowCallout\"/>\n      <xsd:enumeration value=\"bentArrow\"/>\n      <xsd:enumeration value=\"uturnArrow\"/>\n      <xsd:enumeration value=\"circularArrow\"/>\n      <xsd:enumeration value=\"leftCircularArrow\"/>\n      <xsd:enumeration value=\"leftRightCircularArrow\"/>\n      <xsd:enumeration value=\"curvedRightArrow\"/>\n      <xsd:enumeration value=\"curvedLeftArrow\"/>\n      <xsd:enumeration value=\"curvedUpArrow\"/>\n      <xsd:enumeration value=\"curvedDownArrow\"/>\n      <xsd:enumeration value=\"swooshArrow\"/>\n      <xsd:enumeration value=\"cube\"/>\n      <xsd:enumeration value=\"can\"/>\n      <xsd:enumeration value=\"lightningBolt\"/>\n      <xsd:enumeration value=\"heart\"/>\n      <xsd:enumeration value=\"sun\"/>\n      <xsd:enumeration value=\"moon\"/>\n      <xsd:enumeration value=\"smileyFace\"/>\n      <xsd:enumeration value=\"irregularSeal1\"/>\n      <xsd:enumeration value=\"irregularSeal2\"/>\n      <xsd:enumeration value=\"foldedCorner\"/>\n      <xsd:enumeration value=\"bevel\"/>\n      <xsd:enumeration value=\"frame\"/>\n      <xsd:enumeration value=\"halfFrame\"/>\n      <xsd:enumeration value=\"corner\"/>\n      <xsd:enumeration value=\"diagStripe\"/>\n      <xsd:enumeration value=\"chord\"/>\n      <xsd:enumeration value=\"arc\"/>\n      <xsd:enumeration value=\"leftBracket\"/>\n      <xsd:enumeration value=\"rightBracket\"/>\n      <xsd:enumeration value=\"leftBrace\"/>\n      <xsd:enumeration value=\"rightBrace\"/>\n      <xsd:enumeration value=\"bracketPair\"/>\n      <xsd:enumeration value=\"bracePair\"/>\n      <xsd:enumeration value=\"straightConnector1\"/>\n      <xsd:enumeration value=\"bentConnector2\"/>\n      <xsd:enumeration value=\"bentConnector3\"/>\n      <xsd:enumeration value=\"bentConnector4\"/>\n      <xsd:enumeration value=\"bentConnector5\"/>\n      <xsd:enumeration value=\"curvedConnector2\"/>\n      <xsd:enumeration value=\"curvedConnector3\"/>\n      <xsd:enumeration value=\"curvedConnector4\"/>\n      <xsd:enumeration value=\"curvedConnector5\"/>\n      <xsd:enumeration value=\"callout1\"/>\n      <xsd:enumeration value=\"callout2\"/>\n      <xsd:enumeration value=\"callout3\"/>\n      <xsd:enumeration value=\"accentCallout1\"/>\n      <xsd:enumeration value=\"accentCallout2\"/>\n      <xsd:enumeration value=\"accentCallout3\"/>\n      <xsd:enumeration value=\"borderCallout1\"/>\n      <xsd:enumeration value=\"borderCallout2\"/>\n      <xsd:enumeration value=\"borderCallout3\"/>\n      <xsd:enumeration value=\"accentBorderCallout1\"/>\n      <xsd:enumeration value=\"accentBorderCallout2\"/>\n      <xsd:enumeration value=\"accentBorderCallout3\"/>\n      <xsd:enumeration value=\"wedgeRectCallout\"/>\n      <xsd:enumeration value=\"wedgeRoundRectCallout\"/>\n      <xsd:enumeration value=\"wedgeEllipseCallout\"/>\n      <xsd:enumeration value=\"cloudCallout\"/>\n      <xsd:enumeration value=\"cloud\"/>\n      <xsd:enumeration value=\"ribbon\"/>\n      <xsd:enumeration value=\"ribbon2\"/>\n      <xsd:enumeration value=\"ellipseRibbon\"/>\n      <xsd:enumeration value=\"ellipseRibbon2\"/>\n      <xsd:enumeration value=\"leftRightRibbon\"/>\n      <xsd:enumeration value=\"verticalScroll\"/>\n      <xsd:enumeration value=\"horizontalScroll\"/>\n      <xsd:enumeration value=\"wave\"/>\n      <xsd:enumeration value=\"doubleWave\"/>\n      <xsd:enumeration value=\"plus\"/>\n      <xsd:enumeration value=\"flowChartProcess\"/>\n      <xsd:enumeration value=\"flowChartDecision\"/>\n      <xsd:enumeration value=\"flowChartInputOutput\"/>\n      <xsd:enumeration value=\"flowChartPredefinedProcess\"/>\n      <xsd:enumeration value=\"flowChartInternalStorage\"/>\n      <xsd:enumeration value=\"flowChartDocument\"/>\n      <xsd:enumeration value=\"flowChartMultidocument\"/>\n      <xsd:enumeration value=\"flowChartTerminator\"/>\n      <xsd:enumeration value=\"flowChartPreparation\"/>\n      <xsd:enumeration value=\"flowChartManualInput\"/>\n      <xsd:enumeration value=\"flowChartManualOperation\"/>\n      <xsd:enumeration value=\"flowChartConnector\"/>\n      <xsd:enumeration value=\"flowChartPunchedCard\"/>\n      <xsd:enumeration value=\"flowChartPunchedTape\"/>\n      <xsd:enumeration value=\"flowChartSummingJunction\"/>\n      <xsd:enumeration value=\"flowChartOr\"/>\n      <xsd:enumeration value=\"flowChartCollate\"/>\n      <xsd:enumeration value=\"flowChartSort\"/>\n      <xsd:enumeration value=\"flowChartExtract\"/>\n      <xsd:enumeration value=\"flowChartMerge\"/>\n      <xsd:enumeration value=\"flowChartOfflineStorage\"/>\n      <xsd:enumeration value=\"flowChartOnlineStorage\"/>\n      <xsd:enumeration value=\"flowChartMagneticTape\"/>\n      <xsd:enumeration value=\"flowChartMagneticDisk\"/>\n      <xsd:enumeration value=\"flowChartMagneticDrum\"/>\n      <xsd:enumeration value=\"flowChartDisplay\"/>\n      <xsd:enumeration value=\"flowChartDelay\"/>\n      <xsd:enumeration value=\"flowChartAlternateProcess\"/>\n      <xsd:enumeration value=\"flowChartOffpageConnector\"/>\n      <xsd:enumeration value=\"actionButtonBlank\"/>\n      <xsd:enumeration value=\"actionButtonHome\"/>\n      <xsd:enumeration value=\"actionButtonHelp\"/>\n      <xsd:enumeration value=\"actionButtonInformation\"/>\n      <xsd:enumeration value=\"actionButtonForwardNext\"/>\n      <xsd:enumeration value=\"actionButtonBackPrevious\"/>\n      <xsd:enumeration value=\"actionButtonEnd\"/>\n      <xsd:enumeration value=\"actionButtonBeginning\"/>\n      <xsd:enumeration value=\"actionButtonReturn\"/>\n      <xsd:enumeration value=\"actionButtonDocument\"/>\n      <xsd:enumeration value=\"actionButtonSound\"/>\n      <xsd:enumeration value=\"actionButtonMovie\"/>\n      <xsd:enumeration value=\"gear6\"/>\n      <xsd:enumeration value=\"gear9\"/>\n      <xsd:enumeration value=\"funnel\"/>\n      <xsd:enumeration value=\"mathPlus\"/>\n      <xsd:enumeration value=\"mathMinus\"/>\n      <xsd:enumeration value=\"mathMultiply\"/>\n      <xsd:enumeration value=\"mathDivide\"/>\n      <xsd:enumeration value=\"mathEqual\"/>\n      <xsd:enumeration value=\"mathNotEqual\"/>\n      <xsd:enumeration value=\"cornerTabs\"/>\n      <xsd:enumeration value=\"squareTabs\"/>\n      <xsd:enumeration value=\"plaqueTabs\"/>\n      <xsd:enumeration value=\"chartX\"/>\n      <xsd:enumeration value=\"chartStar\"/>\n      <xsd:enumeration value=\"chartPlus\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextShapeType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"textNoShape\"/>\n      <xsd:enumeration value=\"textPlain\"/>\n      <xsd:enumeration value=\"textStop\"/>\n      <xsd:enumeration value=\"textTriangle\"/>\n      <xsd:enumeration value=\"textTriangleInverted\"/>\n      <xsd:enumeration value=\"textChevron\"/>\n      <xsd:enumeration value=\"textChevronInverted\"/>\n      <xsd:enumeration value=\"textRingInside\"/>\n      <xsd:enumeration value=\"textRingOutside\"/>\n      <xsd:enumeration value=\"textArchUp\"/>\n      <xsd:enumeration value=\"textArchDown\"/>\n      <xsd:enumeration value=\"textCircle\"/>\n      <xsd:enumeration value=\"textButton\"/>\n      <xsd:enumeration value=\"textArchUpPour\"/>\n      <xsd:enumeration value=\"textArchDownPour\"/>\n      <xsd:enumeration value=\"textCirclePour\"/>\n      <xsd:enumeration value=\"textButtonPour\"/>\n      <xsd:enumeration value=\"textCurveUp\"/>\n      <xsd:enumeration value=\"textCurveDown\"/>\n      <xsd:enumeration value=\"textCanUp\"/>\n      <xsd:enumeration value=\"textCanDown\"/>\n      <xsd:enumeration value=\"textWave1\"/>\n      <xsd:enumeration value=\"textWave2\"/>\n      <xsd:enumeration value=\"textDoubleWave1\"/>\n      <xsd:enumeration value=\"textWave4\"/>\n      <xsd:enumeration value=\"textInflate\"/>\n      <xsd:enumeration value=\"textDeflate\"/>\n      <xsd:enumeration value=\"textInflateBottom\"/>\n      <xsd:enumeration value=\"textDeflateBottom\"/>\n      <xsd:enumeration value=\"textInflateTop\"/>\n      <xsd:enumeration value=\"textDeflateTop\"/>\n      <xsd:enumeration value=\"textDeflateInflate\"/>\n      <xsd:enumeration value=\"textDeflateInflateDeflate\"/>\n      <xsd:enumeration value=\"textFadeRight\"/>\n      <xsd:enumeration value=\"textFadeLeft\"/>\n      <xsd:enumeration value=\"textFadeUp\"/>\n      <xsd:enumeration value=\"textFadeDown\"/>\n      <xsd:enumeration value=\"textSlantUp\"/>\n      <xsd:enumeration value=\"textSlantDown\"/>\n      <xsd:enumeration value=\"textCascadeUp\"/>\n      <xsd:enumeration value=\"textCascadeDown\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_GeomGuideName\">\n    <xsd:restriction base=\"xsd:token\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_GeomGuideFormula\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_GeomGuide\">\n    <xsd:attribute name=\"name\" type=\"ST_GeomGuideName\" use=\"required\"/>\n    <xsd:attribute name=\"fmla\" type=\"ST_GeomGuideFormula\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GeomGuideList\">\n    <xsd:sequence>\n      <xsd:element name=\"gd\" type=\"CT_GeomGuide\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AdjCoordinate\">\n    <xsd:union memberTypes=\"ST_Coordinate ST_GeomGuideName\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AdjAngle\">\n    <xsd:union memberTypes=\"ST_Angle ST_GeomGuideName\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_AdjPoint2D\">\n    <xsd:attribute name=\"x\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"y\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GeomRect\">\n    <xsd:attribute name=\"l\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"t\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"r\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"b\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_XYAdjustHandle\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"CT_AdjPoint2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"gdRefX\" type=\"ST_GeomGuideName\" use=\"optional\"/>\n    <xsd:attribute name=\"minX\" type=\"ST_AdjCoordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"maxX\" type=\"ST_AdjCoordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"gdRefY\" type=\"ST_GeomGuideName\" use=\"optional\"/>\n    <xsd:attribute name=\"minY\" type=\"ST_AdjCoordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"maxY\" type=\"ST_AdjCoordinate\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PolarAdjustHandle\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"CT_AdjPoint2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"gdRefR\" type=\"ST_GeomGuideName\" use=\"optional\"/>\n    <xsd:attribute name=\"minR\" type=\"ST_AdjCoordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"maxR\" type=\"ST_AdjCoordinate\" use=\"optional\"/>\n    <xsd:attribute name=\"gdRefAng\" type=\"ST_GeomGuideName\" use=\"optional\"/>\n    <xsd:attribute name=\"minAng\" type=\"ST_AdjAngle\" use=\"optional\"/>\n    <xsd:attribute name=\"maxAng\" type=\"ST_AdjAngle\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConnectionSite\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"CT_AdjPoint2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ang\" type=\"ST_AdjAngle\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AdjustHandleList\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"ahXY\" type=\"CT_XYAdjustHandle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ahPolar\" type=\"CT_PolarAdjustHandle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConnectionSiteList\">\n    <xsd:sequence>\n      <xsd:element name=\"cxn\" type=\"CT_ConnectionSite\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Connection\">\n    <xsd:attribute name=\"id\" type=\"ST_DrawingElementId\" use=\"required\"/>\n    <xsd:attribute name=\"idx\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DMoveTo\">\n    <xsd:sequence>\n      <xsd:element name=\"pt\" type=\"CT_AdjPoint2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DLineTo\">\n    <xsd:sequence>\n      <xsd:element name=\"pt\" type=\"CT_AdjPoint2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DArcTo\">\n    <xsd:attribute name=\"wR\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"hR\" type=\"ST_AdjCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"stAng\" type=\"ST_AdjAngle\" use=\"required\"/>\n    <xsd:attribute name=\"swAng\" type=\"ST_AdjAngle\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DQuadBezierTo\">\n    <xsd:sequence>\n      <xsd:element name=\"pt\" type=\"CT_AdjPoint2D\" minOccurs=\"2\" maxOccurs=\"2\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DCubicBezierTo\">\n    <xsd:sequence>\n      <xsd:element name=\"pt\" type=\"CT_AdjPoint2D\" minOccurs=\"3\" maxOccurs=\"3\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DClose\"/>\n  <xsd:simpleType name=\"ST_PathFillMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"norm\"/>\n      <xsd:enumeration value=\"lighten\"/>\n      <xsd:enumeration value=\"lightenLess\"/>\n      <xsd:enumeration value=\"darken\"/>\n      <xsd:enumeration value=\"darkenLess\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Path2D\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"close\" type=\"CT_Path2DClose\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"moveTo\" type=\"CT_Path2DMoveTo\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnTo\" type=\"CT_Path2DLineTo\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"arcTo\" type=\"CT_Path2DArcTo\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"quadBezTo\" type=\"CT_Path2DQuadBezierTo\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cubicBezTo\" type=\"CT_Path2DCubicBezierTo\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"w\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"h\" type=\"ST_PositiveCoordinate\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"fill\" type=\"ST_PathFillMode\" use=\"optional\" default=\"norm\"/>\n    <xsd:attribute name=\"stroke\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"extrusionOk\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path2DList\">\n    <xsd:sequence>\n      <xsd:element name=\"path\" type=\"CT_Path2D\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PresetGeometry2D\">\n    <xsd:sequence>\n      <xsd:element name=\"avLst\" type=\"CT_GeomGuideList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prst\" type=\"ST_ShapeType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PresetTextShape\">\n    <xsd:sequence>\n      <xsd:element name=\"avLst\" type=\"CT_GeomGuideList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prst\" type=\"ST_TextShapeType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomGeometry2D\">\n    <xsd:sequence>\n      <xsd:element name=\"avLst\" type=\"CT_GeomGuideList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gdLst\" type=\"CT_GeomGuideList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ahLst\" type=\"CT_AdjustHandleList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cxnLst\" type=\"CT_ConnectionSiteList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rect\" type=\"CT_GeomRect\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pathLst\" type=\"CT_Path2DList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Geometry\">\n    <xsd:choice>\n      <xsd:element name=\"custGeom\" type=\"CT_CustomGeometry2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prstGeom\" type=\"CT_PresetGeometry2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_TextGeometry\">\n    <xsd:choice>\n      <xsd:element name=\"custGeom\" type=\"CT_CustomGeometry2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prstTxWarp\" type=\"CT_PresetTextShape\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_LineEndType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"triangle\"/>\n      <xsd:enumeration value=\"stealth\"/>\n      <xsd:enumeration value=\"diamond\"/>\n      <xsd:enumeration value=\"oval\"/>\n      <xsd:enumeration value=\"arrow\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LineEndWidth\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sm\"/>\n      <xsd:enumeration value=\"med\"/>\n      <xsd:enumeration value=\"lg\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LineEndLength\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sm\"/>\n      <xsd:enumeration value=\"med\"/>\n      <xsd:enumeration value=\"lg\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LineEndProperties\">\n    <xsd:attribute name=\"type\" type=\"ST_LineEndType\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"w\" type=\"ST_LineEndWidth\" use=\"optional\"/>\n    <xsd:attribute name=\"len\" type=\"ST_LineEndLength\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_LineFillProperties\">\n    <xsd:choice>\n      <xsd:element name=\"noFill\" type=\"CT_NoFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"solidFill\" type=\"CT_SolidColorFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gradFill\" type=\"CT_GradientFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pattFill\" type=\"CT_PatternFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_LineJoinBevel\"/>\n  <xsd:complexType name=\"CT_LineJoinRound\"/>\n  <xsd:complexType name=\"CT_LineJoinMiterProperties\">\n    <xsd:attribute name=\"lim\" type=\"ST_PositivePercentage\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_LineJoinProperties\">\n    <xsd:choice>\n      <xsd:element name=\"round\" type=\"CT_LineJoinRound\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bevel\" type=\"CT_LineJoinBevel\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"miter\" type=\"CT_LineJoinMiterProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_PresetLineDashVal\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"solid\"/>\n      <xsd:enumeration value=\"dot\"/>\n      <xsd:enumeration value=\"dash\"/>\n      <xsd:enumeration value=\"lgDash\"/>\n      <xsd:enumeration value=\"dashDot\"/>\n      <xsd:enumeration value=\"lgDashDot\"/>\n      <xsd:enumeration value=\"lgDashDotDot\"/>\n      <xsd:enumeration value=\"sysDash\"/>\n      <xsd:enumeration value=\"sysDot\"/>\n      <xsd:enumeration value=\"sysDashDot\"/>\n      <xsd:enumeration value=\"sysDashDotDot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PresetLineDashProperties\">\n    <xsd:attribute name=\"val\" type=\"ST_PresetLineDashVal\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DashStop\">\n    <xsd:attribute name=\"d\" type=\"ST_PositivePercentage\" use=\"required\"/>\n    <xsd:attribute name=\"sp\" type=\"ST_PositivePercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DashStopList\">\n    <xsd:sequence>\n      <xsd:element name=\"ds\" type=\"CT_DashStop\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_LineDashProperties\">\n    <xsd:choice>\n      <xsd:element name=\"prstDash\" type=\"CT_PresetLineDashProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custDash\" type=\"CT_DashStopList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_LineCap\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"rnd\"/>\n      <xsd:enumeration value=\"sq\"/>\n      <xsd:enumeration value=\"flat\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LineWidth\">\n    <xsd:restriction base=\"ST_Coordinate32Unqualified\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"20116800\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PenAlignment\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"in\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CompoundLine\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sng\"/>\n      <xsd:enumeration value=\"dbl\"/>\n      <xsd:enumeration value=\"thickThin\"/>\n      <xsd:enumeration value=\"thinThick\"/>\n      <xsd:enumeration value=\"tri\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LineProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_LineFillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_LineDashProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_LineJoinProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headEnd\" type=\"CT_LineEndProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tailEnd\" type=\"CT_LineEndProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"w\" type=\"ST_LineWidth\" use=\"optional\"/>\n    <xsd:attribute name=\"cap\" type=\"ST_LineCap\" use=\"optional\"/>\n    <xsd:attribute name=\"cmpd\" type=\"ST_CompoundLine\" use=\"optional\"/>\n    <xsd:attribute name=\"algn\" type=\"ST_PenAlignment\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ShapeID\">\n    <xsd:restriction base=\"xsd:token\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ShapeProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"xfrm\" type=\"CT_Transform2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_Geometry\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ln\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scene3d\" type=\"CT_Scene3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sp3d\" type=\"CT_Shape3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bwMode\" type=\"ST_BlackWhiteMode\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShapeProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"xfrm\" type=\"CT_GroupTransform2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scene3d\" type=\"CT_Scene3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bwMode\" type=\"ST_BlackWhiteMode\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StyleMatrixReference\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"idx\" type=\"ST_StyleMatrixColumnIndex\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontReference\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"idx\" type=\"ST_FontCollectionIndex\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShapeStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"lnRef\" type=\"CT_StyleMatrixReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fillRef\" type=\"CT_StyleMatrixReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"effectRef\" type=\"CT_StyleMatrixReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fontRef\" type=\"CT_FontReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DefaultShapeDefinition\">\n    <xsd:sequence>\n      <xsd:element name=\"spPr\" type=\"CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bodyPr\" type=\"CT_TextBodyProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lstStyle\" type=\"CT_TextListStyle\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ObjectStyleDefaults\">\n    <xsd:sequence>\n      <xsd:element name=\"spDef\" type=\"CT_DefaultShapeDefinition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnDef\" type=\"CT_DefaultShapeDefinition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txDef\" type=\"CT_DefaultShapeDefinition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EmptyElement\"/>\n  <xsd:complexType name=\"CT_ColorMapping\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bg1\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"tx1\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"bg2\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"tx2\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"accent1\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"accent2\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"accent3\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"accent4\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"accent5\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"accent6\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"hlink\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n    <xsd:attribute name=\"folHlink\" type=\"ST_ColorSchemeIndex\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorMappingOverride\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"masterClrMapping\" type=\"CT_EmptyElement\"/>\n        <xsd:element name=\"overrideClrMapping\" type=\"CT_ColorMapping\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorSchemeAndMapping\">\n    <xsd:sequence>\n      <xsd:element name=\"clrScheme\" type=\"CT_ColorScheme\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrMap\" type=\"CT_ColorMapping\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorSchemeList\">\n    <xsd:sequence>\n      <xsd:element name=\"extraClrScheme\" type=\"CT_ColorSchemeAndMapping\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OfficeStyleSheet\">\n    <xsd:sequence>\n      <xsd:element name=\"themeElements\" type=\"CT_BaseStyles\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"objectDefaults\" type=\"CT_ObjectStyleDefaults\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extraClrSchemeLst\" type=\"CT_ColorSchemeList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custClrLst\" type=\"CT_CustomColorList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BaseStylesOverride\">\n    <xsd:sequence>\n      <xsd:element name=\"clrScheme\" type=\"CT_ColorScheme\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fontScheme\" type=\"CT_FontScheme\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fmtScheme\" type=\"CT_StyleMatrix\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ClipboardStyleSheet\">\n    <xsd:sequence>\n      <xsd:element name=\"themeElements\" type=\"CT_BaseStyles\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrMap\" type=\"CT_ColorMapping\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"theme\" type=\"CT_OfficeStyleSheet\"/>\n  <xsd:element name=\"themeOverride\" type=\"CT_BaseStylesOverride\"/>\n  <xsd:element name=\"themeManager\" type=\"CT_EmptyElement\"/>\n  <xsd:complexType name=\"CT_TableCellProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"lnL\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnR\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnT\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnB\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnTlToBr\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnBlToTr\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cell3D\" type=\"CT_Cell3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headers\" type=\"CT_Headers\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"marL\" type=\"ST_Coordinate32\" use=\"optional\" default=\"91440\"/>\n    <xsd:attribute name=\"marR\" type=\"ST_Coordinate32\" use=\"optional\" default=\"91440\"/>\n    <xsd:attribute name=\"marT\" type=\"ST_Coordinate32\" use=\"optional\" default=\"45720\"/>\n    <xsd:attribute name=\"marB\" type=\"ST_Coordinate32\" use=\"optional\" default=\"45720\"/>\n    <xsd:attribute name=\"vert\" type=\"ST_TextVerticalType\" use=\"optional\" default=\"horz\"/>\n    <xsd:attribute name=\"anchor\" type=\"ST_TextAnchoringType\" use=\"optional\" default=\"t\"/>\n    <xsd:attribute name=\"anchorCtr\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"horzOverflow\" type=\"ST_TextHorzOverflowType\" use=\"optional\" default=\"clip\"\n    />\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Headers\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"header\" type=\"xsd:string\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableCol\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"w\" type=\"ST_Coordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableGrid\">\n    <xsd:sequence>\n      <xsd:element name=\"gridCol\" type=\"CT_TableCol\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableCell\">\n    <xsd:sequence>\n      <xsd:element name=\"txBody\" type=\"CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tcPr\" type=\"CT_TableCellProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rowSpan\" type=\"xsd:int\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"gridSpan\" type=\"xsd:int\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"hMerge\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"vMerge\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"id\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableRow\">\n    <xsd:sequence>\n      <xsd:element name=\"tc\" type=\"CT_TableCell\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"h\" type=\"ST_Coordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n        <xsd:element name=\"tableStyle\" type=\"CT_TableStyle\"/>\n        <xsd:element name=\"tableStyleId\" type=\"s:ST_Guid\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rtl\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"firstRow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"firstCol\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"lastRow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"lastCol\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"bandRow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"bandCol\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Table\">\n    <xsd:sequence>\n      <xsd:element name=\"tblPr\" type=\"CT_TableProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblGrid\" type=\"CT_TableGrid\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tr\" type=\"CT_TableRow\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"tbl\" type=\"CT_Table\"/>\n  <xsd:complexType name=\"CT_Cell3D\">\n    <xsd:sequence>\n      <xsd:element name=\"bevel\" type=\"CT_Bevel\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lightRig\" type=\"CT_LightRig\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prstMaterial\" type=\"ST_PresetMaterialType\" use=\"optional\" default=\"plastic\"\n    />\n  </xsd:complexType>\n  <xsd:group name=\"EG_ThemeableFillStyle\">\n    <xsd:choice>\n      <xsd:element name=\"fill\" type=\"CT_FillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fillRef\" type=\"CT_StyleMatrixReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_ThemeableLineStyle\">\n    <xsd:choice>\n      <xsd:element name=\"ln\" type=\"CT_LineProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lnRef\" type=\"CT_StyleMatrixReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ThemeableEffectStyle\">\n    <xsd:choice>\n      <xsd:element name=\"effect\" type=\"CT_EffectProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"effectRef\" type=\"CT_StyleMatrixReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_ThemeableFontStyles\">\n    <xsd:choice>\n      <xsd:element name=\"font\" type=\"CT_FontCollection\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fontRef\" type=\"CT_FontReference\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_OnOffStyleType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"on\"/>\n      <xsd:enumeration value=\"off\"/>\n      <xsd:enumeration value=\"def\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TableStyleTextStyle\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ThemeableFontStyles\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"b\" type=\"ST_OnOffStyleType\" use=\"optional\" default=\"def\"/>\n    <xsd:attribute name=\"i\" type=\"ST_OnOffStyleType\" use=\"optional\" default=\"def\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableCellBorderStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"left\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"right\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"top\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bottom\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"insideH\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"insideV\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tl2br\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tr2bl\" type=\"CT_ThemeableLineStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableBackgroundStyle\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ThemeableFillStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ThemeableEffectStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableStyleCellStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"tcBdr\" type=\"CT_TableCellBorderStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ThemeableFillStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cell3D\" type=\"CT_Cell3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TablePartStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"tcTxStyle\" type=\"CT_TableStyleTextStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tcStyle\" type=\"CT_TableStyleCellStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"tblBg\" type=\"CT_TableBackgroundStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"wholeTbl\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"band1H\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"band2H\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"band1V\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"band2V\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lastCol\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstCol\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lastRow\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"seCell\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"swCell\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstRow\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"neCell\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"nwCell\" type=\"CT_TablePartStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"styleId\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"styleName\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableStyleList\">\n    <xsd:sequence>\n      <xsd:element name=\"tblStyle\" type=\"CT_TableStyle\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"def\" type=\"s:ST_Guid\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"tblStyleLst\" type=\"CT_TableStyleList\"/>\n  <xsd:complexType name=\"CT_TextParagraph\">\n    <xsd:sequence>\n      <xsd:element name=\"pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextRun\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"endParaRPr\" type=\"CT_TextCharacterProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextAnchoringType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"just\"/>\n      <xsd:enumeration value=\"dist\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextVertOverflowType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"overflow\"/>\n      <xsd:enumeration value=\"ellipsis\"/>\n      <xsd:enumeration value=\"clip\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextHorzOverflowType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"overflow\"/>\n      <xsd:enumeration value=\"clip\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextVerticalType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"horz\"/>\n      <xsd:enumeration value=\"vert\"/>\n      <xsd:enumeration value=\"vert270\"/>\n      <xsd:enumeration value=\"wordArtVert\"/>\n      <xsd:enumeration value=\"eaVert\"/>\n      <xsd:enumeration value=\"mongolianVert\"/>\n      <xsd:enumeration value=\"wordArtVertRtl\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextWrappingType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"square\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextColumnCount\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"1\"/>\n      <xsd:maxInclusive value=\"16\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextListStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"defPPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl1pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl2pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl3pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl4pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl5pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl6pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl7pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl8pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lvl9pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextFontScalePercentOrPercentString\">\n    <xsd:union memberTypes=\"ST_TextFontScalePercent s:ST_Percentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextFontScalePercent\">\n    <xsd:restriction base=\"ST_PercentageDecimal\">\n      <xsd:minInclusive value=\"1000\"/>\n      <xsd:maxInclusive value=\"100000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextNormalAutofit\">\n    <xsd:attribute name=\"fontScale\" type=\"ST_TextFontScalePercentOrPercentString\" use=\"optional\"\n      default=\"100%\"/>\n    <xsd:attribute name=\"lnSpcReduction\" type=\"ST_TextSpacingPercentOrPercentString\" use=\"optional\"\n      default=\"0%\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextShapeAutofit\"/>\n  <xsd:complexType name=\"CT_TextNoAutofit\"/>\n  <xsd:group name=\"EG_TextAutofit\">\n    <xsd:choice>\n      <xsd:element name=\"noAutofit\" type=\"CT_TextNoAutofit\"/>\n      <xsd:element name=\"normAutofit\" type=\"CT_TextNormalAutofit\"/>\n      <xsd:element name=\"spAutoFit\" type=\"CT_TextShapeAutofit\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_TextBodyProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"prstTxWarp\" type=\"CT_PresetTextShape\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextAutofit\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scene3d\" type=\"CT_Scene3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_Text3D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rot\" type=\"ST_Angle\" use=\"optional\"/>\n    <xsd:attribute name=\"spcFirstLastPara\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"vertOverflow\" type=\"ST_TextVertOverflowType\" use=\"optional\"/>\n    <xsd:attribute name=\"horzOverflow\" type=\"ST_TextHorzOverflowType\" use=\"optional\"/>\n    <xsd:attribute name=\"vert\" type=\"ST_TextVerticalType\" use=\"optional\"/>\n    <xsd:attribute name=\"wrap\" type=\"ST_TextWrappingType\" use=\"optional\"/>\n    <xsd:attribute name=\"lIns\" type=\"ST_Coordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"tIns\" type=\"ST_Coordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"rIns\" type=\"ST_Coordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"bIns\" type=\"ST_Coordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"numCol\" type=\"ST_TextColumnCount\" use=\"optional\"/>\n    <xsd:attribute name=\"spcCol\" type=\"ST_PositiveCoordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"rtlCol\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"fromWordArt\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"anchor\" type=\"ST_TextAnchoringType\" use=\"optional\"/>\n    <xsd:attribute name=\"anchorCtr\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"forceAA\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"upright\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"compatLnSpc\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextBody\">\n    <xsd:sequence>\n      <xsd:element name=\"bodyPr\" type=\"CT_TextBodyProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lstStyle\" type=\"CT_TextListStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"p\" type=\"CT_TextParagraph\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextBulletStartAtNum\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"1\"/>\n      <xsd:maxInclusive value=\"32767\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextAutonumberScheme\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"alphaLcParenBoth\"/>\n      <xsd:enumeration value=\"alphaUcParenBoth\"/>\n      <xsd:enumeration value=\"alphaLcParenR\"/>\n      <xsd:enumeration value=\"alphaUcParenR\"/>\n      <xsd:enumeration value=\"alphaLcPeriod\"/>\n      <xsd:enumeration value=\"alphaUcPeriod\"/>\n      <xsd:enumeration value=\"arabicParenBoth\"/>\n      <xsd:enumeration value=\"arabicParenR\"/>\n      <xsd:enumeration value=\"arabicPeriod\"/>\n      <xsd:enumeration value=\"arabicPlain\"/>\n      <xsd:enumeration value=\"romanLcParenBoth\"/>\n      <xsd:enumeration value=\"romanUcParenBoth\"/>\n      <xsd:enumeration value=\"romanLcParenR\"/>\n      <xsd:enumeration value=\"romanUcParenR\"/>\n      <xsd:enumeration value=\"romanLcPeriod\"/>\n      <xsd:enumeration value=\"romanUcPeriod\"/>\n      <xsd:enumeration value=\"circleNumDbPlain\"/>\n      <xsd:enumeration value=\"circleNumWdBlackPlain\"/>\n      <xsd:enumeration value=\"circleNumWdWhitePlain\"/>\n      <xsd:enumeration value=\"arabicDbPeriod\"/>\n      <xsd:enumeration value=\"arabicDbPlain\"/>\n      <xsd:enumeration value=\"ea1ChsPeriod\"/>\n      <xsd:enumeration value=\"ea1ChsPlain\"/>\n      <xsd:enumeration value=\"ea1ChtPeriod\"/>\n      <xsd:enumeration value=\"ea1ChtPlain\"/>\n      <xsd:enumeration value=\"ea1JpnChsDbPeriod\"/>\n      <xsd:enumeration value=\"ea1JpnKorPlain\"/>\n      <xsd:enumeration value=\"ea1JpnKorPeriod\"/>\n      <xsd:enumeration value=\"arabic1Minus\"/>\n      <xsd:enumeration value=\"arabic2Minus\"/>\n      <xsd:enumeration value=\"hebrew2Minus\"/>\n      <xsd:enumeration value=\"thaiAlphaPeriod\"/>\n      <xsd:enumeration value=\"thaiAlphaParenR\"/>\n      <xsd:enumeration value=\"thaiAlphaParenBoth\"/>\n      <xsd:enumeration value=\"thaiNumPeriod\"/>\n      <xsd:enumeration value=\"thaiNumParenR\"/>\n      <xsd:enumeration value=\"thaiNumParenBoth\"/>\n      <xsd:enumeration value=\"hindiAlphaPeriod\"/>\n      <xsd:enumeration value=\"hindiNumPeriod\"/>\n      <xsd:enumeration value=\"hindiNumParenR\"/>\n      <xsd:enumeration value=\"hindiAlpha1Period\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextBulletColorFollowText\"/>\n  <xsd:group name=\"EG_TextBulletColor\">\n    <xsd:choice>\n      <xsd:element name=\"buClrTx\" type=\"CT_TextBulletColorFollowText\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"buClr\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_TextBulletSize\">\n    <xsd:union memberTypes=\"ST_TextBulletSizePercent ST_TextBulletSizeDecimal\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextBulletSizePercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*((2[5-9])|([3-9][0-9])|([1-3][0-9][0-9])|400)%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextBulletSizeDecimal\">\n    <xsd:restriction base=\"ST_PercentageDecimal\">\n      <xsd:minInclusive value=\"25000\"/>\n      <xsd:maxInclusive value=\"400000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextBulletSizeFollowText\"/>\n  <xsd:complexType name=\"CT_TextBulletSizePercent\">\n    <xsd:attribute name=\"val\" type=\"ST_TextBulletSizePercent\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextBulletSizePoint\">\n    <xsd:attribute name=\"val\" type=\"ST_TextFontSize\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_TextBulletSize\">\n    <xsd:choice>\n      <xsd:element name=\"buSzTx\" type=\"CT_TextBulletSizeFollowText\"/>\n      <xsd:element name=\"buSzPct\" type=\"CT_TextBulletSizePercent\"/>\n      <xsd:element name=\"buSzPts\" type=\"CT_TextBulletSizePoint\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_TextBulletTypefaceFollowText\"/>\n  <xsd:group name=\"EG_TextBulletTypeface\">\n    <xsd:choice>\n      <xsd:element name=\"buFontTx\" type=\"CT_TextBulletTypefaceFollowText\"/>\n      <xsd:element name=\"buFont\" type=\"CT_TextFont\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_TextAutonumberBullet\">\n    <xsd:attribute name=\"type\" type=\"ST_TextAutonumberScheme\" use=\"required\"/>\n    <xsd:attribute name=\"startAt\" type=\"ST_TextBulletStartAtNum\" use=\"optional\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextCharBullet\">\n    <xsd:attribute name=\"char\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextBlipBullet\">\n    <xsd:sequence>\n      <xsd:element name=\"blip\" type=\"CT_Blip\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextNoBullet\"/>\n  <xsd:group name=\"EG_TextBullet\">\n    <xsd:choice>\n      <xsd:element name=\"buNone\" type=\"CT_TextNoBullet\"/>\n      <xsd:element name=\"buAutoNum\" type=\"CT_TextAutonumberBullet\"/>\n      <xsd:element name=\"buChar\" type=\"CT_TextCharBullet\"/>\n      <xsd:element name=\"buBlip\" type=\"CT_TextBlipBullet\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_TextPoint\">\n    <xsd:union memberTypes=\"ST_TextPointUnqualified s:ST_UniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextPointUnqualified\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"-400000\"/>\n      <xsd:maxInclusive value=\"400000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextNonNegativePoint\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"400000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextFontSize\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"100\"/>\n      <xsd:maxInclusive value=\"400000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextTypeface\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PitchFamily\">\n   <xsd:restriction base=\"xsd:byte\">\n     <xsd:enumeration value=\"00\"/>\n     <xsd:enumeration value=\"01\"/>\n     <xsd:enumeration value=\"02\"/>\n     <xsd:enumeration value=\"16\"/>\n     <xsd:enumeration value=\"17\"/>\n     <xsd:enumeration value=\"18\"/>\n     <xsd:enumeration value=\"32\"/>\n     <xsd:enumeration value=\"33\"/>\n     <xsd:enumeration value=\"34\"/>\n     <xsd:enumeration value=\"48\"/>\n     <xsd:enumeration value=\"49\"/>\n     <xsd:enumeration value=\"50\"/>\n     <xsd:enumeration value=\"64\"/>\n     <xsd:enumeration value=\"65\"/>\n     <xsd:enumeration value=\"66\"/>\n     <xsd:enumeration value=\"80\"/>\n     <xsd:enumeration value=\"81\"/>\n     <xsd:enumeration value=\"82\"/>\n   </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_TextFont\">\n    <xsd:attribute name=\"typeface\" type=\"ST_TextTypeface\" use=\"required\"/>\n    <xsd:attribute name=\"panose\" type=\"s:ST_Panose\" use=\"optional\"/>\n    <xsd:attribute name=\"pitchFamily\" type=\"ST_PitchFamily\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"charset\" type=\"xsd:byte\" use=\"optional\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextUnderlineType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"words\"/>\n      <xsd:enumeration value=\"sng\"/>\n      <xsd:enumeration value=\"dbl\"/>\n      <xsd:enumeration value=\"heavy\"/>\n      <xsd:enumeration value=\"dotted\"/>\n      <xsd:enumeration value=\"dottedHeavy\"/>\n      <xsd:enumeration value=\"dash\"/>\n      <xsd:enumeration value=\"dashHeavy\"/>\n      <xsd:enumeration value=\"dashLong\"/>\n      <xsd:enumeration value=\"dashLongHeavy\"/>\n      <xsd:enumeration value=\"dotDash\"/>\n      <xsd:enumeration value=\"dotDashHeavy\"/>\n      <xsd:enumeration value=\"dotDotDash\"/>\n      <xsd:enumeration value=\"dotDotDashHeavy\"/>\n      <xsd:enumeration value=\"wavy\"/>\n      <xsd:enumeration value=\"wavyHeavy\"/>\n      <xsd:enumeration value=\"wavyDbl\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextUnderlineLineFollowText\"/>\n  <xsd:complexType name=\"CT_TextUnderlineFillFollowText\"/>\n  <xsd:complexType name=\"CT_TextUnderlineFillGroupWrapper\">\n    <xsd:group ref=\"EG_FillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_TextUnderlineLine\">\n    <xsd:choice>\n      <xsd:element name=\"uLnTx\" type=\"CT_TextUnderlineLineFollowText\"/>\n      <xsd:element name=\"uLn\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_TextUnderlineFill\">\n    <xsd:choice>\n      <xsd:element name=\"uFillTx\" type=\"CT_TextUnderlineFillFollowText\"/>\n      <xsd:element name=\"uFill\" type=\"CT_TextUnderlineFillGroupWrapper\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_TextStrikeType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"noStrike\"/>\n      <xsd:enumeration value=\"sngStrike\"/>\n      <xsd:enumeration value=\"dblStrike\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextCapsType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"small\"/>\n      <xsd:enumeration value=\"all\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextCharacterProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"ln\" type=\"CT_LineProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"highlight\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextUnderlineLine\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextUnderlineFill\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"latin\" type=\"CT_TextFont\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ea\" type=\"CT_TextFont\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cs\" type=\"CT_TextFont\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sym\" type=\"CT_TextFont\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hlinkClick\" type=\"CT_Hyperlink\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hlinkMouseOver\" type=\"CT_Hyperlink\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rtl\" type=\"CT_Boolean\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"kumimoji\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"lang\" type=\"s:ST_Lang\" use=\"optional\"/>\n    <xsd:attribute name=\"altLang\" type=\"s:ST_Lang\" use=\"optional\"/>\n    <xsd:attribute name=\"sz\" type=\"ST_TextFontSize\" use=\"optional\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"u\" type=\"ST_TextUnderlineType\" use=\"optional\"/>\n    <xsd:attribute name=\"strike\" type=\"ST_TextStrikeType\" use=\"optional\"/>\n    <xsd:attribute name=\"kern\" type=\"ST_TextNonNegativePoint\" use=\"optional\"/>\n    <xsd:attribute name=\"cap\" type=\"ST_TextCapsType\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"spc\" type=\"ST_TextPoint\" use=\"optional\"/>\n    <xsd:attribute name=\"normalizeH\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"baseline\" type=\"ST_Percentage\" use=\"optional\"/>\n    <xsd:attribute name=\"noProof\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"dirty\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"err\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"smtClean\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"smtId\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"bmk\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Boolean\">\n    <xsd:attribute name=\"val\" type=\"s:ST_OnOff\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextSpacingPoint\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"158400\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextSpacingPercentOrPercentString\">\n    <xsd:union memberTypes=\"ST_TextSpacingPercent s:ST_Percentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextSpacingPercent\">\n    <xsd:restriction base=\"ST_PercentageDecimal\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"13200000\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextSpacingPercent\">\n    <xsd:attribute name=\"val\" type=\"ST_TextSpacingPercentOrPercentString\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextSpacingPoint\">\n    <xsd:attribute name=\"val\" type=\"ST_TextSpacingPoint\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextMargin\">\n    <xsd:restriction base=\"ST_Coordinate32Unqualified\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"51206400\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextIndent\">\n    <xsd:restriction base=\"ST_Coordinate32Unqualified\">\n      <xsd:minInclusive value=\"-51206400\"/>\n      <xsd:maxInclusive value=\"51206400\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextTabAlignType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"dec\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextTabStop\">\n    <xsd:attribute name=\"pos\" type=\"ST_Coordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"algn\" type=\"ST_TextTabAlignType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextTabStopList\">\n    <xsd:sequence>\n      <xsd:element name=\"tab\" type=\"CT_TextTabStop\" minOccurs=\"0\" maxOccurs=\"32\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextLineBreak\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_TextCharacterProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextSpacing\">\n    <xsd:choice>\n      <xsd:element name=\"spcPct\" type=\"CT_TextSpacingPercent\"/>\n      <xsd:element name=\"spcPts\" type=\"CT_TextSpacingPoint\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextAlignType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"just\"/>\n      <xsd:enumeration value=\"justLow\"/>\n      <xsd:enumeration value=\"dist\"/>\n      <xsd:enumeration value=\"thaiDist\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextFontAlignType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"ctr\"/>\n      <xsd:enumeration value=\"base\"/>\n      <xsd:enumeration value=\"b\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextIndentLevelType\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"8\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextParagraphProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"lnSpc\" type=\"CT_TextSpacing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spcBef\" type=\"CT_TextSpacing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spcAft\" type=\"CT_TextSpacing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextBulletColor\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextBulletSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextBulletTypeface\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TextBullet\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tabLst\" type=\"CT_TextTabStopList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"defRPr\" type=\"CT_TextCharacterProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"marL\" type=\"ST_TextMargin\" use=\"optional\"/>\n    <xsd:attribute name=\"marR\" type=\"ST_TextMargin\" use=\"optional\"/>\n    <xsd:attribute name=\"lvl\" type=\"ST_TextIndentLevelType\" use=\"optional\"/>\n    <xsd:attribute name=\"indent\" type=\"ST_TextIndent\" use=\"optional\"/>\n    <xsd:attribute name=\"algn\" type=\"ST_TextAlignType\" use=\"optional\"/>\n    <xsd:attribute name=\"defTabSz\" type=\"ST_Coordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"rtl\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"eaLnBrk\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"fontAlgn\" type=\"ST_TextFontAlignType\" use=\"optional\"/>\n    <xsd:attribute name=\"latinLnBrk\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"hangingPunct\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextField\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_TextCharacterProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pPr\" type=\"CT_TextParagraphProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"t\" type=\"xsd:string\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"type\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_TextRun\">\n    <xsd:choice>\n      <xsd:element name=\"r\" type=\"CT_RegularTextRun\"/>\n      <xsd:element name=\"br\" type=\"CT_TextLineBreak\"/>\n      <xsd:element name=\"fld\" type=\"CT_TextField\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_RegularTextRun\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_TextCharacterProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"t\" type=\"xsd:string\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/picture\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\" elementFormDefault=\"qualified\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/picture\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:complexType name=\"CT_PictureNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvPicPr\" type=\"a:CT_NonVisualPictureProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Picture\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"nvPicPr\" type=\"CT_PictureNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blipFill\" type=\"a:CT_BlipFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"pic\" type=\"CT_Picture\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing\"\n  elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:import schemaLocation=\"shared-relationshipReference.xsd\"\n    namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"/>\n  <xsd:element name=\"from\" type=\"CT_Marker\"/>\n  <xsd:element name=\"to\" type=\"CT_Marker\"/>\n  <xsd:complexType name=\"CT_AnchorClientData\">\n    <xsd:attribute name=\"fLocksWithSheet\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"fPrintsWithSheet\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvSpPr\" type=\"a:CT_NonVisualDrawingShapeProps\" minOccurs=\"1\" maxOccurs=\"1\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Shape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvSpPr\" type=\"CT_ShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txBody\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"textlink\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fLocksText\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConnectorNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvCxnSpPr\" type=\"a:CT_NonVisualConnectorProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Connector\">\n    <xsd:sequence>\n      <xsd:element name=\"nvCxnSpPr\" type=\"CT_ConnectorNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PictureNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvPicPr\" type=\"a:CT_NonVisualPictureProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Picture\">\n    <xsd:sequence>\n      <xsd:element name=\"nvPicPr\" type=\"CT_PictureNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blipFill\" type=\"a:CT_BlipFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObjectFrameNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGraphicFramePr\" type=\"a:CT_NonVisualGraphicFrameProperties\"\n        minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObjectFrame\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGraphicFramePr\" type=\"CT_GraphicalObjectFrameNonVisual\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"a:CT_Transform2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"a:graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"macro\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fPublished\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGrpSpPr\" type=\"a:CT_NonVisualGroupDrawingShapeProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGrpSpPr\" type=\"CT_GroupShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grpSpPr\" type=\"a:CT_GroupShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"sp\" type=\"CT_Shape\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_GroupShape\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicalObjectFrame\"/>\n        <xsd:element name=\"cxnSp\" type=\"CT_Connector\"/>\n        <xsd:element name=\"pic\" type=\"CT_Picture\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ObjectChoices\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"sp\" type=\"CT_Shape\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_GroupShape\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicalObjectFrame\"/>\n        <xsd:element name=\"cxnSp\" type=\"CT_Connector\"/>\n        <xsd:element name=\"pic\" type=\"CT_Picture\"/>\n        <xsd:element name=\"contentPart\" type=\"CT_Rel\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_Rel\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ColID\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RowID\">\n    <xsd:restriction base=\"xsd:int\">\n      <xsd:minInclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Marker\">\n    <xsd:sequence>\n      <xsd:element name=\"col\" type=\"ST_ColID\"/>\n      <xsd:element name=\"colOff\" type=\"a:ST_Coordinate\"/>\n      <xsd:element name=\"row\" type=\"ST_RowID\"/>\n      <xsd:element name=\"rowOff\" type=\"a:ST_Coordinate\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_EditAs\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"twoCell\"/>\n      <xsd:enumeration value=\"oneCell\"/>\n      <xsd:enumeration value=\"absolute\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TwoCellAnchor\">\n    <xsd:sequence>\n      <xsd:element name=\"from\" type=\"CT_Marker\"/>\n      <xsd:element name=\"to\" type=\"CT_Marker\"/>\n      <xsd:group ref=\"EG_ObjectChoices\"/>\n      <xsd:element name=\"clientData\" type=\"CT_AnchorClientData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"editAs\" type=\"ST_EditAs\" use=\"optional\" default=\"twoCell\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OneCellAnchor\">\n    <xsd:sequence>\n      <xsd:element name=\"from\" type=\"CT_Marker\"/>\n      <xsd:element name=\"ext\" type=\"a:CT_PositiveSize2D\"/>\n      <xsd:group ref=\"EG_ObjectChoices\"/>\n      <xsd:element name=\"clientData\" type=\"CT_AnchorClientData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AbsoluteAnchor\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"a:CT_Point2D\"/>\n      <xsd:element name=\"ext\" type=\"a:CT_PositiveSize2D\"/>\n      <xsd:group ref=\"EG_ObjectChoices\"/>\n      <xsd:element name=\"clientData\" type=\"CT_AnchorClientData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Anchor\">\n    <xsd:choice>\n      <xsd:element name=\"twoCellAnchor\" type=\"CT_TwoCellAnchor\"/>\n      <xsd:element name=\"oneCellAnchor\" type=\"CT_OneCellAnchor\"/>\n      <xsd:element name=\"absoluteAnchor\" type=\"CT_AbsoluteAnchor\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_Drawing\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_Anchor\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"wsDr\" type=\"CT_Drawing\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n  xmlns:dpct=\"http://schemas.openxmlformats.org/drawingml/2006/picture\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\"\n  targetNamespace=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\"\n  elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:import schemaLocation=\"wml.xsd\"\n    namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/picture\"\n    schemaLocation=\"dml-picture.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:complexType name=\"CT_EffectExtent\">\n    <xsd:attribute name=\"l\" type=\"a:ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"t\" type=\"a:ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"r\" type=\"a:ST_Coordinate\" use=\"required\"/>\n    <xsd:attribute name=\"b\" type=\"a:ST_Coordinate\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_WrapDistance\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Inline\">\n    <xsd:sequence>\n      <xsd:element name=\"extent\" type=\"a:CT_PositiveSize2D\"/>\n      <xsd:element name=\"effectExtent\" type=\"CT_EffectExtent\" minOccurs=\"0\"/>\n      <xsd:element name=\"docPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGraphicFramePr\" type=\"a:CT_NonVisualGraphicFrameProperties\"\n        minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"a:graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"distT\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distB\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distL\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distR\" type=\"ST_WrapDistance\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_WrapText\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"bothSides\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"largest\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_WrapPath\">\n    <xsd:sequence>\n      <xsd:element name=\"start\" type=\"a:CT_Point2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"lineTo\" type=\"a:CT_Point2D\" minOccurs=\"2\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"edited\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WrapNone\"/>\n  <xsd:complexType name=\"CT_WrapSquare\">\n    <xsd:sequence>\n      <xsd:element name=\"effectExtent\" type=\"CT_EffectExtent\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"wrapText\" type=\"ST_WrapText\" use=\"required\"/>\n    <xsd:attribute name=\"distT\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distB\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distL\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distR\" type=\"ST_WrapDistance\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WrapTight\">\n    <xsd:sequence>\n      <xsd:element name=\"wrapPolygon\" type=\"CT_WrapPath\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"wrapText\" type=\"ST_WrapText\" use=\"required\"/>\n    <xsd:attribute name=\"distL\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distR\" type=\"ST_WrapDistance\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WrapThrough\">\n    <xsd:sequence>\n      <xsd:element name=\"wrapPolygon\" type=\"CT_WrapPath\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"wrapText\" type=\"ST_WrapText\" use=\"required\"/>\n    <xsd:attribute name=\"distL\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distR\" type=\"ST_WrapDistance\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WrapTopBottom\">\n    <xsd:sequence>\n      <xsd:element name=\"effectExtent\" type=\"CT_EffectExtent\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"distT\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distB\" type=\"ST_WrapDistance\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_WrapType\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"wrapNone\" type=\"CT_WrapNone\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"wrapSquare\" type=\"CT_WrapSquare\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"wrapTight\" type=\"CT_WrapTight\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"wrapThrough\" type=\"CT_WrapThrough\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"wrapTopAndBottom\" type=\"CT_WrapTopBottom\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:simpleType name=\"ST_PositionOffset\">\n    <xsd:restriction base=\"xsd:int\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AlignH\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"inside\"/>\n      <xsd:enumeration value=\"outside\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RelFromH\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"page\"/>\n      <xsd:enumeration value=\"column\"/>\n      <xsd:enumeration value=\"character\"/>\n      <xsd:enumeration value=\"leftMargin\"/>\n      <xsd:enumeration value=\"rightMargin\"/>\n      <xsd:enumeration value=\"insideMargin\"/>\n      <xsd:enumeration value=\"outsideMargin\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PosH\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"align\" type=\"ST_AlignH\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"posOffset\" type=\"ST_PositionOffset\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n    <xsd:attribute name=\"relativeFrom\" type=\"ST_RelFromH\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AlignV\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"inside\"/>\n      <xsd:enumeration value=\"outside\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RelFromV\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"page\"/>\n      <xsd:enumeration value=\"paragraph\"/>\n      <xsd:enumeration value=\"line\"/>\n      <xsd:enumeration value=\"topMargin\"/>\n      <xsd:enumeration value=\"bottomMargin\"/>\n      <xsd:enumeration value=\"insideMargin\"/>\n      <xsd:enumeration value=\"outsideMargin\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PosV\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"align\" type=\"ST_AlignV\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"posOffset\" type=\"ST_PositionOffset\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      </xsd:choice>\n    </xsd:sequence>\n    <xsd:attribute name=\"relativeFrom\" type=\"ST_RelFromV\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Anchor\">\n    <xsd:sequence>\n      <xsd:element name=\"simplePos\" type=\"a:CT_Point2D\"/>\n      <xsd:element name=\"positionH\" type=\"CT_PosH\"/>\n      <xsd:element name=\"positionV\" type=\"CT_PosV\"/>\n      <xsd:element name=\"extent\" type=\"a:CT_PositiveSize2D\"/>\n      <xsd:element name=\"effectExtent\" type=\"CT_EffectExtent\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_WrapType\"/>\n      <xsd:element name=\"docPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGraphicFramePr\" type=\"a:CT_NonVisualGraphicFrameProperties\"\n        minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"a:graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"distT\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distB\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distL\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"distR\" type=\"ST_WrapDistance\" use=\"optional\"/>\n    <xsd:attribute name=\"simplePos\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"relativeHeight\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"behindDoc\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"locked\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"layoutInCell\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"allowOverlap\" type=\"xsd:boolean\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TxbxContent\">\n    <xsd:group ref=\"w:EG_BlockLevelElts\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextboxInfo\">\n    <xsd:sequence>\n      <xsd:element name=\"txbxContent\" type=\"CT_TxbxContent\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedShort\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LinkedTextboxInformation\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedShort\" use=\"required\"/>\n    <xsd:attribute name=\"seq\" type=\"xsd:unsignedShort\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WordprocessingShape\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"cNvSpPr\" type=\"a:CT_NonVisualDrawingShapeProps\" minOccurs=\"1\"\n          maxOccurs=\"1\"/>\n        <xsd:element name=\"cNvCnPr\" type=\"a:CT_NonVisualConnectorProperties\" minOccurs=\"1\"\n          maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n        <xsd:element name=\"txbx\" type=\"CT_TextboxInfo\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"linkedTxbx\" type=\"CT_LinkedTextboxInformation\" minOccurs=\"1\"\n          maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"bodyPr\" type=\"a:CT_TextBodyProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"normalEastAsianFlow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicFrame\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvFrPr\" type=\"a:CT_NonVisualGraphicFrameProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"a:CT_Transform2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"a:graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WordprocessingContentPartNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvContentPartPr\" type=\"a:CT_NonVisualContentPartProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WordprocessingContentPart\">\n    <xsd:sequence>\n      <xsd:element name=\"nvContentPartPr\" type=\"CT_WordprocessingContentPartNonVisual\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"a:CT_Transform2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bwMode\" type=\"a:ST_BlackWhiteMode\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WordprocessingGroup\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGrpSpPr\" type=\"a:CT_NonVisualGroupDrawingShapeProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"grpSpPr\" type=\"a:CT_GroupShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element ref=\"wsp\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_WordprocessingGroup\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicFrame\"/>\n        <xsd:element ref=\"dpct:pic\"/>\n        <xsd:element name=\"contentPart\" type=\"CT_WordprocessingContentPart\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WordprocessingCanvas\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"bg\" type=\"a:CT_BackgroundFormatting\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"whole\" type=\"a:CT_WholeE2oFormatting\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element ref=\"wsp\"/>\n        <xsd:element ref=\"dpct:pic\"/>\n        <xsd:element name=\"contentPart\" type=\"CT_WordprocessingContentPart\"/>\n        <xsd:element ref=\"wgp\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicFrame\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"a:CT_OfficeArtExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"wpc\" type=\"CT_WordprocessingCanvas\"/>\n  <xsd:element name=\"wgp\" type=\"CT_WordprocessingGroup\"/>\n  <xsd:element name=\"wsp\" type=\"CT_WordprocessingShape\"/>\n  <xsd:element name=\"inline\" type=\"CT_Inline\"/>\n  <xsd:element name=\"anchor\" type=\"CT_Anchor\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/presentationml/2006/main\"\n  xmlns:p=\"http://schemas.openxmlformats.org/presentationml/2006/main\"\n  xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  elementFormDefault=\"qualified\"\n  targetNamespace=\"http://schemas.openxmlformats.org/presentationml/2006/main\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\"\n    schemaLocation=\"dml-main.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:simpleType name=\"ST_TransitionSideDirectionType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"l\"/>\n      <xsd:enumeration value=\"u\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"d\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TransitionCornerDirectionType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"lu\"/>\n      <xsd:enumeration value=\"ru\"/>\n      <xsd:enumeration value=\"ld\"/>\n      <xsd:enumeration value=\"rd\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TransitionInOutDirectionType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"out\"/>\n      <xsd:enumeration value=\"in\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SideDirectionTransition\">\n    <xsd:attribute name=\"dir\" type=\"ST_TransitionSideDirectionType\" use=\"optional\" default=\"l\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CornerDirectionTransition\">\n    <xsd:attribute name=\"dir\" type=\"ST_TransitionCornerDirectionType\" use=\"optional\" default=\"lu\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TransitionEightDirectionType\">\n    <xsd:union memberTypes=\"ST_TransitionSideDirectionType ST_TransitionCornerDirectionType\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_EightDirectionTransition\">\n    <xsd:attribute name=\"dir\" type=\"ST_TransitionEightDirectionType\" use=\"optional\" default=\"l\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OrientationTransition\">\n    <xsd:attribute name=\"dir\" type=\"ST_Direction\" use=\"optional\" default=\"horz\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_InOutTransition\">\n    <xsd:attribute name=\"dir\" type=\"ST_TransitionInOutDirectionType\" use=\"optional\" default=\"out\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OptionalBlackTransition\">\n    <xsd:attribute name=\"thruBlk\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SplitTransition\">\n    <xsd:attribute name=\"orient\" type=\"ST_Direction\" use=\"optional\" default=\"horz\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_TransitionInOutDirectionType\" use=\"optional\" default=\"out\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WheelTransition\">\n    <xsd:attribute name=\"spokes\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"4\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TransitionStartSoundAction\">\n    <xsd:sequence>\n      <xsd:element minOccurs=\"1\" maxOccurs=\"1\" name=\"snd\" type=\"a:CT_EmbeddedWAVAudioFile\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"loop\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TransitionSoundAction\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"stSnd\" type=\"CT_TransitionStartSoundAction\"/>\n      <xsd:element name=\"endSnd\" type=\"CT_Empty\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TransitionSpeed\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"slow\"/>\n      <xsd:enumeration value=\"med\"/>\n      <xsd:enumeration value=\"fast\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SlideTransition\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n        <xsd:element name=\"blinds\" type=\"CT_OrientationTransition\"/>\n        <xsd:element name=\"checker\" type=\"CT_OrientationTransition\"/>\n        <xsd:element name=\"circle\" type=\"CT_Empty\"/>\n        <xsd:element name=\"dissolve\" type=\"CT_Empty\"/>\n        <xsd:element name=\"comb\" type=\"CT_OrientationTransition\"/>\n        <xsd:element name=\"cover\" type=\"CT_EightDirectionTransition\"/>\n        <xsd:element name=\"cut\" type=\"CT_OptionalBlackTransition\"/>\n        <xsd:element name=\"diamond\" type=\"CT_Empty\"/>\n        <xsd:element name=\"fade\" type=\"CT_OptionalBlackTransition\"/>\n        <xsd:element name=\"newsflash\" type=\"CT_Empty\"/>\n        <xsd:element name=\"plus\" type=\"CT_Empty\"/>\n        <xsd:element name=\"pull\" type=\"CT_EightDirectionTransition\"/>\n        <xsd:element name=\"push\" type=\"CT_SideDirectionTransition\"/>\n        <xsd:element name=\"random\" type=\"CT_Empty\"/>\n        <xsd:element name=\"randomBar\" type=\"CT_OrientationTransition\"/>\n        <xsd:element name=\"split\" type=\"CT_SplitTransition\"/>\n        <xsd:element name=\"strips\" type=\"CT_CornerDirectionTransition\"/>\n        <xsd:element name=\"wedge\" type=\"CT_Empty\"/>\n        <xsd:element name=\"wheel\" type=\"CT_WheelTransition\"/>\n        <xsd:element name=\"wipe\" type=\"CT_SideDirectionTransition\"/>\n        <xsd:element name=\"zoom\" type=\"CT_InOutTransition\"/>\n      </xsd:choice>\n      <xsd:element name=\"sndAc\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_TransitionSoundAction\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"spd\" type=\"ST_TransitionSpeed\" use=\"optional\" default=\"fast\"/>\n    <xsd:attribute name=\"advClick\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"advTm\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLTimeIndefinite\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"indefinite\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTime\">\n    <xsd:union memberTypes=\"xsd:unsignedInt ST_TLTimeIndefinite\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTimeNodeID\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLIterateIntervalTime\">\n    <xsd:attribute name=\"val\" type=\"ST_TLTime\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLIterateIntervalPercentage\">\n    <xsd:attribute name=\"val\" type=\"a:ST_PositivePercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_IterateType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"el\"/>\n      <xsd:enumeration value=\"wd\"/>\n      <xsd:enumeration value=\"lt\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLIterateData\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"tmAbs\" type=\"CT_TLIterateIntervalTime\"/>\n      <xsd:element name=\"tmPct\" type=\"CT_TLIterateIntervalPercentage\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"type\" type=\"ST_IterateType\" use=\"optional\" default=\"el\"/>\n    <xsd:attribute name=\"backwards\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLSubShapeId\">\n    <xsd:attribute name=\"spid\" type=\"a:ST_ShapeID\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTextTargetElement\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"charRg\" type=\"CT_IndexRange\"/>\n      <xsd:element name=\"pRg\" type=\"CT_IndexRange\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLChartSubelementType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"gridLegend\"/>\n      <xsd:enumeration value=\"series\"/>\n      <xsd:enumeration value=\"category\"/>\n      <xsd:enumeration value=\"ptInSeries\"/>\n      <xsd:enumeration value=\"ptInCategory\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLOleChartTargetElement\">\n    <xsd:attribute name=\"type\" type=\"ST_TLChartSubelementType\" use=\"required\"/>\n    <xsd:attribute name=\"lvl\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLShapeTargetElement\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"bg\" type=\"CT_Empty\"/>\n      <xsd:element name=\"subSp\" type=\"CT_TLSubShapeId\"/>\n      <xsd:element name=\"oleChartEl\" type=\"CT_TLOleChartTargetElement\"/>\n      <xsd:element name=\"txEl\" type=\"CT_TLTextTargetElement\"/>\n      <xsd:element name=\"graphicEl\" type=\"a:CT_AnimationElementChoice\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"spid\" type=\"a:ST_DrawingElementId\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTimeTargetElement\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"sldTgt\" type=\"CT_Empty\"/>\n      <xsd:element name=\"sndTgt\" type=\"a:CT_EmbeddedWAVAudioFile\"/>\n      <xsd:element name=\"spTgt\" type=\"CT_TLShapeTargetElement\"/>\n      <xsd:element name=\"inkTgt\" type=\"CT_TLSubShapeId\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTriggerTimeNodeID\">\n    <xsd:attribute name=\"val\" type=\"ST_TLTimeNodeID\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLTriggerRuntimeNode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"first\"/>\n      <xsd:enumeration value=\"last\"/>\n      <xsd:enumeration value=\"all\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLTriggerRuntimeNode\">\n    <xsd:attribute name=\"val\" type=\"ST_TLTriggerRuntimeNode\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLTriggerEvent\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"onBegin\"/>\n      <xsd:enumeration value=\"onEnd\"/>\n      <xsd:enumeration value=\"begin\"/>\n      <xsd:enumeration value=\"end\"/>\n      <xsd:enumeration value=\"onClick\"/>\n      <xsd:enumeration value=\"onDblClick\"/>\n      <xsd:enumeration value=\"onMouseOver\"/>\n      <xsd:enumeration value=\"onMouseOut\"/>\n      <xsd:enumeration value=\"onNext\"/>\n      <xsd:enumeration value=\"onPrev\"/>\n      <xsd:enumeration value=\"onStopAudio\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLTimeCondition\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"tgtEl\" type=\"CT_TLTimeTargetElement\"/>\n      <xsd:element name=\"tn\" type=\"CT_TLTriggerTimeNodeID\"/>\n      <xsd:element name=\"rtn\" type=\"CT_TLTriggerRuntimeNode\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"evt\" use=\"optional\" type=\"ST_TLTriggerEvent\"/>\n    <xsd:attribute name=\"delay\" type=\"ST_TLTime\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTimeConditionList\">\n    <xsd:sequence>\n      <xsd:element name=\"cond\" type=\"CT_TLTimeCondition\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TimeNodeList\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"par\" type=\"CT_TLTimeNodeParallel\"/>\n      <xsd:element name=\"seq\" type=\"CT_TLTimeNodeSequence\"/>\n      <xsd:element name=\"excl\" type=\"CT_TLTimeNodeExclusive\"/>\n      <xsd:element name=\"anim\" type=\"CT_TLAnimateBehavior\"/>\n      <xsd:element name=\"animClr\" type=\"CT_TLAnimateColorBehavior\"/>\n      <xsd:element name=\"animEffect\" type=\"CT_TLAnimateEffectBehavior\"/>\n      <xsd:element name=\"animMotion\" type=\"CT_TLAnimateMotionBehavior\"/>\n      <xsd:element name=\"animRot\" type=\"CT_TLAnimateRotationBehavior\"/>\n      <xsd:element name=\"animScale\" type=\"CT_TLAnimateScaleBehavior\"/>\n      <xsd:element name=\"cmd\" type=\"CT_TLCommandBehavior\"/>\n      <xsd:element name=\"set\" type=\"CT_TLSetBehavior\"/>\n      <xsd:element name=\"audio\" type=\"CT_TLMediaNodeAudio\"/>\n      <xsd:element name=\"video\" type=\"CT_TLMediaNodeVideo\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLTimeNodePresetClassType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"entr\"/>\n      <xsd:enumeration value=\"exit\"/>\n      <xsd:enumeration value=\"emph\"/>\n      <xsd:enumeration value=\"path\"/>\n      <xsd:enumeration value=\"verb\"/>\n      <xsd:enumeration value=\"mediacall\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTimeNodeRestartType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"always\"/>\n      <xsd:enumeration value=\"whenNotActive\"/>\n      <xsd:enumeration value=\"never\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTimeNodeFillType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"remove\"/>\n      <xsd:enumeration value=\"freeze\"/>\n      <xsd:enumeration value=\"hold\"/>\n      <xsd:enumeration value=\"transition\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTimeNodeSyncType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"canSlip\"/>\n      <xsd:enumeration value=\"locked\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTimeNodeMasterRelation\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sameClick\"/>\n      <xsd:enumeration value=\"lastClick\"/>\n      <xsd:enumeration value=\"nextClick\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLTimeNodeType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"clickEffect\"/>\n      <xsd:enumeration value=\"withEffect\"/>\n      <xsd:enumeration value=\"afterEffect\"/>\n      <xsd:enumeration value=\"mainSeq\"/>\n      <xsd:enumeration value=\"interactiveSeq\"/>\n      <xsd:enumeration value=\"clickPar\"/>\n      <xsd:enumeration value=\"withGroup\"/>\n      <xsd:enumeration value=\"afterGroup\"/>\n      <xsd:enumeration value=\"tmRoot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLCommonTimeNodeData\">\n    <xsd:sequence>\n      <xsd:element name=\"stCondLst\" type=\"CT_TLTimeConditionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"endCondLst\" type=\"CT_TLTimeConditionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"endSync\" type=\"CT_TLTimeCondition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"iterate\" type=\"CT_TLIterateData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"childTnLst\" type=\"CT_TimeNodeList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"subTnLst\" type=\"CT_TimeNodeList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"ST_TLTimeNodeID\" use=\"optional\"/>\n    <xsd:attribute name=\"presetID\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"presetClass\" type=\"ST_TLTimeNodePresetClassType\" use=\"optional\"/>\n    <xsd:attribute name=\"presetSubtype\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"dur\" type=\"ST_TLTime\" use=\"optional\"/>\n    <xsd:attribute name=\"repeatCount\" type=\"ST_TLTime\" use=\"optional\" default=\"1000\"/>\n    <xsd:attribute name=\"repeatDur\" type=\"ST_TLTime\" use=\"optional\"/>\n    <xsd:attribute name=\"spd\" type=\"a:ST_Percentage\" use=\"optional\" default=\"100%\"/>\n    <xsd:attribute name=\"accel\" type=\"a:ST_PositiveFixedPercentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"decel\" type=\"a:ST_PositiveFixedPercentage\" use=\"optional\" default=\"0%\"/>\n    <xsd:attribute name=\"autoRev\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"restart\" type=\"ST_TLTimeNodeRestartType\" use=\"optional\"/>\n    <xsd:attribute name=\"fill\" type=\"ST_TLTimeNodeFillType\" use=\"optional\"/>\n    <xsd:attribute name=\"syncBehavior\" type=\"ST_TLTimeNodeSyncType\" use=\"optional\"/>\n    <xsd:attribute name=\"tmFilter\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"evtFilter\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"display\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"masterRel\" type=\"ST_TLTimeNodeMasterRelation\" use=\"optional\"/>\n    <xsd:attribute name=\"bldLvl\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"grpId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"afterEffect\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"nodeType\" type=\"ST_TLTimeNodeType\" use=\"optional\"/>\n    <xsd:attribute name=\"nodePh\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTimeNodeParallel\">\n    <xsd:sequence>\n      <xsd:element name=\"cTn\" type=\"CT_TLCommonTimeNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLNextActionType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"seek\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLPreviousActionType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"skipTimed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLTimeNodeSequence\">\n    <xsd:sequence>\n      <xsd:element name=\"cTn\" type=\"CT_TLCommonTimeNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prevCondLst\" type=\"CT_TLTimeConditionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"nextCondLst\" type=\"CT_TLTimeConditionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"concurrent\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"prevAc\" type=\"ST_TLPreviousActionType\" use=\"optional\"/>\n    <xsd:attribute name=\"nextAc\" type=\"ST_TLNextActionType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTimeNodeExclusive\">\n    <xsd:sequence>\n      <xsd:element name=\"cTn\" type=\"CT_TLCommonTimeNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLBehaviorAttributeNameList\">\n    <xsd:sequence>\n      <xsd:element name=\"attrName\" type=\"xsd:string\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLBehaviorAdditiveType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"base\"/>\n      <xsd:enumeration value=\"sum\"/>\n      <xsd:enumeration value=\"repl\"/>\n      <xsd:enumeration value=\"mult\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLBehaviorAccumulateType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"always\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLBehaviorTransformType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"pt\"/>\n      <xsd:enumeration value=\"img\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLBehaviorOverrideType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"childStyle\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLCommonBehaviorData\">\n    <xsd:sequence>\n      <xsd:element name=\"cTn\" type=\"CT_TLCommonTimeNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tgtEl\" type=\"CT_TLTimeTargetElement\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"attrNameLst\" type=\"CT_TLBehaviorAttributeNameList\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"additive\" type=\"ST_TLBehaviorAdditiveType\" use=\"optional\"/>\n    <xsd:attribute name=\"accumulate\" type=\"ST_TLBehaviorAccumulateType\" use=\"optional\"/>\n    <xsd:attribute name=\"xfrmType\" type=\"ST_TLBehaviorTransformType\" use=\"optional\"/>\n    <xsd:attribute name=\"from\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"to\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"by\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"rctx\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"override\" type=\"ST_TLBehaviorOverrideType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimVariantBooleanVal\">\n    <xsd:attribute name=\"val\" type=\"xsd:boolean\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimVariantIntegerVal\">\n    <xsd:attribute name=\"val\" type=\"xsd:int\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimVariantFloatVal\">\n    <xsd:attribute name=\"val\" type=\"xsd:float\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimVariantStringVal\">\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimVariant\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"boolVal\" type=\"CT_TLAnimVariantBooleanVal\"/>\n      <xsd:element name=\"intVal\" type=\"CT_TLAnimVariantIntegerVal\"/>\n      <xsd:element name=\"fltVal\" type=\"CT_TLAnimVariantFloatVal\"/>\n      <xsd:element name=\"strVal\" type=\"CT_TLAnimVariantStringVal\"/>\n      <xsd:element name=\"clrVal\" type=\"a:CT_Color\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLTimeAnimateValueTime\">\n    <xsd:union memberTypes=\"a:ST_PositiveFixedPercentage ST_TLTimeIndefinite\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLTimeAnimateValue\">\n    <xsd:sequence>\n      <xsd:element name=\"val\" type=\"CT_TLAnimVariant\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"tm\" type=\"ST_TLTimeAnimateValueTime\" use=\"optional\" default=\"indefinite\"/>\n    <xsd:attribute name=\"fmla\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTimeAnimateValueList\">\n    <xsd:sequence>\n      <xsd:element name=\"tav\" type=\"CT_TLTimeAnimateValue\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLAnimateBehaviorCalcMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"discrete\"/>\n      <xsd:enumeration value=\"lin\"/>\n      <xsd:enumeration value=\"fmla\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLAnimateBehaviorValueType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"str\"/>\n      <xsd:enumeration value=\"num\"/>\n      <xsd:enumeration value=\"clr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLAnimateBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tavLst\" type=\"CT_TLTimeAnimateValueList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"by\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"from\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"to\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"calcmode\" type=\"ST_TLAnimateBehaviorCalcMode\" use=\"optional\"/>\n    <xsd:attribute name=\"valueType\" type=\"ST_TLAnimateBehaviorValueType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLByRgbColorTransform\">\n    <xsd:attribute name=\"r\" type=\"a:ST_FixedPercentage\" use=\"required\"/>\n    <xsd:attribute name=\"g\" type=\"a:ST_FixedPercentage\" use=\"required\"/>\n    <xsd:attribute name=\"b\" type=\"a:ST_FixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLByHslColorTransform\">\n    <xsd:attribute name=\"h\" type=\"a:ST_Angle\" use=\"required\"/>\n    <xsd:attribute name=\"s\" type=\"a:ST_FixedPercentage\" use=\"required\"/>\n    <xsd:attribute name=\"l\" type=\"a:ST_FixedPercentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLByAnimateColorTransform\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"rgb\" type=\"CT_TLByRgbColorTransform\"/>\n      <xsd:element name=\"hsl\" type=\"CT_TLByHslColorTransform\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLAnimateColorSpace\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"rgb\"/>\n      <xsd:enumeration value=\"hsl\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLAnimateColorDirection\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"cw\"/>\n      <xsd:enumeration value=\"ccw\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLAnimateColorBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"by\" type=\"CT_TLByAnimateColorTransform\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"from\" type=\"a:CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"to\" type=\"a:CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"clrSpc\" type=\"ST_TLAnimateColorSpace\" use=\"optional\"/>\n    <xsd:attribute name=\"dir\" type=\"ST_TLAnimateColorDirection\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLAnimateEffectTransition\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"in\"/>\n      <xsd:enumeration value=\"out\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLAnimateEffectBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"progress\" type=\"CT_TLAnimVariant\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"transition\" type=\"ST_TLAnimateEffectTransition\" default=\"in\" use=\"optional\"/>\n    <xsd:attribute name=\"filter\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"prLst\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLAnimateMotionBehaviorOrigin\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"parent\"/>\n      <xsd:enumeration value=\"layout\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TLAnimateMotionPathEditMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"relative\"/>\n      <xsd:enumeration value=\"fixed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLPoint\">\n    <xsd:attribute name=\"x\" type=\"a:ST_Percentage\" use=\"required\"/>\n    <xsd:attribute name=\"y\" type=\"a:ST_Percentage\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimateMotionBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"by\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"from\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"to\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rCtr\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"origin\" type=\"ST_TLAnimateMotionBehaviorOrigin\" use=\"optional\"/>\n    <xsd:attribute name=\"path\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"pathEditMode\" type=\"ST_TLAnimateMotionPathEditMode\" use=\"optional\"/>\n    <xsd:attribute name=\"rAng\" type=\"a:ST_Angle\" use=\"optional\"/>\n    <xsd:attribute name=\"ptsTypes\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimateRotationBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"by\" type=\"a:ST_Angle\" use=\"optional\"/>\n    <xsd:attribute name=\"from\" type=\"a:ST_Angle\" use=\"optional\"/>\n    <xsd:attribute name=\"to\" type=\"a:ST_Angle\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLAnimateScaleBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"by\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"from\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"to\" type=\"CT_TLPoint\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"zoomContents\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLCommandType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"evt\"/>\n      <xsd:enumeration value=\"call\"/>\n      <xsd:enumeration value=\"verb\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLCommandBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute type=\"ST_TLCommandType\" name=\"type\" use=\"optional\"/>\n    <xsd:attribute name=\"cmd\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLSetBehavior\">\n    <xsd:sequence>\n      <xsd:element name=\"cBhvr\" type=\"CT_TLCommonBehaviorData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"to\" type=\"CT_TLAnimVariant\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLCommonMediaNodeData\">\n    <xsd:sequence>\n      <xsd:element name=\"cTn\" type=\"CT_TLCommonTimeNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tgtEl\" type=\"CT_TLTimeTargetElement\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"vol\" type=\"a:ST_PositiveFixedPercentage\" default=\"50%\" use=\"optional\"/>\n    <xsd:attribute name=\"mute\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"numSld\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"showWhenStopped\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLMediaNodeAudio\">\n    <xsd:sequence>\n      <xsd:element name=\"cMediaNode\" type=\"CT_TLCommonMediaNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"isNarration\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLMediaNodeVideo\">\n    <xsd:sequence>\n      <xsd:element name=\"cMediaNode\" type=\"CT_TLCommonMediaNodeData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"fullScrn\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:attributeGroup name=\"AG_TLBuild\">\n    <xsd:attribute name=\"spid\" type=\"a:ST_DrawingElementId\" use=\"required\"/>\n    <xsd:attribute name=\"grpId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"uiExpand\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_TLTemplate\">\n    <xsd:sequence>\n      <xsd:element name=\"tnLst\" type=\"CT_TimeNodeList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"lvl\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLTemplateList\">\n    <xsd:sequence>\n      <xsd:element name=\"tmpl\" type=\"CT_TLTemplate\" minOccurs=\"0\" maxOccurs=\"9\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLParaBuildType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"allAtOnce\"/>\n      <xsd:enumeration value=\"p\"/>\n      <xsd:enumeration value=\"cust\"/>\n      <xsd:enumeration value=\"whole\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLBuildParagraph\">\n    <xsd:sequence>\n      <xsd:element name=\"tmplLst\" type=\"CT_TLTemplateList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_TLBuild\"/>\n    <xsd:attribute name=\"build\" type=\"ST_TLParaBuildType\" use=\"optional\" default=\"whole\"/>\n    <xsd:attribute name=\"bldLvl\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"animBg\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoUpdateAnimBg\" type=\"xsd:boolean\" default=\"true\" use=\"optional\"/>\n    <xsd:attribute name=\"rev\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"advAuto\" type=\"ST_TLTime\" use=\"optional\" default=\"indefinite\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLDiagramBuildType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"whole\"/>\n      <xsd:enumeration value=\"depthByNode\"/>\n      <xsd:enumeration value=\"depthByBranch\"/>\n      <xsd:enumeration value=\"breadthByNode\"/>\n      <xsd:enumeration value=\"breadthByLvl\"/>\n      <xsd:enumeration value=\"cw\"/>\n      <xsd:enumeration value=\"cwIn\"/>\n      <xsd:enumeration value=\"cwOut\"/>\n      <xsd:enumeration value=\"ccw\"/>\n      <xsd:enumeration value=\"ccwIn\"/>\n      <xsd:enumeration value=\"ccwOut\"/>\n      <xsd:enumeration value=\"inByRing\"/>\n      <xsd:enumeration value=\"outByRing\"/>\n      <xsd:enumeration value=\"up\"/>\n      <xsd:enumeration value=\"down\"/>\n      <xsd:enumeration value=\"allAtOnce\"/>\n      <xsd:enumeration value=\"cust\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLBuildDiagram\">\n    <xsd:attributeGroup ref=\"AG_TLBuild\"/>\n    <xsd:attribute name=\"bld\" type=\"ST_TLDiagramBuildType\" use=\"optional\" default=\"whole\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TLOleChartBuildType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"allAtOnce\"/>\n      <xsd:enumeration value=\"series\"/>\n      <xsd:enumeration value=\"category\"/>\n      <xsd:enumeration value=\"seriesEl\"/>\n      <xsd:enumeration value=\"categoryEl\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TLOleBuildChart\">\n    <xsd:attributeGroup ref=\"AG_TLBuild\"/>\n    <xsd:attribute name=\"bld\" type=\"ST_TLOleChartBuildType\" use=\"optional\" default=\"allAtOnce\"/>\n    <xsd:attribute name=\"animBg\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TLGraphicalObjectBuild\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"bldAsOne\" type=\"CT_Empty\"/>\n      <xsd:element name=\"bldSub\" type=\"a:CT_AnimationGraphicalObjectBuildProperties\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_TLBuild\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BuildList\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"bldP\" type=\"CT_TLBuildParagraph\"/>\n      <xsd:element name=\"bldDgm\" type=\"CT_TLBuildDiagram\"/>\n      <xsd:element name=\"bldOleChart\" type=\"CT_TLOleBuildChart\"/>\n      <xsd:element name=\"bldGraphic\" type=\"CT_TLGraphicalObjectBuild\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideTiming\">\n    <xsd:sequence>\n      <xsd:element name=\"tnLst\" type=\"CT_TimeNodeList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bldLst\" type=\"CT_BuildList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Empty\"/>\n  <xsd:simpleType name=\"ST_Name\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Direction\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"horz\"/>\n      <xsd:enumeration value=\"vert\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Index\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_IndexRange\">\n    <xsd:attribute name=\"st\" type=\"ST_Index\" use=\"required\"/>\n    <xsd:attribute name=\"end\" type=\"ST_Index\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideRelationshipListEntry\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideRelationshipList\">\n    <xsd:sequence>\n      <xsd:element name=\"sld\" type=\"CT_SlideRelationshipListEntry\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomShowId\">\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_SlideListChoice\">\n    <xsd:choice>\n      <xsd:element name=\"sldAll\" type=\"CT_Empty\"/>\n      <xsd:element name=\"sldRg\" type=\"CT_IndexRange\"/>\n      <xsd:element name=\"custShow\" type=\"CT_CustomShowId\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_CustomerData\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TagsData\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomerDataList\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"custData\" type=\"CT_CustomerData\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"tags\" type=\"CT_TagsData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Extension\">\n    <xsd:sequence>\n      <xsd:any processContents=\"lax\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"xsd:token\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ExtensionList\">\n    <xsd:sequence>\n      <xsd:element name=\"ext\" type=\"CT_Extension\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_ExtensionList\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExtensionListModify\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"mod\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommentAuthor\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"ST_Name\" use=\"required\"/>\n    <xsd:attribute name=\"initials\" type=\"ST_Name\" use=\"required\"/>\n    <xsd:attribute name=\"lastIdx\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"clrIdx\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommentAuthorList\">\n    <xsd:sequence>\n      <xsd:element name=\"cmAuthor\" type=\"CT_CommentAuthor\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"cmAuthorLst\" type=\"CT_CommentAuthorList\"/>\n  <xsd:complexType name=\"CT_Comment\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"a:CT_Point2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"text\" type=\"xsd:string\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"authorId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"dt\" type=\"xsd:dateTime\" use=\"optional\"/>\n    <xsd:attribute name=\"idx\" type=\"ST_Index\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommentList\">\n    <xsd:sequence>\n      <xsd:element name=\"cm\" type=\"CT_Comment\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"cmLst\" type=\"CT_CommentList\"/>\n  <xsd:attributeGroup name=\"AG_Ole\">\n    <xsd:attribute name=\"spid\" type=\"a:ST_ShapeID\" use=\"optional\"/>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"showAsIcon\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"imgW\" type=\"a:ST_PositiveCoordinate32\" use=\"optional\"/>\n    <xsd:attribute name=\"imgH\" type=\"a:ST_PositiveCoordinate32\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:simpleType name=\"ST_OleObjectFollowColorScheme\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"full\"/>\n      <xsd:enumeration value=\"textAndBackground\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_OleObjectEmbed\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"followColorScheme\" type=\"ST_OleObjectFollowColorScheme\" use=\"optional\"\n      default=\"none\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleObjectLink\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"updateAutomatic\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleObject\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n        <xsd:element name=\"embed\" type=\"CT_OleObjectEmbed\"/>\n        <xsd:element name=\"link\" type=\"CT_OleObjectLink\"/>\n      </xsd:choice>\n      <xsd:element name=\"pic\" type=\"CT_Picture\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Ole\"/>\n    <xsd:attribute name=\"progId\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:element name=\"oleObj\" type=\"CT_OleObject\"/>\n  <xsd:complexType name=\"CT_Control\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pic\" type=\"CT_Picture\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Ole\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ControlList\">\n    <xsd:sequence>\n      <xsd:element name=\"control\" type=\"CT_Control\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SlideId\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"256\"/>\n      <xsd:maxExclusive value=\"2147483648\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SlideIdListEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"ST_SlideId\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideIdList\">\n    <xsd:sequence>\n      <xsd:element name=\"sldId\" type=\"CT_SlideIdListEntry\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SlideMasterId\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"2147483648\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SlideMasterIdListEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"ST_SlideMasterId\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideMasterIdList\">\n    <xsd:sequence>\n      <xsd:element name=\"sldMasterId\" type=\"CT_SlideMasterIdListEntry\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NotesMasterIdListEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NotesMasterIdList\">\n    <xsd:sequence>\n      <xsd:element name=\"notesMasterId\" type=\"CT_NotesMasterIdListEntry\" minOccurs=\"0\" maxOccurs=\"1\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HandoutMasterIdListEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HandoutMasterIdList\">\n    <xsd:sequence>\n      <xsd:element name=\"handoutMasterId\" type=\"CT_HandoutMasterIdListEntry\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EmbeddedFontDataId\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EmbeddedFontListEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"font\" type=\"a:CT_TextFont\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"regular\" type=\"CT_EmbeddedFontDataId\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bold\" type=\"CT_EmbeddedFontDataId\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"italic\" type=\"CT_EmbeddedFontDataId\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"boldItalic\" type=\"CT_EmbeddedFontDataId\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EmbeddedFontList\">\n    <xsd:sequence>\n      <xsd:element name=\"embeddedFont\" type=\"CT_EmbeddedFontListEntry\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SmartTags\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomShow\">\n    <xsd:sequence>\n      <xsd:element name=\"sldLst\" type=\"CT_SlideRelationshipList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"ST_Name\" use=\"required\"/>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomShowList\">\n    <xsd:sequence>\n      <xsd:element name=\"custShow\" type=\"CT_CustomShow\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PhotoAlbumLayout\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"fitToSlide\"/>\n      <xsd:enumeration value=\"1pic\"/>\n      <xsd:enumeration value=\"2pic\"/>\n      <xsd:enumeration value=\"4pic\"/>\n      <xsd:enumeration value=\"1picTitle\"/>\n      <xsd:enumeration value=\"2picTitle\"/>\n      <xsd:enumeration value=\"4picTitle\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PhotoAlbumFrameShape\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"frameStyle1\"/>\n      <xsd:enumeration value=\"frameStyle2\"/>\n      <xsd:enumeration value=\"frameStyle3\"/>\n      <xsd:enumeration value=\"frameStyle4\"/>\n      <xsd:enumeration value=\"frameStyle5\"/>\n      <xsd:enumeration value=\"frameStyle6\"/>\n      <xsd:enumeration value=\"frameStyle7\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PhotoAlbum\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bw\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showCaptions\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"layout\" type=\"ST_PhotoAlbumLayout\" use=\"optional\" default=\"fitToSlide\"/>\n    <xsd:attribute name=\"frame\" type=\"ST_PhotoAlbumFrameShape\" use=\"optional\" default=\"frameStyle1\"\n    />\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SlideSizeCoordinate\">\n    <xsd:restriction base=\"a:ST_PositiveCoordinate32\">\n      <xsd:minInclusive value=\"914400\"/>\n      <xsd:maxInclusive value=\"51206400\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_SlideSizeType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"screen4x3\"/>\n      <xsd:enumeration value=\"letter\"/>\n      <xsd:enumeration value=\"A4\"/>\n      <xsd:enumeration value=\"35mm\"/>\n      <xsd:enumeration value=\"overhead\"/>\n      <xsd:enumeration value=\"banner\"/>\n      <xsd:enumeration value=\"custom\"/>\n      <xsd:enumeration value=\"ledger\"/>\n      <xsd:enumeration value=\"A3\"/>\n      <xsd:enumeration value=\"B4ISO\"/>\n      <xsd:enumeration value=\"B5ISO\"/>\n      <xsd:enumeration value=\"B4JIS\"/>\n      <xsd:enumeration value=\"B5JIS\"/>\n      <xsd:enumeration value=\"hagakiCard\"/>\n      <xsd:enumeration value=\"screen16x9\"/>\n      <xsd:enumeration value=\"screen16x10\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SlideSize\">\n    <xsd:attribute name=\"cx\" type=\"ST_SlideSizeCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"cy\" type=\"ST_SlideSizeCoordinate\" use=\"required\"/>\n    <xsd:attribute name=\"type\" type=\"ST_SlideSizeType\" use=\"optional\" default=\"custom\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Kinsoku\">\n    <xsd:attribute name=\"lang\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"invalStChars\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"invalEndChars\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BookmarkIdSeed\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"1\"/>\n      <xsd:maxExclusive value=\"2147483648\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ModifyVerifier\">\n    <xsd:attribute name=\"algorithmName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"hashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"saltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"spinValue\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptProviderType\" type=\"s:ST_CryptProv\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptAlgorithmClass\" type=\"s:ST_AlgClass\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptAlgorithmType\" type=\"s:ST_AlgType\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptAlgorithmSid\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"spinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"saltData\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"hashData\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptProvider\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"algIdExt\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"algIdExtSource\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptProviderTypeExt\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"cryptProviderTypeExtSource\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Presentation\">\n    <xsd:sequence>\n      <xsd:element name=\"sldMasterIdLst\" type=\"CT_SlideMasterIdList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"notesMasterIdLst\" type=\"CT_NotesMasterIdList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"handoutMasterIdLst\" type=\"CT_HandoutMasterIdList\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"sldIdLst\" type=\"CT_SlideIdList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sldSz\" type=\"CT_SlideSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"notesSz\" type=\"a:CT_PositiveSize2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smartTags\" type=\"CT_SmartTags\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"embeddedFontLst\" type=\"CT_EmbeddedFontList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custShowLst\" type=\"CT_CustomShowList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"photoAlbum\" type=\"CT_PhotoAlbum\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custDataLst\" type=\"CT_CustomerDataList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"kinsoku\" type=\"CT_Kinsoku\" minOccurs=\"0\"/>\n      <xsd:element name=\"defaultTextStyle\" type=\"a:CT_TextListStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"modifyVerifier\" type=\"CT_ModifyVerifier\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"serverZoom\" type=\"a:ST_Percentage\" use=\"optional\" default=\"50%\"/>\n    <xsd:attribute name=\"firstSlideNum\" type=\"xsd:int\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"showSpecialPlsOnTitleSld\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"rtl\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"removePersonalInfoOnSave\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"compatMode\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"strictFirstAndLastChars\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"embedTrueTypeFonts\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"saveSubsetFonts\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoCompressPictures\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"bookmarkIdSeed\" type=\"ST_BookmarkIdSeed\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"conformance\" type=\"s:ST_ConformanceClass\"/>\n  </xsd:complexType>\n  <xsd:element name=\"presentation\" type=\"CT_Presentation\"/>\n  <xsd:complexType name=\"CT_HtmlPublishProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SlideListChoice\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"showSpeakerNotes\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"target\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"title\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_WebColorType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"browser\"/>\n      <xsd:enumeration value=\"presentationText\"/>\n      <xsd:enumeration value=\"presentationAccent\"/>\n      <xsd:enumeration value=\"whiteTextOnBlack\"/>\n      <xsd:enumeration value=\"blackTextOnWhite\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_WebScreenSize\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"544x376\"/>\n      <xsd:enumeration value=\"640x480\"/>\n      <xsd:enumeration value=\"720x512\"/>\n      <xsd:enumeration value=\"800x600\"/>\n      <xsd:enumeration value=\"1024x768\"/>\n      <xsd:enumeration value=\"1152x882\"/>\n      <xsd:enumeration value=\"1152x900\"/>\n      <xsd:enumeration value=\"1280x1024\"/>\n      <xsd:enumeration value=\"1600x1200\"/>\n      <xsd:enumeration value=\"1800x1400\"/>\n      <xsd:enumeration value=\"1920x1200\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_WebEncoding\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_WebProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"showAnimation\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"resizeGraphics\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"allowPng\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"relyOnVml\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"organizeInFolders\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"useLongFilenames\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"imgSz\" type=\"ST_WebScreenSize\" use=\"optional\" default=\"800x600\"/>\n    <xsd:attribute name=\"encoding\" type=\"ST_WebEncoding\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"clr\" type=\"ST_WebColorType\" use=\"optional\" default=\"whiteTextOnBlack\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PrintWhat\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"slides\"/>\n      <xsd:enumeration value=\"handouts1\"/>\n      <xsd:enumeration value=\"handouts2\"/>\n      <xsd:enumeration value=\"handouts3\"/>\n      <xsd:enumeration value=\"handouts4\"/>\n      <xsd:enumeration value=\"handouts6\"/>\n      <xsd:enumeration value=\"handouts9\"/>\n      <xsd:enumeration value=\"notes\"/>\n      <xsd:enumeration value=\"outline\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PrintColorMode\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"bw\"/>\n      <xsd:enumeration value=\"gray\"/>\n      <xsd:enumeration value=\"clr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PrintProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prnWhat\" type=\"ST_PrintWhat\" use=\"optional\" default=\"slides\"/>\n    <xsd:attribute name=\"clrMode\" type=\"ST_PrintColorMode\" use=\"optional\" default=\"clr\"/>\n    <xsd:attribute name=\"hiddenSlides\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"scaleToFitPaper\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"frameSlides\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShowInfoBrowse\">\n    <xsd:attribute name=\"showScrollbar\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShowInfoKiosk\">\n    <xsd:attribute name=\"restart\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"300000\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ShowType\">\n    <xsd:choice>\n      <xsd:element name=\"present\" type=\"CT_Empty\"/>\n      <xsd:element name=\"browse\" type=\"CT_ShowInfoBrowse\"/>\n      <xsd:element name=\"kiosk\" type=\"CT_ShowInfoKiosk\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_ShowProperties\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:group ref=\"EG_ShowType\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_SlideListChoice\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"penClr\" type=\"a:CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"loop\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showNarration\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showAnimation\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"useTimings\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PresentationProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"htmlPubPr\" type=\"CT_HtmlPublishProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"webPr\" type=\"CT_WebProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"prnPr\" type=\"CT_PrintProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"showPr\" type=\"CT_ShowProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrMru\" type=\"a:CT_ColorMRU\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"presentationPr\" type=\"CT_PresentationProperties\"/>\n  <xsd:complexType name=\"CT_HeaderFooter\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"sldNum\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"hdr\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"ftr\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"dt\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PlaceholderType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"title\"/>\n      <xsd:enumeration value=\"body\"/>\n      <xsd:enumeration value=\"ctrTitle\"/>\n      <xsd:enumeration value=\"subTitle\"/>\n      <xsd:enumeration value=\"dt\"/>\n      <xsd:enumeration value=\"sldNum\"/>\n      <xsd:enumeration value=\"ftr\"/>\n      <xsd:enumeration value=\"hdr\"/>\n      <xsd:enumeration value=\"obj\"/>\n      <xsd:enumeration value=\"chart\"/>\n      <xsd:enumeration value=\"tbl\"/>\n      <xsd:enumeration value=\"clipArt\"/>\n      <xsd:enumeration value=\"dgm\"/>\n      <xsd:enumeration value=\"media\"/>\n      <xsd:enumeration value=\"sldImg\"/>\n      <xsd:enumeration value=\"pic\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PlaceholderSize\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"full\"/>\n      <xsd:enumeration value=\"half\"/>\n      <xsd:enumeration value=\"quarter\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Placeholder\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_PlaceholderType\" use=\"optional\" default=\"obj\"/>\n    <xsd:attribute name=\"orient\" type=\"ST_Direction\" use=\"optional\" default=\"horz\"/>\n    <xsd:attribute name=\"sz\" type=\"ST_PlaceholderSize\" use=\"optional\" default=\"full\"/>\n    <xsd:attribute name=\"idx\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"hasCustomPrompt\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ApplicationNonVisualDrawingProps\">\n    <xsd:sequence>\n      <xsd:element name=\"ph\" type=\"CT_Placeholder\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"a:EG_Media\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custDataLst\" type=\"CT_CustomerDataList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"isPhoto\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"userDrawn\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvSpPr\" type=\"a:CT_NonVisualDrawingShapeProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"nvPr\" type=\"CT_ApplicationNonVisualDrawingProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Shape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvSpPr\" type=\"CT_ShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txBody\" type=\"a:CT_TextBody\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"useBgFill\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConnectorNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvCxnSpPr\" type=\"a:CT_NonVisualConnectorProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"nvPr\" type=\"CT_ApplicationNonVisualDrawingProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Connector\">\n    <xsd:sequence>\n      <xsd:element name=\"nvCxnSpPr\" type=\"CT_ConnectorNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PictureNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvPicPr\" type=\"a:CT_NonVisualPictureProperties\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"nvPr\" type=\"CT_ApplicationNonVisualDrawingProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Picture\">\n    <xsd:sequence>\n      <xsd:element name=\"nvPicPr\" type=\"CT_PictureNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"blipFill\" type=\"a:CT_BlipFillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spPr\" type=\"a:CT_ShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"a:CT_ShapeStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObjectFrameNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGraphicFramePr\" type=\"a:CT_NonVisualGraphicFrameProperties\"\n        minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"nvPr\" type=\"CT_ApplicationNonVisualDrawingProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GraphicalObjectFrame\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGraphicFramePr\" type=\"CT_GraphicalObjectFrameNonVisual\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"xfrm\" type=\"a:CT_Transform2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"a:graphic\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bwMode\" type=\"a:ST_BlackWhiteMode\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShapeNonVisual\">\n    <xsd:sequence>\n      <xsd:element name=\"cNvPr\" type=\"a:CT_NonVisualDrawingProps\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cNvGrpSpPr\" type=\"a:CT_NonVisualGroupDrawingShapeProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"nvPr\" type=\"CT_ApplicationNonVisualDrawingProps\" minOccurs=\"1\"\n        maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupShape\">\n    <xsd:sequence>\n      <xsd:element name=\"nvGrpSpPr\" type=\"CT_GroupShapeNonVisual\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"grpSpPr\" type=\"a:CT_GroupShapeProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"sp\" type=\"CT_Shape\"/>\n        <xsd:element name=\"grpSp\" type=\"CT_GroupShape\"/>\n        <xsd:element name=\"graphicFrame\" type=\"CT_GraphicalObjectFrame\"/>\n        <xsd:element name=\"cxnSp\" type=\"CT_Connector\"/>\n        <xsd:element name=\"pic\" type=\"CT_Picture\"/>\n        <xsd:element name=\"contentPart\" type=\"CT_Rel\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rel\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_TopLevelSlide\">\n    <xsd:sequence>\n      <xsd:element name=\"clrMap\" type=\"a:CT_ColorMapping\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:group name=\"EG_ChildSlide\">\n    <xsd:sequence>\n      <xsd:element name=\"clrMapOvr\" type=\"a:CT_ColorMappingOverride\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:attributeGroup name=\"AG_ChildSlide\">\n    <xsd:attribute name=\"showMasterSp\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showMasterPhAnim\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_BackgroundProperties\">\n    <xsd:sequence>\n      <xsd:group ref=\"a:EG_FillProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"a:EG_EffectProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"shadeToTitle\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_Background\">\n    <xsd:choice>\n      <xsd:element name=\"bgPr\" type=\"CT_BackgroundProperties\"/>\n      <xsd:element name=\"bgRef\" type=\"a:CT_StyleMatrixReference\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_Background\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_Background\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"bwMode\" type=\"a:ST_BlackWhiteMode\" use=\"optional\" default=\"white\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommonSlideData\">\n    <xsd:sequence>\n      <xsd:element name=\"bg\" type=\"CT_Background\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"spTree\" type=\"CT_GroupShape\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"custDataLst\" type=\"CT_CustomerDataList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"controls\" type=\"CT_ControlList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Slide\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cSld\" type=\"CT_CommonSlideData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ChildSlide\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"transition\" type=\"CT_SlideTransition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"timing\" type=\"CT_SlideTiming\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_ChildSlide\"/>\n    <xsd:attribute name=\"show\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:element name=\"sld\" type=\"CT_Slide\"/>\n  <xsd:simpleType name=\"ST_SlideLayoutType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"title\"/>\n      <xsd:enumeration value=\"tx\"/>\n      <xsd:enumeration value=\"twoColTx\"/>\n      <xsd:enumeration value=\"tbl\"/>\n      <xsd:enumeration value=\"txAndChart\"/>\n      <xsd:enumeration value=\"chartAndTx\"/>\n      <xsd:enumeration value=\"dgm\"/>\n      <xsd:enumeration value=\"chart\"/>\n      <xsd:enumeration value=\"txAndClipArt\"/>\n      <xsd:enumeration value=\"clipArtAndTx\"/>\n      <xsd:enumeration value=\"titleOnly\"/>\n      <xsd:enumeration value=\"blank\"/>\n      <xsd:enumeration value=\"txAndObj\"/>\n      <xsd:enumeration value=\"objAndTx\"/>\n      <xsd:enumeration value=\"objOnly\"/>\n      <xsd:enumeration value=\"obj\"/>\n      <xsd:enumeration value=\"txAndMedia\"/>\n      <xsd:enumeration value=\"mediaAndTx\"/>\n      <xsd:enumeration value=\"objOverTx\"/>\n      <xsd:enumeration value=\"txOverObj\"/>\n      <xsd:enumeration value=\"txAndTwoObj\"/>\n      <xsd:enumeration value=\"twoObjAndTx\"/>\n      <xsd:enumeration value=\"twoObjOverTx\"/>\n      <xsd:enumeration value=\"fourObj\"/>\n      <xsd:enumeration value=\"vertTx\"/>\n      <xsd:enumeration value=\"clipArtAndVertTx\"/>\n      <xsd:enumeration value=\"vertTitleAndTx\"/>\n      <xsd:enumeration value=\"vertTitleAndTxOverChart\"/>\n      <xsd:enumeration value=\"twoObj\"/>\n      <xsd:enumeration value=\"objAndTwoObj\"/>\n      <xsd:enumeration value=\"twoObjAndObj\"/>\n      <xsd:enumeration value=\"cust\"/>\n      <xsd:enumeration value=\"secHead\"/>\n      <xsd:enumeration value=\"twoTxTwoObj\"/>\n      <xsd:enumeration value=\"objTx\"/>\n      <xsd:enumeration value=\"picTx\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SlideLayout\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cSld\" type=\"CT_CommonSlideData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ChildSlide\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"transition\" type=\"CT_SlideTransition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"timing\" type=\"CT_SlideTiming\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hf\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_ChildSlide\"/>\n    <xsd:attribute name=\"matchingName\" type=\"xsd:string\" use=\"optional\" default=\"\"/>\n    <xsd:attribute name=\"type\" type=\"ST_SlideLayoutType\" use=\"optional\" default=\"cust\"/>\n    <xsd:attribute name=\"preserve\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"userDrawn\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:element name=\"sldLayout\" type=\"CT_SlideLayout\"/>\n  <xsd:complexType name=\"CT_SlideMasterTextStyles\">\n    <xsd:sequence>\n      <xsd:element name=\"titleStyle\" type=\"a:CT_TextListStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bodyStyle\" type=\"a:CT_TextListStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"otherStyle\" type=\"a:CT_TextListStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SlideLayoutId\">\n    <xsd:restriction base=\"xsd:unsignedInt\">\n      <xsd:minInclusive value=\"2147483648\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SlideLayoutIdListEntry\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"ST_SlideLayoutId\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideLayoutIdList\">\n    <xsd:sequence>\n      <xsd:element name=\"sldLayoutId\" type=\"CT_SlideLayoutIdListEntry\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideMaster\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cSld\" type=\"CT_CommonSlideData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TopLevelSlide\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sldLayoutIdLst\" type=\"CT_SlideLayoutIdList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"transition\" type=\"CT_SlideTransition\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"timing\" type=\"CT_SlideTiming\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hf\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"txStyles\" type=\"CT_SlideMasterTextStyles\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"preserve\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:element name=\"sldMaster\" type=\"CT_SlideMaster\"/>\n  <xsd:complexType name=\"CT_HandoutMaster\">\n    <xsd:sequence>\n      <xsd:element name=\"cSld\" type=\"CT_CommonSlideData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TopLevelSlide\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hf\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"handoutMaster\" type=\"CT_HandoutMaster\"/>\n  <xsd:complexType name=\"CT_NotesMaster\">\n    <xsd:sequence>\n      <xsd:element name=\"cSld\" type=\"CT_CommonSlideData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_TopLevelSlide\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hf\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"notesStyle\" type=\"a:CT_TextListStyle\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"notesMaster\" type=\"CT_NotesMaster\"/>\n  <xsd:complexType name=\"CT_NotesSlide\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cSld\" type=\"CT_CommonSlideData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ChildSlide\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionListModify\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_ChildSlide\"/>\n  </xsd:complexType>\n  <xsd:element name=\"notes\" type=\"CT_NotesSlide\"/>\n  <xsd:complexType name=\"CT_SlideSyncProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"serverSldId\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"serverSldModifiedTime\" type=\"xsd:dateTime\" use=\"required\"/>\n    <xsd:attribute name=\"clientInsertedTime\" type=\"xsd:dateTime\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"sldSyncPr\" type=\"CT_SlideSyncProperties\"/>\n  <xsd:complexType name=\"CT_StringTag\">\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TagList\">\n    <xsd:sequence>\n      <xsd:element name=\"tag\" type=\"CT_StringTag\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"tagLst\" type=\"CT_TagList\"/>\n  <xsd:simpleType name=\"ST_SplitterBarState\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"minimized\"/>\n      <xsd:enumeration value=\"restored\"/>\n      <xsd:enumeration value=\"maximized\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ViewType\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:enumeration value=\"sldView\"/>\n      <xsd:enumeration value=\"sldMasterView\"/>\n      <xsd:enumeration value=\"notesView\"/>\n      <xsd:enumeration value=\"handoutView\"/>\n      <xsd:enumeration value=\"notesMasterView\"/>\n      <xsd:enumeration value=\"outlineView\"/>\n      <xsd:enumeration value=\"sldSorterView\"/>\n      <xsd:enumeration value=\"sldThumbnailView\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_NormalViewPortion\">\n    <xsd:attribute name=\"sz\" type=\"a:ST_PositiveFixedPercentage\" use=\"required\"/>\n    <xsd:attribute name=\"autoAdjust\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NormalViewProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"restoredLeft\" type=\"CT_NormalViewPortion\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"restoredTop\" type=\"CT_NormalViewPortion\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"showOutlineIcons\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"snapVertSplitter\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"vertBarState\" type=\"ST_SplitterBarState\" use=\"optional\" default=\"restored\"/>\n    <xsd:attribute name=\"horzBarState\" type=\"ST_SplitterBarState\" use=\"optional\" default=\"restored\"/>\n    <xsd:attribute name=\"preferSingleView\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommonViewProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"scale\" type=\"a:CT_Scale2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"origin\" type=\"a:CT_Point2D\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"varScale\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NotesTextViewProperties\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cViewPr\" type=\"CT_CommonViewProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OutlineViewSlideEntry\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n    <xsd:attribute name=\"collapse\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OutlineViewSlideList\">\n    <xsd:sequence>\n      <xsd:element name=\"sld\" type=\"CT_OutlineViewSlideEntry\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OutlineViewProperties\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cViewPr\" type=\"CT_CommonViewProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sldLst\" type=\"CT_OutlineViewSlideList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideSorterViewProperties\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"cViewPr\" type=\"CT_CommonViewProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"showFormatting\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Guide\">\n    <xsd:attribute name=\"orient\" type=\"ST_Direction\" use=\"optional\" default=\"vert\"/>\n    <xsd:attribute name=\"pos\" type=\"a:ST_Coordinate32\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GuideList\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"guide\" type=\"CT_Guide\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommonSlideViewProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"cViewPr\" type=\"CT_CommonViewProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"guideLst\" type=\"CT_GuideList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"snapToGrid\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"snapToObjects\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showGuides\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SlideViewProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"cSldViewPr\" type=\"CT_CommonSlideViewProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NotesViewProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"cSldViewPr\" type=\"CT_CommonSlideViewProperties\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ViewProperties\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"normalViewPr\" type=\"CT_NormalViewProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"slideViewPr\" type=\"CT_SlideViewProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"outlineViewPr\" type=\"CT_OutlineViewProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"notesTextViewPr\" type=\"CT_NotesTextViewProperties\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"sorterViewPr\" type=\"CT_SlideSorterViewProperties\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"notesViewPr\" type=\"CT_NotesViewProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gridSpacing\" type=\"a:CT_PositiveSize2D\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"lastView\" type=\"ST_ViewType\" use=\"optional\" default=\"sldView\"/>\n    <xsd:attribute name=\"showComments\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:element name=\"viewPr\" type=\"CT_ViewProperties\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/characteristics\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/characteristics\"\n  elementFormDefault=\"qualified\">\n  <xsd:complexType name=\"CT_AdditionalCharacteristics\">\n    <xsd:sequence>\n      <xsd:element name=\"characteristic\" type=\"CT_Characteristic\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Characteristic\">\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"relation\" type=\"ST_Relation\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"vocabulary\" type=\"xsd:anyURI\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Relation\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"ge\"/>\n      <xsd:enumeration value=\"le\"/>\n      <xsd:enumeration value=\"gt\"/>\n      <xsd:enumeration value=\"lt\"/>\n      <xsd:enumeration value=\"eq\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"additionalCharacteristics\" type=\"CT_AdditionalCharacteristics\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/bibliography\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/bibliography\"\n  elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:simpleType name=\"ST_SourceType\">\n    <xsd:restriction base=\"s:ST_String\">\n      <xsd:enumeration value=\"ArticleInAPeriodical\"/>\n      <xsd:enumeration value=\"Book\"/>\n      <xsd:enumeration value=\"BookSection\"/>\n      <xsd:enumeration value=\"JournalArticle\"/>\n      <xsd:enumeration value=\"ConferenceProceedings\"/>\n      <xsd:enumeration value=\"Report\"/>\n      <xsd:enumeration value=\"SoundRecording\"/>\n      <xsd:enumeration value=\"Performance\"/>\n      <xsd:enumeration value=\"Art\"/>\n      <xsd:enumeration value=\"DocumentFromInternetSite\"/>\n      <xsd:enumeration value=\"InternetSite\"/>\n      <xsd:enumeration value=\"Film\"/>\n      <xsd:enumeration value=\"Interview\"/>\n      <xsd:enumeration value=\"Patent\"/>\n      <xsd:enumeration value=\"ElectronicSource\"/>\n      <xsd:enumeration value=\"Case\"/>\n      <xsd:enumeration value=\"Misc\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_NameListType\">\n    <xsd:sequence>\n      <xsd:element name=\"Person\" type=\"CT_PersonType\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PersonType\">\n    <xsd:sequence>\n      <xsd:element name=\"Last\" type=\"s:ST_String\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"First\" type=\"s:ST_String\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"Middle\" type=\"s:ST_String\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NameType\">\n    <xsd:sequence>\n      <xsd:element name=\"NameList\" type=\"CT_NameListType\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NameOrCorporateType\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n        <xsd:element name=\"NameList\" type=\"CT_NameListType\" minOccurs=\"1\" maxOccurs=\"1\"/>\n        <xsd:element name=\"Corporate\" minOccurs=\"1\" maxOccurs=\"1\" type=\"s:ST_String\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AuthorType\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"Artist\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Author\" type=\"CT_NameOrCorporateType\"/>\n        <xsd:element name=\"BookAuthor\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Compiler\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Composer\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Conductor\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Counsel\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Director\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Editor\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Interviewee\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Interviewer\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Inventor\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Performer\" type=\"CT_NameOrCorporateType\"/>\n        <xsd:element name=\"ProducerName\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Translator\" type=\"CT_NameType\"/>\n        <xsd:element name=\"Writer\" type=\"CT_NameType\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SourceType\">\n    <xsd:sequence>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"AbbreviatedCaseNumber\" type=\"s:ST_String\"/>\n        <xsd:element name=\"AlbumTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Author\" type=\"CT_AuthorType\"/>\n        <xsd:element name=\"BookTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Broadcaster\" type=\"s:ST_String\"/>\n        <xsd:element name=\"BroadcastTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"CaseNumber\" type=\"s:ST_String\"/>\n        <xsd:element name=\"ChapterNumber\" type=\"s:ST_String\"/>\n        <xsd:element name=\"City\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Comments\" type=\"s:ST_String\"/>\n        <xsd:element name=\"ConferenceName\" type=\"s:ST_String\"/>\n        <xsd:element name=\"CountryRegion\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Court\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Day\" type=\"s:ST_String\"/>\n        <xsd:element name=\"DayAccessed\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Department\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Distributor\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Edition\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Guid\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Institution\" type=\"s:ST_String\"/>\n        <xsd:element name=\"InternetSiteTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Issue\" type=\"s:ST_String\"/>\n        <xsd:element name=\"JournalName\" type=\"s:ST_String\"/>\n        <xsd:element name=\"LCID\" type=\"s:ST_Lang\"/>\n        <xsd:element name=\"Medium\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Month\" type=\"s:ST_String\"/>\n        <xsd:element name=\"MonthAccessed\" type=\"s:ST_String\"/>\n        <xsd:element name=\"NumberVolumes\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Pages\" type=\"s:ST_String\"/>\n        <xsd:element name=\"PatentNumber\" type=\"s:ST_String\"/>\n        <xsd:element name=\"PeriodicalTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"ProductionCompany\" type=\"s:ST_String\"/>\n        <xsd:element name=\"PublicationTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Publisher\" type=\"s:ST_String\"/>\n        <xsd:element name=\"RecordingNumber\" type=\"s:ST_String\"/>\n        <xsd:element name=\"RefOrder\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Reporter\" type=\"s:ST_String\"/>\n        <xsd:element name=\"SourceType\" type=\"ST_SourceType\"/>\n        <xsd:element name=\"ShortTitle\" type=\"s:ST_String\"/>\n        <xsd:element name=\"StandardNumber\" type=\"s:ST_String\"/>\n        <xsd:element name=\"StateProvince\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Station\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Tag\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Theater\" type=\"s:ST_String\"/>\n        <xsd:element name=\"ThesisType\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Title\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Type\" type=\"s:ST_String\"/>\n        <xsd:element name=\"URL\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Version\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Volume\" type=\"s:ST_String\"/>\n        <xsd:element name=\"Year\" type=\"s:ST_String\"/>\n        <xsd:element name=\"YearAccessed\" type=\"s:ST_String\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"Sources\" type=\"CT_Sources\"/>\n  <xsd:complexType name=\"CT_Sources\">\n    <xsd:sequence>\n      <xsd:element name=\"Source\" type=\"CT_SourceType\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"SelectedStyle\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"StyleName\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"URI\" type=\"s:ST_String\"/>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  elementFormDefault=\"qualified\">\n  <xsd:simpleType name=\"ST_Lang\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HexColorRGB\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"3\" fixed=\"true\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Panose\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"10\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CalendarType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"gregorian\"/>\n      <xsd:enumeration value=\"gregorianUs\"/>\n      <xsd:enumeration value=\"gregorianMeFrench\"/>\n      <xsd:enumeration value=\"gregorianArabic\"/>\n      <xsd:enumeration value=\"hijri\"/>\n      <xsd:enumeration value=\"hebrew\"/>\n      <xsd:enumeration value=\"taiwan\"/>\n      <xsd:enumeration value=\"japan\"/>\n      <xsd:enumeration value=\"thai\"/>\n      <xsd:enumeration value=\"korea\"/>\n      <xsd:enumeration value=\"saka\"/>\n      <xsd:enumeration value=\"gregorianXlitEnglish\"/>\n      <xsd:enumeration value=\"gregorianXlitFrench\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AlgClass\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"hash\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CryptProv\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"rsaAES\"/>\n      <xsd:enumeration value=\"rsaFull\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AlgType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"typeAny\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ColorType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Guid\">\n    <xsd:restriction base=\"xsd:token\">\n      <xsd:pattern value=\"\\{[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}\\}\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OnOff\">\n    <xsd:union memberTypes=\"xsd:boolean ST_OnOff1\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OnOff1\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"on\"/>\n      <xsd:enumeration value=\"off\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_String\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_XmlName\">\n    <xsd:restriction base=\"xsd:NCName\">\n      <xsd:minLength value=\"1\"/>\n      <xsd:maxLength value=\"255\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TrueFalse\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"f\"/>\n      <xsd:enumeration value=\"true\"/>\n      <xsd:enumeration value=\"false\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TrueFalseBlank\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"f\"/>\n      <xsd:enumeration value=\"true\"/>\n      <xsd:enumeration value=\"false\"/>\n      <xsd:enumeration value=\"\"/>\n      <xsd:enumeration value=\"True\"/>\n      <xsd:enumeration value=\"False\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UnsignedDecimalNumber\">\n    <xsd:restriction base=\"xsd:decimal\">\n      <xsd:minInclusive value=\"0\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TwipsMeasure\">\n    <xsd:union memberTypes=\"ST_UnsignedDecimalNumber ST_PositiveUniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VerticalAlignRun\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"baseline\"/>\n      <xsd:enumeration value=\"superscript\"/>\n      <xsd:enumeration value=\"subscript\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Xstring\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_XAlign\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"inside\"/>\n      <xsd:enumeration value=\"outside\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_YAlign\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"inline\"/>\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"inside\"/>\n      <xsd:enumeration value=\"outside\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConformanceClass\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"strict\"/>\n      <xsd:enumeration value=\"transitional\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UniversalMeasure\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"-?[0-9]+(\\.[0-9]+)?(mm|cm|in|pt|pc|pi)\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositiveUniversalMeasure\">\n    <xsd:restriction base=\"ST_UniversalMeasure\">\n      <xsd:pattern value=\"[0-9]+(\\.[0-9]+)?(mm|cm|in|pt|pc|pi)\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Percentage\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"-?[0-9]+(\\.[0-9]+)?%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FixedPercentage\">\n    <xsd:restriction base=\"ST_Percentage\">\n      <xsd:pattern value=\"-?((100)|([0-9][0-9]?))(\\.[0-9][0-9]?)?%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositivePercentage\">\n    <xsd:restriction base=\"ST_Percentage\">\n      <xsd:pattern value=\"[0-9]+(\\.[0-9]+)?%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PositiveFixedPercentage\">\n    <xsd:restriction base=\"ST_Percentage\">\n      <xsd:pattern value=\"((100)|([0-9][0-9]?))(\\.[0-9][0-9]?)?%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/customXml\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/customXml\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:complexType name=\"CT_DatastoreSchemaRef\">\n    <xsd:attribute name=\"uri\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DatastoreSchemaRefs\">\n    <xsd:sequence>\n      <xsd:element name=\"schemaRef\" type=\"CT_DatastoreSchemaRef\" minOccurs=\"0\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DatastoreItem\">\n    <xsd:sequence>\n      <xsd:element name=\"schemaRefs\" type=\"CT_DatastoreSchemaRefs\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"itemID\" type=\"s:ST_Guid\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"datastoreItem\" type=\"CT_DatastoreItem\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/schemaLibrary/2006/main\"\n  targetNamespace=\"http://schemas.openxmlformats.org/schemaLibrary/2006/main\"\n  attributeFormDefault=\"qualified\" elementFormDefault=\"qualified\">\n  <xsd:complexType name=\"CT_Schema\">\n    <xsd:attribute name=\"uri\" type=\"xsd:string\" default=\"\"/>\n    <xsd:attribute name=\"manifestLocation\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"schemaLocation\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"schemaLanguage\" type=\"xsd:token\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SchemaLibrary\">\n    <xsd:sequence>\n      <xsd:element name=\"schema\" type=\"CT_Schema\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"schemaLibrary\" type=\"CT_SchemaLibrary\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/custom-properties\"\n  xmlns:vt=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/custom-properties\"\n  blockDefault=\"#all\" elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"\n    schemaLocation=\"shared-documentPropertiesVariantTypes.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:element name=\"Properties\" type=\"CT_Properties\"/>\n  <xsd:complexType name=\"CT_Properties\">\n    <xsd:sequence>\n      <xsd:element name=\"property\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Property\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Property\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element ref=\"vt:vector\"/>\n      <xsd:element ref=\"vt:array\"/>\n      <xsd:element ref=\"vt:blob\"/>\n      <xsd:element ref=\"vt:oblob\"/>\n      <xsd:element ref=\"vt:empty\"/>\n      <xsd:element ref=\"vt:null\"/>\n      <xsd:element ref=\"vt:i1\"/>\n      <xsd:element ref=\"vt:i2\"/>\n      <xsd:element ref=\"vt:i4\"/>\n      <xsd:element ref=\"vt:i8\"/>\n      <xsd:element ref=\"vt:int\"/>\n      <xsd:element ref=\"vt:ui1\"/>\n      <xsd:element ref=\"vt:ui2\"/>\n      <xsd:element ref=\"vt:ui4\"/>\n      <xsd:element ref=\"vt:ui8\"/>\n      <xsd:element ref=\"vt:uint\"/>\n      <xsd:element ref=\"vt:r4\"/>\n      <xsd:element ref=\"vt:r8\"/>\n      <xsd:element ref=\"vt:decimal\"/>\n      <xsd:element ref=\"vt:lpstr\"/>\n      <xsd:element ref=\"vt:lpwstr\"/>\n      <xsd:element ref=\"vt:bstr\"/>\n      <xsd:element ref=\"vt:date\"/>\n      <xsd:element ref=\"vt:filetime\"/>\n      <xsd:element ref=\"vt:bool\"/>\n      <xsd:element ref=\"vt:cy\"/>\n      <xsd:element ref=\"vt:error\"/>\n      <xsd:element ref=\"vt:stream\"/>\n      <xsd:element ref=\"vt:ostream\"/>\n      <xsd:element ref=\"vt:storage\"/>\n      <xsd:element ref=\"vt:ostorage\"/>\n      <xsd:element ref=\"vt:vstream\"/>\n      <xsd:element ref=\"vt:clsid\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"fmtid\" use=\"required\" type=\"s:ST_Guid\"/>\n    <xsd:attribute name=\"pid\" use=\"required\" type=\"xsd:int\"/>\n    <xsd:attribute name=\"name\" use=\"optional\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"linkTarget\" use=\"optional\" type=\"xsd:string\"/>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/extended-properties\"\n  xmlns:vt=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/extended-properties\"\n  elementFormDefault=\"qualified\" blockDefault=\"#all\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"\n    schemaLocation=\"shared-documentPropertiesVariantTypes.xsd\"/>\n  <xsd:element name=\"Properties\" type=\"CT_Properties\"/>\n  <xsd:complexType name=\"CT_Properties\">\n    <xsd:all>\n      <xsd:element name=\"Template\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"Manager\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"Company\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"Pages\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"Words\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"Characters\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"PresentationFormat\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"Lines\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"Paragraphs\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"Slides\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"Notes\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"TotalTime\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"HiddenSlides\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"MMClips\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"ScaleCrop\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:boolean\"/>\n      <xsd:element name=\"HeadingPairs\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_VectorVariant\"/>\n      <xsd:element name=\"TitlesOfParts\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_VectorLpstr\"/>\n      <xsd:element name=\"LinksUpToDate\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:boolean\"/>\n      <xsd:element name=\"CharactersWithSpaces\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n      <xsd:element name=\"SharedDoc\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:boolean\"/>\n      <xsd:element name=\"HyperlinkBase\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"HLinks\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_VectorVariant\"/>\n      <xsd:element name=\"HyperlinksChanged\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:boolean\"/>\n      <xsd:element name=\"DigSig\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_DigSigBlob\"/>\n      <xsd:element name=\"Application\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"AppVersion\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:string\"/>\n      <xsd:element name=\"DocSecurity\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xsd:int\"/>\n    </xsd:all>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VectorVariant\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element ref=\"vt:vector\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VectorLpstr\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element ref=\"vt:vector\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DigSigBlob\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element ref=\"vt:blob\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\"\n  blockDefault=\"#all\" elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:simpleType name=\"ST_VectorBaseType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"variant\"/>\n      <xsd:enumeration value=\"i1\"/>\n      <xsd:enumeration value=\"i2\"/>\n      <xsd:enumeration value=\"i4\"/>\n      <xsd:enumeration value=\"i8\"/>\n      <xsd:enumeration value=\"ui1\"/>\n      <xsd:enumeration value=\"ui2\"/>\n      <xsd:enumeration value=\"ui4\"/>\n      <xsd:enumeration value=\"ui8\"/>\n      <xsd:enumeration value=\"r4\"/>\n      <xsd:enumeration value=\"r8\"/>\n      <xsd:enumeration value=\"lpstr\"/>\n      <xsd:enumeration value=\"lpwstr\"/>\n      <xsd:enumeration value=\"bstr\"/>\n      <xsd:enumeration value=\"date\"/>\n      <xsd:enumeration value=\"filetime\"/>\n      <xsd:enumeration value=\"bool\"/>\n      <xsd:enumeration value=\"cy\"/>\n      <xsd:enumeration value=\"error\"/>\n      <xsd:enumeration value=\"clsid\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ArrayBaseType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"variant\"/>\n      <xsd:enumeration value=\"i1\"/>\n      <xsd:enumeration value=\"i2\"/>\n      <xsd:enumeration value=\"i4\"/>\n      <xsd:enumeration value=\"int\"/>\n      <xsd:enumeration value=\"ui1\"/>\n      <xsd:enumeration value=\"ui2\"/>\n      <xsd:enumeration value=\"ui4\"/>\n      <xsd:enumeration value=\"uint\"/>\n      <xsd:enumeration value=\"r4\"/>\n      <xsd:enumeration value=\"r8\"/>\n      <xsd:enumeration value=\"decimal\"/>\n      <xsd:enumeration value=\"bstr\"/>\n      <xsd:enumeration value=\"date\"/>\n      <xsd:enumeration value=\"bool\"/>\n      <xsd:enumeration value=\"cy\"/>\n      <xsd:enumeration value=\"error\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Cy\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"\\s*[0-9]*\\.[0-9]{4}\\s*\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Error\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"\\s*0x[0-9A-Za-z]{8}\\s*\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Empty\"/>\n  <xsd:complexType name=\"CT_Null\"/>\n  <xsd:complexType name=\"CT_Vector\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element ref=\"variant\"/>\n      <xsd:element ref=\"i1\"/>\n      <xsd:element ref=\"i2\"/>\n      <xsd:element ref=\"i4\"/>\n      <xsd:element ref=\"i8\"/>\n      <xsd:element ref=\"ui1\"/>\n      <xsd:element ref=\"ui2\"/>\n      <xsd:element ref=\"ui4\"/>\n      <xsd:element ref=\"ui8\"/>\n      <xsd:element ref=\"r4\"/>\n      <xsd:element ref=\"r8\"/>\n      <xsd:element ref=\"lpstr\"/>\n      <xsd:element ref=\"lpwstr\"/>\n      <xsd:element ref=\"bstr\"/>\n      <xsd:element ref=\"date\"/>\n      <xsd:element ref=\"filetime\"/>\n      <xsd:element ref=\"bool\"/>\n      <xsd:element ref=\"cy\"/>\n      <xsd:element ref=\"error\"/>\n      <xsd:element ref=\"clsid\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"baseType\" type=\"ST_VectorBaseType\" use=\"required\"/>\n    <xsd:attribute name=\"size\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Array\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element ref=\"variant\"/>\n      <xsd:element ref=\"i1\"/>\n      <xsd:element ref=\"i2\"/>\n      <xsd:element ref=\"i4\"/>\n      <xsd:element ref=\"int\"/>\n      <xsd:element ref=\"ui1\"/>\n      <xsd:element ref=\"ui2\"/>\n      <xsd:element ref=\"ui4\"/>\n      <xsd:element ref=\"uint\"/>\n      <xsd:element ref=\"r4\"/>\n      <xsd:element ref=\"r8\"/>\n      <xsd:element ref=\"decimal\"/>\n      <xsd:element ref=\"bstr\"/>\n      <xsd:element ref=\"date\"/>\n      <xsd:element ref=\"bool\"/>\n      <xsd:element ref=\"error\"/>\n      <xsd:element ref=\"cy\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"lBounds\" type=\"xsd:int\" use=\"required\"/>\n    <xsd:attribute name=\"uBounds\" type=\"xsd:int\" use=\"required\"/>\n    <xsd:attribute name=\"baseType\" type=\"ST_ArrayBaseType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Variant\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element ref=\"variant\"/>\n      <xsd:element ref=\"vector\"/>\n      <xsd:element ref=\"array\"/>\n      <xsd:element ref=\"blob\"/>\n      <xsd:element ref=\"oblob\"/>\n      <xsd:element ref=\"empty\"/>\n      <xsd:element ref=\"null\"/>\n      <xsd:element ref=\"i1\"/>\n      <xsd:element ref=\"i2\"/>\n      <xsd:element ref=\"i4\"/>\n      <xsd:element ref=\"i8\"/>\n      <xsd:element ref=\"int\"/>\n      <xsd:element ref=\"ui1\"/>\n      <xsd:element ref=\"ui2\"/>\n      <xsd:element ref=\"ui4\"/>\n      <xsd:element ref=\"ui8\"/>\n      <xsd:element ref=\"uint\"/>\n      <xsd:element ref=\"r4\"/>\n      <xsd:element ref=\"r8\"/>\n      <xsd:element ref=\"decimal\"/>\n      <xsd:element ref=\"lpstr\"/>\n      <xsd:element ref=\"lpwstr\"/>\n      <xsd:element ref=\"bstr\"/>\n      <xsd:element ref=\"date\"/>\n      <xsd:element ref=\"filetime\"/>\n      <xsd:element ref=\"bool\"/>\n      <xsd:element ref=\"cy\"/>\n      <xsd:element ref=\"error\"/>\n      <xsd:element ref=\"stream\"/>\n      <xsd:element ref=\"ostream\"/>\n      <xsd:element ref=\"storage\"/>\n      <xsd:element ref=\"ostorage\"/>\n      <xsd:element ref=\"vstream\"/>\n      <xsd:element ref=\"clsid\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Vstream\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"xsd:base64Binary\">\n        <xsd:attribute name=\"version\" type=\"s:ST_Guid\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n  <xsd:element name=\"variant\" type=\"CT_Variant\"/>\n  <xsd:element name=\"vector\" type=\"CT_Vector\"/>\n  <xsd:element name=\"array\" type=\"CT_Array\"/>\n  <xsd:element name=\"blob\" type=\"xsd:base64Binary\"/>\n  <xsd:element name=\"oblob\" type=\"xsd:base64Binary\"/>\n  <xsd:element name=\"empty\" type=\"CT_Empty\"/>\n  <xsd:element name=\"null\" type=\"CT_Null\"/>\n  <xsd:element name=\"i1\" type=\"xsd:byte\"/>\n  <xsd:element name=\"i2\" type=\"xsd:short\"/>\n  <xsd:element name=\"i4\" type=\"xsd:int\"/>\n  <xsd:element name=\"i8\" type=\"xsd:long\"/>\n  <xsd:element name=\"int\" type=\"xsd:int\"/>\n  <xsd:element name=\"ui1\" type=\"xsd:unsignedByte\"/>\n  <xsd:element name=\"ui2\" type=\"xsd:unsignedShort\"/>\n  <xsd:element name=\"ui4\" type=\"xsd:unsignedInt\"/>\n  <xsd:element name=\"ui8\" type=\"xsd:unsignedLong\"/>\n  <xsd:element name=\"uint\" type=\"xsd:unsignedInt\"/>\n  <xsd:element name=\"r4\" type=\"xsd:float\"/>\n  <xsd:element name=\"r8\" type=\"xsd:double\"/>\n  <xsd:element name=\"decimal\" type=\"xsd:decimal\"/>\n  <xsd:element name=\"lpstr\" type=\"xsd:string\"/>\n  <xsd:element name=\"lpwstr\" type=\"xsd:string\"/>\n  <xsd:element name=\"bstr\" type=\"xsd:string\"/>\n  <xsd:element name=\"date\" type=\"xsd:dateTime\"/>\n  <xsd:element name=\"filetime\" type=\"xsd:dateTime\"/>\n  <xsd:element name=\"bool\" type=\"xsd:boolean\"/>\n  <xsd:element name=\"cy\" type=\"ST_Cy\"/>\n  <xsd:element name=\"error\" type=\"ST_Error\"/>\n  <xsd:element name=\"stream\" type=\"xsd:base64Binary\"/>\n  <xsd:element name=\"ostream\" type=\"xsd:base64Binary\"/>\n  <xsd:element name=\"storage\" type=\"xsd:base64Binary\"/>\n  <xsd:element name=\"ostorage\" type=\"xsd:base64Binary\"/>\n  <xsd:element name=\"vstream\" type=\"CT_Vstream\"/>\n  <xsd:element name=\"clsid\" type=\"s:ST_Guid\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/math\"\n  xmlns:m=\"http://schemas.openxmlformats.org/officeDocument/2006/math\"\n  xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/math\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n    schemaLocation=\"wml.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:import namespace=\"http://www.w3.org/XML/1998/namespace\" schemaLocation=\"xml.xsd\"/>\n  <xsd:simpleType name=\"ST_Integer255\">\n    <xsd:restriction base=\"xsd:integer\">\n      <xsd:minInclusive value=\"1\"/>\n      <xsd:maxInclusive value=\"255\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Integer255\">\n    <xsd:attribute name=\"val\" type=\"ST_Integer255\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Integer2\">\n    <xsd:restriction base=\"xsd:integer\">\n      <xsd:minInclusive value=\"-2\"/>\n      <xsd:maxInclusive value=\"2\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Integer2\">\n    <xsd:attribute name=\"val\" type=\"ST_Integer2\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SpacingRule\">\n    <xsd:restriction base=\"xsd:integer\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"4\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SpacingRule\">\n    <xsd:attribute name=\"val\" type=\"ST_SpacingRule\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_UnSignedInteger\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_UnSignedInteger\">\n    <xsd:attribute name=\"val\" type=\"ST_UnSignedInteger\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Char\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:maxLength value=\"1\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Char\">\n    <xsd:attribute name=\"val\" type=\"ST_Char\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OnOff\">\n    <xsd:attribute name=\"val\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_String\">\n    <xsd:attribute name=\"val\" type=\"s:ST_String\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_XAlign\">\n    <xsd:attribute name=\"val\" type=\"s:ST_XAlign\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_YAlign\">\n    <xsd:attribute name=\"val\" type=\"s:ST_YAlign\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Shp\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"centered\"/>\n      <xsd:enumeration value=\"match\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Shp\">\n    <xsd:attribute name=\"val\" type=\"ST_Shp\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"bar\"/>\n      <xsd:enumeration value=\"skw\"/>\n      <xsd:enumeration value=\"lin\"/>\n      <xsd:enumeration value=\"noBar\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FType\">\n    <xsd:attribute name=\"val\" type=\"ST_FType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LimLoc\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"undOvr\"/>\n      <xsd:enumeration value=\"subSup\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LimLoc\">\n    <xsd:attribute name=\"val\" type=\"ST_LimLoc\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TopBot\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"bot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TopBot\">\n    <xsd:attribute name=\"val\" type=\"ST_TopBot\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Script\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"roman\"/>\n      <xsd:enumeration value=\"script\"/>\n      <xsd:enumeration value=\"fraktur\"/>\n      <xsd:enumeration value=\"double-struck\"/>\n      <xsd:enumeration value=\"sans-serif\"/>\n      <xsd:enumeration value=\"monospace\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Script\">\n    <xsd:attribute name=\"val\" type=\"ST_Script\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Style\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"p\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"i\"/>\n      <xsd:enumeration value=\"bi\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Style\">\n    <xsd:attribute name=\"val\" type=\"ST_Style\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ManualBreak\">\n    <xsd:attribute name=\"alnAt\" type=\"ST_Integer255\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ScriptStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"scr\" minOccurs=\"0\" type=\"CT_Script\"/>\n      <xsd:element name=\"sty\" minOccurs=\"0\" type=\"CT_Style\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_RPR\">\n    <xsd:sequence>\n      <xsd:element name=\"lit\" minOccurs=\"0\" type=\"CT_OnOff\"/>\n      <xsd:choice>\n        <xsd:element name=\"nor\" minOccurs=\"0\" type=\"CT_OnOff\"/>\n        <xsd:sequence>\n          <xsd:group ref=\"EG_ScriptStyle\"/>\n        </xsd:sequence>\n      </xsd:choice>\n      <xsd:element name=\"brk\" minOccurs=\"0\" type=\"CT_ManualBreak\"/>\n      <xsd:element name=\"aln\" minOccurs=\"0\" type=\"CT_OnOff\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Text\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"s:ST_String\">\n        <xsd:attribute ref=\"xml:space\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_R\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_RPR\" minOccurs=\"0\"/>\n      <xsd:group ref=\"w:EG_RPr\" minOccurs=\"0\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:group ref=\"w:EG_RunInnerContent\"/>\n        <xsd:element name=\"t\" type=\"CT_Text\" minOccurs=\"0\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CtrlPr\">\n    <xsd:sequence>\n      <xsd:group ref=\"w:EG_RPrMath\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AccPr\">\n    <xsd:sequence>\n      <xsd:element name=\"chr\" type=\"CT_Char\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Acc\">\n    <xsd:sequence>\n      <xsd:element name=\"accPr\" type=\"CT_AccPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BarPr\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"CT_TopBot\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Bar\">\n    <xsd:sequence>\n      <xsd:element name=\"barPr\" type=\"CT_BarPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BoxPr\">\n    <xsd:sequence>\n      <xsd:element name=\"opEmu\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noBreak\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"diff\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"brk\" type=\"CT_ManualBreak\" minOccurs=\"0\"/>\n      <xsd:element name=\"aln\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Box\">\n    <xsd:sequence>\n      <xsd:element name=\"boxPr\" type=\"CT_BoxPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BorderBoxPr\">\n    <xsd:sequence>\n      <xsd:element name=\"hideTop\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hideBot\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hideLeft\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hideRight\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"strikeH\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"strikeV\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"strikeBLTR\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"strikeTLBR\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BorderBox\">\n    <xsd:sequence>\n      <xsd:element name=\"borderBoxPr\" type=\"CT_BorderBoxPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DPr\">\n    <xsd:sequence>\n      <xsd:element name=\"begChr\" type=\"CT_Char\" minOccurs=\"0\"/>\n      <xsd:element name=\"sepChr\" type=\"CT_Char\" minOccurs=\"0\"/>\n      <xsd:element name=\"endChr\" type=\"CT_Char\" minOccurs=\"0\"/>\n      <xsd:element name=\"grow\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"shp\" type=\"CT_Shp\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_D\">\n    <xsd:sequence>\n      <xsd:element name=\"dPr\" type=\"CT_DPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EqArrPr\">\n    <xsd:sequence>\n      <xsd:element name=\"baseJc\" type=\"CT_YAlign\" minOccurs=\"0\"/>\n      <xsd:element name=\"maxDist\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"objDist\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"rSpRule\" type=\"CT_SpacingRule\" minOccurs=\"0\"/>\n      <xsd:element name=\"rSp\" type=\"CT_UnSignedInteger\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EqArr\">\n    <xsd:sequence>\n      <xsd:element name=\"eqArrPr\" type=\"CT_EqArrPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FPr\">\n    <xsd:sequence>\n      <xsd:element name=\"type\" type=\"CT_FType\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_F\">\n    <xsd:sequence>\n      <xsd:element name=\"fPr\" type=\"CT_FPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"num\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"den\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FuncPr\">\n    <xsd:sequence>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Func\">\n    <xsd:sequence>\n      <xsd:element name=\"funcPr\" type=\"CT_FuncPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"fName\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupChrPr\">\n    <xsd:sequence>\n      <xsd:element name=\"chr\" type=\"CT_Char\" minOccurs=\"0\"/>\n      <xsd:element name=\"pos\" type=\"CT_TopBot\" minOccurs=\"0\"/>\n      <xsd:element name=\"vertJc\" type=\"CT_TopBot\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupChr\">\n    <xsd:sequence>\n      <xsd:element name=\"groupChrPr\" type=\"CT_GroupChrPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LimLowPr\">\n    <xsd:sequence>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LimLow\">\n    <xsd:sequence>\n      <xsd:element name=\"limLowPr\" type=\"CT_LimLowPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"lim\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LimUppPr\">\n    <xsd:sequence>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LimUpp\">\n    <xsd:sequence>\n      <xsd:element name=\"limUppPr\" type=\"CT_LimUppPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"lim\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MCPr\">\n    <xsd:sequence>\n      <xsd:element name=\"count\" type=\"CT_Integer255\" minOccurs=\"0\"/>\n      <xsd:element name=\"mcJc\" type=\"CT_XAlign\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MC\">\n    <xsd:sequence>\n      <xsd:element name=\"mcPr\" type=\"CT_MCPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MCS\">\n    <xsd:sequence>\n      <xsd:element name=\"mc\" type=\"CT_MC\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MPr\">\n    <xsd:sequence>\n      <xsd:element name=\"baseJc\" type=\"CT_YAlign\" minOccurs=\"0\"/>\n      <xsd:element name=\"plcHide\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"rSpRule\" type=\"CT_SpacingRule\" minOccurs=\"0\"/>\n      <xsd:element name=\"cGpRule\" type=\"CT_SpacingRule\" minOccurs=\"0\"/>\n      <xsd:element name=\"rSp\" type=\"CT_UnSignedInteger\" minOccurs=\"0\"/>\n      <xsd:element name=\"cSp\" type=\"CT_UnSignedInteger\" minOccurs=\"0\"/>\n      <xsd:element name=\"cGp\" type=\"CT_UnSignedInteger\" minOccurs=\"0\"/>\n      <xsd:element name=\"mcs\" type=\"CT_MCS\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MR\">\n    <xsd:sequence>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_M\">\n    <xsd:sequence>\n      <xsd:element name=\"mPr\" type=\"CT_MPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"mr\" type=\"CT_MR\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NaryPr\">\n    <xsd:sequence>\n      <xsd:element name=\"chr\" type=\"CT_Char\" minOccurs=\"0\"/>\n      <xsd:element name=\"limLoc\" type=\"CT_LimLoc\" minOccurs=\"0\"/>\n      <xsd:element name=\"grow\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"subHide\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"supHide\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Nary\">\n    <xsd:sequence>\n      <xsd:element name=\"naryPr\" type=\"CT_NaryPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"sub\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"sup\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PhantPr\">\n    <xsd:sequence>\n      <xsd:element name=\"show\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"zeroWid\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"zeroAsc\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"zeroDesc\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"transp\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Phant\">\n    <xsd:sequence>\n      <xsd:element name=\"phantPr\" type=\"CT_PhantPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RadPr\">\n    <xsd:sequence>\n      <xsd:element name=\"degHide\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rad\">\n    <xsd:sequence>\n      <xsd:element name=\"radPr\" type=\"CT_RadPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"deg\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SPrePr\">\n    <xsd:sequence>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SPre\">\n    <xsd:sequence>\n      <xsd:element name=\"sPrePr\" type=\"CT_SPrePr\" minOccurs=\"0\"/>\n      <xsd:element name=\"sub\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"sup\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SSubPr\">\n    <xsd:sequence>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SSub\">\n    <xsd:sequence>\n      <xsd:element name=\"sSubPr\" type=\"CT_SSubPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"sub\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SSubSupPr\">\n    <xsd:sequence>\n      <xsd:element name=\"alnScr\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SSubSup\">\n    <xsd:sequence>\n      <xsd:element name=\"sSubSupPr\" type=\"CT_SSubSupPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"sub\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"sup\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SSupPr\">\n    <xsd:sequence>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SSup\">\n    <xsd:sequence>\n      <xsd:element name=\"sSupPr\" type=\"CT_SSupPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"e\" type=\"CT_OMathArg\"/>\n      <xsd:element name=\"sup\" type=\"CT_OMathArg\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_OMathMathElements\">\n    <xsd:choice>\n      <xsd:element name=\"acc\" type=\"CT_Acc\"/>\n      <xsd:element name=\"bar\" type=\"CT_Bar\"/>\n      <xsd:element name=\"box\" type=\"CT_Box\"/>\n      <xsd:element name=\"borderBox\" type=\"CT_BorderBox\"/>\n      <xsd:element name=\"d\" type=\"CT_D\"/>\n      <xsd:element name=\"eqArr\" type=\"CT_EqArr\"/>\n      <xsd:element name=\"f\" type=\"CT_F\"/>\n      <xsd:element name=\"func\" type=\"CT_Func\"/>\n      <xsd:element name=\"groupChr\" type=\"CT_GroupChr\"/>\n      <xsd:element name=\"limLow\" type=\"CT_LimLow\"/>\n      <xsd:element name=\"limUpp\" type=\"CT_LimUpp\"/>\n      <xsd:element name=\"m\" type=\"CT_M\"/>\n      <xsd:element name=\"nary\" type=\"CT_Nary\"/>\n      <xsd:element name=\"phant\" type=\"CT_Phant\"/>\n      <xsd:element name=\"rad\" type=\"CT_Rad\"/>\n      <xsd:element name=\"sPre\" type=\"CT_SPre\"/>\n      <xsd:element name=\"sSub\" type=\"CT_SSub\"/>\n      <xsd:element name=\"sSubSup\" type=\"CT_SSubSup\"/>\n      <xsd:element name=\"sSup\" type=\"CT_SSup\"/>\n      <xsd:element name=\"r\" type=\"CT_R\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_OMathElements\">\n    <xsd:choice>\n      <xsd:group ref=\"EG_OMathMathElements\"/>\n      <xsd:group ref=\"w:EG_PContentMath\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_OMathArgPr\">\n    <xsd:sequence>\n      <xsd:element name=\"argSz\" type=\"CT_Integer2\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OMathArg\">\n    <xsd:sequence>\n      <xsd:element name=\"argPr\" type=\"CT_OMathArgPr\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_OMathElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"ctrlPr\" type=\"CT_CtrlPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Jc\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"centerGroup\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_OMathJc\">\n    <xsd:attribute name=\"val\" type=\"ST_Jc\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OMathParaPr\">\n    <xsd:sequence>\n      <xsd:element name=\"jc\" type=\"CT_OMathJc\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TwipsMeasure\">\n    <xsd:attribute name=\"val\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BreakBin\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"before\"/>\n      <xsd:enumeration value=\"after\"/>\n      <xsd:enumeration value=\"repeat\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BreakBin\">\n    <xsd:attribute name=\"val\" type=\"ST_BreakBin\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BreakBinSub\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"--\"/>\n      <xsd:enumeration value=\"-+\"/>\n      <xsd:enumeration value=\"+-\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BreakBinSub\">\n    <xsd:attribute name=\"val\" type=\"ST_BreakBinSub\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MathPr\">\n    <xsd:sequence>\n      <xsd:element name=\"mathFont\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"brkBin\" type=\"CT_BreakBin\" minOccurs=\"0\"/>\n      <xsd:element name=\"brkBinSub\" type=\"CT_BreakBinSub\" minOccurs=\"0\"/>\n      <xsd:element name=\"smallFrac\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"dispDef\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"lMargin\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"rMargin\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"defJc\" type=\"CT_OMathJc\" minOccurs=\"0\"/>\n      <xsd:element name=\"preSp\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"postSp\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"interSp\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"intraSp\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:choice minOccurs=\"0\">\n        <xsd:element name=\"wrapIndent\" type=\"CT_TwipsMeasure\"/>\n        <xsd:element name=\"wrapRight\" type=\"CT_OnOff\"/>\n      </xsd:choice>\n      <xsd:element name=\"intLim\" type=\"CT_LimLoc\" minOccurs=\"0\"/>\n      <xsd:element name=\"naryLim\" type=\"CT_LimLoc\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"mathPr\" type=\"CT_MathPr\"/>\n  <xsd:complexType name=\"CT_OMathPara\">\n    <xsd:sequence>\n      <xsd:element name=\"oMathParaPr\" type=\"CT_OMathParaPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"oMath\" type=\"CT_OMath\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OMath\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_OMathElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"oMathPara\" type=\"CT_OMathPara\"/>\n  <xsd:element name=\"oMath\" type=\"CT_OMath\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  elementFormDefault=\"qualified\"\n  targetNamespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  blockDefault=\"#all\">\n  <xsd:simpleType name=\"ST_RelationshipId\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:attribute name=\"id\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"embed\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"link\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"dm\" type=\"ST_RelationshipId\" default=\"\"/>\n  <xsd:attribute name=\"lo\" type=\"ST_RelationshipId\" default=\"\"/>\n  <xsd:attribute name=\"qs\" type=\"ST_RelationshipId\" default=\"\"/>\n  <xsd:attribute name=\"cs\" type=\"ST_RelationshipId\" default=\"\"/>\n  <xsd:attribute name=\"blip\" type=\"ST_RelationshipId\" default=\"\"/>\n  <xsd:attribute name=\"pict\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"href\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"topLeft\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"topRight\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"bottomLeft\" type=\"ST_RelationshipId\"/>\n  <xsd:attribute name=\"bottomRight\" type=\"ST_RelationshipId\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:xdr=\"http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\"\n  elementFormDefault=\"qualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:import \n    namespace=\"http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing\"\n    schemaLocation=\"dml-spreadsheetDrawing.xsd\"/>\n  <xsd:complexType name=\"CT_AutoFilter\">\n    <xsd:sequence>\n      <xsd:element name=\"filterColumn\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_FilterColumn\"/>\n      <xsd:element name=\"sortState\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_SortState\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FilterColumn\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"filters\" type=\"CT_Filters\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"top10\" type=\"CT_Top10\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customFilters\" type=\"CT_CustomFilters\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dynamicFilter\" type=\"CT_DynamicFilter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"colorFilter\" type=\"CT_ColorFilter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"iconFilter\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_IconFilter\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"colId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"hiddenButton\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showButton\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Filters\">\n    <xsd:sequence>\n      <xsd:element name=\"filter\" type=\"CT_Filter\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dateGroupItem\" type=\"CT_DateGroupItem\" minOccurs=\"0\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n    <xsd:attribute name=\"blank\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"calendarType\" type=\"s:ST_CalendarType\" use=\"optional\" default=\"none\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Filter\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomFilters\">\n    <xsd:sequence>\n      <xsd:element name=\"customFilter\" type=\"CT_CustomFilter\" minOccurs=\"1\" maxOccurs=\"2\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"and\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomFilter\">\n    <xsd:attribute name=\"operator\" type=\"ST_FilterOperator\" default=\"equal\" use=\"optional\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Top10\">\n    <xsd:attribute name=\"top\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"percent\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"filterVal\" type=\"xsd:double\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorFilter\">\n    <xsd:attribute name=\"dxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"cellColor\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_IconFilter\">\n    <xsd:attribute name=\"iconSet\" type=\"ST_IconSetType\" use=\"required\"/>\n    <xsd:attribute name=\"iconId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FilterOperator\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"equal\"/>\n      <xsd:enumeration value=\"lessThan\"/>\n      <xsd:enumeration value=\"lessThanOrEqual\"/>\n      <xsd:enumeration value=\"notEqual\"/>\n      <xsd:enumeration value=\"greaterThanOrEqual\"/>\n      <xsd:enumeration value=\"greaterThan\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DynamicFilter\">\n    <xsd:attribute name=\"type\" type=\"ST_DynamicFilterType\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"valIso\" type=\"xsd:dateTime\" use=\"optional\"/>\n    <xsd:attribute name=\"maxVal\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"maxValIso\" type=\"xsd:dateTime\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DynamicFilterType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"null\"/>\n      <xsd:enumeration value=\"aboveAverage\"/>\n      <xsd:enumeration value=\"belowAverage\"/>\n      <xsd:enumeration value=\"tomorrow\"/>\n      <xsd:enumeration value=\"today\"/>\n      <xsd:enumeration value=\"yesterday\"/>\n      <xsd:enumeration value=\"nextWeek\"/>\n      <xsd:enumeration value=\"thisWeek\"/>\n      <xsd:enumeration value=\"lastWeek\"/>\n      <xsd:enumeration value=\"nextMonth\"/>\n      <xsd:enumeration value=\"thisMonth\"/>\n      <xsd:enumeration value=\"lastMonth\"/>\n      <xsd:enumeration value=\"nextQuarter\"/>\n      <xsd:enumeration value=\"thisQuarter\"/>\n      <xsd:enumeration value=\"lastQuarter\"/>\n      <xsd:enumeration value=\"nextYear\"/>\n      <xsd:enumeration value=\"thisYear\"/>\n      <xsd:enumeration value=\"lastYear\"/>\n      <xsd:enumeration value=\"yearToDate\"/>\n      <xsd:enumeration value=\"Q1\"/>\n      <xsd:enumeration value=\"Q2\"/>\n      <xsd:enumeration value=\"Q3\"/>\n      <xsd:enumeration value=\"Q4\"/>\n      <xsd:enumeration value=\"M1\"/>\n      <xsd:enumeration value=\"M2\"/>\n      <xsd:enumeration value=\"M3\"/>\n      <xsd:enumeration value=\"M4\"/>\n      <xsd:enumeration value=\"M5\"/>\n      <xsd:enumeration value=\"M6\"/>\n      <xsd:enumeration value=\"M7\"/>\n      <xsd:enumeration value=\"M8\"/>\n      <xsd:enumeration value=\"M9\"/>\n      <xsd:enumeration value=\"M10\"/>\n      <xsd:enumeration value=\"M11\"/>\n      <xsd:enumeration value=\"M12\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_IconSetType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"3Arrows\"/>\n      <xsd:enumeration value=\"3ArrowsGray\"/>\n      <xsd:enumeration value=\"3Flags\"/>\n      <xsd:enumeration value=\"3TrafficLights1\"/>\n      <xsd:enumeration value=\"3TrafficLights2\"/>\n      <xsd:enumeration value=\"3Signs\"/>\n      <xsd:enumeration value=\"3Symbols\"/>\n      <xsd:enumeration value=\"3Symbols2\"/>\n      <xsd:enumeration value=\"4Arrows\"/>\n      <xsd:enumeration value=\"4ArrowsGray\"/>\n      <xsd:enumeration value=\"4RedToBlack\"/>\n      <xsd:enumeration value=\"4Rating\"/>\n      <xsd:enumeration value=\"4TrafficLights\"/>\n      <xsd:enumeration value=\"5Arrows\"/>\n      <xsd:enumeration value=\"5ArrowsGray\"/>\n      <xsd:enumeration value=\"5Rating\"/>\n      <xsd:enumeration value=\"5Quarters\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SortState\">\n    <xsd:sequence>\n      <xsd:element name=\"sortCondition\" minOccurs=\"0\" maxOccurs=\"64\" type=\"CT_SortCondition\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"columnSort\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"caseSensitive\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"sortMethod\" type=\"ST_SortMethod\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SortCondition\">\n    <xsd:attribute name=\"descending\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"sortBy\" type=\"ST_SortBy\" use=\"optional\" default=\"value\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"customList\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"dxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"iconSet\" type=\"ST_IconSetType\" use=\"optional\" default=\"3Arrows\"/>\n    <xsd:attribute name=\"iconId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SortBy\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"value\"/>\n      <xsd:enumeration value=\"cellColor\"/>\n      <xsd:enumeration value=\"fontColor\"/>\n      <xsd:enumeration value=\"icon\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_SortMethod\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"stroke\"/>\n      <xsd:enumeration value=\"pinYin\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DateGroupItem\">\n    <xsd:attribute name=\"year\" type=\"xsd:unsignedShort\" use=\"required\"/>\n    <xsd:attribute name=\"month\" type=\"xsd:unsignedShort\" use=\"optional\"/>\n    <xsd:attribute name=\"day\" type=\"xsd:unsignedShort\" use=\"optional\"/>\n    <xsd:attribute name=\"hour\" type=\"xsd:unsignedShort\" use=\"optional\"/>\n    <xsd:attribute name=\"minute\" type=\"xsd:unsignedShort\" use=\"optional\"/>\n    <xsd:attribute name=\"second\" type=\"xsd:unsignedShort\" use=\"optional\"/>\n    <xsd:attribute name=\"dateTimeGrouping\" type=\"ST_DateTimeGrouping\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DateTimeGrouping\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"year\"/>\n      <xsd:enumeration value=\"month\"/>\n      <xsd:enumeration value=\"day\"/>\n      <xsd:enumeration value=\"hour\"/>\n      <xsd:enumeration value=\"minute\"/>\n      <xsd:enumeration value=\"second\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CellRef\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Ref\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RefA\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Sqref\">\n    <xsd:list itemType=\"ST_Ref\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Formula\">\n    <xsd:restriction base=\"s:ST_Xstring\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UnsignedIntHex\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"4\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UnsignedShortHex\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"2\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_XStringElement\">\n    <xsd:attribute name=\"v\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Extension\">\n    <xsd:sequence>\n      <xsd:any processContents=\"lax\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"xsd:token\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ObjectAnchor\">\n    <xsd:sequence>\n      <xsd:element ref=\"xdr:from\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element ref=\"xdr:to\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"moveWithCells\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"sizeWithCells\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ExtensionList\">\n    <xsd:sequence>\n      <xsd:element name=\"ext\" type=\"CT_Extension\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_ExtensionList\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ExtensionList\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"calcChain\" type=\"CT_CalcChain\"/>\n  <xsd:complexType name=\"CT_CalcChain\">\n    <xsd:sequence>\n      <xsd:element name=\"c\" type=\"CT_CalcCell\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalcCell\">\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"l\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"t\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"a\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:element name=\"comments\" type=\"CT_Comments\"/>\n  <xsd:complexType name=\"CT_Comments\">\n    <xsd:sequence>\n      <xsd:element name=\"authors\" type=\"CT_Authors\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"commentList\" type=\"CT_CommentList\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Authors\">\n    <xsd:sequence>\n      <xsd:element name=\"author\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommentList\">\n    <xsd:sequence>\n      <xsd:element name=\"comment\" type=\"CT_Comment\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Comment\">\n    <xsd:sequence>\n      <xsd:element name=\"text\" type=\"CT_Rst\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"commentPr\" type=\"CT_CommentPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"authorId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"optional\"/>\n    <xsd:attribute name=\"shapeId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CommentPr\">\n    <xsd:sequence>\n      <xsd:element name=\"anchor\" type=\"CT_ObjectAnchor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"locked\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"defaultSize\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"print\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"disabled\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoFill\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"autoLine\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"altText\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"textHAlign\" type=\"ST_TextHAlign\" use=\"optional\" default=\"left\"/>\n    <xsd:attribute name=\"textVAlign\" type=\"ST_TextVAlign\" use=\"optional\" default=\"top\"/>\n    <xsd:attribute name=\"lockText\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"justLastX\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoScale\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextHAlign\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"justify\"/>\n      <xsd:enumeration value=\"distributed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextVAlign\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"justify\"/>\n      <xsd:enumeration value=\"distributed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"MapInfo\" type=\"CT_MapInfo\"/>\n  <xsd:complexType name=\"CT_MapInfo\">\n    <xsd:sequence>\n      <xsd:element name=\"Schema\" type=\"CT_Schema\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"Map\" type=\"CT_Map\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"SelectionNamespaces\" type=\"xsd:string\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Schema\" mixed=\"true\">\n    <xsd:sequence>\n      <xsd:any/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ID\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"SchemaRef\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"Namespace\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"SchemaLanguage\" type=\"xsd:token\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Map\">\n    <xsd:sequence>\n      <xsd:element name=\"DataBinding\" type=\"CT_DataBinding\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ID\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"Name\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"RootElement\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"SchemaID\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"ShowImportExportValidationErrors\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"AutoFit\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"Append\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"PreserveSortAFLayout\" type=\"xsd:boolean\" use=\"required\"/>\n    <xsd:attribute name=\"PreserveFormat\" type=\"xsd:boolean\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataBinding\">\n    <xsd:sequence>\n      <xsd:any/>\n    </xsd:sequence>\n    <xsd:attribute name=\"DataBindingName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"FileBinding\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"ConnectionID\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"FileBindingName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"DataBindingLoadMode\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"connections\" type=\"CT_Connections\"/>\n  <xsd:complexType name=\"CT_Connections\">\n    <xsd:sequence>\n      <xsd:element name=\"connection\" minOccurs=\"1\" maxOccurs=\"unbounded\" type=\"CT_Connection\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Connection\">\n    <xsd:sequence>\n      <xsd:element name=\"dbPr\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_DbPr\"/>\n      <xsd:element name=\"olapPr\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_OlapPr\"/>\n      <xsd:element name=\"webPr\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_WebPr\"/>\n      <xsd:element name=\"textPr\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_TextPr\"/>\n      <xsd:element name=\"parameters\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_Parameters\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"sourceFile\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"odcFile\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"keepAlive\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"interval\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"name\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"description\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"type\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"reconnectionMethod\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"1\"/>\n    <xsd:attribute name=\"refreshedVersion\" use=\"required\" type=\"xsd:unsignedByte\"/>\n    <xsd:attribute name=\"minRefreshableVersion\" use=\"optional\" type=\"xsd:unsignedByte\" default=\"0\"/>\n    <xsd:attribute name=\"savePassword\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"new\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"deleted\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"onlyUseConnectionFile\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"background\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"refreshOnLoad\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"saveData\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"credentials\" use=\"optional\" type=\"ST_CredMethod\" default=\"integrated\"/>\n    <xsd:attribute name=\"singleSignOnId\" use=\"optional\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CredMethod\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"integrated\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"stored\"/>\n      <xsd:enumeration value=\"prompt\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DbPr\">\n    <xsd:attribute name=\"connection\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"command\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"serverCommand\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"commandType\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"2\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OlapPr\">\n    <xsd:attribute name=\"local\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"localConnection\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"localRefresh\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"sendLocale\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"rowDrillCount\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"serverFill\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"serverNumberFormat\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"serverFont\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"serverFontColor\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WebPr\">\n    <xsd:sequence>\n      <xsd:element name=\"tables\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_Tables\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"xml\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"sourceData\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"parsePre\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"consecutive\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"firstRow\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"xl97\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"textDates\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"xl2000\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"url\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"post\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"htmlTables\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"htmlFormat\" use=\"optional\" type=\"ST_HtmlFmt\" default=\"none\"/>\n    <xsd:attribute name=\"editPage\" use=\"optional\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HtmlFmt\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"rtf\"/>\n      <xsd:enumeration value=\"all\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Parameters\">\n    <xsd:sequence>\n      <xsd:element name=\"parameter\" minOccurs=\"1\" maxOccurs=\"unbounded\" type=\"CT_Parameter\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Parameter\">\n    <xsd:attribute name=\"name\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"sqlType\" use=\"optional\" type=\"xsd:int\" default=\"0\"/>\n    <xsd:attribute name=\"parameterType\" use=\"optional\" type=\"ST_ParameterType\" default=\"prompt\"/>\n    <xsd:attribute name=\"refreshOnChange\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"prompt\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"boolean\" use=\"optional\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"double\" use=\"optional\" type=\"xsd:double\"/>\n    <xsd:attribute name=\"integer\" use=\"optional\" type=\"xsd:int\"/>\n    <xsd:attribute name=\"string\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cell\" use=\"optional\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ParameterType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"prompt\"/>\n      <xsd:enumeration value=\"value\"/>\n      <xsd:enumeration value=\"cell\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Tables\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"m\" type=\"CT_TableMissing\"/>\n      <xsd:element name=\"s\" type=\"CT_XStringElement\"/>\n      <xsd:element name=\"x\" type=\"CT_Index\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"count\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableMissing\"/>\n  <xsd:complexType name=\"CT_TextPr\">\n    <xsd:sequence>\n      <xsd:element name=\"textFields\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_TextFields\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"prompt\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"fileType\" use=\"optional\" type=\"ST_FileType\" default=\"win\"/>\n    <xsd:attribute name=\"codePage\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"1252\"/>\n    <xsd:attribute name=\"characterSet\" use=\"optional\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"firstRow\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"1\"/>\n    <xsd:attribute name=\"sourceFile\" use=\"optional\" type=\"s:ST_Xstring\" default=\"\"/>\n    <xsd:attribute name=\"delimited\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"decimal\" use=\"optional\" type=\"s:ST_Xstring\" default=\".\"/>\n    <xsd:attribute name=\"thousands\" use=\"optional\" type=\"s:ST_Xstring\" default=\",\"/>\n    <xsd:attribute name=\"tab\" use=\"optional\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"space\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"comma\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"semicolon\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"consecutive\" use=\"optional\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"qualifier\" use=\"optional\" type=\"ST_Qualifier\" default=\"doubleQuote\"/>\n    <xsd:attribute name=\"delimiter\" use=\"optional\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FileType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"mac\"/>\n      <xsd:enumeration value=\"win\"/>\n      <xsd:enumeration value=\"dos\"/>\n      <xsd:enumeration value=\"lin\"/>\n      <xsd:enumeration value=\"other\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Qualifier\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"doubleQuote\"/>\n      <xsd:enumeration value=\"singleQuote\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextFields\">\n    <xsd:sequence>\n      <xsd:element name=\"textField\" minOccurs=\"1\" maxOccurs=\"unbounded\" type=\"CT_TextField\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextField\">\n    <xsd:attribute name=\"type\" use=\"optional\" type=\"ST_ExternalConnectionType\" default=\"general\"/>\n    <xsd:attribute name=\"position\" use=\"optional\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ExternalConnectionType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"general\"/>\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"MDY\"/>\n      <xsd:enumeration value=\"DMY\"/>\n      <xsd:enumeration value=\"YMD\"/>\n      <xsd:enumeration value=\"MYD\"/>\n      <xsd:enumeration value=\"DYM\"/>\n      <xsd:enumeration value=\"YDM\"/>\n      <xsd:enumeration value=\"skip\"/>\n      <xsd:enumeration value=\"EMD\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"pivotCacheDefinition\" type=\"CT_PivotCacheDefinition\"/>\n  <xsd:element name=\"pivotCacheRecords\" type=\"CT_PivotCacheRecords\"/>\n  <xsd:element name=\"pivotTableDefinition\" type=\"CT_pivotTableDefinition\"/>\n  <xsd:complexType name=\"CT_PivotCacheDefinition\">\n    <xsd:sequence>\n      <xsd:element name=\"cacheSource\" type=\"CT_CacheSource\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cacheFields\" type=\"CT_CacheFields\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cacheHierarchies\" minOccurs=\"0\" type=\"CT_CacheHierarchies\"/>\n      <xsd:element name=\"kpis\" minOccurs=\"0\" type=\"CT_PCDKPIs\"/>\n      <xsd:element name=\"tupleCache\" minOccurs=\"0\" type=\"CT_TupleCache\"/>\n      <xsd:element name=\"calculatedItems\" minOccurs=\"0\" type=\"CT_CalculatedItems\"/>\n      <xsd:element name=\"calculatedMembers\" type=\"CT_CalculatedMembers\" minOccurs=\"0\"/>\n      <xsd:element name=\"dimensions\" type=\"CT_Dimensions\" minOccurs=\"0\"/>\n      <xsd:element name=\"measureGroups\" type=\"CT_MeasureGroups\" minOccurs=\"0\"/>\n      <xsd:element name=\"maps\" type=\"CT_MeasureDimensionMaps\" minOccurs=\"0\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"invalid\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"saveData\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"refreshOnLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"optimizeMemory\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"enableRefresh\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"refreshedBy\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"refreshedDate\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"refreshedDateIso\" type=\"xsd:dateTime\" use=\"optional\"/>\n    <xsd:attribute name=\"backgroundQuery\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"missingItemsLimit\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"createdVersion\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"refreshedVersion\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"minRefreshableVersion\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"recordCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"upgradeOnRefresh\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"tupleCache\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"supportSubquery\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"supportAdvancedDrill\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CacheFields\">\n    <xsd:sequence>\n      <xsd:element name=\"cacheField\" type=\"CT_CacheField\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CacheField\">\n    <xsd:sequence>\n      <xsd:element name=\"sharedItems\" type=\"CT_SharedItems\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fieldGroup\" minOccurs=\"0\" type=\"CT_FieldGroup\"/>\n      <xsd:element name=\"mpMap\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"caption\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"propertyName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"serverField\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"uniqueList\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"optional\"/>\n    <xsd:attribute name=\"formula\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"sqlType\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"hierarchy\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"level\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"databaseField\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"mappingCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"memberPropertyField\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CacheSource\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n      <xsd:element name=\"worksheetSource\" type=\"CT_WorksheetSource\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"consolidation\" type=\"CT_Consolidation\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"type\" type=\"ST_SourceType\" use=\"required\"/>\n    <xsd:attribute name=\"connectionId\" type=\"xsd:unsignedInt\" default=\"0\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SourceType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"worksheet\"/>\n      <xsd:enumeration value=\"external\"/>\n      <xsd:enumeration value=\"consolidation\"/>\n      <xsd:enumeration value=\"scenario\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_WorksheetSource\">\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"optional\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"sheet\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Consolidation\">\n    <xsd:sequence>\n      <xsd:element name=\"pages\" type=\"CT_Pages\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rangeSets\" type=\"CT_RangeSets\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"autoPage\" type=\"xsd:boolean\" default=\"true\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Pages\">\n    <xsd:sequence>\n      <xsd:element name=\"page\" type=\"CT_PCDSCPage\" minOccurs=\"1\" maxOccurs=\"4\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PCDSCPage\">\n    <xsd:sequence>\n      <xsd:element name=\"pageItem\" type=\"CT_PageItem\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageItem\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RangeSets\">\n    <xsd:sequence>\n      <xsd:element name=\"rangeSet\" type=\"CT_RangeSet\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RangeSet\">\n    <xsd:attribute name=\"i1\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"i2\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"i3\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"i4\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"optional\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"sheet\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SharedItems\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"m\" type=\"CT_Missing\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"n\" type=\"CT_Number\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"b\" type=\"CT_Boolean\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"e\" type=\"CT_Error\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"s\" type=\"CT_String\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"d\" type=\"CT_DateTime\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"containsSemiMixedTypes\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"containsNonDate\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"containsDate\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"containsString\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"containsBlank\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"containsMixedTypes\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"containsNumber\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"containsInteger\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"minValue\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"maxValue\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"minDate\" type=\"xsd:dateTime\" use=\"optional\"/>\n    <xsd:attribute name=\"maxDate\" type=\"xsd:dateTime\" use=\"optional\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"longText\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Missing\">\n    <xsd:sequence>\n      <xsd:element name=\"tpls\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Tuples\"/>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"c\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cp\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"in\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"bc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"fc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"un\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"st\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Number\">\n    <xsd:sequence>\n      <xsd:element name=\"tpls\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Tuples\"/>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"v\" use=\"required\" type=\"xsd:double\"/>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"c\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cp\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"in\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"bc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"fc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"un\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"st\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Boolean\">\n    <xsd:sequence>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"v\" use=\"required\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"c\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cp\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Error\">\n    <xsd:sequence>\n      <xsd:element name=\"tpls\" minOccurs=\"0\" type=\"CT_Tuples\"/>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"v\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"c\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cp\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"in\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"bc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"fc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"un\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"st\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_String\">\n    <xsd:sequence>\n      <xsd:element name=\"tpls\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Tuples\"/>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"v\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"c\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cp\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"in\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"bc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"fc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"un\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"st\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DateTime\">\n    <xsd:sequence>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"v\" use=\"required\" type=\"xsd:dateTime\"/>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"c\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cp\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FieldGroup\">\n    <xsd:sequence>\n      <xsd:element name=\"rangePr\" minOccurs=\"0\" type=\"CT_RangePr\"/>\n      <xsd:element name=\"discretePr\" minOccurs=\"0\" type=\"CT_DiscretePr\"/>\n      <xsd:element name=\"groupItems\" minOccurs=\"0\" type=\"CT_GroupItems\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"par\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"base\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RangePr\">\n    <xsd:attribute name=\"autoStart\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"autoEnd\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"groupBy\" type=\"ST_GroupBy\" default=\"range\"/>\n    <xsd:attribute name=\"startNum\" type=\"xsd:double\"/>\n    <xsd:attribute name=\"endNum\" type=\"xsd:double\"/>\n    <xsd:attribute name=\"startDate\" type=\"xsd:dateTime\"/>\n    <xsd:attribute name=\"endDate\" type=\"xsd:dateTime\"/>\n    <xsd:attribute name=\"groupInterval\" type=\"xsd:double\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_GroupBy\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"range\"/>\n      <xsd:enumeration value=\"seconds\"/>\n      <xsd:enumeration value=\"minutes\"/>\n      <xsd:enumeration value=\"hours\"/>\n      <xsd:enumeration value=\"days\"/>\n      <xsd:enumeration value=\"months\"/>\n      <xsd:enumeration value=\"quarters\"/>\n      <xsd:enumeration value=\"years\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DiscretePr\">\n    <xsd:sequence>\n      <xsd:element name=\"x\" maxOccurs=\"unbounded\" type=\"CT_Index\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupItems\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"m\" type=\"CT_Missing\"/>\n      <xsd:element name=\"n\" type=\"CT_Number\"/>\n      <xsd:element name=\"b\" type=\"CT_Boolean\"/>\n      <xsd:element name=\"e\" type=\"CT_Error\"/>\n      <xsd:element name=\"s\" type=\"CT_String\"/>\n      <xsd:element name=\"d\" type=\"CT_DateTime\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotCacheRecords\">\n    <xsd:sequence>\n      <xsd:element name=\"r\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Record\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Record\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"m\" type=\"CT_Missing\"/>\n      <xsd:element name=\"n\" type=\"CT_Number\"/>\n      <xsd:element name=\"b\" type=\"CT_Boolean\"/>\n      <xsd:element name=\"e\" type=\"CT_Error\"/>\n      <xsd:element name=\"s\" type=\"CT_String\"/>\n      <xsd:element name=\"d\" type=\"CT_DateTime\"/>\n      <xsd:element name=\"x\" type=\"CT_Index\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PCDKPIs\">\n    <xsd:sequence>\n      <xsd:element name=\"kpi\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_PCDKPI\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PCDKPI\">\n    <xsd:attribute name=\"uniqueName\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"caption\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"displayFolder\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"measureGroup\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"parent\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"value\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"goal\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"status\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"trend\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"weight\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"time\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CacheHierarchies\">\n    <xsd:sequence>\n      <xsd:element name=\"cacheHierarchy\" minOccurs=\"0\" maxOccurs=\"unbounded\"\n        type=\"CT_CacheHierarchy\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CacheHierarchy\">\n    <xsd:sequence>\n      <xsd:element name=\"fieldsUsage\" minOccurs=\"0\" type=\"CT_FieldsUsage\"/>\n      <xsd:element name=\"groupLevels\" minOccurs=\"0\" type=\"CT_GroupLevels\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueName\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"caption\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"measure\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"set\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"parentSet\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"iconSet\" type=\"xsd:int\" default=\"0\"/>\n    <xsd:attribute name=\"attribute\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"time\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"keyAttribute\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"defaultMemberUniqueName\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"allUniqueName\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"allCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"dimensionUniqueName\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"displayFolder\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"measureGroup\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"measures\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"count\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"oneField\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"memberValueDatatype\" use=\"optional\" type=\"xsd:unsignedShort\"/>\n    <xsd:attribute name=\"unbalanced\" use=\"optional\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"unbalancedGroup\" use=\"optional\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FieldsUsage\">\n    <xsd:sequence>\n      <xsd:element name=\"fieldUsage\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_FieldUsage\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FieldUsage\">\n    <xsd:attribute name=\"x\" use=\"required\" type=\"xsd:int\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupLevels\">\n    <xsd:sequence>\n      <xsd:element name=\"groupLevel\" maxOccurs=\"unbounded\" type=\"CT_GroupLevel\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupLevel\">\n    <xsd:sequence>\n      <xsd:element name=\"groups\" minOccurs=\"0\" type=\"CT_Groups\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uniqueName\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"caption\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"user\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"customRollUp\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Groups\">\n    <xsd:sequence>\n      <xsd:element name=\"group\" maxOccurs=\"unbounded\" type=\"CT_LevelGroup\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LevelGroup\">\n    <xsd:sequence>\n      <xsd:element name=\"groupMembers\" type=\"CT_GroupMembers\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"uniqueName\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"caption\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"uniqueParent\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"id\" type=\"xsd:int\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupMembers\">\n    <xsd:sequence>\n      <xsd:element name=\"groupMember\" maxOccurs=\"unbounded\" type=\"CT_GroupMember\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GroupMember\">\n    <xsd:attribute name=\"uniqueName\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"group\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TupleCache\">\n    <xsd:sequence>\n      <xsd:element name=\"entries\" minOccurs=\"0\" type=\"CT_PCDSDTCEntries\"/>\n      <xsd:element name=\"sets\" minOccurs=\"0\" type=\"CT_Sets\"/>\n      <xsd:element name=\"queryCache\" minOccurs=\"0\" type=\"CT_QueryCache\"/>\n      <xsd:element name=\"serverFormats\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ServerFormats\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ServerFormat\">\n    <xsd:attribute name=\"culture\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"format\" use=\"optional\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ServerFormats\">\n    <xsd:sequence>\n      <xsd:element name=\"serverFormat\" type=\"CT_ServerFormat\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PCDSDTCEntries\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"m\" type=\"CT_Missing\"/>\n      <xsd:element name=\"n\" type=\"CT_Number\"/>\n      <xsd:element name=\"e\" type=\"CT_Error\"/>\n      <xsd:element name=\"s\" type=\"CT_String\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Tuples\">\n    <xsd:sequence>\n      <xsd:element name=\"tpl\" type=\"CT_Tuple\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"c\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Tuple\">\n    <xsd:attribute name=\"fld\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"hier\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"item\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Sets\">\n    <xsd:sequence>\n      <xsd:element name=\"set\" maxOccurs=\"unbounded\" type=\"CT_Set\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Set\">\n    <xsd:sequence>\n      <xsd:element name=\"tpls\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Tuples\"/>\n      <xsd:element name=\"sortByTuple\" minOccurs=\"0\" type=\"CT_Tuples\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"maxRank\" use=\"required\" type=\"xsd:int\"/>\n    <xsd:attribute name=\"setDefinition\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"sortType\" type=\"ST_SortType\" default=\"none\"/>\n    <xsd:attribute name=\"queryFailed\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SortType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"ascending\"/>\n      <xsd:enumeration value=\"descending\"/>\n      <xsd:enumeration value=\"ascendingAlpha\"/>\n      <xsd:enumeration value=\"descendingAlpha\"/>\n      <xsd:enumeration value=\"ascendingNatural\"/>\n      <xsd:enumeration value=\"descendingNatural\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_QueryCache\">\n    <xsd:sequence>\n      <xsd:element name=\"query\" maxOccurs=\"unbounded\" type=\"CT_Query\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Query\">\n    <xsd:sequence>\n      <xsd:element name=\"tpls\" minOccurs=\"0\" type=\"CT_Tuples\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"mdx\" use=\"required\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalculatedItems\">\n    <xsd:sequence>\n      <xsd:element name=\"calculatedItem\" maxOccurs=\"unbounded\" type=\"CT_CalculatedItem\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalculatedItem\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotArea\" type=\"CT_PivotArea\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"field\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"formula\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalculatedMembers\">\n    <xsd:sequence>\n      <xsd:element name=\"calculatedMember\" maxOccurs=\"unbounded\" type=\"CT_CalculatedMember\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalculatedMember\">\n    <xsd:sequence minOccurs=\"0\">\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"mdx\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"memberName\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"hierarchy\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"parent\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"solveOrder\" type=\"xsd:int\" default=\"0\"/>\n    <xsd:attribute name=\"set\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_pivotTableDefinition\">\n    <xsd:sequence>\n      <xsd:element name=\"location\" type=\"CT_Location\"/>\n      <xsd:element name=\"pivotFields\" type=\"CT_PivotFields\" minOccurs=\"0\"/>\n      <xsd:element name=\"rowFields\" type=\"CT_RowFields\" minOccurs=\"0\"/>\n      <xsd:element name=\"rowItems\" type=\"CT_rowItems\" minOccurs=\"0\"/>\n      <xsd:element name=\"colFields\" type=\"CT_ColFields\" minOccurs=\"0\"/>\n      <xsd:element name=\"colItems\" type=\"CT_colItems\" minOccurs=\"0\"/>\n      <xsd:element name=\"pageFields\" type=\"CT_PageFields\" minOccurs=\"0\"/>\n      <xsd:element name=\"dataFields\" type=\"CT_DataFields\" minOccurs=\"0\"/>\n      <xsd:element name=\"formats\" type=\"CT_Formats\" minOccurs=\"0\"/>\n      <xsd:element name=\"conditionalFormats\" type=\"CT_ConditionalFormats\" minOccurs=\"0\"/>\n      <xsd:element name=\"chartFormats\" type=\"CT_ChartFormats\" minOccurs=\"0\"/>\n      <xsd:element name=\"pivotHierarchies\" type=\"CT_PivotHierarchies\" minOccurs=\"0\"/>\n      <xsd:element name=\"pivotTableStyleInfo\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_PivotTableStyle\"/>\n      <xsd:element name=\"filters\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_PivotFilters\"/>\n      <xsd:element name=\"rowHierarchiesUsage\" type=\"CT_RowHierarchiesUsage\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"colHierarchiesUsage\" type=\"CT_ColHierarchiesUsage\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cacheId\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"dataOnRows\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"dataPosition\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attributeGroup ref=\"AG_AutoFormat\"/>\n    <xsd:attribute name=\"dataCaption\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"grandTotalCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"errorCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"showError\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"missingCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"showMissing\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"pageStyle\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"pivotTableStyle\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"vacatedStyle\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"tag\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"updatedVersion\" type=\"xsd:unsignedByte\" default=\"0\"/>\n    <xsd:attribute name=\"minRefreshableVersion\" type=\"xsd:unsignedByte\" default=\"0\"/>\n    <xsd:attribute name=\"asteriskTotals\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showItems\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"editData\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"disableFieldList\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showCalcMbrs\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"visualTotals\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"showMultipleLabel\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"showDataDropDown\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"showDrill\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"printDrill\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showMemberPropertyTips\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"showDataTips\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"enableWizard\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"enableDrill\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"enableFieldProperties\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"preserveFormatting\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"useAutoFormatting\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"pageWrap\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"pageOverThenDown\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"subtotalHiddenItems\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"rowGrandTotals\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"colGrandTotals\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"fieldPrintTitles\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"itemPrintTitles\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"mergeItem\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showDropZones\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"createdVersion\" type=\"xsd:unsignedByte\" default=\"0\"/>\n    <xsd:attribute name=\"indent\" type=\"xsd:unsignedInt\" default=\"1\"/>\n    <xsd:attribute name=\"showEmptyRow\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showEmptyCol\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showHeaders\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"compact\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"outline\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"outlineData\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"compactData\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"published\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"gridDropZones\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"immersive\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"multipleFieldFilters\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"chartFormat\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"rowHeaderCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"colHeaderCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"fieldListSortAscending\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"mdxSubqueries\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"customListSort\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Location\">\n    <xsd:attribute name=\"ref\" use=\"required\" type=\"ST_Ref\"/>\n    <xsd:attribute name=\"firstHeaderRow\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"firstDataRow\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"firstDataCol\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"rowPageCount\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"colPageCount\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotFields\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotField\" maxOccurs=\"unbounded\" type=\"CT_PivotField\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotField\">\n    <xsd:sequence>\n      <xsd:element name=\"items\" minOccurs=\"0\" type=\"CT_Items\"/>\n      <xsd:element name=\"autoSortScope\" minOccurs=\"0\" type=\"CT_AutoSortScope\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"axis\" use=\"optional\" type=\"ST_Axis\"/>\n    <xsd:attribute name=\"dataField\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"subtotalCaption\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"showDropDowns\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"hiddenLevel\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"uniqueMemberProperty\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"compact\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"allDrilled\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"optional\"/>\n    <xsd:attribute name=\"outline\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"subtotalTop\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToRow\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToCol\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"multipleItemSelectionAllowed\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"dragToPage\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToData\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragOff\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"showAll\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"insertBlankRow\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"serverField\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"insertPageBreak\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"autoShow\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"topAutoShow\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"hideNewItems\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"measureFilter\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"includeNewItemsInFilter\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"itemPageCount\" type=\"xsd:unsignedInt\" default=\"10\"/>\n    <xsd:attribute name=\"sortType\" type=\"ST_FieldSortType\" default=\"manual\"/>\n    <xsd:attribute name=\"dataSourceSort\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"nonAutoSortDefault\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"rankBy\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"defaultSubtotal\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"sumSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"countASubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"avgSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"maxSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"minSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"productSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"countSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"stdDevSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"stdDevPSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"varSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"varPSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showPropCell\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showPropTip\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showPropAsCaption\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"defaultAttributeDrillState\" type=\"xsd:boolean\" use=\"optional\"\n      default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AutoSortScope\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotArea\" type=\"CT_PivotArea\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Items\">\n    <xsd:sequence>\n      <xsd:element name=\"item\" maxOccurs=\"unbounded\" type=\"CT_Item\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Item\">\n    <xsd:attribute name=\"n\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"t\" type=\"ST_ItemType\" default=\"data\"/>\n    <xsd:attribute name=\"h\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"sd\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"f\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"m\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"c\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"x\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"d\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"e\" type=\"xsd:boolean\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageFields\">\n    <xsd:sequence>\n      <xsd:element name=\"pageField\" maxOccurs=\"unbounded\" type=\"CT_PageField\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageField\">\n    <xsd:sequence minOccurs=\"0\">\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"fld\" use=\"required\" type=\"xsd:int\"/>\n    <xsd:attribute name=\"item\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"hier\" type=\"xsd:int\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"cap\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataFields\">\n    <xsd:sequence>\n      <xsd:element name=\"dataField\" maxOccurs=\"unbounded\" type=\"CT_DataField\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataField\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" use=\"optional\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"fld\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"subtotal\" type=\"ST_DataConsolidateFunction\" default=\"sum\"/>\n    <xsd:attribute name=\"showDataAs\" type=\"ST_ShowDataAs\" default=\"normal\"/>\n    <xsd:attribute name=\"baseField\" type=\"xsd:int\" default=\"-1\"/>\n    <xsd:attribute name=\"baseItem\" type=\"xsd:unsignedInt\" default=\"1048832\"/>\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_rowItems\">\n    <xsd:sequence>\n      <xsd:element name=\"i\" maxOccurs=\"unbounded\" type=\"CT_I\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_colItems\">\n    <xsd:sequence>\n      <xsd:element name=\"i\" maxOccurs=\"unbounded\" type=\"CT_I\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_I\">\n    <xsd:sequence>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_X\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"t\" type=\"ST_ItemType\" default=\"data\"/>\n    <xsd:attribute name=\"r\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_X\">\n    <xsd:attribute name=\"v\" type=\"xsd:int\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RowFields\">\n    <xsd:sequence>\n      <xsd:element name=\"field\" maxOccurs=\"unbounded\" type=\"CT_Field\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColFields\">\n    <xsd:sequence>\n      <xsd:element name=\"field\" maxOccurs=\"unbounded\" type=\"CT_Field\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Field\">\n    <xsd:attribute name=\"x\" type=\"xsd:int\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Formats\">\n    <xsd:sequence>\n      <xsd:element name=\"format\" maxOccurs=\"unbounded\" type=\"CT_Format\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Format\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotArea\" type=\"CT_PivotArea\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"action\" type=\"ST_FormatAction\" default=\"formatting\"/>\n    <xsd:attribute name=\"dxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConditionalFormats\">\n    <xsd:sequence>\n      <xsd:element name=\"conditionalFormat\" maxOccurs=\"unbounded\" type=\"CT_ConditionalFormat\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ConditionalFormat\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotAreas\" type=\"CT_PivotAreas\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"scope\" type=\"ST_Scope\" default=\"selection\"/>\n    <xsd:attribute name=\"type\" type=\"ST_Type\" default=\"none\"/>\n    <xsd:attribute name=\"priority\" use=\"required\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotAreas\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotArea\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_PivotArea\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Scope\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"selection\"/>\n      <xsd:enumeration value=\"data\"/>\n      <xsd:enumeration value=\"field\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Type\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"all\"/>\n      <xsd:enumeration value=\"row\"/>\n      <xsd:enumeration value=\"column\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ChartFormats\">\n    <xsd:sequence>\n      <xsd:element name=\"chartFormat\" maxOccurs=\"unbounded\" type=\"CT_ChartFormat\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartFormat\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotArea\" type=\"CT_PivotArea\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"chart\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"format\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"series\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotHierarchies\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotHierarchy\" maxOccurs=\"unbounded\" type=\"CT_PivotHierarchy\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotHierarchy\">\n    <xsd:sequence>\n      <xsd:element name=\"mps\" minOccurs=\"0\" type=\"CT_MemberProperties\"/>\n      <xsd:element name=\"members\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Members\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"outline\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"multipleItemSelectionAllowed\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"subtotalTop\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"showInFieldList\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToRow\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToCol\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToPage\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"dragToData\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"dragOff\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"includeNewItemsInFilter\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"caption\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RowHierarchiesUsage\">\n    <xsd:sequence>\n      <xsd:element name=\"rowHierarchyUsage\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n        type=\"CT_HierarchyUsage\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColHierarchiesUsage\">\n    <xsd:sequence>\n      <xsd:element name=\"colHierarchyUsage\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n        type=\"CT_HierarchyUsage\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HierarchyUsage\">\n    <xsd:attribute name=\"hierarchyUsage\" type=\"xsd:int\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MemberProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"mp\" maxOccurs=\"unbounded\" type=\"CT_MemberProperty\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MemberProperty\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"showCell\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showTip\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showAsCaption\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"nameLen\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"pPos\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"pLen\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"level\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"field\" use=\"required\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Members\">\n    <xsd:sequence>\n      <xsd:element name=\"member\" maxOccurs=\"unbounded\" type=\"CT_Member\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"level\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Member\">\n    <xsd:attribute name=\"name\" use=\"required\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Dimensions\">\n    <xsd:sequence>\n      <xsd:element name=\"dimension\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_PivotDimension\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotDimension\">\n    <xsd:attribute name=\"measure\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"name\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"uniqueName\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"caption\" use=\"required\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MeasureGroups\">\n    <xsd:sequence>\n      <xsd:element name=\"measureGroup\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_MeasureGroup\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MeasureDimensionMaps\">\n    <xsd:sequence>\n      <xsd:element name=\"map\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_MeasureDimensionMap\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MeasureGroup\">\n    <xsd:attribute name=\"name\" use=\"required\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"caption\" use=\"required\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MeasureDimensionMap\">\n    <xsd:attribute name=\"measureGroup\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"dimension\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotTableStyle\">\n    <xsd:attribute name=\"name\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"showRowHeaders\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"showColHeaders\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"showRowStripes\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"showColStripes\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"showLastColumn\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotFilters\">\n    <xsd:sequence>\n      <xsd:element name=\"filter\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_PivotFilter\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotFilter\">\n    <xsd:sequence>\n      <xsd:element name=\"autoFilter\" minOccurs=\"1\" maxOccurs=\"1\" type=\"CT_AutoFilter\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"fld\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"mpFld\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"type\" use=\"required\" type=\"ST_PivotFilterType\"/>\n    <xsd:attribute name=\"evalOrder\" use=\"optional\" type=\"xsd:int\" default=\"0\"/>\n    <xsd:attribute name=\"id\" use=\"required\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"iMeasureHier\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"iMeasureFld\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"description\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"stringValue1\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"stringValue2\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ShowDataAs\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"difference\"/>\n      <xsd:enumeration value=\"percent\"/>\n      <xsd:enumeration value=\"percentDiff\"/>\n      <xsd:enumeration value=\"runTotal\"/>\n      <xsd:enumeration value=\"percentOfRow\"/>\n      <xsd:enumeration value=\"percentOfCol\"/>\n      <xsd:enumeration value=\"percentOfTotal\"/>\n      <xsd:enumeration value=\"index\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ItemType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"data\"/>\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"sum\"/>\n      <xsd:enumeration value=\"countA\"/>\n      <xsd:enumeration value=\"avg\"/>\n      <xsd:enumeration value=\"max\"/>\n      <xsd:enumeration value=\"min\"/>\n      <xsd:enumeration value=\"product\"/>\n      <xsd:enumeration value=\"count\"/>\n      <xsd:enumeration value=\"stdDev\"/>\n      <xsd:enumeration value=\"stdDevP\"/>\n      <xsd:enumeration value=\"var\"/>\n      <xsd:enumeration value=\"varP\"/>\n      <xsd:enumeration value=\"grand\"/>\n      <xsd:enumeration value=\"blank\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FormatAction\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"blank\"/>\n      <xsd:enumeration value=\"formatting\"/>\n      <xsd:enumeration value=\"drill\"/>\n      <xsd:enumeration value=\"formula\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FieldSortType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"manual\"/>\n      <xsd:enumeration value=\"ascending\"/>\n      <xsd:enumeration value=\"descending\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PivotFilterType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"unknown\"/>\n      <xsd:enumeration value=\"count\"/>\n      <xsd:enumeration value=\"percent\"/>\n      <xsd:enumeration value=\"sum\"/>\n      <xsd:enumeration value=\"captionEqual\"/>\n      <xsd:enumeration value=\"captionNotEqual\"/>\n      <xsd:enumeration value=\"captionBeginsWith\"/>\n      <xsd:enumeration value=\"captionNotBeginsWith\"/>\n      <xsd:enumeration value=\"captionEndsWith\"/>\n      <xsd:enumeration value=\"captionNotEndsWith\"/>\n      <xsd:enumeration value=\"captionContains\"/>\n      <xsd:enumeration value=\"captionNotContains\"/>\n      <xsd:enumeration value=\"captionGreaterThan\"/>\n      <xsd:enumeration value=\"captionGreaterThanOrEqual\"/>\n      <xsd:enumeration value=\"captionLessThan\"/>\n      <xsd:enumeration value=\"captionLessThanOrEqual\"/>\n      <xsd:enumeration value=\"captionBetween\"/>\n      <xsd:enumeration value=\"captionNotBetween\"/>\n      <xsd:enumeration value=\"valueEqual\"/>\n      <xsd:enumeration value=\"valueNotEqual\"/>\n      <xsd:enumeration value=\"valueGreaterThan\"/>\n      <xsd:enumeration value=\"valueGreaterThanOrEqual\"/>\n      <xsd:enumeration value=\"valueLessThan\"/>\n      <xsd:enumeration value=\"valueLessThanOrEqual\"/>\n      <xsd:enumeration value=\"valueBetween\"/>\n      <xsd:enumeration value=\"valueNotBetween\"/>\n      <xsd:enumeration value=\"dateEqual\"/>\n      <xsd:enumeration value=\"dateNotEqual\"/>\n      <xsd:enumeration value=\"dateOlderThan\"/>\n      <xsd:enumeration value=\"dateOlderThanOrEqual\"/>\n      <xsd:enumeration value=\"dateNewerThan\"/>\n      <xsd:enumeration value=\"dateNewerThanOrEqual\"/>\n      <xsd:enumeration value=\"dateBetween\"/>\n      <xsd:enumeration value=\"dateNotBetween\"/>\n      <xsd:enumeration value=\"tomorrow\"/>\n      <xsd:enumeration value=\"today\"/>\n      <xsd:enumeration value=\"yesterday\"/>\n      <xsd:enumeration value=\"nextWeek\"/>\n      <xsd:enumeration value=\"thisWeek\"/>\n      <xsd:enumeration value=\"lastWeek\"/>\n      <xsd:enumeration value=\"nextMonth\"/>\n      <xsd:enumeration value=\"thisMonth\"/>\n      <xsd:enumeration value=\"lastMonth\"/>\n      <xsd:enumeration value=\"nextQuarter\"/>\n      <xsd:enumeration value=\"thisQuarter\"/>\n      <xsd:enumeration value=\"lastQuarter\"/>\n      <xsd:enumeration value=\"nextYear\"/>\n      <xsd:enumeration value=\"thisYear\"/>\n      <xsd:enumeration value=\"lastYear\"/>\n      <xsd:enumeration value=\"yearToDate\"/>\n      <xsd:enumeration value=\"Q1\"/>\n      <xsd:enumeration value=\"Q2\"/>\n      <xsd:enumeration value=\"Q3\"/>\n      <xsd:enumeration value=\"Q4\"/>\n      <xsd:enumeration value=\"M1\"/>\n      <xsd:enumeration value=\"M2\"/>\n      <xsd:enumeration value=\"M3\"/>\n      <xsd:enumeration value=\"M4\"/>\n      <xsd:enumeration value=\"M5\"/>\n      <xsd:enumeration value=\"M6\"/>\n      <xsd:enumeration value=\"M7\"/>\n      <xsd:enumeration value=\"M8\"/>\n      <xsd:enumeration value=\"M9\"/>\n      <xsd:enumeration value=\"M10\"/>\n      <xsd:enumeration value=\"M11\"/>\n      <xsd:enumeration value=\"M12\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PivotArea\">\n    <xsd:sequence>\n      <xsd:element name=\"references\" minOccurs=\"0\" type=\"CT_PivotAreaReferences\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"field\" use=\"optional\" type=\"xsd:int\"/>\n    <xsd:attribute name=\"type\" type=\"ST_PivotAreaType\" default=\"normal\"/>\n    <xsd:attribute name=\"dataOnly\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"labelOnly\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"grandRow\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"grandCol\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"cacheIndex\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"outline\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"offset\" type=\"ST_Ref\"/>\n    <xsd:attribute name=\"collapsedLevelsAreSubtotals\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"axis\" type=\"ST_Axis\" use=\"optional\"/>\n    <xsd:attribute name=\"fieldPosition\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PivotAreaType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"data\"/>\n      <xsd:enumeration value=\"all\"/>\n      <xsd:enumeration value=\"origin\"/>\n      <xsd:enumeration value=\"button\"/>\n      <xsd:enumeration value=\"topEnd\"/>\n      <xsd:enumeration value=\"topRight\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PivotAreaReferences\">\n    <xsd:sequence>\n      <xsd:element name=\"reference\" maxOccurs=\"unbounded\" type=\"CT_PivotAreaReference\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotAreaReference\">\n    <xsd:sequence>\n      <xsd:element name=\"x\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Index\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"field\" use=\"optional\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"selected\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"byPosition\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"relative\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"defaultSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"sumSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"countASubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"avgSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"maxSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"minSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"productSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"countSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"stdDevSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"stdDevPSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"varSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"varPSubtotal\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Index\">\n    <xsd:attribute name=\"v\" use=\"required\" type=\"xsd:unsignedInt\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Axis\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"axisRow\"/>\n      <xsd:enumeration value=\"axisCol\"/>\n      <xsd:enumeration value=\"axisPage\"/>\n      <xsd:enumeration value=\"axisValues\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"queryTable\" type=\"CT_QueryTable\"/>\n  <xsd:complexType name=\"CT_QueryTable\">\n    <xsd:sequence>\n      <xsd:element name=\"queryTableRefresh\" type=\"CT_QueryTableRefresh\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"headers\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"rowNumbers\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"disableRefresh\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"backgroundRefresh\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"firstBackgroundRefresh\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"refreshOnLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"growShrinkType\" type=\"ST_GrowShrinkType\" use=\"optional\"\n      default=\"insertDelete\"/>\n    <xsd:attribute name=\"fillFormulas\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"removeDataOnSave\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"disableEdit\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"preserveFormatting\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"adjustColumnWidth\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"intermediate\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"connectionId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attributeGroup ref=\"AG_AutoFormat\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_QueryTableRefresh\">\n    <xsd:sequence>\n      <xsd:element name=\"queryTableFields\" type=\"CT_QueryTableFields\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"queryTableDeletedFields\" type=\"CT_QueryTableDeletedFields\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"sortState\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_SortState\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"preserveSortFilterLayout\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"fieldIdWrapped\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"headersInLastRefresh\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"minimumVersion\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"nextId\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"unboundColumnsLeft\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"unboundColumnsRight\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_QueryTableDeletedFields\">\n    <xsd:sequence>\n      <xsd:element name=\"deletedField\" type=\"CT_DeletedField\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DeletedField\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_QueryTableFields\">\n    <xsd:sequence>\n      <xsd:element name=\"queryTableField\" type=\"CT_QueryTableField\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_QueryTableField\">\n    <xsd:sequence minOccurs=\"0\">\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"dataBound\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"rowNumbers\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"fillFormulas\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"clipped\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"tableColumnId\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_GrowShrinkType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"insertDelete\"/>\n      <xsd:enumeration value=\"insertClear\"/>\n      <xsd:enumeration value=\"overwriteClear\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"sst\" type=\"CT_Sst\"/>\n  <xsd:complexType name=\"CT_Sst\">\n    <xsd:sequence>\n      <xsd:element name=\"si\" type=\"CT_Rst\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"uniqueCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PhoneticType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"halfwidthKatakana\"/>\n      <xsd:enumeration value=\"fullwidthKatakana\"/>\n      <xsd:enumeration value=\"Hiragana\"/>\n      <xsd:enumeration value=\"noConversion\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PhoneticAlignment\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"noControl\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"distributed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PhoneticRun\">\n    <xsd:sequence>\n      <xsd:element name=\"t\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"sb\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"eb\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RElt\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_RPrElt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"t\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RPrElt\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"rFont\" type=\"CT_FontName\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"charset\" type=\"CT_IntProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"family\" type=\"CT_IntProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"b\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"i\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"strike\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"outline\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shadow\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"condense\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extend\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sz\" type=\"CT_FontSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"u\" type=\"CT_UnderlineProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"vertAlign\" type=\"CT_VerticalAlignFontProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scheme\" type=\"CT_FontScheme\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rst\">\n    <xsd:sequence>\n      <xsd:element name=\"t\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"r\" type=\"CT_RElt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rPh\" type=\"CT_PhoneticRun\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"phoneticPr\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_PhoneticPr\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PhoneticPr\">\n    <xsd:attribute name=\"fontId\" type=\"ST_FontId\" use=\"required\"/>\n    <xsd:attribute name=\"type\" type=\"ST_PhoneticType\" use=\"optional\" default=\"fullwidthKatakana\"/>\n    <xsd:attribute name=\"alignment\" type=\"ST_PhoneticAlignment\" use=\"optional\" default=\"left\"/>\n  </xsd:complexType>\n  <xsd:element name=\"headers\" type=\"CT_RevisionHeaders\"/>\n  <xsd:element name=\"revisions\" type=\"CT_Revisions\"/>\n  <xsd:complexType name=\"CT_RevisionHeaders\">\n    <xsd:sequence>\n      <xsd:element name=\"header\" type=\"CT_RevisionHeader\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"lastGuid\" type=\"s:ST_Guid\" use=\"optional\"/>\n    <xsd:attribute name=\"shared\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"diskRevisions\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"history\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"trackRevisions\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"exclusive\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"revisionId\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"version\" type=\"xsd:int\" default=\"1\"/>\n    <xsd:attribute name=\"keepChangeHistory\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"protected\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"preserveHistory\" type=\"xsd:unsignedInt\" default=\"30\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Revisions\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"rrc\" type=\"CT_RevisionRowColumn\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rm\" type=\"CT_RevisionMove\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rcv\" type=\"CT_RevisionCustomView\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rsnm\" type=\"CT_RevisionSheetRename\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"ris\" type=\"CT_RevisionInsertSheet\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rcc\" type=\"CT_RevisionCellChange\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rfmt\" type=\"CT_RevisionFormatting\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"raf\" type=\"CT_RevisionAutoFormatting\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rdn\" type=\"CT_RevisionDefinedName\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rcmt\" type=\"CT_RevisionComment\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rqt\" type=\"CT_RevisionQueryTableField\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rcft\" type=\"CT_RevisionConflict\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:attributeGroup name=\"AG_RevData\">\n    <xsd:attribute name=\"rId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"ua\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"ra\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_RevisionHeader\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetIdMap\" minOccurs=\"1\" maxOccurs=\"1\" type=\"CT_SheetIdMap\"/>\n      <xsd:element name=\"reviewedList\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ReviewedRevisions\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"dateTime\" type=\"xsd:dateTime\" use=\"required\"/>\n    <xsd:attribute name=\"maxSheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"userName\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n    <xsd:attribute name=\"minRId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"maxRId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetIdMap\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetId\" type=\"CT_SheetId\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetId\">\n    <xsd:attribute name=\"val\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ReviewedRevisions\">\n    <xsd:sequence>\n      <xsd:element name=\"reviewed\" type=\"CT_Reviewed\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Reviewed\">\n    <xsd:attribute name=\"rId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_UndoInfo\">\n    <xsd:attribute name=\"index\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"exp\" type=\"ST_FormulaExpression\" use=\"required\"/>\n    <xsd:attribute name=\"ref3D\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"array\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"v\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"nf\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"cs\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"dr\" type=\"ST_RefA\" use=\"required\"/>\n    <xsd:attribute name=\"dn\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"sId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionRowColumn\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"undo\" type=\"CT_UndoInfo\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rcc\" type=\"CT_RevisionCellChange\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rfmt\" type=\"CT_RevisionFormatting\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"sId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"eol\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"action\" type=\"ST_rwColActionType\" use=\"required\"/>\n    <xsd:attribute name=\"edge\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionMove\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"undo\" type=\"CT_UndoInfo\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rcc\" type=\"CT_RevisionCellChange\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rfmt\" type=\"CT_RevisionFormatting\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"source\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"destination\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"sourceSheetId\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionCustomView\">\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"action\" type=\"ST_RevisionAction\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionSheetRename\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"oldName\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"newName\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionInsertSheet\">\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"sheetPosition\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionCellChange\">\n    <xsd:sequence>\n      <xsd:element name=\"oc\" type=\"CT_Cell\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"nc\" type=\"CT_Cell\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"odxf\" type=\"CT_Dxf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ndxf\" type=\"CT_Dxf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"sId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"odxf\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"xfDxf\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"dxf\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"optional\"/>\n    <xsd:attribute name=\"quotePrefix\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"oldQuotePrefix\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"ph\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"oldPh\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"endOfListFormulaUpdate\" type=\"xsd:boolean\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionFormatting\">\n    <xsd:sequence>\n      <xsd:element name=\"dxf\" type=\"CT_Dxf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"xfDxf\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\" use=\"required\"/>\n    <xsd:attribute name=\"start\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"length\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionAutoFormatting\">\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attributeGroup ref=\"AG_AutoFormat\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionComment\">\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"cell\" type=\"ST_CellRef\" use=\"required\"/>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"action\" type=\"ST_RevisionAction\" default=\"add\"/>\n    <xsd:attribute name=\"alwaysShow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"old\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"hiddenRow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"hiddenColumn\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"author\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"oldLength\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"newLength\" type=\"xsd:unsignedInt\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionDefinedName\">\n    <xsd:sequence>\n      <xsd:element name=\"formula\" type=\"ST_Formula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oldFormula\" type=\"ST_Formula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"localSheetId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"customView\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"function\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"oldFunction\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"functionGroupId\" type=\"xsd:unsignedByte\" use=\"optional\"/>\n    <xsd:attribute name=\"oldFunctionGroupId\" type=\"xsd:unsignedByte\" use=\"optional\"/>\n    <xsd:attribute name=\"shortcutKey\" type=\"xsd:unsignedByte\" use=\"optional\"/>\n    <xsd:attribute name=\"oldShortcutKey\" type=\"xsd:unsignedByte\" use=\"optional\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"oldHidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"customMenu\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"oldCustomMenu\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"description\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"oldDescription\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"help\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"oldHelp\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"statusBar\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"oldStatusBar\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"comment\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"oldComment\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionConflict\">\n    <xsd:attributeGroup ref=\"AG_RevData\"/>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RevisionQueryTableField\">\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"fieldId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_rwColActionType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"insertRow\"/>\n      <xsd:enumeration value=\"deleteRow\"/>\n      <xsd:enumeration value=\"insertCol\"/>\n      <xsd:enumeration value=\"deleteCol\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RevisionAction\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"add\"/>\n      <xsd:enumeration value=\"delete\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FormulaExpression\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"ref\"/>\n      <xsd:enumeration value=\"refError\"/>\n      <xsd:enumeration value=\"area\"/>\n      <xsd:enumeration value=\"areaError\"/>\n      <xsd:enumeration value=\"computedArea\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"users\" type=\"CT_Users\"/>\n  <xsd:complexType name=\"CT_Users\">\n    <xsd:sequence>\n      <xsd:element name=\"userInfo\" minOccurs=\"0\" maxOccurs=\"256\" type=\"CT_SharedUser\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SharedUser\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"id\" type=\"xsd:int\" use=\"required\"/>\n    <xsd:attribute name=\"dateTime\" type=\"xsd:dateTime\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"worksheet\" type=\"CT_Worksheet\"/>\n  <xsd:element name=\"chartsheet\" type=\"CT_Chartsheet\"/>\n  <xsd:element name=\"dialogsheet\" type=\"CT_Dialogsheet\"/>\n  <xsd:complexType name=\"CT_Macrosheet\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetPr\" type=\"CT_SheetPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dimension\" type=\"CT_SheetDimension\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetViews\" type=\"CT_SheetViews\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetFormatPr\" type=\"CT_SheetFormatPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cols\" type=\"CT_Cols\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"sheetData\" type=\"CT_SheetData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetProtection\" type=\"CT_SheetProtection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"autoFilter\" type=\"CT_AutoFilter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sortState\" type=\"CT_SortState\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dataConsolidate\" type=\"CT_DataConsolidate\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customSheetViews\" type=\"CT_CustomSheetViews\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"phoneticPr\" type=\"CT_PhoneticPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"conditionalFormatting\" type=\"CT_ConditionalFormatting\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"printOptions\" type=\"CT_PrintOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageMargins\" type=\"CT_PageMargins\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageSetup\" type=\"CT_PageSetup\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headerFooter\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rowBreaks\" type=\"CT_PageBreak\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"colBreaks\" type=\"CT_PageBreak\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customProperties\" type=\"CT_CustomProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawing\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawingHF\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"drawingHF\" type=\"CT_DrawingHF\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"picture\" type=\"CT_SheetBackgroundPicture\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oleObjects\" type=\"CT_OleObjects\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Dialogsheet\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetPr\" minOccurs=\"0\" type=\"CT_SheetPr\"/>\n      <xsd:element name=\"sheetViews\" minOccurs=\"0\" type=\"CT_SheetViews\"/>\n      <xsd:element name=\"sheetFormatPr\" minOccurs=\"0\" type=\"CT_SheetFormatPr\"/>\n      <xsd:element name=\"sheetProtection\" type=\"CT_SheetProtection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customSheetViews\" minOccurs=\"0\" type=\"CT_CustomSheetViews\"/>\n      <xsd:element name=\"printOptions\" minOccurs=\"0\" type=\"CT_PrintOptions\"/>\n      <xsd:element name=\"pageMargins\" minOccurs=\"0\" type=\"CT_PageMargins\"/>\n      <xsd:element name=\"pageSetup\" minOccurs=\"0\" type=\"CT_PageSetup\"/>\n      <xsd:element name=\"headerFooter\" minOccurs=\"0\" type=\"CT_HeaderFooter\"/>\n      <xsd:element name=\"drawing\" minOccurs=\"0\" type=\"CT_Drawing\"/>\n      <xsd:element name=\"legacyDrawing\" minOccurs=\"0\" type=\"CT_LegacyDrawing\"/>\n      <xsd:element name=\"legacyDrawingHF\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"drawingHF\" type=\"CT_DrawingHF\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oleObjects\" type=\"CT_OleObjects\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"controls\" type=\"CT_Controls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Worksheet\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetPr\" type=\"CT_SheetPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dimension\" type=\"CT_SheetDimension\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetViews\" type=\"CT_SheetViews\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetFormatPr\" type=\"CT_SheetFormatPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cols\" type=\"CT_Cols\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"sheetData\" type=\"CT_SheetData\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetCalcPr\" type=\"CT_SheetCalcPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetProtection\" type=\"CT_SheetProtection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"protectedRanges\" type=\"CT_ProtectedRanges\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scenarios\" type=\"CT_Scenarios\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"autoFilter\" type=\"CT_AutoFilter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sortState\" type=\"CT_SortState\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dataConsolidate\" type=\"CT_DataConsolidate\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customSheetViews\" type=\"CT_CustomSheetViews\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"mergeCells\" type=\"CT_MergeCells\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"phoneticPr\" type=\"CT_PhoneticPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"conditionalFormatting\" type=\"CT_ConditionalFormatting\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"dataValidations\" type=\"CT_DataValidations\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hyperlinks\" type=\"CT_Hyperlinks\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"printOptions\" type=\"CT_PrintOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageMargins\" type=\"CT_PageMargins\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageSetup\" type=\"CT_PageSetup\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headerFooter\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rowBreaks\" type=\"CT_PageBreak\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"colBreaks\" type=\"CT_PageBreak\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customProperties\" type=\"CT_CustomProperties\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cellWatches\" type=\"CT_CellWatches\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ignoredErrors\" type=\"CT_IgnoredErrors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smartTags\" type=\"CT_SmartTags\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawing\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawingHF\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"drawingHF\" type=\"CT_DrawingHF\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"picture\" type=\"CT_SheetBackgroundPicture\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oleObjects\" type=\"CT_OleObjects\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"controls\" type=\"CT_Controls\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"webPublishItems\" type=\"CT_WebPublishItems\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tableParts\" type=\"CT_TableParts\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetData\">\n    <xsd:sequence>\n      <xsd:element name=\"row\" type=\"CT_Row\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetCalcPr\">\n    <xsd:attribute name=\"fullCalcOnLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetFormatPr\">\n    <xsd:attribute name=\"baseColWidth\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"8\"/>\n    <xsd:attribute name=\"defaultColWidth\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"defaultRowHeight\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"customHeight\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"zeroHeight\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"thickTop\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"thickBottom\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"outlineLevelRow\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"outlineLevelCol\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Cols\">\n    <xsd:sequence>\n      <xsd:element name=\"col\" type=\"CT_Col\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Col\">\n    <xsd:attribute name=\"min\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"max\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"width\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"style\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"bestFit\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"customWidth\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"phonetic\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"outlineLevel\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"collapsed\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CellSpan\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CellSpans\">\n    <xsd:list itemType=\"ST_CellSpan\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Row\">\n    <xsd:sequence>\n      <xsd:element name=\"c\" type=\"CT_Cell\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"r\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"spans\" type=\"ST_CellSpans\" use=\"optional\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"customFormat\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"ht\" type=\"xsd:double\" use=\"optional\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"customHeight\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"outlineLevel\" type=\"xsd:unsignedByte\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"collapsed\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"thickTop\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"thickBot\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"ph\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Cell\">\n    <xsd:sequence>\n      <xsd:element name=\"f\" type=\"CT_CellFormula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"v\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"is\" type=\"CT_Rst\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"t\" type=\"ST_CellType\" use=\"optional\" default=\"n\"/>\n    <xsd:attribute name=\"cm\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"vm\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ph\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CellType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"n\"/>\n      <xsd:enumeration value=\"e\"/>\n      <xsd:enumeration value=\"s\"/>\n      <xsd:enumeration value=\"str\"/>\n      <xsd:enumeration value=\"inlineStr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CellFormulaType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"array\"/>\n      <xsd:enumeration value=\"dataTable\"/>\n      <xsd:enumeration value=\"shared\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SheetPr\">\n    <xsd:sequence>\n      <xsd:element name=\"tabColor\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"outlinePr\" type=\"CT_OutlinePr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageSetUpPr\" type=\"CT_PageSetUpPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"syncHorizontal\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"syncVertical\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"syncRef\" type=\"ST_Ref\" use=\"optional\"/>\n    <xsd:attribute name=\"transitionEvaluation\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"transitionEntry\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"published\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"codeName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"filterMode\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"enableFormatConditionsCalculation\" type=\"xsd:boolean\" use=\"optional\"\n      default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetDimension\">\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetViews\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetView\" type=\"CT_SheetView\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetView\">\n    <xsd:sequence>\n      <xsd:element name=\"pane\" type=\"CT_Pane\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"selection\" type=\"CT_Selection\" minOccurs=\"0\" maxOccurs=\"4\"/>\n      <xsd:element name=\"pivotSelection\" type=\"CT_PivotSelection\" minOccurs=\"0\" maxOccurs=\"4\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"windowProtection\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showFormulas\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showGridLines\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showRowColHeaders\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showZeros\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"rightToLeft\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"tabSelected\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showRuler\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showOutlineSymbols\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"defaultGridColor\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showWhiteSpace\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"view\" type=\"ST_SheetViewType\" use=\"optional\" default=\"normal\"/>\n    <xsd:attribute name=\"topLeftCell\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"colorId\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"64\"/>\n    <xsd:attribute name=\"zoomScale\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"100\"/>\n    <xsd:attribute name=\"zoomScaleNormal\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"zoomScaleSheetLayoutView\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"zoomScalePageLayoutView\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"workbookViewId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Pane\">\n    <xsd:attribute name=\"xSplit\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ySplit\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"topLeftCell\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"activePane\" type=\"ST_Pane\" use=\"optional\" default=\"topLeft\"/>\n    <xsd:attribute name=\"state\" type=\"ST_PaneState\" use=\"optional\" default=\"split\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotSelection\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotArea\" type=\"CT_PivotArea\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"pane\" type=\"ST_Pane\" use=\"optional\" default=\"topLeft\"/>\n    <xsd:attribute name=\"showHeader\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"label\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"data\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"extendable\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"axis\" type=\"ST_Axis\" use=\"optional\"/>\n    <xsd:attribute name=\"dimension\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"start\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"min\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"max\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"activeRow\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"activeCol\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"previousRow\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"previousCol\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute name=\"click\" type=\"xsd:unsignedInt\" default=\"0\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Selection\">\n    <xsd:attribute name=\"pane\" type=\"ST_Pane\" use=\"optional\" default=\"topLeft\"/>\n    <xsd:attribute name=\"activeCell\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"activeCellId\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\" use=\"optional\" default=\"A1\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Pane\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"bottomRight\"/>\n      <xsd:enumeration value=\"topRight\"/>\n      <xsd:enumeration value=\"bottomLeft\"/>\n      <xsd:enumeration value=\"topLeft\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PageBreak\">\n    <xsd:sequence>\n      <xsd:element name=\"brk\" type=\"CT_Break\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"manualBreakCount\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Break\">\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"min\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"max\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"man\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pt\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SheetViewType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"pageBreakPreview\"/>\n      <xsd:enumeration value=\"pageLayout\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_OutlinePr\">\n    <xsd:attribute name=\"applyStyles\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"summaryBelow\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"summaryRight\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showOutlineSymbols\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageSetUpPr\">\n    <xsd:attribute name=\"autoPageBreaks\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"fitToPage\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataConsolidate\">\n    <xsd:sequence>\n      <xsd:element name=\"dataRefs\" type=\"CT_DataRefs\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"function\" type=\"ST_DataConsolidateFunction\" use=\"optional\" default=\"sum\"/>\n    <xsd:attribute name=\"startLabels\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"leftLabels\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"topLabels\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"link\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DataConsolidateFunction\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"average\"/>\n      <xsd:enumeration value=\"count\"/>\n      <xsd:enumeration value=\"countNums\"/>\n      <xsd:enumeration value=\"max\"/>\n      <xsd:enumeration value=\"min\"/>\n      <xsd:enumeration value=\"product\"/>\n      <xsd:enumeration value=\"stdDev\"/>\n      <xsd:enumeration value=\"stdDevp\"/>\n      <xsd:enumeration value=\"sum\"/>\n      <xsd:enumeration value=\"var\"/>\n      <xsd:enumeration value=\"varp\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DataRefs\">\n    <xsd:sequence>\n      <xsd:element name=\"dataRef\" type=\"CT_DataRef\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataRef\">\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"optional\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"sheet\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MergeCells\">\n    <xsd:sequence>\n      <xsd:element name=\"mergeCell\" type=\"CT_MergeCell\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MergeCell\">\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SmartTags\">\n    <xsd:sequence>\n      <xsd:element name=\"cellSmartTags\" type=\"CT_CellSmartTags\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellSmartTags\">\n    <xsd:sequence>\n      <xsd:element name=\"cellSmartTag\" type=\"CT_CellSmartTag\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellSmartTag\">\n    <xsd:sequence>\n      <xsd:element name=\"cellSmartTagPr\" minOccurs=\"0\" maxOccurs=\"unbounded\"\n        type=\"CT_CellSmartTagPr\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"deleted\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"xmlBased\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellSmartTagPr\">\n    <xsd:attribute name=\"key\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Drawing\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LegacyDrawing\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DrawingHF\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n    <xsd:attribute name=\"lho\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"lhe\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"lhf\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"cho\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"che\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"chf\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rho\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rhe\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rhf\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"lfo\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"lfe\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"lff\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"cfo\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"cfe\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"cff\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rfo\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rfe\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rff\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomSheetViews\">\n    <xsd:sequence>\n      <xsd:element name=\"customSheetView\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n        type=\"CT_CustomSheetView\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomSheetView\">\n    <xsd:sequence>\n      <xsd:element name=\"pane\" type=\"CT_Pane\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"selection\" type=\"CT_Selection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rowBreaks\" type=\"CT_PageBreak\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"colBreaks\" type=\"CT_PageBreak\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageMargins\" type=\"CT_PageMargins\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"printOptions\" type=\"CT_PrintOptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageSetup\" type=\"CT_PageSetup\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headerFooter\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"autoFilter\" type=\"CT_AutoFilter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"scale\" type=\"xsd:unsignedInt\" default=\"100\"/>\n    <xsd:attribute name=\"colorId\" type=\"xsd:unsignedInt\" default=\"64\"/>\n    <xsd:attribute name=\"showPageBreaks\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showFormulas\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showGridLines\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showRowCol\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"outlineSymbols\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"zeroValues\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"fitToPage\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"printArea\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"filter\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showAutoFilter\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"hiddenRows\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"hiddenColumns\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"state\" type=\"ST_SheetState\" default=\"visible\"/>\n    <xsd:attribute name=\"filterUnique\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"view\" type=\"ST_SheetViewType\" default=\"normal\"/>\n    <xsd:attribute name=\"showRuler\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"topLeftCell\" type=\"ST_CellRef\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataValidations\">\n    <xsd:sequence>\n      <xsd:element name=\"dataValidation\" type=\"CT_DataValidation\" minOccurs=\"1\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"disablePrompts\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"xWindow\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"yWindow\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataValidation\">\n    <xsd:sequence>\n      <xsd:element name=\"formula1\" type=\"ST_Formula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"formula2\" type=\"ST_Formula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_DataValidationType\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"errorStyle\" type=\"ST_DataValidationErrorStyle\" use=\"optional\"\n      default=\"stop\"/>\n    <xsd:attribute name=\"imeMode\" type=\"ST_DataValidationImeMode\" use=\"optional\" default=\"noControl\"/>\n    <xsd:attribute name=\"operator\" type=\"ST_DataValidationOperator\" use=\"optional\" default=\"between\"/>\n    <xsd:attribute name=\"allowBlank\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showDropDown\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showInputMessage\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showErrorMessage\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"errorTitle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"error\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"promptTitle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"prompt\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DataValidationType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"whole\"/>\n      <xsd:enumeration value=\"decimal\"/>\n      <xsd:enumeration value=\"list\"/>\n      <xsd:enumeration value=\"date\"/>\n      <xsd:enumeration value=\"time\"/>\n      <xsd:enumeration value=\"textLength\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DataValidationOperator\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"between\"/>\n      <xsd:enumeration value=\"notBetween\"/>\n      <xsd:enumeration value=\"equal\"/>\n      <xsd:enumeration value=\"notEqual\"/>\n      <xsd:enumeration value=\"lessThan\"/>\n      <xsd:enumeration value=\"lessThanOrEqual\"/>\n      <xsd:enumeration value=\"greaterThan\"/>\n      <xsd:enumeration value=\"greaterThanOrEqual\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DataValidationErrorStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"stop\"/>\n      <xsd:enumeration value=\"warning\"/>\n      <xsd:enumeration value=\"information\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DataValidationImeMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"noControl\"/>\n      <xsd:enumeration value=\"off\"/>\n      <xsd:enumeration value=\"on\"/>\n      <xsd:enumeration value=\"disabled\"/>\n      <xsd:enumeration value=\"hiragana\"/>\n      <xsd:enumeration value=\"fullKatakana\"/>\n      <xsd:enumeration value=\"halfKatakana\"/>\n      <xsd:enumeration value=\"fullAlpha\"/>\n      <xsd:enumeration value=\"halfAlpha\"/>\n      <xsd:enumeration value=\"fullHangul\"/>\n      <xsd:enumeration value=\"halfHangul\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CfType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"expression\"/>\n      <xsd:enumeration value=\"cellIs\"/>\n      <xsd:enumeration value=\"colorScale\"/>\n      <xsd:enumeration value=\"dataBar\"/>\n      <xsd:enumeration value=\"iconSet\"/>\n      <xsd:enumeration value=\"top10\"/>\n      <xsd:enumeration value=\"uniqueValues\"/>\n      <xsd:enumeration value=\"duplicateValues\"/>\n      <xsd:enumeration value=\"containsText\"/>\n      <xsd:enumeration value=\"notContainsText\"/>\n      <xsd:enumeration value=\"beginsWith\"/>\n      <xsd:enumeration value=\"endsWith\"/>\n      <xsd:enumeration value=\"containsBlanks\"/>\n      <xsd:enumeration value=\"notContainsBlanks\"/>\n      <xsd:enumeration value=\"containsErrors\"/>\n      <xsd:enumeration value=\"notContainsErrors\"/>\n      <xsd:enumeration value=\"timePeriod\"/>\n      <xsd:enumeration value=\"aboveAverage\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TimePeriod\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"today\"/>\n      <xsd:enumeration value=\"yesterday\"/>\n      <xsd:enumeration value=\"tomorrow\"/>\n      <xsd:enumeration value=\"last7Days\"/>\n      <xsd:enumeration value=\"thisMonth\"/>\n      <xsd:enumeration value=\"lastMonth\"/>\n      <xsd:enumeration value=\"nextMonth\"/>\n      <xsd:enumeration value=\"thisWeek\"/>\n      <xsd:enumeration value=\"lastWeek\"/>\n      <xsd:enumeration value=\"nextWeek\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConditionalFormattingOperator\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"lessThan\"/>\n      <xsd:enumeration value=\"lessThanOrEqual\"/>\n      <xsd:enumeration value=\"equal\"/>\n      <xsd:enumeration value=\"notEqual\"/>\n      <xsd:enumeration value=\"greaterThanOrEqual\"/>\n      <xsd:enumeration value=\"greaterThan\"/>\n      <xsd:enumeration value=\"between\"/>\n      <xsd:enumeration value=\"notBetween\"/>\n      <xsd:enumeration value=\"containsText\"/>\n      <xsd:enumeration value=\"notContains\"/>\n      <xsd:enumeration value=\"beginsWith\"/>\n      <xsd:enumeration value=\"endsWith\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CfvoType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"num\"/>\n      <xsd:enumeration value=\"percent\"/>\n      <xsd:enumeration value=\"max\"/>\n      <xsd:enumeration value=\"min\"/>\n      <xsd:enumeration value=\"formula\"/>\n      <xsd:enumeration value=\"percentile\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ConditionalFormatting\">\n    <xsd:sequence>\n      <xsd:element name=\"cfRule\" type=\"CT_CfRule\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"pivot\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CfRule\">\n    <xsd:sequence>\n      <xsd:element name=\"formula\" type=\"ST_Formula\" minOccurs=\"0\" maxOccurs=\"3\"/>\n      <xsd:element name=\"colorScale\" type=\"CT_ColorScale\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dataBar\" type=\"CT_DataBar\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"iconSet\" type=\"CT_IconSet\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_CfType\"/>\n    <xsd:attribute name=\"dxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"priority\" type=\"xsd:int\" use=\"required\"/>\n    <xsd:attribute name=\"stopIfTrue\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"aboveAverage\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"percent\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"bottom\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"operator\" type=\"ST_ConditionalFormattingOperator\" use=\"optional\"/>\n    <xsd:attribute name=\"text\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"timePeriod\" type=\"ST_TimePeriod\" use=\"optional\"/>\n    <xsd:attribute name=\"rank\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"stdDev\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"equalAverage\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Hyperlinks\">\n    <xsd:sequence>\n      <xsd:element name=\"hyperlink\" type=\"CT_Hyperlink\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Hyperlink\">\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"location\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"tooltip\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"display\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellFormula\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"ST_Formula\">\n        <xsd:attribute name=\"t\" type=\"ST_CellFormulaType\" use=\"optional\" default=\"normal\"/>\n        <xsd:attribute name=\"aca\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"optional\"/>\n        <xsd:attribute name=\"dt2D\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"dtr\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"del1\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"del2\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"r1\" type=\"ST_CellRef\" use=\"optional\"/>\n        <xsd:attribute name=\"r2\" type=\"ST_CellRef\" use=\"optional\"/>\n        <xsd:attribute name=\"ca\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"si\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n        <xsd:attribute name=\"bx\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorScale\">\n    <xsd:sequence>\n      <xsd:element name=\"cfvo\" type=\"CT_Cfvo\" minOccurs=\"2\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"2\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataBar\">\n    <xsd:sequence>\n      <xsd:element name=\"cfvo\" type=\"CT_Cfvo\" minOccurs=\"2\" maxOccurs=\"2\"/>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"minLength\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"10\"/>\n    <xsd:attribute name=\"maxLength\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"90\"/>\n    <xsd:attribute name=\"showValue\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_IconSet\">\n    <xsd:sequence>\n      <xsd:element name=\"cfvo\" type=\"CT_Cfvo\" minOccurs=\"2\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"iconSet\" type=\"ST_IconSetType\" use=\"optional\" default=\"3TrafficLights1\"/>\n    <xsd:attribute name=\"showValue\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"percent\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"reverse\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Cfvo\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_CfvoType\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"gte\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageMargins\">\n    <xsd:attribute name=\"left\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"right\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"top\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"bottom\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"header\" type=\"xsd:double\" use=\"required\"/>\n    <xsd:attribute name=\"footer\" type=\"xsd:double\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PrintOptions\">\n    <xsd:attribute name=\"horizontalCentered\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"verticalCentered\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"headings\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"gridLines\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"gridLinesSet\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageSetup\">\n    <xsd:attribute name=\"paperSize\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"paperHeight\" type=\"s:ST_PositiveUniversalMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"paperWidth\" type=\"s:ST_PositiveUniversalMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"scale\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"100\"/>\n    <xsd:attribute name=\"firstPageNumber\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"fitToWidth\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"fitToHeight\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"pageOrder\" type=\"ST_PageOrder\" use=\"optional\" default=\"downThenOver\"/>\n    <xsd:attribute name=\"orientation\" type=\"ST_Orientation\" use=\"optional\" default=\"default\"/>\n    <xsd:attribute name=\"usePrinterDefaults\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"blackAndWhite\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"draft\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"cellComments\" type=\"ST_CellComments\" use=\"optional\" default=\"none\"/>\n    <xsd:attribute name=\"useFirstPageNumber\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"errors\" type=\"ST_PrintError\" use=\"optional\" default=\"displayed\"/>\n    <xsd:attribute name=\"horizontalDpi\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"verticalDpi\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"copies\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PageOrder\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"downThenOver\"/>\n      <xsd:enumeration value=\"overThenDown\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Orientation\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"portrait\"/>\n      <xsd:enumeration value=\"landscape\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CellComments\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"asDisplayed\"/>\n      <xsd:enumeration value=\"atEnd\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_HeaderFooter\">\n    <xsd:sequence>\n      <xsd:element name=\"oddHeader\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oddFooter\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"evenHeader\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"evenFooter\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstHeader\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"firstFooter\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"differentOddEven\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"differentFirst\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"scaleWithDoc\" type=\"xsd:boolean\" default=\"true\"/>\n    <xsd:attribute name=\"alignWithMargins\" type=\"xsd:boolean\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PrintError\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"displayed\"/>\n      <xsd:enumeration value=\"blank\"/>\n      <xsd:enumeration value=\"dash\"/>\n      <xsd:enumeration value=\"NA\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Scenarios\">\n    <xsd:sequence>\n      <xsd:element name=\"scenario\" type=\"CT_Scenario\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"current\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"show\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetProtection\">\n    <xsd:attribute name=\"password\" type=\"ST_UnsignedShortHex\" use=\"optional\"/>\n    <xsd:attribute name=\"algorithmName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"hashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"saltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"spinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"sheet\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"objects\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"scenarios\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"formatCells\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"formatColumns\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"formatRows\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"insertColumns\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"insertRows\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"insertHyperlinks\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"deleteColumns\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"deleteRows\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"selectLockedCells\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"sort\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"autoFilter\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"pivotTables\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"selectUnlockedCells\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ProtectedRanges\">\n    <xsd:sequence>\n      <xsd:element name=\"protectedRange\" type=\"CT_ProtectedRange\" minOccurs=\"1\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ProtectedRange\">\n    <xsd:sequence>\n      <xsd:element name=\"securityDescriptor\" type=\"xsd:string\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"password\" type=\"ST_UnsignedShortHex\" use=\"optional\"/>\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"securityDescriptor\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"algorithmName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"hashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"saltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"spinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Scenario\">\n    <xsd:sequence>\n      <xsd:element name=\"inputCells\" type=\"CT_InputCells\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"locked\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"user\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"comment\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_InputCells\">\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"required\"/>\n    <xsd:attribute name=\"deleted\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"undone\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellWatches\">\n    <xsd:sequence>\n      <xsd:element name=\"cellWatch\" type=\"CT_CellWatch\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellWatch\">\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Chartsheet\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetPr\" type=\"CT_ChartsheetPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetViews\" type=\"CT_ChartsheetViews\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetProtection\" type=\"CT_ChartsheetProtection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customSheetViews\" type=\"CT_CustomChartsheetViews\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"pageMargins\" minOccurs=\"0\" type=\"CT_PageMargins\"/>\n      <xsd:element name=\"pageSetup\" type=\"CT_CsPageSetup\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headerFooter\" minOccurs=\"0\" type=\"CT_HeaderFooter\"/>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawing\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"legacyDrawingHF\" type=\"CT_LegacyDrawing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"drawingHF\" type=\"CT_DrawingHF\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"picture\" type=\"CT_SheetBackgroundPicture\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"webPublishItems\" type=\"CT_WebPublishItems\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartsheetPr\">\n    <xsd:sequence>\n      <xsd:element name=\"tabColor\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"published\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"codeName\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartsheetViews\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetView\" type=\"CT_ChartsheetView\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartsheetView\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"tabSelected\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"zoomScale\" type=\"xsd:unsignedInt\" default=\"100\" use=\"optional\"/>\n    <xsd:attribute name=\"workbookViewId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"zoomToFit\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ChartsheetProtection\">\n    <xsd:attribute name=\"password\" type=\"ST_UnsignedShortHex\" use=\"optional\"/>\n    <xsd:attribute name=\"algorithmName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"hashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"saltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"spinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"content\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"objects\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CsPageSetup\">\n    <xsd:attribute name=\"paperSize\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"paperHeight\" type=\"s:ST_PositiveUniversalMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"paperWidth\" type=\"s:ST_PositiveUniversalMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"firstPageNumber\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"orientation\" type=\"ST_Orientation\" use=\"optional\" default=\"default\"/>\n    <xsd:attribute name=\"usePrinterDefaults\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"blackAndWhite\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"draft\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"useFirstPageNumber\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"horizontalDpi\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"verticalDpi\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"copies\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomChartsheetViews\">\n    <xsd:sequence>\n      <xsd:element name=\"customSheetView\" minOccurs=\"0\" maxOccurs=\"unbounded\"\n        type=\"CT_CustomChartsheetView\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomChartsheetView\">\n    <xsd:sequence>\n      <xsd:element name=\"pageMargins\" type=\"CT_PageMargins\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pageSetup\" type=\"CT_CsPageSetup\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"headerFooter\" type=\"CT_HeaderFooter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"scale\" type=\"xsd:unsignedInt\" default=\"100\"/>\n    <xsd:attribute name=\"state\" type=\"ST_SheetState\" default=\"visible\"/>\n    <xsd:attribute name=\"zoomToFit\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomProperties\">\n    <xsd:sequence>\n      <xsd:element name=\"customPr\" type=\"CT_CustomProperty\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomProperty\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleObjects\">\n    <xsd:sequence>\n      <xsd:element name=\"oleObject\" type=\"CT_OleObject\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleObject\">\n    <xsd:sequence>\n      <xsd:element name=\"objectPr\" type=\"CT_ObjectPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"progId\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"dvAspect\" type=\"ST_DvAspect\" use=\"optional\" default=\"DVASPECT_CONTENT\"/>\n    <xsd:attribute name=\"link\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"oleUpdate\" type=\"ST_OleUpdate\" use=\"optional\"/>\n    <xsd:attribute name=\"autoLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"shapeId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ObjectPr\">\n    <xsd:sequence>\n      <xsd:element name=\"anchor\" type=\"CT_ObjectAnchor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"locked\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"defaultSize\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"print\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"disabled\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"uiObject\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoFill\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"autoLine\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"autoPict\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"macro\" type=\"ST_Formula\" use=\"optional\"/>\n    <xsd:attribute name=\"altText\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"dde\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DvAspect\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"DVASPECT_CONTENT\"/>\n      <xsd:enumeration value=\"DVASPECT_ICON\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OleUpdate\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"OLEUPDATE_ALWAYS\"/>\n      <xsd:enumeration value=\"OLEUPDATE_ONCALL\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_WebPublishItems\">\n    <xsd:sequence>\n      <xsd:element name=\"webPublishItem\" type=\"CT_WebPublishItem\" minOccurs=\"1\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WebPublishItem\">\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"divId\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"sourceType\" type=\"ST_WebSourceType\" use=\"required\"/>\n    <xsd:attribute name=\"sourceRef\" type=\"ST_Ref\" use=\"optional\"/>\n    <xsd:attribute name=\"sourceObject\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"destinationFile\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"title\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"autoRepublish\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Controls\">\n    <xsd:sequence>\n      <xsd:element name=\"control\" type=\"CT_Control\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Control\">\n    <xsd:sequence>\n      <xsd:element name=\"controlPr\" type=\"CT_ControlPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"shapeId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ControlPr\">\n    <xsd:sequence>\n      <xsd:element name=\"anchor\" type=\"CT_ObjectAnchor\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"locked\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"defaultSize\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"print\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"disabled\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"recalcAlways\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"uiObject\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoFill\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"autoLine\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"autoPict\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"macro\" type=\"ST_Formula\" use=\"optional\"/>\n    <xsd:attribute name=\"altText\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"linkedCell\" type=\"ST_Formula\" use=\"optional\"/>\n    <xsd:attribute name=\"listFillRange\" type=\"ST_Formula\" use=\"optional\"/>\n    <xsd:attribute name=\"cf\" type=\"s:ST_Xstring\" use=\"optional\" default=\"pict\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_WebSourceType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"sheet\"/>\n      <xsd:enumeration value=\"printArea\"/>\n      <xsd:enumeration value=\"autoFilter\"/>\n      <xsd:enumeration value=\"range\"/>\n      <xsd:enumeration value=\"chart\"/>\n      <xsd:enumeration value=\"pivotTable\"/>\n      <xsd:enumeration value=\"query\"/>\n      <xsd:enumeration value=\"label\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_IgnoredErrors\">\n    <xsd:sequence>\n      <xsd:element name=\"ignoredError\" type=\"CT_IgnoredError\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_IgnoredError\">\n    <xsd:attribute name=\"sqref\" type=\"ST_Sqref\" use=\"required\"/>\n    <xsd:attribute name=\"evalError\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"twoDigitTextYear\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"numberStoredAsText\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"formula\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"formulaRange\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"unlockedFormula\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"emptyCellReference\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"listDataValidation\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"calculatedColumn\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PaneState\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"split\"/>\n      <xsd:enumeration value=\"frozen\"/>\n      <xsd:enumeration value=\"frozenSplit\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TableParts\">\n    <xsd:sequence>\n      <xsd:element name=\"tablePart\" type=\"CT_TablePart\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TablePart\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"metadata\" type=\"CT_Metadata\"/>\n  <xsd:complexType name=\"CT_Metadata\">\n    <xsd:sequence>\n      <xsd:element name=\"metadataTypes\" type=\"CT_MetadataTypes\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"metadataStrings\" type=\"CT_MetadataStrings\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"mdxMetadata\" type=\"CT_MdxMetadata\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"futureMetadata\" type=\"CT_FutureMetadata\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"cellMetadata\" type=\"CT_MetadataBlocks\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"valueMetadata\" type=\"CT_MetadataBlocks\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MetadataTypes\">\n    <xsd:sequence>\n      <xsd:element name=\"metadataType\" type=\"CT_MetadataType\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MetadataType\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"minSupportedVersion\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"ghostRow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"ghostCol\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"edit\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"delete\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"copy\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteAll\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteFormulas\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteValues\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteFormats\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteComments\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteDataValidation\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteBorders\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteColWidths\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pasteNumberFormats\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"merge\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"splitFirst\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"splitAll\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"rowColShift\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"clearAll\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"clearFormats\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"clearContents\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"clearComments\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"assign\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"coerce\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"adjust\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"cellMeta\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MetadataBlocks\">\n    <xsd:sequence>\n      <xsd:element name=\"bk\" type=\"CT_MetadataBlock\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MetadataBlock\">\n    <xsd:sequence>\n      <xsd:element name=\"rc\" type=\"CT_MetadataRecord\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MetadataRecord\">\n    <xsd:attribute name=\"t\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"v\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FutureMetadata\">\n    <xsd:sequence>\n      <xsd:element name=\"bk\" type=\"CT_FutureMetadataBlock\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FutureMetadataBlock\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MdxMetadata\">\n    <xsd:sequence>\n      <xsd:element name=\"mdx\" type=\"CT_Mdx\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Mdx\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"t\" type=\"CT_MdxTuple\"/>\n      <xsd:element name=\"ms\" type=\"CT_MdxSet\"/>\n      <xsd:element name=\"p\" type=\"CT_MdxMemeberProp\"/>\n      <xsd:element name=\"k\" type=\"CT_MdxKPI\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"n\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"f\" type=\"ST_MdxFunctionType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MdxFunctionType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"m\"/>\n      <xsd:enumeration value=\"v\"/>\n      <xsd:enumeration value=\"s\"/>\n      <xsd:enumeration value=\"c\"/>\n      <xsd:enumeration value=\"r\"/>\n      <xsd:enumeration value=\"p\"/>\n      <xsd:enumeration value=\"k\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MdxTuple\">\n    <xsd:sequence>\n      <xsd:element name=\"n\" type=\"CT_MetadataStringIndex\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"c\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"ct\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"si\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"fi\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"bc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"fc\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"i\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"u\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"st\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"b\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MdxSet\">\n    <xsd:sequence>\n      <xsd:element name=\"n\" type=\"CT_MetadataStringIndex\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ns\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"c\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"o\" type=\"ST_MdxSetOrder\" use=\"optional\" default=\"u\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MdxSetOrder\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"u\"/>\n      <xsd:enumeration value=\"a\"/>\n      <xsd:enumeration value=\"d\"/>\n      <xsd:enumeration value=\"aa\"/>\n      <xsd:enumeration value=\"ad\"/>\n      <xsd:enumeration value=\"na\"/>\n      <xsd:enumeration value=\"nd\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MdxMemeberProp\">\n    <xsd:attribute name=\"n\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"np\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MdxKPI\">\n    <xsd:attribute name=\"n\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"np\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"p\" type=\"ST_MdxKPIProperty\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MdxKPIProperty\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"v\"/>\n      <xsd:enumeration value=\"g\"/>\n      <xsd:enumeration value=\"s\"/>\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"w\"/>\n      <xsd:enumeration value=\"m\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MetadataStringIndex\">\n    <xsd:attribute name=\"x\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MetadataStrings\">\n    <xsd:sequence>\n      <xsd:element name=\"s\" type=\"CT_XStringElement\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:element name=\"singleXmlCells\" type=\"CT_SingleXmlCells\"/>\n  <xsd:complexType name=\"CT_SingleXmlCells\">\n    <xsd:sequence>\n      <xsd:element name=\"singleXmlCell\" type=\"CT_SingleXmlCell\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SingleXmlCell\">\n    <xsd:sequence>\n      <xsd:element name=\"xmlCellPr\" type=\"CT_XmlCellPr\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"required\"/>\n    <xsd:attribute name=\"connectionId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_XmlCellPr\">\n    <xsd:sequence>\n      <xsd:element name=\"xmlPr\" type=\"CT_XmlPr\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"uniqueName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_XmlPr\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"mapId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"xpath\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"xmlDataType\" type=\"ST_XmlDataType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:element name=\"styleSheet\" type=\"CT_Stylesheet\"/>\n  <xsd:complexType name=\"CT_Stylesheet\">\n    <xsd:sequence>\n      <xsd:element name=\"numFmts\" type=\"CT_NumFmts\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fonts\" type=\"CT_Fonts\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fills\" type=\"CT_Fills\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"borders\" type=\"CT_Borders\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cellStyleXfs\" type=\"CT_CellStyleXfs\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cellXfs\" type=\"CT_CellXfs\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cellStyles\" type=\"CT_CellStyles\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"dxfs\" type=\"CT_Dxfs\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tableStyles\" type=\"CT_TableStyles\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"colors\" type=\"CT_Colors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellAlignment\">\n    <xsd:attribute name=\"horizontal\" type=\"ST_HorizontalAlignment\" use=\"optional\"/>\n    <xsd:attribute name=\"vertical\" type=\"ST_VerticalAlignment\" default=\"bottom\" use=\"optional\"/>\n    <xsd:attribute name=\"textRotation\" type=\"ST_TextRotation\" use=\"optional\"/>\n    <xsd:attribute name=\"wrapText\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"indent\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"relativeIndent\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"justifyLastLine\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"shrinkToFit\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"readingOrder\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextRotation\">\n    <xsd:union>\n      <xsd:simpleType>\n        <xsd:restriction base=\"xsd:nonNegativeInteger\">\n          <xsd:maxInclusive value=\"180\"/>\n        </xsd:restriction>\n      </xsd:simpleType>\n      <xsd:simpleType>\n        <xsd:restriction base=\"xsd:nonNegativeInteger\">\n          <xsd:enumeration value=\"255\"/>\n        </xsd:restriction>\n      </xsd:simpleType>\n    </xsd:union>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BorderStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"thin\"/>\n      <xsd:enumeration value=\"medium\"/>\n      <xsd:enumeration value=\"dashed\"/>\n      <xsd:enumeration value=\"dotted\"/>\n      <xsd:enumeration value=\"thick\"/>\n      <xsd:enumeration value=\"double\"/>\n      <xsd:enumeration value=\"hair\"/>\n      <xsd:enumeration value=\"mediumDashed\"/>\n      <xsd:enumeration value=\"dashDot\"/>\n      <xsd:enumeration value=\"mediumDashDot\"/>\n      <xsd:enumeration value=\"dashDotDot\"/>\n      <xsd:enumeration value=\"mediumDashDotDot\"/>\n      <xsd:enumeration value=\"slantDashDot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Borders\">\n    <xsd:sequence>\n      <xsd:element name=\"border\" type=\"CT_Border\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Border\">\n    <xsd:sequence>\n      <xsd:element name=\"start\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"end\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"left\" type=\"CT_BorderPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"right\" type=\"CT_BorderPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"top\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bottom\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"diagonal\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"vertical\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"horizontal\" type=\"CT_BorderPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"diagonalUp\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"diagonalDown\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"outline\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BorderPr\">\n    <xsd:sequence>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"style\" type=\"ST_BorderStyle\" use=\"optional\" default=\"none\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellProtection\">\n    <xsd:attribute name=\"locked\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Fonts\">\n    <xsd:sequence>\n      <xsd:element name=\"font\" type=\"CT_Font\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Fills\">\n    <xsd:sequence>\n      <xsd:element name=\"fill\" type=\"CT_Fill\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Fill\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"1\">\n      <xsd:element name=\"patternFill\" type=\"CT_PatternFill\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gradientFill\" type=\"CT_GradientFill\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PatternFill\">\n    <xsd:sequence>\n      <xsd:element name=\"fgColor\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bgColor\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"patternType\" type=\"ST_PatternType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Color\">\n    <xsd:attribute name=\"auto\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"indexed\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"rgb\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n    <xsd:attribute name=\"theme\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"tint\" type=\"xsd:double\" use=\"optional\" default=\"0.0\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PatternType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"solid\"/>\n      <xsd:enumeration value=\"mediumGray\"/>\n      <xsd:enumeration value=\"darkGray\"/>\n      <xsd:enumeration value=\"lightGray\"/>\n      <xsd:enumeration value=\"darkHorizontal\"/>\n      <xsd:enumeration value=\"darkVertical\"/>\n      <xsd:enumeration value=\"darkDown\"/>\n      <xsd:enumeration value=\"darkUp\"/>\n      <xsd:enumeration value=\"darkGrid\"/>\n      <xsd:enumeration value=\"darkTrellis\"/>\n      <xsd:enumeration value=\"lightHorizontal\"/>\n      <xsd:enumeration value=\"lightVertical\"/>\n      <xsd:enumeration value=\"lightDown\"/>\n      <xsd:enumeration value=\"lightUp\"/>\n      <xsd:enumeration value=\"lightGrid\"/>\n      <xsd:enumeration value=\"lightTrellis\"/>\n      <xsd:enumeration value=\"gray125\"/>\n      <xsd:enumeration value=\"gray0625\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_GradientFill\">\n    <xsd:sequence>\n      <xsd:element name=\"stop\" type=\"CT_GradientStop\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_GradientType\" use=\"optional\" default=\"linear\"/>\n    <xsd:attribute name=\"degree\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"left\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"right\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"top\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"bottom\" type=\"xsd:double\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GradientStop\">\n    <xsd:sequence>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"position\" type=\"xsd:double\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_GradientType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"linear\"/>\n      <xsd:enumeration value=\"path\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HorizontalAlignment\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"general\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"fill\"/>\n      <xsd:enumeration value=\"justify\"/>\n      <xsd:enumeration value=\"centerContinuous\"/>\n      <xsd:enumeration value=\"distributed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VerticalAlignment\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"justify\"/>\n      <xsd:enumeration value=\"distributed\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_NumFmts\">\n    <xsd:sequence>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumFmt\">\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"required\"/>\n    <xsd:attribute name=\"formatCode\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellStyleXfs\">\n    <xsd:sequence>\n      <xsd:element name=\"xf\" type=\"CT_Xf\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellXfs\">\n    <xsd:sequence>\n      <xsd:element name=\"xf\" type=\"CT_Xf\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Xf\">\n    <xsd:sequence>\n      <xsd:element name=\"alignment\" type=\"CT_CellAlignment\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"protection\" type=\"CT_CellProtection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"numFmtId\" type=\"ST_NumFmtId\" use=\"optional\"/>\n    <xsd:attribute name=\"fontId\" type=\"ST_FontId\" use=\"optional\"/>\n    <xsd:attribute name=\"fillId\" type=\"ST_FillId\" use=\"optional\"/>\n    <xsd:attribute name=\"borderId\" type=\"ST_BorderId\" use=\"optional\"/>\n    <xsd:attribute name=\"xfId\" type=\"ST_CellStyleXfId\" use=\"optional\"/>\n    <xsd:attribute name=\"quotePrefix\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"pivotButton\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"applyNumberFormat\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"applyFont\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"applyFill\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"applyBorder\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"applyAlignment\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"applyProtection\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellStyles\">\n    <xsd:sequence>\n      <xsd:element name=\"cellStyle\" type=\"CT_CellStyle\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"xfId\" type=\"ST_CellStyleXfId\" use=\"required\"/>\n    <xsd:attribute name=\"builtinId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"iLevel\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"customBuiltin\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Dxfs\">\n    <xsd:sequence>\n      <xsd:element name=\"dxf\" type=\"CT_Dxf\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Dxf\">\n    <xsd:sequence>\n      <xsd:element name=\"font\" type=\"CT_Font\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fill\" type=\"CT_Fill\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"alignment\" type=\"CT_CellAlignment\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"border\" type=\"CT_Border\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"protection\" type=\"CT_CellProtection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_NumFmtId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FontId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FillId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BorderId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CellStyleXfId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DxfId\">\n    <xsd:restriction base=\"xsd:unsignedInt\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Colors\">\n    <xsd:sequence>\n      <xsd:element name=\"indexedColors\" type=\"CT_IndexedColors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"mruColors\" type=\"CT_MRUColors\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_IndexedColors\">\n    <xsd:sequence>\n      <xsd:element name=\"rgbColor\" type=\"CT_RgbColor\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MRUColors\">\n    <xsd:sequence>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RgbColor\">\n    <xsd:attribute name=\"rgb\" type=\"ST_UnsignedIntHex\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableStyles\">\n    <xsd:sequence>\n      <xsd:element name=\"tableStyle\" type=\"CT_TableStyle\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"defaultTableStyle\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"defaultPivotStyle\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableStyle\">\n    <xsd:sequence>\n      <xsd:element name=\"tableStyleElement\" type=\"CT_TableStyleElement\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"pivot\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"table\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableStyleElement\">\n    <xsd:attribute name=\"type\" type=\"ST_TableStyleType\" use=\"required\"/>\n    <xsd:attribute name=\"size\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"dxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TableStyleType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"wholeTable\"/>\n      <xsd:enumeration value=\"headerRow\"/>\n      <xsd:enumeration value=\"totalRow\"/>\n      <xsd:enumeration value=\"firstColumn\"/>\n      <xsd:enumeration value=\"lastColumn\"/>\n      <xsd:enumeration value=\"firstRowStripe\"/>\n      <xsd:enumeration value=\"secondRowStripe\"/>\n      <xsd:enumeration value=\"firstColumnStripe\"/>\n      <xsd:enumeration value=\"secondColumnStripe\"/>\n      <xsd:enumeration value=\"firstHeaderCell\"/>\n      <xsd:enumeration value=\"lastHeaderCell\"/>\n      <xsd:enumeration value=\"firstTotalCell\"/>\n      <xsd:enumeration value=\"lastTotalCell\"/>\n      <xsd:enumeration value=\"firstSubtotalColumn\"/>\n      <xsd:enumeration value=\"secondSubtotalColumn\"/>\n      <xsd:enumeration value=\"thirdSubtotalColumn\"/>\n      <xsd:enumeration value=\"firstSubtotalRow\"/>\n      <xsd:enumeration value=\"secondSubtotalRow\"/>\n      <xsd:enumeration value=\"thirdSubtotalRow\"/>\n      <xsd:enumeration value=\"blankRow\"/>\n      <xsd:enumeration value=\"firstColumnSubheading\"/>\n      <xsd:enumeration value=\"secondColumnSubheading\"/>\n      <xsd:enumeration value=\"thirdColumnSubheading\"/>\n      <xsd:enumeration value=\"firstRowSubheading\"/>\n      <xsd:enumeration value=\"secondRowSubheading\"/>\n      <xsd:enumeration value=\"thirdRowSubheading\"/>\n      <xsd:enumeration value=\"pageFieldLabels\"/>\n      <xsd:enumeration value=\"pageFieldValues\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_BooleanProperty\">\n    <xsd:attribute name=\"val\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontSize\">\n    <xsd:attribute name=\"val\" type=\"xsd:double\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_IntProperty\">\n    <xsd:attribute name=\"val\" type=\"xsd:int\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontName\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VerticalAlignFontProperty\">\n    <xsd:attribute name=\"val\" type=\"s:ST_VerticalAlignRun\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontScheme\">\n    <xsd:attribute name=\"val\" type=\"ST_FontScheme\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FontScheme\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"major\"/>\n      <xsd:enumeration value=\"minor\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_UnderlineProperty\">\n    <xsd:attribute name=\"val\" type=\"ST_UnderlineValues\" use=\"optional\" default=\"single\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_UnderlineValues\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"single\"/>\n      <xsd:enumeration value=\"double\"/>\n      <xsd:enumeration value=\"singleAccounting\"/>\n      <xsd:enumeration value=\"doubleAccounting\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Font\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"name\" type=\"CT_FontName\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"charset\" type=\"CT_IntProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"family\" type=\"CT_FontFamily\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"b\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"i\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"strike\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"outline\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shadow\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"condense\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extend\" type=\"CT_BooleanProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sz\" type=\"CT_FontSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"u\" type=\"CT_UnderlineProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"vertAlign\" type=\"CT_VerticalAlignFontProperty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"scheme\" type=\"CT_FontScheme\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontFamily\">\n    <xsd:attribute name=\"val\" type=\"ST_FontFamily\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FontFamily\">\n    <xsd:restriction base=\"xsd:integer\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"14\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:attributeGroup name=\"AG_AutoFormat\">\n    <xsd:attribute name=\"autoFormatId\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"applyNumberFormats\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"applyBorderFormats\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"applyFontFormats\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"applyPatternFormats\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"applyAlignmentFormats\" type=\"xsd:boolean\"/>\n    <xsd:attribute name=\"applyWidthHeightFormats\" type=\"xsd:boolean\"/>\n  </xsd:attributeGroup>\n  <xsd:element name=\"externalLink\" type=\"CT_ExternalLink\"/>\n  <xsd:complexType name=\"CT_ExternalLink\">\n    <xsd:sequence>\n      <xsd:choice>\n        <xsd:element name=\"externalBook\" type=\"CT_ExternalBook\" minOccurs=\"0\" maxOccurs=\"1\"/>\n        <xsd:element name=\"ddeLink\" type=\"CT_DdeLink\" minOccurs=\"0\" maxOccurs=\"1\"/>\n        <xsd:element name=\"oleLink\" type=\"CT_OleLink\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      </xsd:choice>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalBook\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetNames\" type=\"CT_ExternalSheetNames\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"definedNames\" type=\"CT_ExternalDefinedNames\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheetDataSet\" type=\"CT_ExternalSheetDataSet\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalSheetNames\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetName\" minOccurs=\"1\" maxOccurs=\"unbounded\" type=\"CT_ExternalSheetName\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalSheetName\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalDefinedNames\">\n    <xsd:sequence>\n      <xsd:element name=\"definedName\" type=\"CT_ExternalDefinedName\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalDefinedName\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"refersTo\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalSheetDataSet\">\n    <xsd:sequence>\n      <xsd:element name=\"sheetData\" type=\"CT_ExternalSheetData\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalSheetData\">\n    <xsd:sequence>\n      <xsd:element name=\"row\" type=\"CT_ExternalRow\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"refreshError\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalRow\">\n    <xsd:sequence>\n      <xsd:element name=\"cell\" type=\"CT_ExternalCell\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"r\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalCell\">\n    <xsd:sequence>\n      <xsd:element name=\"v\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"optional\"/>\n    <xsd:attribute name=\"t\" type=\"ST_CellType\" use=\"optional\" default=\"n\"/>\n    <xsd:attribute name=\"vm\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DdeLink\">\n    <xsd:sequence>\n      <xsd:element name=\"ddeItems\" type=\"CT_DdeItems\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ddeService\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"ddeTopic\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DdeItems\">\n    <xsd:sequence>\n      <xsd:element name=\"ddeItem\" type=\"CT_DdeItem\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DdeItem\">\n    <xsd:sequence>\n      <xsd:element name=\"values\" type=\"CT_DdeValues\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" default=\"0\"/>\n    <xsd:attribute name=\"ole\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"advise\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"preferPic\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DdeValues\">\n    <xsd:sequence>\n      <xsd:element name=\"value\" minOccurs=\"1\" maxOccurs=\"unbounded\" type=\"CT_DdeValue\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rows\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"cols\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DdeValue\">\n    <xsd:sequence>\n      <xsd:element name=\"val\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"t\" type=\"ST_DdeValueType\" use=\"optional\" default=\"n\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DdeValueType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"nil\"/>\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"n\"/>\n      <xsd:enumeration value=\"e\"/>\n      <xsd:enumeration value=\"str\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_OleLink\">\n    <xsd:sequence>\n      <xsd:element name=\"oleItems\" type=\"CT_OleItems\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n    <xsd:attribute name=\"progId\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleItems\">\n    <xsd:sequence>\n      <xsd:element name=\"oleItem\" type=\"CT_OleItem\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleItem\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"icon\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"advise\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"preferPic\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:element name=\"table\" type=\"CT_Table\"/>\n  <xsd:complexType name=\"CT_Table\">\n    <xsd:sequence>\n      <xsd:element name=\"autoFilter\" type=\"CT_AutoFilter\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sortState\" type=\"CT_SortState\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tableColumns\" type=\"CT_TableColumns\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tableStyleInfo\" type=\"CT_TableStyleInfo\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"displayName\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"comment\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n    <xsd:attribute name=\"tableType\" type=\"ST_TableType\" use=\"optional\" default=\"worksheet\"/>\n    <xsd:attribute name=\"headerRowCount\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"insertRow\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"insertRowShift\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"totalsRowCount\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"totalsRowShown\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"published\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"headerRowDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"dataDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"totalsRowDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"headerRowBorderDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"tableBorderDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"totalsRowBorderDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"headerRowCellStyle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"dataCellStyle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"totalsRowCellStyle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"connectionId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TableType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"worksheet\"/>\n      <xsd:enumeration value=\"xml\"/>\n      <xsd:enumeration value=\"queryTable\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TableStyleInfo\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"showFirstColumn\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"showLastColumn\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"showRowStripes\" type=\"xsd:boolean\" use=\"optional\"/>\n    <xsd:attribute name=\"showColumnStripes\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableColumns\">\n    <xsd:sequence>\n      <xsd:element name=\"tableColumn\" type=\"CT_TableColumn\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableColumn\">\n    <xsd:sequence>\n      <xsd:element name=\"calculatedColumnFormula\" type=\"CT_TableFormula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"totalsRowFormula\" type=\"CT_TableFormula\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"xmlColumnPr\" type=\"CT_XmlColumnPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"uniqueName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"totalsRowFunction\" type=\"ST_TotalsRowFunction\" use=\"optional\"\n      default=\"none\"/>\n    <xsd:attribute name=\"totalsRowLabel\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"queryTableFieldId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"headerRowDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"dataDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"totalsRowDxfId\" type=\"ST_DxfId\" use=\"optional\"/>\n    <xsd:attribute name=\"headerRowCellStyle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"dataCellStyle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"totalsRowCellStyle\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TableFormula\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"ST_Formula\">\n        <xsd:attribute name=\"array\" type=\"xsd:boolean\" default=\"false\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TotalsRowFunction\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"sum\"/>\n      <xsd:enumeration value=\"min\"/>\n      <xsd:enumeration value=\"max\"/>\n      <xsd:enumeration value=\"average\"/>\n      <xsd:enumeration value=\"count\"/>\n      <xsd:enumeration value=\"countNums\"/>\n      <xsd:enumeration value=\"stdDev\"/>\n      <xsd:enumeration value=\"var\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_XmlColumnPr\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"mapId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"xpath\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"denormalized\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"xmlDataType\" type=\"ST_XmlDataType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_XmlDataType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:element name=\"volTypes\" type=\"CT_VolTypes\"/>\n  <xsd:complexType name=\"CT_VolTypes\">\n    <xsd:sequence>\n      <xsd:element name=\"volType\" type=\"CT_VolType\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VolType\">\n    <xsd:sequence>\n      <xsd:element name=\"main\" type=\"CT_VolMain\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_VolDepType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VolMain\">\n    <xsd:sequence>\n      <xsd:element name=\"tp\" type=\"CT_VolTopic\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"first\" type=\"s:ST_Xstring\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VolTopic\">\n    <xsd:sequence>\n      <xsd:element name=\"v\" type=\"s:ST_Xstring\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"stp\" type=\"s:ST_Xstring\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"tr\" type=\"CT_VolTopicRef\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"t\" type=\"ST_VolValueType\" use=\"optional\" default=\"n\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VolTopicRef\">\n    <xsd:attribute name=\"r\" type=\"ST_CellRef\" use=\"required\"/>\n    <xsd:attribute name=\"s\" type=\"xsd:unsignedInt\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_VolDepType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"realTimeData\"/>\n      <xsd:enumeration value=\"olapFunctions\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VolValueType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"b\"/>\n      <xsd:enumeration value=\"n\"/>\n      <xsd:enumeration value=\"e\"/>\n      <xsd:enumeration value=\"s\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:element name=\"workbook\" type=\"CT_Workbook\"/>\n  <xsd:complexType name=\"CT_Workbook\">\n    <xsd:sequence>\n      <xsd:element name=\"fileVersion\" type=\"CT_FileVersion\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fileSharing\" type=\"CT_FileSharing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"workbookPr\" type=\"CT_WorkbookPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"workbookProtection\" type=\"CT_WorkbookProtection\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"bookViews\" type=\"CT_BookViews\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sheets\" type=\"CT_Sheets\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"functionGroups\" type=\"CT_FunctionGroups\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"externalReferences\" type=\"CT_ExternalReferences\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"definedNames\" type=\"CT_DefinedNames\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"calcPr\" type=\"CT_CalcPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"oleSize\" type=\"CT_OleSize\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"customWorkbookViews\" type=\"CT_CustomWorkbookViews\" minOccurs=\"0\"\n        maxOccurs=\"1\"/>\n      <xsd:element name=\"pivotCaches\" type=\"CT_PivotCaches\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smartTagPr\" type=\"CT_SmartTagPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"smartTagTypes\" type=\"CT_SmartTagTypes\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"webPublishing\" type=\"CT_WebPublishing\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"fileRecoveryPr\" type=\"CT_FileRecoveryPr\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"webPublishObjects\" type=\"CT_WebPublishObjects\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"conformance\" type=\"s:ST_ConformanceClass\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FileVersion\">\n    <xsd:attribute name=\"appName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lastEdited\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lowestEdited\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"rupBuild\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"codeName\" type=\"s:ST_Guid\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BookViews\">\n    <xsd:sequence>\n      <xsd:element name=\"workbookView\" type=\"CT_BookView\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BookView\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" type=\"CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"visibility\" type=\"ST_Visibility\" use=\"optional\" default=\"visible\"/>\n    <xsd:attribute name=\"minimized\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showHorizontalScroll\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showVerticalScroll\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showSheetTabs\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"xWindow\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"yWindow\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"windowWidth\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"windowHeight\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"tabRatio\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"firstSheet\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"activeTab\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"autoFilterDateGrouping\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Visibility\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"visible\"/>\n      <xsd:enumeration value=\"hidden\"/>\n      <xsd:enumeration value=\"veryHidden\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_CustomWorkbookViews\">\n    <xsd:sequence>\n      <xsd:element name=\"customWorkbookView\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n        type=\"CT_CustomWorkbookView\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomWorkbookView\">\n    <xsd:sequence>\n      <xsd:element name=\"extLst\" minOccurs=\"0\" type=\"CT_ExtensionList\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"guid\" type=\"s:ST_Guid\" use=\"required\"/>\n    <xsd:attribute name=\"autoUpdate\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"mergeInterval\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"changesSavedWin\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"onlySync\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"personalView\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"includePrintSettings\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"includeHiddenRowCol\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"maximized\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"minimized\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showHorizontalScroll\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showVerticalScroll\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showSheetTabs\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"xWindow\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"yWindow\" type=\"xsd:int\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"windowWidth\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"windowHeight\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"tabRatio\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"600\"/>\n    <xsd:attribute name=\"activeSheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"showFormulaBar\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showStatusbar\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"showComments\" type=\"ST_Comments\" use=\"optional\" default=\"commIndicator\"/>\n    <xsd:attribute name=\"showObjects\" type=\"ST_Objects\" use=\"optional\" default=\"all\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Comments\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"commNone\"/>\n      <xsd:enumeration value=\"commIndicator\"/>\n      <xsd:enumeration value=\"commIndAndComment\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Objects\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"all\"/>\n      <xsd:enumeration value=\"placeholders\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Sheets\">\n    <xsd:sequence>\n      <xsd:element name=\"sheet\" type=\"CT_Sheet\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Sheet\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"sheetId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"state\" type=\"ST_SheetState\" use=\"optional\" default=\"visible\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SheetState\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"visible\"/>\n      <xsd:enumeration value=\"hidden\"/>\n      <xsd:enumeration value=\"veryHidden\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_WorkbookPr\">\n    <xsd:attribute name=\"date1904\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showObjects\" type=\"ST_Objects\" use=\"optional\" default=\"all\"/>\n    <xsd:attribute name=\"showBorderUnselectedTables\" type=\"xsd:boolean\" use=\"optional\"\n      default=\"true\"/>\n    <xsd:attribute name=\"filterPrivacy\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"promptedSolutions\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showInkAnnotation\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"backupFile\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"saveExternalLinkValues\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"updateLinks\" type=\"ST_UpdateLinks\" use=\"optional\" default=\"userSet\"/>\n    <xsd:attribute name=\"codeName\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"hidePivotFieldList\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"showPivotChartFilter\" type=\"xsd:boolean\" default=\"false\"/>\n    <xsd:attribute name=\"allowRefreshQuery\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"publishItems\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"checkCompatibility\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"autoCompressPictures\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"refreshAllConnections\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"defaultThemeVersion\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_UpdateLinks\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"userSet\"/>\n      <xsd:enumeration value=\"never\"/>\n      <xsd:enumeration value=\"always\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SmartTagPr\">\n    <xsd:attribute name=\"embed\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"show\" type=\"ST_SmartTagShow\" use=\"optional\" default=\"all\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SmartTagShow\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"all\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"noIndicator\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SmartTagTypes\">\n    <xsd:sequence>\n      <xsd:element name=\"smartTagType\" type=\"CT_SmartTagType\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SmartTagType\">\n    <xsd:attribute name=\"namespaceUri\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"url\" type=\"s:ST_Xstring\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FileRecoveryPr\">\n    <xsd:attribute name=\"autoRecover\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"crashSave\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"dataExtractLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"repairLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalcPr\">\n    <xsd:attribute name=\"calcId\" type=\"xsd:unsignedInt\"/>\n    <xsd:attribute name=\"calcMode\" type=\"ST_CalcMode\" use=\"optional\" default=\"auto\"/>\n    <xsd:attribute name=\"fullCalcOnLoad\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"refMode\" type=\"ST_RefMode\" use=\"optional\" default=\"A1\"/>\n    <xsd:attribute name=\"iterate\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"iterateCount\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"100\"/>\n    <xsd:attribute name=\"iterateDelta\" type=\"xsd:double\" use=\"optional\" default=\"0.001\"/>\n    <xsd:attribute name=\"fullPrecision\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"calcCompleted\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"calcOnSave\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"concurrentCalc\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"concurrentManualCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"forceFullCalc\" type=\"xsd:boolean\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CalcMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"manual\"/>\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"autoNoTable\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_RefMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"A1\"/>\n      <xsd:enumeration value=\"R1C1\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DefinedNames\">\n    <xsd:sequence>\n      <xsd:element name=\"definedName\" type=\"CT_DefinedName\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DefinedName\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"ST_Formula\">\n        <xsd:attribute name=\"name\" type=\"s:ST_Xstring\" use=\"required\"/>\n        <xsd:attribute name=\"comment\" type=\"s:ST_Xstring\" use=\"optional\"/>\n        <xsd:attribute name=\"customMenu\" type=\"s:ST_Xstring\" use=\"optional\"/>\n        <xsd:attribute name=\"description\" type=\"s:ST_Xstring\" use=\"optional\"/>\n        <xsd:attribute name=\"help\" type=\"s:ST_Xstring\" use=\"optional\"/>\n        <xsd:attribute name=\"statusBar\" type=\"s:ST_Xstring\" use=\"optional\"/>\n        <xsd:attribute name=\"localSheetId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n        <xsd:attribute name=\"hidden\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"function\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"vbProcedure\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"xlm\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"functionGroupId\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n        <xsd:attribute name=\"shortcutKey\" type=\"s:ST_Xstring\" use=\"optional\"/>\n        <xsd:attribute name=\"publishToServer\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n        <xsd:attribute name=\"workbookParameter\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalReferences\">\n    <xsd:sequence>\n      <xsd:element name=\"externalReference\" type=\"CT_ExternalReference\" minOccurs=\"1\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ExternalReference\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SheetBackgroundPicture\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotCaches\">\n    <xsd:sequence>\n      <xsd:element name=\"pivotCache\" type=\"CT_PivotCache\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PivotCache\">\n    <xsd:attribute name=\"cacheId\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FileSharing\">\n    <xsd:attribute name=\"readOnlyRecommended\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"userName\" type=\"s:ST_Xstring\"/>\n    <xsd:attribute name=\"reservationPassword\" type=\"ST_UnsignedShortHex\"/>\n    <xsd:attribute name=\"algorithmName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"hashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"saltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"spinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OleSize\">\n    <xsd:attribute name=\"ref\" type=\"ST_Ref\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WorkbookProtection\">\n    <xsd:attribute name=\"workbookPassword\" type=\"ST_UnsignedShortHex\" use=\"optional\"/>\n    <xsd:attribute name=\"workbookPasswordCharacterSet\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"revisionsPassword\" type=\"ST_UnsignedShortHex\" use=\"optional\"/>\n    <xsd:attribute name=\"revisionsPasswordCharacterSet\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lockStructure\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"lockWindows\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"lockRevision\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"revisionsAlgorithmName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"revisionsHashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"revisionsSaltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"revisionsSpinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"workbookAlgorithmName\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"workbookHashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"workbookSaltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"workbookSpinCount\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WebPublishing\">\n    <xsd:attribute name=\"css\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"thicket\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"longFileNames\" type=\"xsd:boolean\" use=\"optional\" default=\"true\"/>\n    <xsd:attribute name=\"vml\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"allowPng\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"targetScreenSize\" type=\"ST_TargetScreenSize\" use=\"optional\"\n      default=\"800x600\"/>\n    <xsd:attribute name=\"dpi\" type=\"xsd:unsignedInt\" use=\"optional\" default=\"96\"/>\n    <xsd:attribute name=\"codePage\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n    <xsd:attribute name=\"characterSet\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TargetScreenSize\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"544x376\"/>\n      <xsd:enumeration value=\"640x480\"/>\n      <xsd:enumeration value=\"720x512\"/>\n      <xsd:enumeration value=\"800x600\"/>\n      <xsd:enumeration value=\"1024x768\"/>\n      <xsd:enumeration value=\"1152x882\"/>\n      <xsd:enumeration value=\"1152x900\"/>\n      <xsd:enumeration value=\"1280x1024\"/>\n      <xsd:enumeration value=\"1600x1200\"/>\n      <xsd:enumeration value=\"1800x1440\"/>\n      <xsd:enumeration value=\"1920x1200\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FunctionGroups\">\n    <xsd:sequence maxOccurs=\"unbounded\">\n      <xsd:element name=\"functionGroup\" type=\"CT_FunctionGroup\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"builtInGroupCount\" type=\"xsd:unsignedInt\" default=\"16\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FunctionGroup\">\n    <xsd:attribute name=\"name\" type=\"s:ST_Xstring\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WebPublishObjects\">\n    <xsd:sequence>\n      <xsd:element name=\"webPublishObject\" type=\"CT_WebPublishObject\" minOccurs=\"1\"\n        maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"count\" type=\"xsd:unsignedInt\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WebPublishObject\">\n    <xsd:attribute name=\"id\" type=\"xsd:unsignedInt\" use=\"required\"/>\n    <xsd:attribute name=\"divId\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"sourceObject\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"destinationFile\" type=\"s:ST_Xstring\" use=\"required\"/>\n    <xsd:attribute name=\"title\" type=\"s:ST_Xstring\" use=\"optional\"/>\n    <xsd:attribute name=\"autoRepublish\" type=\"xsd:boolean\" use=\"optional\" default=\"false\"/>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns=\"urn:schemas-microsoft-com:vml\"\n  xmlns:pvml=\"urn:schemas-microsoft-com:office:powerpoint\"\n  xmlns:o=\"urn:schemas-microsoft-com:office:office\"\n  xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n  xmlns:w10=\"urn:schemas-microsoft-com:office:word\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:x=\"urn:schemas-microsoft-com:office:excel\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"urn:schemas-microsoft-com:vml\" elementFormDefault=\"qualified\"\n  attributeFormDefault=\"unqualified\">\n  <xsd:import namespace=\"urn:schemas-microsoft-com:office:office\"\n    schemaLocation=\"vml-officeDrawing.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n    schemaLocation=\"wml.xsd\"/>\n  <xsd:import namespace=\"urn:schemas-microsoft-com:office:word\"\n    schemaLocation=\"vml-wordprocessingDrawing.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"urn:schemas-microsoft-com:office:excel\"\n    schemaLocation=\"vml-spreadsheetDrawing.xsd\"/>\n  <xsd:import namespace=\"urn:schemas-microsoft-com:office:powerpoint\"\n    schemaLocation=\"vml-presentationDrawing.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:attributeGroup name=\"AG_Id\">\n    <xsd:attribute name=\"id\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Style\">\n    <xsd:attribute name=\"style\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Type\">\n    <xsd:attribute name=\"type\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Adj\">\n    <xsd:attribute name=\"adj\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Path\">\n    <xsd:attribute name=\"path\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Fill\">\n    <xsd:attribute name=\"filled\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"fillcolor\" type=\"s:ST_ColorType\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Chromakey\">\n    <xsd:attribute name=\"chromakey\" type=\"s:ST_ColorType\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_Ext\">\n    <xsd:attribute name=\"ext\" form=\"qualified\" type=\"ST_Ext\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_CoreAttributes\">\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attributeGroup ref=\"AG_Style\"/>\n    <xsd:attribute name=\"href\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"target\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"class\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"title\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"alt\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"coordsize\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"coordorigin\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"wrapcoords\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"print\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_ShapeAttributes\">\n    <xsd:attributeGroup ref=\"AG_Chromakey\"/>\n    <xsd:attributeGroup ref=\"AG_Fill\"/>\n    <xsd:attribute name=\"opacity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"stroked\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"strokecolor\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"strokeweight\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"insetpen\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_OfficeCoreAttributes\">\n    <xsd:attribute ref=\"o:spid\"/>\n    <xsd:attribute ref=\"o:oned\"/>\n    <xsd:attribute ref=\"o:regroupid\"/>\n    <xsd:attribute ref=\"o:doubleclicknotify\"/>\n    <xsd:attribute ref=\"o:button\"/>\n    <xsd:attribute ref=\"o:userhidden\"/>\n    <xsd:attribute ref=\"o:bullet\"/>\n    <xsd:attribute ref=\"o:hr\"/>\n    <xsd:attribute ref=\"o:hrstd\"/>\n    <xsd:attribute ref=\"o:hrnoshade\"/>\n    <xsd:attribute ref=\"o:hrpct\"/>\n    <xsd:attribute ref=\"o:hralign\"/>\n    <xsd:attribute ref=\"o:allowincell\"/>\n    <xsd:attribute ref=\"o:allowoverlap\"/>\n    <xsd:attribute ref=\"o:userdrawn\"/>\n    <xsd:attribute ref=\"o:bordertopcolor\"/>\n    <xsd:attribute ref=\"o:borderleftcolor\"/>\n    <xsd:attribute ref=\"o:borderbottomcolor\"/>\n    <xsd:attribute ref=\"o:borderrightcolor\"/>\n    <xsd:attribute ref=\"o:dgmlayout\"/>\n    <xsd:attribute ref=\"o:dgmnodekind\"/>\n    <xsd:attribute ref=\"o:dgmlayoutmru\"/>\n    <xsd:attribute ref=\"o:insetmode\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_OfficeShapeAttributes\">\n    <xsd:attribute ref=\"o:spt\"/>\n    <xsd:attribute ref=\"o:connectortype\"/>\n    <xsd:attribute ref=\"o:bwmode\"/>\n    <xsd:attribute ref=\"o:bwpure\"/>\n    <xsd:attribute ref=\"o:bwnormal\"/>\n    <xsd:attribute ref=\"o:forcedash\"/>\n    <xsd:attribute ref=\"o:oleicon\"/>\n    <xsd:attribute ref=\"o:ole\"/>\n    <xsd:attribute ref=\"o:preferrelative\"/>\n    <xsd:attribute ref=\"o:cliptowrap\"/>\n    <xsd:attribute ref=\"o:clip\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_AllCoreAttributes\">\n    <xsd:attributeGroup ref=\"AG_CoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_OfficeCoreAttributes\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_AllShapeAttributes\">\n    <xsd:attributeGroup ref=\"AG_ShapeAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_OfficeShapeAttributes\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_ImageAttributes\">\n    <xsd:attribute name=\"src\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"cropleft\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"croptop\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"cropright\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"cropbottom\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"gain\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"blacklevel\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"gamma\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"grayscale\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"bilevel\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_StrokeAttributes\">\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"weight\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"color\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"opacity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"linestyle\" type=\"ST_StrokeLineStyle\" use=\"optional\"/>\n    <xsd:attribute name=\"miterlimit\" type=\"xsd:decimal\" use=\"optional\"/>\n    <xsd:attribute name=\"joinstyle\" type=\"ST_StrokeJoinStyle\" use=\"optional\"/>\n    <xsd:attribute name=\"endcap\" type=\"ST_StrokeEndCap\" use=\"optional\"/>\n    <xsd:attribute name=\"dashstyle\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"filltype\" type=\"ST_FillType\" use=\"optional\"/>\n    <xsd:attribute name=\"src\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"imageaspect\" type=\"ST_ImageAspect\" use=\"optional\"/>\n    <xsd:attribute name=\"imagesize\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"imagealignshape\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"color2\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"startarrow\" type=\"ST_StrokeArrowType\" use=\"optional\"/>\n    <xsd:attribute name=\"startarrowwidth\" type=\"ST_StrokeArrowWidth\" use=\"optional\"/>\n    <xsd:attribute name=\"startarrowlength\" type=\"ST_StrokeArrowLength\" use=\"optional\"/>\n    <xsd:attribute name=\"endarrow\" type=\"ST_StrokeArrowType\" use=\"optional\"/>\n    <xsd:attribute name=\"endarrowwidth\" type=\"ST_StrokeArrowWidth\" use=\"optional\"/>\n    <xsd:attribute name=\"endarrowlength\" type=\"ST_StrokeArrowLength\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:href\"/>\n    <xsd:attribute ref=\"o:althref\"/>\n    <xsd:attribute ref=\"o:title\"/>\n    <xsd:attribute ref=\"o:forcedash\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"insetpen\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:relid\"/>\n  </xsd:attributeGroup>\n  <xsd:group name=\"EG_ShapeElements\">\n    <xsd:choice>\n      <xsd:element ref=\"path\"/>\n      <xsd:element ref=\"formulas\"/>\n      <xsd:element ref=\"handles\"/>\n      <xsd:element ref=\"fill\"/>\n      <xsd:element ref=\"stroke\"/>\n      <xsd:element ref=\"shadow\"/>\n      <xsd:element ref=\"textbox\"/>\n      <xsd:element ref=\"textpath\"/>\n      <xsd:element ref=\"imagedata\"/>\n      <xsd:element ref=\"o:skew\"/>\n      <xsd:element ref=\"o:extrusion\"/>\n      <xsd:element ref=\"o:callout\"/>\n      <xsd:element ref=\"o:lock\"/>\n      <xsd:element ref=\"o:clippath\"/>\n      <xsd:element ref=\"o:signatureline\"/>\n      <xsd:element ref=\"w10:wrap\"/>\n      <xsd:element ref=\"w10:anchorlock\"/>\n      <xsd:element ref=\"w10:bordertop\"/>\n      <xsd:element ref=\"w10:borderbottom\"/>\n      <xsd:element ref=\"w10:borderleft\"/>\n      <xsd:element ref=\"w10:borderright\"/>\n      <xsd:element ref=\"x:ClientData\" minOccurs=\"0\"/>\n      <xsd:element ref=\"pvml:textdata\" minOccurs=\"0\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:element name=\"shape\" type=\"CT_Shape\"/>\n  <xsd:element name=\"shapetype\" type=\"CT_Shapetype\"/>\n  <xsd:element name=\"group\" type=\"CT_Group\"/>\n  <xsd:element name=\"background\" type=\"CT_Background\"/>\n  <xsd:complexType name=\"CT_Shape\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:group ref=\"EG_ShapeElements\"/>\n      <xsd:element ref=\"o:ink\"/>\n      <xsd:element ref=\"pvml:iscomment\"/>\n      <xsd:element ref=\"o:equationxml\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_Type\"/>\n    <xsd:attributeGroup ref=\"AG_Adj\"/>\n    <xsd:attributeGroup ref=\"AG_Path\"/>\n    <xsd:attribute ref=\"o:gfxdata\"/>\n    <xsd:attribute name=\"equationxml\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Shapetype\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element ref=\"o:complex\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_Adj\"/>\n    <xsd:attributeGroup ref=\"AG_Path\"/>\n    <xsd:attribute ref=\"o:master\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Group\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:group ref=\"EG_ShapeElements\"/>\n      <xsd:element ref=\"group\"/>\n      <xsd:element ref=\"shape\"/>\n      <xsd:element ref=\"shapetype\"/>\n      <xsd:element ref=\"arc\"/>\n      <xsd:element ref=\"curve\"/>\n      <xsd:element ref=\"image\"/>\n      <xsd:element ref=\"line\"/>\n      <xsd:element ref=\"oval\"/>\n      <xsd:element ref=\"polyline\"/>\n      <xsd:element ref=\"rect\"/>\n      <xsd:element ref=\"roundrect\"/>\n      <xsd:element ref=\"o:diagram\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_Fill\"/>\n    <xsd:attribute name=\"editas\" type=\"ST_EditAs\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:tableproperties\"/>\n    <xsd:attribute ref=\"o:tablelimits\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Background\">\n    <xsd:sequence>\n      <xsd:element ref=\"fill\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attributeGroup ref=\"AG_Fill\"/>\n    <xsd:attribute ref=\"o:bwmode\"/>\n    <xsd:attribute ref=\"o:bwpure\"/>\n    <xsd:attribute ref=\"o:bwnormal\"/>\n    <xsd:attribute ref=\"o:targetscreensize\"/>\n  </xsd:complexType>\n  <xsd:element name=\"fill\" type=\"CT_Fill\"/>\n  <xsd:element name=\"formulas\" type=\"CT_Formulas\"/>\n  <xsd:element name=\"handles\" type=\"CT_Handles\"/>\n  <xsd:element name=\"imagedata\" type=\"CT_ImageData\"/>\n  <xsd:element name=\"path\" type=\"CT_Path\"/>\n  <xsd:element name=\"textbox\" type=\"CT_Textbox\"/>\n  <xsd:element name=\"shadow\" type=\"CT_Shadow\"/>\n  <xsd:element name=\"stroke\" type=\"CT_Stroke\"/>\n  <xsd:element name=\"textpath\" type=\"CT_TextPath\"/>\n  <xsd:complexType name=\"CT_Fill\">\n    <xsd:sequence>\n      <xsd:element ref=\"o:fill\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attribute name=\"type\" type=\"ST_FillType\" use=\"optional\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"color\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"opacity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"color2\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"src\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:href\"/>\n    <xsd:attribute ref=\"o:althref\"/>\n    <xsd:attribute name=\"size\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"origin\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"position\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"aspect\" type=\"ST_ImageAspect\" use=\"optional\"/>\n    <xsd:attribute name=\"colors\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"angle\" type=\"xsd:decimal\" use=\"optional\"/>\n    <xsd:attribute name=\"alignshape\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"focus\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"focussize\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"focusposition\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"method\" type=\"ST_FillMethod\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:detectmouseclick\"/>\n    <xsd:attribute ref=\"o:title\"/>\n    <xsd:attribute ref=\"o:opacity2\"/>\n    <xsd:attribute name=\"recolor\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"rotate\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:relid\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Formulas\">\n    <xsd:sequence>\n      <xsd:element name=\"f\" type=\"CT_F\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_F\">\n    <xsd:attribute name=\"eqn\" type=\"xsd:string\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Handles\">\n    <xsd:sequence>\n      <xsd:element name=\"h\" type=\"CT_H\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_H\">\n    <xsd:attribute name=\"position\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"polar\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"map\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"invx\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"invy\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"switch\" type=\"s:ST_TrueFalseBlank\"/>\n    <xsd:attribute name=\"xrange\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"yrange\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"radiusrange\" type=\"xsd:string\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ImageData\">\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attributeGroup ref=\"AG_ImageAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_Chromakey\"/>\n    <xsd:attribute name=\"embosscolor\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"recolortarget\" type=\"s:ST_ColorType\"/>\n    <xsd:attribute ref=\"o:href\"/>\n    <xsd:attribute ref=\"o:althref\"/>\n    <xsd:attribute ref=\"o:title\"/>\n    <xsd:attribute ref=\"o:oleid\"/>\n    <xsd:attribute ref=\"o:detectmouseclick\"/>\n    <xsd:attribute ref=\"o:movie\"/>\n    <xsd:attribute ref=\"o:relid\"/>\n    <xsd:attribute ref=\"r:id\"/>\n    <xsd:attribute ref=\"r:pict\"/>\n    <xsd:attribute ref=\"r:href\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Path\">\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attribute name=\"v\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"limo\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"textboxrect\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fillok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"strokeok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"shadowok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"arrowok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"gradientshapeok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"textpathok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"insetpenok\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:connecttype\"/>\n    <xsd:attribute ref=\"o:connectlocs\"/>\n    <xsd:attribute ref=\"o:connectangles\"/>\n    <xsd:attribute ref=\"o:extrusionok\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Shadow\">\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"type\" type=\"ST_ShadowType\" use=\"optional\"/>\n    <xsd:attribute name=\"obscured\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"color\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"opacity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"offset\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"color2\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"offset2\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"origin\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"matrix\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Stroke\">\n    <xsd:sequence>\n      <xsd:element ref=\"o:left\" minOccurs=\"0\"/>\n      <xsd:element ref=\"o:top\" minOccurs=\"0\"/>\n      <xsd:element ref=\"o:right\" minOccurs=\"0\"/>\n      <xsd:element ref=\"o:bottom\" minOccurs=\"0\"/>\n      <xsd:element ref=\"o:column\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attributeGroup ref=\"AG_StrokeAttributes\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Textbox\">\n    <xsd:choice>\n      <xsd:element ref=\"w:txbxContent\" minOccurs=\"0\"/>\n      <xsd:any namespace=\"##local\" processContents=\"skip\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attributeGroup ref=\"AG_Style\"/>\n    <xsd:attribute name=\"inset\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute ref=\"o:singleclick\"/>\n    <xsd:attribute ref=\"o:insetmode\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TextPath\">\n    <xsd:attributeGroup ref=\"AG_Id\"/>\n    <xsd:attributeGroup ref=\"AG_Style\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"fitshape\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"fitpath\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"trim\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"xscale\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"string\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:element name=\"arc\" type=\"CT_Arc\"/>\n  <xsd:element name=\"curve\" type=\"CT_Curve\"/>\n  <xsd:element name=\"image\" type=\"CT_Image\"/>\n  <xsd:element name=\"line\" type=\"CT_Line\"/>\n  <xsd:element name=\"oval\" type=\"CT_Oval\"/>\n  <xsd:element name=\"polyline\" type=\"CT_PolyLine\"/>\n  <xsd:element name=\"rect\" type=\"CT_Rect\"/>\n  <xsd:element name=\"roundrect\" type=\"CT_RoundRect\"/>\n  <xsd:complexType name=\"CT_Arc\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attribute name=\"startAngle\" type=\"xsd:decimal\" use=\"optional\"/>\n    <xsd:attribute name=\"endAngle\" type=\"xsd:decimal\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Curve\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attribute name=\"from\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"control1\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"control2\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"to\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Image\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_ImageAttributes\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Line\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attribute name=\"from\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"to\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Oval\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PolyLine\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:group ref=\"EG_ShapeElements\"/>\n      <xsd:element ref=\"o:ink\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attribute name=\"points\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rect\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RoundRect\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:group ref=\"EG_ShapeElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n    <xsd:attributeGroup ref=\"AG_AllCoreAttributes\"/>\n    <xsd:attributeGroup ref=\"AG_AllShapeAttributes\"/>\n    <xsd:attribute name=\"arcsize\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Ext\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"view\"/>\n      <xsd:enumeration value=\"edit\"/>\n      <xsd:enumeration value=\"backwardCompatible\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FillType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"solid\"/>\n      <xsd:enumeration value=\"gradient\"/>\n      <xsd:enumeration value=\"gradientRadial\"/>\n      <xsd:enumeration value=\"tile\"/>\n      <xsd:enumeration value=\"pattern\"/>\n      <xsd:enumeration value=\"frame\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FillMethod\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"linear\"/>\n      <xsd:enumeration value=\"sigma\"/>\n      <xsd:enumeration value=\"any\"/>\n      <xsd:enumeration value=\"linear sigma\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ShadowType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"single\"/>\n      <xsd:enumeration value=\"double\"/>\n      <xsd:enumeration value=\"emboss\"/>\n      <xsd:enumeration value=\"perspective\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StrokeLineStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"single\"/>\n      <xsd:enumeration value=\"thinThin\"/>\n      <xsd:enumeration value=\"thinThick\"/>\n      <xsd:enumeration value=\"thickThin\"/>\n      <xsd:enumeration value=\"thickBetweenThin\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StrokeJoinStyle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"round\"/>\n      <xsd:enumeration value=\"bevel\"/>\n      <xsd:enumeration value=\"miter\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StrokeEndCap\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"flat\"/>\n      <xsd:enumeration value=\"square\"/>\n      <xsd:enumeration value=\"round\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StrokeArrowLength\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"short\"/>\n      <xsd:enumeration value=\"medium\"/>\n      <xsd:enumeration value=\"long\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StrokeArrowWidth\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"narrow\"/>\n      <xsd:enumeration value=\"medium\"/>\n      <xsd:enumeration value=\"wide\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_StrokeArrowType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"block\"/>\n      <xsd:enumeration value=\"classic\"/>\n      <xsd:enumeration value=\"oval\"/>\n      <xsd:enumeration value=\"diamond\"/>\n      <xsd:enumeration value=\"open\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ImageAspect\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"ignore\"/>\n      <xsd:enumeration value=\"atMost\"/>\n      <xsd:enumeration value=\"atLeast\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_EditAs\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"canvas\"/>\n      <xsd:enumeration value=\"orgchart\"/>\n      <xsd:enumeration value=\"radial\"/>\n      <xsd:enumeration value=\"cycle\"/>\n      <xsd:enumeration value=\"stacked\"/>\n      <xsd:enumeration value=\"venn\"/>\n      <xsd:enumeration value=\"bullseye\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"urn:schemas-microsoft-com:office:office\" xmlns:v=\"urn:schemas-microsoft-com:vml\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"urn:schemas-microsoft-com:office:office\" elementFormDefault=\"qualified\"\n  attributeFormDefault=\"unqualified\">\n  <xsd:import namespace=\"urn:schemas-microsoft-com:vml\" schemaLocation=\"vml-main.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:attribute name=\"bwmode\" type=\"ST_BWMode\"/>\n  <xsd:attribute name=\"bwpure\" type=\"ST_BWMode\"/>\n  <xsd:attribute name=\"bwnormal\" type=\"ST_BWMode\"/>\n  <xsd:attribute name=\"targetscreensize\" type=\"ST_ScreenSize\"/>\n  <xsd:attribute name=\"insetmode\" type=\"ST_InsetMode\" default=\"custom\"/>\n  <xsd:attribute name=\"spt\" type=\"xsd:float\"/>\n  <xsd:attribute name=\"wrapcoords\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"oned\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"regroupid\" type=\"xsd:integer\"/>\n  <xsd:attribute name=\"doubleclicknotify\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"connectortype\" type=\"ST_ConnectorType\" default=\"straight\"/>\n  <xsd:attribute name=\"button\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"userhidden\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"forcedash\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"oleicon\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"ole\" type=\"s:ST_TrueFalseBlank\"/>\n  <xsd:attribute name=\"preferrelative\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"cliptowrap\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"clip\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"bullet\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"hr\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"hrstd\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"hrnoshade\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"hrpct\" type=\"xsd:float\"/>\n  <xsd:attribute name=\"hralign\" type=\"ST_HrAlign\" default=\"left\"/>\n  <xsd:attribute name=\"allowincell\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"allowoverlap\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"userdrawn\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"bordertopcolor\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"borderleftcolor\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"borderbottomcolor\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"borderrightcolor\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"connecttype\" type=\"ST_ConnectType\"/>\n  <xsd:attribute name=\"connectlocs\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"connectangles\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"master\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"extrusionok\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"href\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"althref\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"title\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"singleclick\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"oleid\" type=\"xsd:float\"/>\n  <xsd:attribute name=\"detectmouseclick\" type=\"s:ST_TrueFalse\"/>\n  <xsd:attribute name=\"movie\" type=\"xsd:float\"/>\n  <xsd:attribute name=\"spid\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"opacity2\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"relid\" type=\"r:ST_RelationshipId\"/>\n  <xsd:attribute name=\"dgmlayout\" type=\"ST_DiagramLayout\"/>\n  <xsd:attribute name=\"dgmnodekind\" type=\"xsd:integer\"/>\n  <xsd:attribute name=\"dgmlayoutmru\" type=\"ST_DiagramLayout\"/>\n  <xsd:attribute name=\"gfxdata\" type=\"xsd:base64Binary\"/>\n  <xsd:attribute name=\"tableproperties\" type=\"xsd:string\"/>\n  <xsd:attribute name=\"tablelimits\" type=\"xsd:string\"/>\n  <xsd:element name=\"shapedefaults\" type=\"CT_ShapeDefaults\"/>\n  <xsd:element name=\"shapelayout\" type=\"CT_ShapeLayout\"/>\n  <xsd:element name=\"signatureline\" type=\"CT_SignatureLine\"/>\n  <xsd:element name=\"ink\" type=\"CT_Ink\"/>\n  <xsd:element name=\"diagram\" type=\"CT_Diagram\"/>\n  <xsd:element name=\"equationxml\" type=\"CT_EquationXml\"/>\n  <xsd:complexType name=\"CT_ShapeDefaults\">\n    <xsd:all minOccurs=\"0\">\n      <xsd:element ref=\"v:fill\" minOccurs=\"0\"/>\n      <xsd:element ref=\"v:stroke\" minOccurs=\"0\"/>\n      <xsd:element ref=\"v:textbox\" minOccurs=\"0\"/>\n      <xsd:element ref=\"v:shadow\" minOccurs=\"0\"/>\n      <xsd:element ref=\"skew\" minOccurs=\"0\"/>\n      <xsd:element ref=\"extrusion\" minOccurs=\"0\"/>\n      <xsd:element ref=\"callout\" minOccurs=\"0\"/>\n      <xsd:element ref=\"lock\" minOccurs=\"0\"/>\n      <xsd:element name=\"colormru\" minOccurs=\"0\" type=\"CT_ColorMru\"/>\n      <xsd:element name=\"colormenu\" minOccurs=\"0\" type=\"CT_ColorMenu\"/>\n    </xsd:all>\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"spidmax\" type=\"xsd:integer\" use=\"optional\"/>\n    <xsd:attribute name=\"style\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"fill\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"fillcolor\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"stroke\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"strokecolor\" type=\"s:ST_ColorType\"/>\n    <xsd:attribute name=\"allowincell\" form=\"qualified\" type=\"s:ST_TrueFalse\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Ink\">\n    <xsd:sequence/>\n    <xsd:attribute name=\"i\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"annotation\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"contentType\" type=\"ST_ContentType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SignatureLine\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"issignatureline\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"id\" type=\"s:ST_Guid\"/>\n    <xsd:attribute name=\"provid\" type=\"s:ST_Guid\"/>\n    <xsd:attribute name=\"signinginstructionsset\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"allowcomments\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"showsigndate\" type=\"s:ST_TrueFalse\"/>\n    <xsd:attribute name=\"suggestedsigner\" type=\"xsd:string\" form=\"qualified\"/>\n    <xsd:attribute name=\"suggestedsigner2\" type=\"xsd:string\" form=\"qualified\"/>\n    <xsd:attribute name=\"suggestedsigneremail\" type=\"xsd:string\" form=\"qualified\"/>\n    <xsd:attribute name=\"signinginstructions\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"addlxml\" type=\"xsd:string\"/>\n    <xsd:attribute name=\"sigprovurl\" type=\"xsd:string\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShapeLayout\">\n    <xsd:all>\n      <xsd:element name=\"idmap\" type=\"CT_IdMap\" minOccurs=\"0\"/>\n      <xsd:element name=\"regrouptable\" type=\"CT_RegroupTable\" minOccurs=\"0\"/>\n      <xsd:element name=\"rules\" type=\"CT_Rules\" minOccurs=\"0\"/>\n    </xsd:all>\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_IdMap\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"data\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RegroupTable\">\n    <xsd:sequence>\n      <xsd:element name=\"entry\" type=\"CT_Entry\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Entry\">\n    <xsd:attribute name=\"new\" type=\"xsd:int\" use=\"optional\"/>\n    <xsd:attribute name=\"old\" type=\"xsd:int\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rules\">\n    <xsd:sequence>\n      <xsd:element name=\"r\" type=\"CT_R\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_R\">\n    <xsd:sequence>\n      <xsd:element name=\"proxy\" type=\"CT_Proxy\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"xsd:string\" use=\"required\"/>\n    <xsd:attribute name=\"type\" type=\"ST_RType\" use=\"optional\"/>\n    <xsd:attribute name=\"how\" type=\"ST_How\" use=\"optional\"/>\n    <xsd:attribute name=\"idref\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Proxy\">\n    <xsd:attribute name=\"start\" type=\"s:ST_TrueFalseBlank\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"end\" type=\"s:ST_TrueFalseBlank\" use=\"optional\" default=\"false\"/>\n    <xsd:attribute name=\"idref\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"connectloc\" type=\"xsd:int\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Diagram\">\n    <xsd:sequence>\n      <xsd:element name=\"relationtable\" type=\"CT_RelationTable\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"dgmstyle\" type=\"xsd:integer\" use=\"optional\"/>\n    <xsd:attribute name=\"autoformat\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"reverse\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"autolayout\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"dgmscalex\" type=\"xsd:integer\" use=\"optional\"/>\n    <xsd:attribute name=\"dgmscaley\" type=\"xsd:integer\" use=\"optional\"/>\n    <xsd:attribute name=\"dgmfontsize\" type=\"xsd:integer\" use=\"optional\"/>\n    <xsd:attribute name=\"constrainbounds\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"dgmbasetextscale\" type=\"xsd:integer\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EquationXml\">\n    <xsd:sequence>\n      <xsd:any namespace=\"##any\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"contentType\" type=\"ST_AlternateMathContentType\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_AlternateMathContentType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_RelationTable\">\n    <xsd:sequence>\n      <xsd:element name=\"rel\" type=\"CT_Relation\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Relation\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"idsrc\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"iddest\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"idcntr\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorMru\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"colors\" type=\"xsd:string\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ColorMenu\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"strokecolor\" type=\"s:ST_ColorType\"/>\n    <xsd:attribute name=\"fillcolor\" type=\"s:ST_ColorType\"/>\n    <xsd:attribute name=\"shadowcolor\" type=\"s:ST_ColorType\"/>\n    <xsd:attribute name=\"extrusioncolor\" type=\"s:ST_ColorType\"/>\n  </xsd:complexType>\n  <xsd:element name=\"skew\" type=\"CT_Skew\"/>\n  <xsd:element name=\"extrusion\" type=\"CT_Extrusion\"/>\n  <xsd:element name=\"callout\" type=\"CT_Callout\"/>\n  <xsd:element name=\"lock\" type=\"CT_Lock\"/>\n  <xsd:element name=\"OLEObject\" type=\"CT_OLEObject\"/>\n  <xsd:element name=\"complex\" type=\"CT_Complex\"/>\n  <xsd:element name=\"left\" type=\"CT_StrokeChild\"/>\n  <xsd:element name=\"top\" type=\"CT_StrokeChild\"/>\n  <xsd:element name=\"right\" type=\"CT_StrokeChild\"/>\n  <xsd:element name=\"bottom\" type=\"CT_StrokeChild\"/>\n  <xsd:element name=\"column\" type=\"CT_StrokeChild\"/>\n  <xsd:element name=\"clippath\" type=\"CT_ClipPath\"/>\n  <xsd:element name=\"fill\" type=\"CT_Fill\"/>\n  <xsd:complexType name=\"CT_Skew\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"id\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"offset\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"origin\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"matrix\" type=\"xsd:string\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Extrusion\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"type\" type=\"ST_ExtrusionType\" default=\"parallel\" use=\"optional\"/>\n    <xsd:attribute name=\"render\" type=\"ST_ExtrusionRender\" default=\"solid\" use=\"optional\"/>\n    <xsd:attribute name=\"viewpointorigin\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"viewpoint\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"plane\" type=\"ST_ExtrusionPlane\" default=\"XY\" use=\"optional\"/>\n    <xsd:attribute name=\"skewangle\" type=\"xsd:float\" use=\"optional\"/>\n    <xsd:attribute name=\"skewamt\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"foredepth\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"backdepth\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"orientation\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"orientationangle\" type=\"xsd:float\" use=\"optional\"/>\n    <xsd:attribute name=\"lockrotationcenter\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"autorotationcenter\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"rotationcenter\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"rotationangle\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"colormode\" type=\"ST_ColorMode\" use=\"optional\"/>\n    <xsd:attribute name=\"color\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"shininess\" type=\"xsd:float\" use=\"optional\"/>\n    <xsd:attribute name=\"specularity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"diffusity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"metal\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"edge\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"facet\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lightface\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"brightness\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lightposition\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lightlevel\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lightharsh\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"lightposition2\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lightlevel2\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lightharsh2\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Callout\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"type\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"gap\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"angle\" type=\"ST_Angle\" use=\"optional\"/>\n    <xsd:attribute name=\"dropauto\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"drop\" type=\"ST_CalloutDrop\" use=\"optional\"/>\n    <xsd:attribute name=\"distance\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"lengthspecified\" type=\"s:ST_TrueFalse\" default=\"f\" use=\"optional\"/>\n    <xsd:attribute name=\"length\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"accentbar\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"textborder\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"minusx\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"minusy\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Lock\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"position\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"selection\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"grouping\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"ungrouping\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"rotation\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"cropping\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"verticies\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"adjusthandles\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"text\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"aspectratio\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"shapetype\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OLEObject\">\n    <xsd:sequence>\n      <xsd:element name=\"LinkType\" type=\"ST_OLELinkType\" minOccurs=\"0\"/>\n      <xsd:element name=\"LockedField\" type=\"s:ST_TrueFalseBlank\" minOccurs=\"0\"/>\n      <xsd:element name=\"FieldCodes\" type=\"xsd:string\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"Type\" type=\"ST_OLEType\" use=\"optional\"/>\n    <xsd:attribute name=\"ProgID\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"ShapeID\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"DrawAspect\" type=\"ST_OLEDrawAspect\" use=\"optional\"/>\n    <xsd:attribute name=\"ObjectID\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"UpdateMode\" type=\"ST_OLEUpdateMode\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Complex\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StrokeChild\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"on\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"weight\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"color\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"color2\" type=\"s:ST_ColorType\" use=\"optional\"/>\n    <xsd:attribute name=\"opacity\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"linestyle\" type=\"v:ST_StrokeLineStyle\" use=\"optional\"/>\n    <xsd:attribute name=\"miterlimit\" type=\"xsd:decimal\" use=\"optional\"/>\n    <xsd:attribute name=\"joinstyle\" type=\"v:ST_StrokeJoinStyle\" use=\"optional\"/>\n    <xsd:attribute name=\"endcap\" type=\"v:ST_StrokeEndCap\" use=\"optional\"/>\n    <xsd:attribute name=\"dashstyle\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"insetpen\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"filltype\" type=\"v:ST_FillType\" use=\"optional\"/>\n    <xsd:attribute name=\"src\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"imageaspect\" type=\"v:ST_ImageAspect\" use=\"optional\"/>\n    <xsd:attribute name=\"imagesize\" type=\"xsd:string\" use=\"optional\"/>\n    <xsd:attribute name=\"imagealignshape\" type=\"s:ST_TrueFalse\" use=\"optional\"/>\n    <xsd:attribute name=\"startarrow\" type=\"v:ST_StrokeArrowType\" use=\"optional\"/>\n    <xsd:attribute name=\"startarrowwidth\" type=\"v:ST_StrokeArrowWidth\" use=\"optional\"/>\n    <xsd:attribute name=\"startarrowlength\" type=\"v:ST_StrokeArrowLength\" use=\"optional\"/>\n    <xsd:attribute name=\"endarrow\" type=\"v:ST_StrokeArrowType\" use=\"optional\"/>\n    <xsd:attribute name=\"endarrowwidth\" type=\"v:ST_StrokeArrowWidth\" use=\"optional\"/>\n    <xsd:attribute name=\"endarrowlength\" type=\"v:ST_StrokeArrowLength\" use=\"optional\"/>\n    <xsd:attribute ref=\"href\"/>\n    <xsd:attribute ref=\"althref\"/>\n    <xsd:attribute ref=\"title\"/>\n    <xsd:attribute ref=\"forcedash\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ClipPath\">\n    <xsd:attribute name=\"v\" type=\"xsd:string\" use=\"required\" form=\"qualified\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Fill\">\n    <xsd:attributeGroup ref=\"v:AG_Ext\"/>\n    <xsd:attribute name=\"type\" type=\"ST_FillType\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"arc\"/>\n      <xsd:enumeration value=\"callout\"/>\n      <xsd:enumeration value=\"connector\"/>\n      <xsd:enumeration value=\"align\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_How\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"middle\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"right\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BWMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"color\"/>\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"grayScale\"/>\n      <xsd:enumeration value=\"lightGrayscale\"/>\n      <xsd:enumeration value=\"inverseGray\"/>\n      <xsd:enumeration value=\"grayOutline\"/>\n      <xsd:enumeration value=\"highContrast\"/>\n      <xsd:enumeration value=\"black\"/>\n      <xsd:enumeration value=\"white\"/>\n      <xsd:enumeration value=\"hide\"/>\n      <xsd:enumeration value=\"undrawn\"/>\n      <xsd:enumeration value=\"blackTextAndLines\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ScreenSize\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"544,376\"/>\n      <xsd:enumeration value=\"640,480\"/>\n      <xsd:enumeration value=\"720,512\"/>\n      <xsd:enumeration value=\"800,600\"/>\n      <xsd:enumeration value=\"1024,768\"/>\n      <xsd:enumeration value=\"1152,862\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_InsetMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ColorMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ContentType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DiagramLayout\">\n    <xsd:restriction base=\"xsd:integer\">\n      <xsd:enumeration value=\"0\"/>\n      <xsd:enumeration value=\"1\"/>\n      <xsd:enumeration value=\"2\"/>\n      <xsd:enumeration value=\"3\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ExtrusionType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"perspective\"/>\n      <xsd:enumeration value=\"parallel\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ExtrusionRender\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"solid\"/>\n      <xsd:enumeration value=\"wireFrame\"/>\n      <xsd:enumeration value=\"boundingCube\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ExtrusionPlane\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"XY\"/>\n      <xsd:enumeration value=\"ZX\"/>\n      <xsd:enumeration value=\"YZ\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Angle\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"any\"/>\n      <xsd:enumeration value=\"30\"/>\n      <xsd:enumeration value=\"45\"/>\n      <xsd:enumeration value=\"60\"/>\n      <xsd:enumeration value=\"90\"/>\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CalloutDrop\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_CalloutPlacement\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"user\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConnectorType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"straight\"/>\n      <xsd:enumeration value=\"elbow\"/>\n      <xsd:enumeration value=\"curved\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HrAlign\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"center\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ConnectType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"rect\"/>\n      <xsd:enumeration value=\"segments\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OLELinkType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OLEType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"Embed\"/>\n      <xsd:enumeration value=\"Link\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OLEDrawAspect\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"Content\"/>\n      <xsd:enumeration value=\"Icon\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_OLEUpdateMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"Always\"/>\n      <xsd:enumeration value=\"OnCall\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FillType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"gradientCenter\"/>\n      <xsd:enumeration value=\"solid\"/>\n      <xsd:enumeration value=\"pattern\"/>\n      <xsd:enumeration value=\"tile\"/>\n      <xsd:enumeration value=\"frame\"/>\n      <xsd:enumeration value=\"gradientUnscaled\"/>\n      <xsd:enumeration value=\"gradientRadial\"/>\n      <xsd:enumeration value=\"gradient\"/>\n      <xsd:enumeration value=\"background\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"urn:schemas-microsoft-com:office:powerpoint\"\n  targetNamespace=\"urn:schemas-microsoft-com:office:powerpoint\" elementFormDefault=\"qualified\"\n  attributeFormDefault=\"unqualified\">\n  <xsd:element name=\"iscomment\" type=\"CT_Empty\"/>\n  <xsd:element name=\"textdata\" type=\"CT_Rel\"/>\n  <xsd:complexType name=\"CT_Empty\"/>\n  <xsd:complexType name=\"CT_Rel\">\n    <xsd:attribute name=\"id\" type=\"xsd:string\"/>\n  </xsd:complexType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"urn:schemas-microsoft-com:office:excel\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  targetNamespace=\"urn:schemas-microsoft-com:office:excel\" elementFormDefault=\"qualified\"\n  attributeFormDefault=\"unqualified\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:element name=\"ClientData\" type=\"CT_ClientData\"/>\n  <xsd:complexType name=\"CT_ClientData\">\n    <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"MoveWithCells\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"SizeWithCells\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Anchor\" type=\"xsd:string\"/>\n      <xsd:element name=\"Locked\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"DefaultSize\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"PrintObject\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Disabled\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"AutoFill\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"AutoLine\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"AutoPict\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"FmlaMacro\" type=\"xsd:string\"/>\n      <xsd:element name=\"TextHAlign\" type=\"xsd:string\"/>\n      <xsd:element name=\"TextVAlign\" type=\"xsd:string\"/>\n      <xsd:element name=\"LockText\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"JustLastX\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"SecretEdit\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Default\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Help\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Cancel\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Dismiss\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Accel\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Accel2\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Row\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Column\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Visible\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"RowHidden\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"ColHidden\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"VTEdit\" type=\"xsd:integer\"/>\n      <xsd:element name=\"MultiLine\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"VScroll\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"ValidIds\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"FmlaRange\" type=\"xsd:string\"/>\n      <xsd:element name=\"WidthMin\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Sel\" type=\"xsd:integer\"/>\n      <xsd:element name=\"NoThreeD2\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"SelType\" type=\"xsd:string\"/>\n      <xsd:element name=\"MultiSel\" type=\"xsd:string\"/>\n      <xsd:element name=\"LCT\" type=\"xsd:string\"/>\n      <xsd:element name=\"ListItem\" type=\"xsd:string\"/>\n      <xsd:element name=\"DropStyle\" type=\"xsd:string\"/>\n      <xsd:element name=\"Colored\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"DropLines\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Checked\" type=\"xsd:integer\"/>\n      <xsd:element name=\"FmlaLink\" type=\"xsd:string\"/>\n      <xsd:element name=\"FmlaPict\" type=\"xsd:string\"/>\n      <xsd:element name=\"NoThreeD\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"FirstButton\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"FmlaGroup\" type=\"xsd:string\"/>\n      <xsd:element name=\"Val\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Min\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Max\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Inc\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Page\" type=\"xsd:integer\"/>\n      <xsd:element name=\"Horiz\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"Dx\" type=\"xsd:integer\"/>\n      <xsd:element name=\"MapOCX\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"CF\" type=\"ST_CF\"/>\n      <xsd:element name=\"Camera\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"RecalcAlways\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"AutoScale\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"DDE\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"UIObj\" type=\"s:ST_TrueFalseBlank\"/>\n      <xsd:element name=\"ScriptText\" type=\"xsd:string\"/>\n      <xsd:element name=\"ScriptExtended\" type=\"xsd:string\"/>\n      <xsd:element name=\"ScriptLanguage\" type=\"xsd:nonNegativeInteger\"/>\n      <xsd:element name=\"ScriptLocation\" type=\"xsd:nonNegativeInteger\"/>\n      <xsd:element name=\"FmlaTxbx\" type=\"xsd:string\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"ObjectType\" type=\"ST_ObjectType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CF\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_ObjectType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"Button\"/>\n      <xsd:enumeration value=\"Checkbox\"/>\n      <xsd:enumeration value=\"Dialog\"/>\n      <xsd:enumeration value=\"Drop\"/>\n      <xsd:enumeration value=\"Edit\"/>\n      <xsd:enumeration value=\"GBox\"/>\n      <xsd:enumeration value=\"Label\"/>\n      <xsd:enumeration value=\"LineA\"/>\n      <xsd:enumeration value=\"List\"/>\n      <xsd:enumeration value=\"Movie\"/>\n      <xsd:enumeration value=\"Note\"/>\n      <xsd:enumeration value=\"Pict\"/>\n      <xsd:enumeration value=\"Radio\"/>\n      <xsd:enumeration value=\"RectA\"/>\n      <xsd:enumeration value=\"Scroll\"/>\n      <xsd:enumeration value=\"Spin\"/>\n      <xsd:enumeration value=\"Shape\"/>\n      <xsd:enumeration value=\"Group\"/>\n      <xsd:enumeration value=\"Rect\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns=\"urn:schemas-microsoft-com:office:word\"\n  targetNamespace=\"urn:schemas-microsoft-com:office:word\" elementFormDefault=\"qualified\"\n  attributeFormDefault=\"unqualified\">\n  <xsd:element name=\"bordertop\" type=\"CT_Border\"/>\n  <xsd:element name=\"borderleft\" type=\"CT_Border\"/>\n  <xsd:element name=\"borderright\" type=\"CT_Border\"/>\n  <xsd:element name=\"borderbottom\" type=\"CT_Border\"/>\n  <xsd:complexType name=\"CT_Border\">\n    <xsd:attribute name=\"type\" type=\"ST_BorderType\" use=\"optional\"/>\n    <xsd:attribute name=\"width\" type=\"xsd:positiveInteger\" use=\"optional\"/>\n    <xsd:attribute name=\"shadow\" type=\"ST_BorderShadow\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:element name=\"wrap\" type=\"CT_Wrap\"/>\n  <xsd:complexType name=\"CT_Wrap\">\n    <xsd:attribute name=\"type\" type=\"ST_WrapType\" use=\"optional\"/>\n    <xsd:attribute name=\"side\" type=\"ST_WrapSide\" use=\"optional\"/>\n    <xsd:attribute name=\"anchorx\" type=\"ST_HorizontalAnchor\" use=\"optional\"/>\n    <xsd:attribute name=\"anchory\" type=\"ST_VerticalAnchor\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:element name=\"anchorlock\" type=\"CT_AnchorLock\"/>\n  <xsd:complexType name=\"CT_AnchorLock\"/>\n  <xsd:simpleType name=\"ST_BorderType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"single\"/>\n      <xsd:enumeration value=\"thick\"/>\n      <xsd:enumeration value=\"double\"/>\n      <xsd:enumeration value=\"hairline\"/>\n      <xsd:enumeration value=\"dot\"/>\n      <xsd:enumeration value=\"dash\"/>\n      <xsd:enumeration value=\"dotDash\"/>\n      <xsd:enumeration value=\"dashDotDot\"/>\n      <xsd:enumeration value=\"triple\"/>\n      <xsd:enumeration value=\"thinThickSmall\"/>\n      <xsd:enumeration value=\"thickThinSmall\"/>\n      <xsd:enumeration value=\"thickBetweenThinSmall\"/>\n      <xsd:enumeration value=\"thinThick\"/>\n      <xsd:enumeration value=\"thickThin\"/>\n      <xsd:enumeration value=\"thickBetweenThin\"/>\n      <xsd:enumeration value=\"thinThickLarge\"/>\n      <xsd:enumeration value=\"thickThinLarge\"/>\n      <xsd:enumeration value=\"thickBetweenThinLarge\"/>\n      <xsd:enumeration value=\"wave\"/>\n      <xsd:enumeration value=\"doubleWave\"/>\n      <xsd:enumeration value=\"dashedSmall\"/>\n      <xsd:enumeration value=\"dashDotStroked\"/>\n      <xsd:enumeration value=\"threeDEmboss\"/>\n      <xsd:enumeration value=\"threeDEngrave\"/>\n      <xsd:enumeration value=\"HTMLOutset\"/>\n      <xsd:enumeration value=\"HTMLInset\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BorderShadow\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"t\"/>\n      <xsd:enumeration value=\"true\"/>\n      <xsd:enumeration value=\"f\"/>\n      <xsd:enumeration value=\"false\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_WrapType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"topAndBottom\"/>\n      <xsd:enumeration value=\"square\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"tight\"/>\n      <xsd:enumeration value=\"through\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_WrapSide\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"both\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"largest\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HorizontalAnchor\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"page\"/>\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"char\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VerticalAnchor\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"page\"/>\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"line\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  xmlns:m=\"http://schemas.openxmlformats.org/officeDocument/2006/math\"\n  xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n  xmlns:sl=\"http://schemas.openxmlformats.org/schemaLibrary/2006/main\"\n  xmlns:wp=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\"\n  xmlns=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n  xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n  xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\"\n  targetNamespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\">\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" schemaLocation=\"../mce/mc.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\"\n    schemaLocation=\"dml-wordprocessingDrawing.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/math\"\n    schemaLocation=\"shared-math.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    schemaLocation=\"shared-relationshipReference.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\"\n    schemaLocation=\"shared-commonSimpleTypes.xsd\"/>\n  <xsd:import namespace=\"http://schemas.openxmlformats.org/schemaLibrary/2006/main\"\n    schemaLocation=\"shared-customXmlSchemaProperties.xsd\"/>\n  <xsd:import namespace=\"http://www.w3.org/XML/1998/namespace\"/>\n  <xsd:complexType name=\"CT_Empty\"/>\n  <xsd:complexType name=\"CT_OnOff\">\n    <xsd:attribute name=\"val\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LongHexNumber\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"4\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LongHexNumber\">\n    <xsd:attribute name=\"val\" type=\"ST_LongHexNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ShortHexNumber\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"2\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UcharHexNumber\">\n    <xsd:restriction base=\"xsd:hexBinary\">\n      <xsd:length value=\"1\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Charset\">\n    <xsd:attribute name=\"val\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"characterSet\" type=\"s:ST_String\" use=\"optional\" default=\"ISO-8859-1\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DecimalNumberOrPercent\">\n    <xsd:union memberTypes=\"ST_UnqualifiedPercentage s:ST_Percentage\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_UnqualifiedPercentage\">\n    <xsd:restriction base=\"xsd:decimal\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DecimalNumber\">\n    <xsd:restriction base=\"xsd:integer\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DecimalNumber\">\n    <xsd:attribute name=\"val\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_UnsignedDecimalNumber\">\n    <xsd:attribute name=\"val\" type=\"s:ST_UnsignedDecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DecimalNumberOrPrecent\">\n    <xsd:attribute name=\"val\" type=\"ST_DecimalNumberOrPercent\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TwipsMeasure\">\n    <xsd:attribute name=\"val\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SignedTwipsMeasure\">\n    <xsd:union memberTypes=\"xsd:integer s:ST_UniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SignedTwipsMeasure\">\n    <xsd:attribute name=\"val\" type=\"ST_SignedTwipsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PixelsMeasure\">\n    <xsd:restriction base=\"s:ST_UnsignedDecimalNumber\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PixelsMeasure\">\n    <xsd:attribute name=\"val\" type=\"ST_PixelsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HpsMeasure\">\n    <xsd:union memberTypes=\"s:ST_UnsignedDecimalNumber s:ST_PositiveUniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_HpsMeasure\">\n    <xsd:attribute name=\"val\" type=\"ST_HpsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SignedHpsMeasure\">\n    <xsd:union memberTypes=\"xsd:integer s:ST_UniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SignedHpsMeasure\">\n    <xsd:attribute name=\"val\" type=\"ST_SignedHpsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DateTime\">\n    <xsd:restriction base=\"xsd:dateTime\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_MacroName\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:maxLength value=\"33\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MacroName\">\n    <xsd:attribute name=\"val\" use=\"required\" type=\"ST_MacroName\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_EighthPointMeasure\">\n    <xsd:restriction base=\"s:ST_UnsignedDecimalNumber\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PointMeasure\">\n    <xsd:restriction base=\"s:ST_UnsignedDecimalNumber\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_String\">\n    <xsd:attribute name=\"val\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextScale\">\n    <xsd:union memberTypes=\"ST_TextScalePercent ST_TextScaleDecimal\"/>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextScalePercent\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern value=\"0*(600|([0-5]?[0-9]?[0-9]))%\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TextScaleDecimal\">\n    <xsd:restriction base=\"xsd:integer\">\n      <xsd:minInclusive value=\"0\"/>\n      <xsd:maxInclusive value=\"600\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextScale\">\n    <xsd:attribute name=\"val\" type=\"ST_TextScale\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HighlightColor\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"black\"/>\n      <xsd:enumeration value=\"blue\"/>\n      <xsd:enumeration value=\"cyan\"/>\n      <xsd:enumeration value=\"green\"/>\n      <xsd:enumeration value=\"magenta\"/>\n      <xsd:enumeration value=\"red\"/>\n      <xsd:enumeration value=\"yellow\"/>\n      <xsd:enumeration value=\"white\"/>\n      <xsd:enumeration value=\"darkBlue\"/>\n      <xsd:enumeration value=\"darkCyan\"/>\n      <xsd:enumeration value=\"darkGreen\"/>\n      <xsd:enumeration value=\"darkMagenta\"/>\n      <xsd:enumeration value=\"darkRed\"/>\n      <xsd:enumeration value=\"darkYellow\"/>\n      <xsd:enumeration value=\"darkGray\"/>\n      <xsd:enumeration value=\"lightGray\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Highlight\">\n    <xsd:attribute name=\"val\" type=\"ST_HighlightColor\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HexColorAuto\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HexColor\">\n    <xsd:union memberTypes=\"ST_HexColorAuto s:ST_HexColorRGB\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Color\">\n    <xsd:attribute name=\"val\" type=\"ST_HexColor\" use=\"required\"/>\n    <xsd:attribute name=\"themeColor\" type=\"ST_ThemeColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeTint\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"themeShade\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Lang\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Lang\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Guid\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Guid\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Underline\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"single\"/>\n      <xsd:enumeration value=\"words\"/>\n      <xsd:enumeration value=\"double\"/>\n      <xsd:enumeration value=\"thick\"/>\n      <xsd:enumeration value=\"dotted\"/>\n      <xsd:enumeration value=\"dottedHeavy\"/>\n      <xsd:enumeration value=\"dash\"/>\n      <xsd:enumeration value=\"dashedHeavy\"/>\n      <xsd:enumeration value=\"dashLong\"/>\n      <xsd:enumeration value=\"dashLongHeavy\"/>\n      <xsd:enumeration value=\"dotDash\"/>\n      <xsd:enumeration value=\"dashDotHeavy\"/>\n      <xsd:enumeration value=\"dotDotDash\"/>\n      <xsd:enumeration value=\"dashDotDotHeavy\"/>\n      <xsd:enumeration value=\"wave\"/>\n      <xsd:enumeration value=\"wavyHeavy\"/>\n      <xsd:enumeration value=\"wavyDouble\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Underline\">\n    <xsd:attribute name=\"val\" type=\"ST_Underline\" use=\"optional\"/>\n    <xsd:attribute name=\"color\" type=\"ST_HexColor\" use=\"optional\" default=\"auto\"/>\n    <xsd:attribute name=\"themeColor\" type=\"ST_ThemeColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeTint\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"themeShade\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextEffect\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"blinkBackground\"/>\n      <xsd:enumeration value=\"lights\"/>\n      <xsd:enumeration value=\"antsBlack\"/>\n      <xsd:enumeration value=\"antsRed\"/>\n      <xsd:enumeration value=\"shimmer\"/>\n      <xsd:enumeration value=\"sparkle\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextEffect\">\n    <xsd:attribute name=\"val\" type=\"ST_TextEffect\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Border\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"nil\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"single\"/>\n      <xsd:enumeration value=\"thick\"/>\n      <xsd:enumeration value=\"double\"/>\n      <xsd:enumeration value=\"dotted\"/>\n      <xsd:enumeration value=\"dashed\"/>\n      <xsd:enumeration value=\"dotDash\"/>\n      <xsd:enumeration value=\"dotDotDash\"/>\n      <xsd:enumeration value=\"triple\"/>\n      <xsd:enumeration value=\"thinThickSmallGap\"/>\n      <xsd:enumeration value=\"thickThinSmallGap\"/>\n      <xsd:enumeration value=\"thinThickThinSmallGap\"/>\n      <xsd:enumeration value=\"thinThickMediumGap\"/>\n      <xsd:enumeration value=\"thickThinMediumGap\"/>\n      <xsd:enumeration value=\"thinThickThinMediumGap\"/>\n      <xsd:enumeration value=\"thinThickLargeGap\"/>\n      <xsd:enumeration value=\"thickThinLargeGap\"/>\n      <xsd:enumeration value=\"thinThickThinLargeGap\"/>\n      <xsd:enumeration value=\"wave\"/>\n      <xsd:enumeration value=\"doubleWave\"/>\n      <xsd:enumeration value=\"dashSmallGap\"/>\n      <xsd:enumeration value=\"dashDotStroked\"/>\n      <xsd:enumeration value=\"threeDEmboss\"/>\n      <xsd:enumeration value=\"threeDEngrave\"/>\n      <xsd:enumeration value=\"outset\"/>\n      <xsd:enumeration value=\"inset\"/>\n      <xsd:enumeration value=\"apples\"/>\n      <xsd:enumeration value=\"archedScallops\"/>\n      <xsd:enumeration value=\"babyPacifier\"/>\n      <xsd:enumeration value=\"babyRattle\"/>\n      <xsd:enumeration value=\"balloons3Colors\"/>\n      <xsd:enumeration value=\"balloonsHotAir\"/>\n      <xsd:enumeration value=\"basicBlackDashes\"/>\n      <xsd:enumeration value=\"basicBlackDots\"/>\n      <xsd:enumeration value=\"basicBlackSquares\"/>\n      <xsd:enumeration value=\"basicThinLines\"/>\n      <xsd:enumeration value=\"basicWhiteDashes\"/>\n      <xsd:enumeration value=\"basicWhiteDots\"/>\n      <xsd:enumeration value=\"basicWhiteSquares\"/>\n      <xsd:enumeration value=\"basicWideInline\"/>\n      <xsd:enumeration value=\"basicWideMidline\"/>\n      <xsd:enumeration value=\"basicWideOutline\"/>\n      <xsd:enumeration value=\"bats\"/>\n      <xsd:enumeration value=\"birds\"/>\n      <xsd:enumeration value=\"birdsFlight\"/>\n      <xsd:enumeration value=\"cabins\"/>\n      <xsd:enumeration value=\"cakeSlice\"/>\n      <xsd:enumeration value=\"candyCorn\"/>\n      <xsd:enumeration value=\"celticKnotwork\"/>\n      <xsd:enumeration value=\"certificateBanner\"/>\n      <xsd:enumeration value=\"chainLink\"/>\n      <xsd:enumeration value=\"champagneBottle\"/>\n      <xsd:enumeration value=\"checkedBarBlack\"/>\n      <xsd:enumeration value=\"checkedBarColor\"/>\n      <xsd:enumeration value=\"checkered\"/>\n      <xsd:enumeration value=\"christmasTree\"/>\n      <xsd:enumeration value=\"circlesLines\"/>\n      <xsd:enumeration value=\"circlesRectangles\"/>\n      <xsd:enumeration value=\"classicalWave\"/>\n      <xsd:enumeration value=\"clocks\"/>\n      <xsd:enumeration value=\"compass\"/>\n      <xsd:enumeration value=\"confetti\"/>\n      <xsd:enumeration value=\"confettiGrays\"/>\n      <xsd:enumeration value=\"confettiOutline\"/>\n      <xsd:enumeration value=\"confettiStreamers\"/>\n      <xsd:enumeration value=\"confettiWhite\"/>\n      <xsd:enumeration value=\"cornerTriangles\"/>\n      <xsd:enumeration value=\"couponCutoutDashes\"/>\n      <xsd:enumeration value=\"couponCutoutDots\"/>\n      <xsd:enumeration value=\"crazyMaze\"/>\n      <xsd:enumeration value=\"creaturesButterfly\"/>\n      <xsd:enumeration value=\"creaturesFish\"/>\n      <xsd:enumeration value=\"creaturesInsects\"/>\n      <xsd:enumeration value=\"creaturesLadyBug\"/>\n      <xsd:enumeration value=\"crossStitch\"/>\n      <xsd:enumeration value=\"cup\"/>\n      <xsd:enumeration value=\"decoArch\"/>\n      <xsd:enumeration value=\"decoArchColor\"/>\n      <xsd:enumeration value=\"decoBlocks\"/>\n      <xsd:enumeration value=\"diamondsGray\"/>\n      <xsd:enumeration value=\"doubleD\"/>\n      <xsd:enumeration value=\"doubleDiamonds\"/>\n      <xsd:enumeration value=\"earth1\"/>\n      <xsd:enumeration value=\"earth2\"/>\n      <xsd:enumeration value=\"earth3\"/>\n      <xsd:enumeration value=\"eclipsingSquares1\"/>\n      <xsd:enumeration value=\"eclipsingSquares2\"/>\n      <xsd:enumeration value=\"eggsBlack\"/>\n      <xsd:enumeration value=\"fans\"/>\n      <xsd:enumeration value=\"film\"/>\n      <xsd:enumeration value=\"firecrackers\"/>\n      <xsd:enumeration value=\"flowersBlockPrint\"/>\n      <xsd:enumeration value=\"flowersDaisies\"/>\n      <xsd:enumeration value=\"flowersModern1\"/>\n      <xsd:enumeration value=\"flowersModern2\"/>\n      <xsd:enumeration value=\"flowersPansy\"/>\n      <xsd:enumeration value=\"flowersRedRose\"/>\n      <xsd:enumeration value=\"flowersRoses\"/>\n      <xsd:enumeration value=\"flowersTeacup\"/>\n      <xsd:enumeration value=\"flowersTiny\"/>\n      <xsd:enumeration value=\"gems\"/>\n      <xsd:enumeration value=\"gingerbreadMan\"/>\n      <xsd:enumeration value=\"gradient\"/>\n      <xsd:enumeration value=\"handmade1\"/>\n      <xsd:enumeration value=\"handmade2\"/>\n      <xsd:enumeration value=\"heartBalloon\"/>\n      <xsd:enumeration value=\"heartGray\"/>\n      <xsd:enumeration value=\"hearts\"/>\n      <xsd:enumeration value=\"heebieJeebies\"/>\n      <xsd:enumeration value=\"holly\"/>\n      <xsd:enumeration value=\"houseFunky\"/>\n      <xsd:enumeration value=\"hypnotic\"/>\n      <xsd:enumeration value=\"iceCreamCones\"/>\n      <xsd:enumeration value=\"lightBulb\"/>\n      <xsd:enumeration value=\"lightning1\"/>\n      <xsd:enumeration value=\"lightning2\"/>\n      <xsd:enumeration value=\"mapPins\"/>\n      <xsd:enumeration value=\"mapleLeaf\"/>\n      <xsd:enumeration value=\"mapleMuffins\"/>\n      <xsd:enumeration value=\"marquee\"/>\n      <xsd:enumeration value=\"marqueeToothed\"/>\n      <xsd:enumeration value=\"moons\"/>\n      <xsd:enumeration value=\"mosaic\"/>\n      <xsd:enumeration value=\"musicNotes\"/>\n      <xsd:enumeration value=\"northwest\"/>\n      <xsd:enumeration value=\"ovals\"/>\n      <xsd:enumeration value=\"packages\"/>\n      <xsd:enumeration value=\"palmsBlack\"/>\n      <xsd:enumeration value=\"palmsColor\"/>\n      <xsd:enumeration value=\"paperClips\"/>\n      <xsd:enumeration value=\"papyrus\"/>\n      <xsd:enumeration value=\"partyFavor\"/>\n      <xsd:enumeration value=\"partyGlass\"/>\n      <xsd:enumeration value=\"pencils\"/>\n      <xsd:enumeration value=\"people\"/>\n      <xsd:enumeration value=\"peopleWaving\"/>\n      <xsd:enumeration value=\"peopleHats\"/>\n      <xsd:enumeration value=\"poinsettias\"/>\n      <xsd:enumeration value=\"postageStamp\"/>\n      <xsd:enumeration value=\"pumpkin1\"/>\n      <xsd:enumeration value=\"pushPinNote2\"/>\n      <xsd:enumeration value=\"pushPinNote1\"/>\n      <xsd:enumeration value=\"pyramids\"/>\n      <xsd:enumeration value=\"pyramidsAbove\"/>\n      <xsd:enumeration value=\"quadrants\"/>\n      <xsd:enumeration value=\"rings\"/>\n      <xsd:enumeration value=\"safari\"/>\n      <xsd:enumeration value=\"sawtooth\"/>\n      <xsd:enumeration value=\"sawtoothGray\"/>\n      <xsd:enumeration value=\"scaredCat\"/>\n      <xsd:enumeration value=\"seattle\"/>\n      <xsd:enumeration value=\"shadowedSquares\"/>\n      <xsd:enumeration value=\"sharksTeeth\"/>\n      <xsd:enumeration value=\"shorebirdTracks\"/>\n      <xsd:enumeration value=\"skyrocket\"/>\n      <xsd:enumeration value=\"snowflakeFancy\"/>\n      <xsd:enumeration value=\"snowflakes\"/>\n      <xsd:enumeration value=\"sombrero\"/>\n      <xsd:enumeration value=\"southwest\"/>\n      <xsd:enumeration value=\"stars\"/>\n      <xsd:enumeration value=\"starsTop\"/>\n      <xsd:enumeration value=\"stars3d\"/>\n      <xsd:enumeration value=\"starsBlack\"/>\n      <xsd:enumeration value=\"starsShadowed\"/>\n      <xsd:enumeration value=\"sun\"/>\n      <xsd:enumeration value=\"swirligig\"/>\n      <xsd:enumeration value=\"tornPaper\"/>\n      <xsd:enumeration value=\"tornPaperBlack\"/>\n      <xsd:enumeration value=\"trees\"/>\n      <xsd:enumeration value=\"triangleParty\"/>\n      <xsd:enumeration value=\"triangles\"/>\n      <xsd:enumeration value=\"triangle1\"/>\n      <xsd:enumeration value=\"triangle2\"/>\n      <xsd:enumeration value=\"triangleCircle1\"/>\n      <xsd:enumeration value=\"triangleCircle2\"/>\n      <xsd:enumeration value=\"shapes1\"/>\n      <xsd:enumeration value=\"shapes2\"/>\n      <xsd:enumeration value=\"twistedLines1\"/>\n      <xsd:enumeration value=\"twistedLines2\"/>\n      <xsd:enumeration value=\"vine\"/>\n      <xsd:enumeration value=\"waveline\"/>\n      <xsd:enumeration value=\"weavingAngles\"/>\n      <xsd:enumeration value=\"weavingBraid\"/>\n      <xsd:enumeration value=\"weavingRibbon\"/>\n      <xsd:enumeration value=\"weavingStrips\"/>\n      <xsd:enumeration value=\"whiteFlowers\"/>\n      <xsd:enumeration value=\"woodwork\"/>\n      <xsd:enumeration value=\"xIllusions\"/>\n      <xsd:enumeration value=\"zanyTriangles\"/>\n      <xsd:enumeration value=\"zigZag\"/>\n      <xsd:enumeration value=\"zigZagStitch\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Border\">\n    <xsd:attribute name=\"val\" type=\"ST_Border\" use=\"required\"/>\n    <xsd:attribute name=\"color\" type=\"ST_HexColor\" use=\"optional\" default=\"auto\"/>\n    <xsd:attribute name=\"themeColor\" type=\"ST_ThemeColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeTint\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"themeShade\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"sz\" type=\"ST_EighthPointMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"space\" type=\"ST_PointMeasure\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"shadow\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"frame\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Shd\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"nil\"/>\n      <xsd:enumeration value=\"clear\"/>\n      <xsd:enumeration value=\"solid\"/>\n      <xsd:enumeration value=\"horzStripe\"/>\n      <xsd:enumeration value=\"vertStripe\"/>\n      <xsd:enumeration value=\"reverseDiagStripe\"/>\n      <xsd:enumeration value=\"diagStripe\"/>\n      <xsd:enumeration value=\"horzCross\"/>\n      <xsd:enumeration value=\"diagCross\"/>\n      <xsd:enumeration value=\"thinHorzStripe\"/>\n      <xsd:enumeration value=\"thinVertStripe\"/>\n      <xsd:enumeration value=\"thinReverseDiagStripe\"/>\n      <xsd:enumeration value=\"thinDiagStripe\"/>\n      <xsd:enumeration value=\"thinHorzCross\"/>\n      <xsd:enumeration value=\"thinDiagCross\"/>\n      <xsd:enumeration value=\"pct5\"/>\n      <xsd:enumeration value=\"pct10\"/>\n      <xsd:enumeration value=\"pct12\"/>\n      <xsd:enumeration value=\"pct15\"/>\n      <xsd:enumeration value=\"pct20\"/>\n      <xsd:enumeration value=\"pct25\"/>\n      <xsd:enumeration value=\"pct30\"/>\n      <xsd:enumeration value=\"pct35\"/>\n      <xsd:enumeration value=\"pct37\"/>\n      <xsd:enumeration value=\"pct40\"/>\n      <xsd:enumeration value=\"pct45\"/>\n      <xsd:enumeration value=\"pct50\"/>\n      <xsd:enumeration value=\"pct55\"/>\n      <xsd:enumeration value=\"pct60\"/>\n      <xsd:enumeration value=\"pct62\"/>\n      <xsd:enumeration value=\"pct65\"/>\n      <xsd:enumeration value=\"pct70\"/>\n      <xsd:enumeration value=\"pct75\"/>\n      <xsd:enumeration value=\"pct80\"/>\n      <xsd:enumeration value=\"pct85\"/>\n      <xsd:enumeration value=\"pct87\"/>\n      <xsd:enumeration value=\"pct90\"/>\n      <xsd:enumeration value=\"pct95\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Shd\">\n    <xsd:attribute name=\"val\" type=\"ST_Shd\" use=\"required\"/>\n    <xsd:attribute name=\"color\" type=\"ST_HexColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeColor\" type=\"ST_ThemeColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeTint\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"themeShade\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"fill\" type=\"ST_HexColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeFill\" type=\"ST_ThemeColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeFillTint\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"themeFillShade\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_VerticalAlignRun\">\n    <xsd:attribute name=\"val\" type=\"s:ST_VerticalAlignRun\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FitText\">\n    <xsd:attribute name=\"val\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"id\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Em\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"dot\"/>\n      <xsd:enumeration value=\"comma\"/>\n      <xsd:enumeration value=\"circle\"/>\n      <xsd:enumeration value=\"underDot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Em\">\n    <xsd:attribute name=\"val\" type=\"ST_Em\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Language\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Lang\" use=\"optional\"/>\n    <xsd:attribute name=\"eastAsia\" type=\"s:ST_Lang\" use=\"optional\"/>\n    <xsd:attribute name=\"bidi\" type=\"s:ST_Lang\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CombineBrackets\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"round\"/>\n      <xsd:enumeration value=\"square\"/>\n      <xsd:enumeration value=\"angle\"/>\n      <xsd:enumeration value=\"curly\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_EastAsianLayout\">\n    <xsd:attribute name=\"id\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"combine\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"combineBrackets\" type=\"ST_CombineBrackets\" use=\"optional\"/>\n    <xsd:attribute name=\"vert\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"vertCompress\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HeightRule\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"exact\"/>\n      <xsd:enumeration value=\"atLeast\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Wrap\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"notBeside\"/>\n      <xsd:enumeration value=\"around\"/>\n      <xsd:enumeration value=\"tight\"/>\n      <xsd:enumeration value=\"through\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_VAnchor\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"page\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_HAnchor\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"page\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DropCap\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"drop\"/>\n      <xsd:enumeration value=\"margin\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FramePr\">\n    <xsd:attribute name=\"dropCap\" type=\"ST_DropCap\" use=\"optional\"/>\n    <xsd:attribute name=\"lines\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"w\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"h\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"vSpace\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"hSpace\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"wrap\" type=\"ST_Wrap\" use=\"optional\"/>\n    <xsd:attribute name=\"hAnchor\" type=\"ST_HAnchor\" use=\"optional\"/>\n    <xsd:attribute name=\"vAnchor\" type=\"ST_VAnchor\" use=\"optional\"/>\n    <xsd:attribute name=\"x\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"xAlign\" type=\"s:ST_XAlign\" use=\"optional\"/>\n    <xsd:attribute name=\"y\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"yAlign\" type=\"s:ST_YAlign\" use=\"optional\"/>\n    <xsd:attribute name=\"hRule\" type=\"ST_HeightRule\" use=\"optional\"/>\n    <xsd:attribute name=\"anchorLock\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TabJc\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"clear\"/>\n      <xsd:enumeration value=\"start\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"end\"/>\n      <xsd:enumeration value=\"decimal\"/>\n      <xsd:enumeration value=\"bar\"/>\n      <xsd:enumeration value=\"num\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_TabTlc\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"dot\"/>\n      <xsd:enumeration value=\"hyphen\"/>\n      <xsd:enumeration value=\"underscore\"/>\n      <xsd:enumeration value=\"heavy\"/>\n      <xsd:enumeration value=\"middleDot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TabStop\">\n    <xsd:attribute name=\"val\" type=\"ST_TabJc\" use=\"required\"/>\n    <xsd:attribute name=\"leader\" type=\"ST_TabTlc\" use=\"optional\"/>\n    <xsd:attribute name=\"pos\" type=\"ST_SignedTwipsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LineSpacingRule\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"auto\"/>\n      <xsd:enumeration value=\"exact\"/>\n      <xsd:enumeration value=\"atLeast\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Spacing\">\n    <xsd:attribute name=\"before\" type=\"s:ST_TwipsMeasure\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"beforeLines\" type=\"ST_DecimalNumber\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"beforeAutospacing\" type=\"s:ST_OnOff\" use=\"optional\" default=\"off\"/>\n    <xsd:attribute name=\"after\" type=\"s:ST_TwipsMeasure\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"afterLines\" type=\"ST_DecimalNumber\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"afterAutospacing\" type=\"s:ST_OnOff\" use=\"optional\" default=\"off\"/>\n    <xsd:attribute name=\"line\" type=\"ST_SignedTwipsMeasure\" use=\"optional\" default=\"0\"/>\n    <xsd:attribute name=\"lineRule\" type=\"ST_LineSpacingRule\" use=\"optional\" default=\"auto\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Ind\">\n    <xsd:attribute name=\"start\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"startChars\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"end\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"endChars\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"left\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"leftChars\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"right\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"rightChars\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"hanging\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"hangingChars\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"firstLine\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"firstLineChars\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Jc\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"start\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"end\"/>\n      <xsd:enumeration value=\"both\"/>\n      <xsd:enumeration value=\"mediumKashida\"/>\n      <xsd:enumeration value=\"distribute\"/>\n      <xsd:enumeration value=\"numTab\"/>\n      <xsd:enumeration value=\"highKashida\"/>\n      <xsd:enumeration value=\"lowKashida\"/>\n      <xsd:enumeration value=\"thaiDistribute\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_JcTable\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"end\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"start\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Jc\">\n    <xsd:attribute name=\"val\" type=\"ST_Jc\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_JcTable\">\n    <xsd:attribute name=\"val\" type=\"ST_JcTable\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_View\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"print\"/>\n      <xsd:enumeration value=\"outline\"/>\n      <xsd:enumeration value=\"masterPages\"/>\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"web\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_View\">\n    <xsd:attribute name=\"val\" type=\"ST_View\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Zoom\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"fullPage\"/>\n      <xsd:enumeration value=\"bestFit\"/>\n      <xsd:enumeration value=\"textFit\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Zoom\">\n    <xsd:attribute name=\"val\" type=\"ST_Zoom\" use=\"optional\"/>\n    <xsd:attribute name=\"percent\" type=\"ST_DecimalNumberOrPercent\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WritingStyle\">\n    <xsd:attribute name=\"lang\" type=\"s:ST_Lang\" use=\"required\"/>\n    <xsd:attribute name=\"vendorID\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"dllVersion\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"nlCheck\" type=\"s:ST_OnOff\" use=\"optional\" default=\"off\"/>\n    <xsd:attribute name=\"checkStyle\" type=\"s:ST_OnOff\" use=\"required\"/>\n    <xsd:attribute name=\"appName\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Proof\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"clean\"/>\n      <xsd:enumeration value=\"dirty\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Proof\">\n    <xsd:attribute name=\"spelling\" type=\"ST_Proof\" use=\"optional\"/>\n    <xsd:attribute name=\"grammar\" type=\"ST_Proof\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DocType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DocType\">\n    <xsd:attribute name=\"val\" type=\"ST_DocType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DocProtect\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"readOnly\"/>\n      <xsd:enumeration value=\"comments\"/>\n      <xsd:enumeration value=\"trackedChanges\"/>\n      <xsd:enumeration value=\"forms\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:attributeGroup name=\"AG_Password\">\n    <xsd:attribute name=\"algorithmName\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"hashValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"saltValue\" type=\"xsd:base64Binary\" use=\"optional\"/>\n    <xsd:attribute name=\"spinCount\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n  </xsd:attributeGroup>\n  <xsd:attributeGroup name=\"AG_TransitionalPassword\">\n    <xsd:attribute name=\"cryptProviderType\" type=\"s:ST_CryptProv\"/>\n    <xsd:attribute name=\"cryptAlgorithmClass\" type=\"s:ST_AlgClass\"/>\n    <xsd:attribute name=\"cryptAlgorithmType\" type=\"s:ST_AlgType\"/>\n    <xsd:attribute name=\"cryptAlgorithmSid\" type=\"ST_DecimalNumber\"/>\n    <xsd:attribute name=\"cryptSpinCount\" type=\"ST_DecimalNumber\"/>\n    <xsd:attribute name=\"cryptProvider\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"algIdExt\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"algIdExtSource\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"cryptProviderTypeExt\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"cryptProviderTypeExtSource\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"hash\" type=\"xsd:base64Binary\"/>\n    <xsd:attribute name=\"salt\" type=\"xsd:base64Binary\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_DocProtect\">\n    <xsd:attribute name=\"edit\" type=\"ST_DocProtect\" use=\"optional\"/>\n    <xsd:attribute name=\"formatting\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"enforcement\" type=\"s:ST_OnOff\"/>\n    <xsd:attributeGroup ref=\"AG_Password\"/>\n    <xsd:attributeGroup ref=\"AG_TransitionalPassword\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MailMergeDocType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"catalog\"/>\n      <xsd:enumeration value=\"envelopes\"/>\n      <xsd:enumeration value=\"mailingLabels\"/>\n      <xsd:enumeration value=\"formLetters\"/>\n      <xsd:enumeration value=\"email\"/>\n      <xsd:enumeration value=\"fax\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MailMergeDocType\">\n    <xsd:attribute name=\"val\" type=\"ST_MailMergeDocType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MailMergeDataType\">\n    <xsd:restriction base=\"xsd:string\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MailMergeDataType\">\n    <xsd:attribute name=\"val\" type=\"ST_MailMergeDataType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MailMergeDest\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"newDocument\"/>\n      <xsd:enumeration value=\"printer\"/>\n      <xsd:enumeration value=\"email\"/>\n      <xsd:enumeration value=\"fax\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MailMergeDest\">\n    <xsd:attribute name=\"val\" type=\"ST_MailMergeDest\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MailMergeOdsoFMDFieldType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"null\"/>\n      <xsd:enumeration value=\"dbColumn\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MailMergeOdsoFMDFieldType\">\n    <xsd:attribute name=\"val\" type=\"ST_MailMergeOdsoFMDFieldType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrackChangesView\">\n    <xsd:attribute name=\"markup\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"comments\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"insDel\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"formatting\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"inkAnnotations\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Kinsoku\">\n    <xsd:attribute name=\"lang\" type=\"s:ST_Lang\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextDirection\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"tb\"/>\n      <xsd:enumeration value=\"rl\"/>\n      <xsd:enumeration value=\"lr\"/>\n      <xsd:enumeration value=\"tbV\"/>\n      <xsd:enumeration value=\"rlV\"/>\n      <xsd:enumeration value=\"lrV\"/>\n      <xsd:enumeration value=\"btLr\"/>\n      <xsd:enumeration value=\"lrTb\"/>\n      <xsd:enumeration value=\"lrTbV\"/>\n      <xsd:enumeration value=\"tbLrV\"/>\n      <xsd:enumeration value=\"tbRl\"/>\n      <xsd:enumeration value=\"tbRlV\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextDirection\">\n    <xsd:attribute name=\"val\" type=\"ST_TextDirection\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextAlignment\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"baseline\"/>\n      <xsd:enumeration value=\"bottom\"/>\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextAlignment\">\n    <xsd:attribute name=\"val\" type=\"ST_TextAlignment\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DisplacedByCustomXml\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"next\"/>\n      <xsd:enumeration value=\"prev\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_AnnotationVMerge\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"cont\"/>\n      <xsd:enumeration value=\"rest\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Markup\">\n    <xsd:attribute name=\"id\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrackChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Markup\">\n        <xsd:attribute name=\"author\" type=\"s:ST_String\" use=\"required\"/>\n        <xsd:attribute name=\"date\" type=\"ST_DateTime\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CellMergeTrackChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:attribute name=\"vMerge\" type=\"ST_AnnotationVMerge\" use=\"optional\"/>\n        <xsd:attribute name=\"vMergeOrig\" type=\"ST_AnnotationVMerge\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrackChangeRange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:attribute name=\"displacedByCustomXml\" type=\"ST_DisplacedByCustomXml\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MarkupRange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Markup\">\n        <xsd:attribute name=\"displacedByCustomXml\" type=\"ST_DisplacedByCustomXml\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BookmarkRange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_MarkupRange\">\n        <xsd:attribute name=\"colFirst\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n        <xsd:attribute name=\"colLast\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Bookmark\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_BookmarkRange\">\n        <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MoveBookmark\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Bookmark\">\n        <xsd:attribute name=\"author\" type=\"s:ST_String\" use=\"required\"/>\n        <xsd:attribute name=\"date\" type=\"ST_DateTime\" use=\"required\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Comment\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:group ref=\"EG_BlockLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n        </xsd:sequence>\n        <xsd:attribute name=\"initials\" type=\"s:ST_String\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrackChangeNumbering\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:attribute name=\"original\" type=\"s:ST_String\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPrExChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"tblPrEx\" type=\"CT_TblPrExBase\" minOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TcPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"tcPr\" type=\"CT_TcPrInner\" minOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"trPr\" type=\"CT_TrPrBase\" minOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblGridChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Markup\">\n        <xsd:sequence>\n          <xsd:element name=\"tblGrid\" type=\"CT_TblGridBase\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"tblPr\" type=\"CT_TblPrBase\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SectPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"sectPr\" type=\"CT_SectPrBase\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"pPr\" type=\"CT_PPrBase\" minOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"rPr\" type=\"CT_RPrOriginal\" minOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ParaRPrChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:sequence>\n          <xsd:element name=\"rPr\" type=\"CT_ParaRPrOriginal\" minOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RunTrackChange\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n          <xsd:group ref=\"EG_ContentRunContent\"/>\n          <xsd:group ref=\"m:EG_OMathMathElements\"/>\n        </xsd:choice>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:group name=\"EG_PContentMath\">\n    <xsd:choice>\n      <xsd:group ref=\"EG_PContentBase\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:group ref=\"EG_ContentRunContentBase\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_PContentBase\">\n    <xsd:choice>\n      <xsd:element name=\"customXml\" type=\"CT_CustomXmlRun\"/>\n      <xsd:element name=\"fldSimple\" type=\"CT_SimpleField\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"hyperlink\" type=\"CT_Hyperlink\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_ContentRunContentBase\">\n    <xsd:choice>\n      <xsd:element name=\"smartTag\" type=\"CT_SmartTagRun\"/>\n      <xsd:element name=\"sdt\" type=\"CT_SdtRun\"/>\n      <xsd:group ref=\"EG_RunLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_CellMarkupElements\">\n    <xsd:choice>\n      <xsd:element name=\"cellIns\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"cellDel\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"cellMerge\" type=\"CT_CellMergeTrackChange\" minOccurs=\"0\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_RangeMarkupElements\">\n    <xsd:choice>\n      <xsd:element name=\"bookmarkStart\" type=\"CT_Bookmark\"/>\n      <xsd:element name=\"bookmarkEnd\" type=\"CT_MarkupRange\"/>\n      <xsd:element name=\"moveFromRangeStart\" type=\"CT_MoveBookmark\"/>\n      <xsd:element name=\"moveFromRangeEnd\" type=\"CT_MarkupRange\"/>\n      <xsd:element name=\"moveToRangeStart\" type=\"CT_MoveBookmark\"/>\n      <xsd:element name=\"moveToRangeEnd\" type=\"CT_MarkupRange\"/>\n      <xsd:element name=\"commentRangeStart\" type=\"CT_MarkupRange\"/>\n      <xsd:element name=\"commentRangeEnd\" type=\"CT_MarkupRange\"/>\n      <xsd:element name=\"customXmlInsRangeStart\" type=\"CT_TrackChange\"/>\n      <xsd:element name=\"customXmlInsRangeEnd\" type=\"CT_Markup\"/>\n      <xsd:element name=\"customXmlDelRangeStart\" type=\"CT_TrackChange\"/>\n      <xsd:element name=\"customXmlDelRangeEnd\" type=\"CT_Markup\"/>\n      <xsd:element name=\"customXmlMoveFromRangeStart\" type=\"CT_TrackChange\"/>\n      <xsd:element name=\"customXmlMoveFromRangeEnd\" type=\"CT_Markup\"/>\n      <xsd:element name=\"customXmlMoveToRangeStart\" type=\"CT_TrackChange\"/>\n      <xsd:element name=\"customXmlMoveToRangeEnd\" type=\"CT_Markup\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_NumPr\">\n    <xsd:sequence>\n      <xsd:element name=\"ilvl\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"numId\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"numberingChange\" type=\"CT_TrackChangeNumbering\" minOccurs=\"0\"/>\n      <xsd:element name=\"ins\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PBdr\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"left\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"right\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"between\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"bar\" type=\"CT_Border\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Tabs\">\n    <xsd:sequence>\n      <xsd:element name=\"tab\" type=\"CT_TabStop\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TextboxTightWrap\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"allLines\"/>\n      <xsd:enumeration value=\"firstAndLastLine\"/>\n      <xsd:enumeration value=\"firstLineOnly\"/>\n      <xsd:enumeration value=\"lastLineOnly\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TextboxTightWrap\">\n    <xsd:attribute name=\"val\" type=\"ST_TextboxTightWrap\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PPrBase\">\n    <xsd:sequence>\n      <xsd:element name=\"pStyle\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"keepNext\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"keepLines\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"pageBreakBefore\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"framePr\" type=\"CT_FramePr\" minOccurs=\"0\"/>\n      <xsd:element name=\"widowControl\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"numPr\" type=\"CT_NumPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressLineNumbers\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"pBdr\" type=\"CT_PBdr\" minOccurs=\"0\"/>\n      <xsd:element name=\"shd\" type=\"CT_Shd\" minOccurs=\"0\"/>\n      <xsd:element name=\"tabs\" type=\"CT_Tabs\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressAutoHyphens\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"kinsoku\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"wordWrap\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"overflowPunct\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"topLinePunct\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"autoSpaceDE\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"autoSpaceDN\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bidi\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"adjustRightInd\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"snapToGrid\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"spacing\" type=\"CT_Spacing\" minOccurs=\"0\"/>\n      <xsd:element name=\"ind\" type=\"CT_Ind\" minOccurs=\"0\"/>\n      <xsd:element name=\"contextualSpacing\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"mirrorIndents\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressOverlap\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"jc\" type=\"CT_Jc\" minOccurs=\"0\"/>\n      <xsd:element name=\"textDirection\" type=\"CT_TextDirection\" minOccurs=\"0\"/>\n      <xsd:element name=\"textAlignment\" type=\"CT_TextAlignment\" minOccurs=\"0\"/>\n      <xsd:element name=\"textboxTightWrap\" type=\"CT_TextboxTightWrap\" minOccurs=\"0\"/>\n      <xsd:element name=\"outlineLvl\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"divId\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"cnfStyle\" type=\"CT_Cnf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PPr\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_PPrBase\">\n        <xsd:sequence>\n          <xsd:element name=\"rPr\" type=\"CT_ParaRPr\" minOccurs=\"0\"/>\n          <xsd:element name=\"sectPr\" type=\"CT_SectPr\" minOccurs=\"0\"/>\n          <xsd:element name=\"pPrChange\" type=\"CT_PPrChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PPrGeneral\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_PPrBase\">\n        <xsd:sequence>\n          <xsd:element name=\"pPrChange\" type=\"CT_PPrChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Control\">\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"shapeid\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Background\">\n    <xsd:sequence>\n      <xsd:sequence maxOccurs=\"unbounded\">\n        <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:vml\" minOccurs=\"0\"\n          maxOccurs=\"unbounded\"/>\n        <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:office:office\"\n          minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      </xsd:sequence>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"color\" type=\"ST_HexColor\" use=\"optional\" default=\"auto\"/>\n    <xsd:attribute name=\"themeColor\" type=\"ST_ThemeColor\" use=\"optional\"/>\n    <xsd:attribute name=\"themeTint\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"themeShade\" type=\"ST_UcharHexNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Rel\">\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Object\">\n    <xsd:sequence>\n      <xsd:sequence maxOccurs=\"unbounded\">\n        <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:vml\" minOccurs=\"0\"\n          maxOccurs=\"unbounded\"/>\n        <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:office:office\"\n          minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      </xsd:sequence>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\" minOccurs=\"0\"/>\n      <xsd:choice minOccurs=\"0\">\n        <xsd:element name=\"control\" type=\"CT_Control\"/>\n        <xsd:element name=\"objectLink\" type=\"CT_ObjectLink\"/>\n        <xsd:element name=\"objectEmbed\" type=\"CT_ObjectEmbed\"/>\n        <xsd:element name=\"movie\" type=\"CT_Rel\"/>\n      </xsd:choice>\n    </xsd:sequence>\n    <xsd:attribute name=\"dxaOrig\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"dyaOrig\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Picture\">\n    <xsd:sequence>\n      <xsd:sequence maxOccurs=\"unbounded\">\n        <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:vml\" minOccurs=\"0\"\n          maxOccurs=\"unbounded\"/>\n        <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:office:office\"\n          minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      </xsd:sequence>\n      <xsd:element name=\"movie\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"control\" type=\"CT_Control\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ObjectEmbed\">\n    <xsd:attribute name=\"drawAspect\" type=\"ST_ObjectDrawAspect\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\" use=\"required\"/>\n    <xsd:attribute name=\"progId\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"shapeId\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"fieldCodes\" type=\"s:ST_String\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ObjectDrawAspect\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"content\"/>\n      <xsd:enumeration value=\"icon\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ObjectLink\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_ObjectEmbed\">\n        <xsd:attribute name=\"updateMode\" type=\"ST_ObjectUpdateMode\" use=\"required\"/>\n        <xsd:attribute name=\"lockedField\" type=\"s:ST_OnOff\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ObjectUpdateMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"always\"/>\n      <xsd:enumeration value=\"onCall\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Drawing\">\n    <xsd:choice minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element ref=\"wp:anchor\" minOccurs=\"0\"/>\n      <xsd:element ref=\"wp:inline\" minOccurs=\"0\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SimpleField\">\n    <xsd:sequence>\n      <xsd:element name=\"fldData\" type=\"CT_Text\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"instr\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"fldLock\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"dirty\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FldCharType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"begin\"/>\n      <xsd:enumeration value=\"separate\"/>\n      <xsd:enumeration value=\"end\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_InfoTextType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"autoText\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FFHelpTextVal\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:maxLength value=\"256\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FFStatusTextVal\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:maxLength value=\"140\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FFName\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:maxLength value=\"65\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FFTextType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"regular\"/>\n      <xsd:enumeration value=\"number\"/>\n      <xsd:enumeration value=\"date\"/>\n      <xsd:enumeration value=\"currentTime\"/>\n      <xsd:enumeration value=\"currentDate\"/>\n      <xsd:enumeration value=\"calculated\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FFTextType\">\n    <xsd:attribute name=\"val\" type=\"ST_FFTextType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFName\">\n    <xsd:attribute name=\"val\" type=\"ST_FFName\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FldChar\">\n    <xsd:choice>\n      <xsd:element name=\"fldData\" type=\"CT_Text\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"ffData\" type=\"CT_FFData\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"numberingChange\" type=\"CT_TrackChangeNumbering\" minOccurs=\"0\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"fldCharType\" type=\"ST_FldCharType\" use=\"required\"/>\n    <xsd:attribute name=\"fldLock\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"dirty\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Hyperlink\">\n    <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    <xsd:attribute name=\"tgtFrame\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"tooltip\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"docLocation\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"history\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"anchor\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute ref=\"r:id\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFData\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"name\" type=\"CT_FFName\"/>\n      <xsd:element name=\"label\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"tabIndex\" type=\"CT_UnsignedDecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"enabled\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"calcOnExit\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"entryMacro\" type=\"CT_MacroName\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"exitMacro\" type=\"CT_MacroName\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"helpText\" type=\"CT_FFHelpText\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"statusText\" type=\"CT_FFStatusText\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:choice>\n        <xsd:element name=\"checkBox\" type=\"CT_FFCheckBox\"/>\n        <xsd:element name=\"ddList\" type=\"CT_FFDDList\"/>\n        <xsd:element name=\"textInput\" type=\"CT_FFTextInput\"/>\n      </xsd:choice>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFHelpText\">\n    <xsd:attribute name=\"type\" type=\"ST_InfoTextType\"/>\n    <xsd:attribute name=\"val\" type=\"ST_FFHelpTextVal\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFStatusText\">\n    <xsd:attribute name=\"type\" type=\"ST_InfoTextType\"/>\n    <xsd:attribute name=\"val\" type=\"ST_FFStatusTextVal\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFCheckBox\">\n    <xsd:sequence>\n      <xsd:choice>\n        <xsd:element name=\"size\" type=\"CT_HpsMeasure\"/>\n        <xsd:element name=\"sizeAuto\" type=\"CT_OnOff\"/>\n      </xsd:choice>\n      <xsd:element name=\"default\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"checked\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFDDList\">\n    <xsd:sequence>\n      <xsd:element name=\"result\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"default\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"listEntry\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FFTextInput\">\n    <xsd:sequence>\n      <xsd:element name=\"type\" type=\"CT_FFTextType\" minOccurs=\"0\"/>\n      <xsd:element name=\"default\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"maxLength\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"format\" type=\"CT_String\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SectionMark\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"nextPage\"/>\n      <xsd:enumeration value=\"nextColumn\"/>\n      <xsd:enumeration value=\"continuous\"/>\n      <xsd:enumeration value=\"evenPage\"/>\n      <xsd:enumeration value=\"oddPage\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SectType\">\n    <xsd:attribute name=\"val\" type=\"ST_SectionMark\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PaperSource\">\n    <xsd:attribute name=\"first\" type=\"ST_DecimalNumber\"/>\n    <xsd:attribute name=\"other\" type=\"ST_DecimalNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_NumberFormat\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"decimal\"/>\n      <xsd:enumeration value=\"upperRoman\"/>\n      <xsd:enumeration value=\"lowerRoman\"/>\n      <xsd:enumeration value=\"upperLetter\"/>\n      <xsd:enumeration value=\"lowerLetter\"/>\n      <xsd:enumeration value=\"ordinal\"/>\n      <xsd:enumeration value=\"cardinalText\"/>\n      <xsd:enumeration value=\"ordinalText\"/>\n      <xsd:enumeration value=\"hex\"/>\n      <xsd:enumeration value=\"chicago\"/>\n      <xsd:enumeration value=\"ideographDigital\"/>\n      <xsd:enumeration value=\"japaneseCounting\"/>\n      <xsd:enumeration value=\"aiueo\"/>\n      <xsd:enumeration value=\"iroha\"/>\n      <xsd:enumeration value=\"decimalFullWidth\"/>\n      <xsd:enumeration value=\"decimalHalfWidth\"/>\n      <xsd:enumeration value=\"japaneseLegal\"/>\n      <xsd:enumeration value=\"japaneseDigitalTenThousand\"/>\n      <xsd:enumeration value=\"decimalEnclosedCircle\"/>\n      <xsd:enumeration value=\"decimalFullWidth2\"/>\n      <xsd:enumeration value=\"aiueoFullWidth\"/>\n      <xsd:enumeration value=\"irohaFullWidth\"/>\n      <xsd:enumeration value=\"decimalZero\"/>\n      <xsd:enumeration value=\"bullet\"/>\n      <xsd:enumeration value=\"ganada\"/>\n      <xsd:enumeration value=\"chosung\"/>\n      <xsd:enumeration value=\"decimalEnclosedFullstop\"/>\n      <xsd:enumeration value=\"decimalEnclosedParen\"/>\n      <xsd:enumeration value=\"decimalEnclosedCircleChinese\"/>\n      <xsd:enumeration value=\"ideographEnclosedCircle\"/>\n      <xsd:enumeration value=\"ideographTraditional\"/>\n      <xsd:enumeration value=\"ideographZodiac\"/>\n      <xsd:enumeration value=\"ideographZodiacTraditional\"/>\n      <xsd:enumeration value=\"taiwaneseCounting\"/>\n      <xsd:enumeration value=\"ideographLegalTraditional\"/>\n      <xsd:enumeration value=\"taiwaneseCountingThousand\"/>\n      <xsd:enumeration value=\"taiwaneseDigital\"/>\n      <xsd:enumeration value=\"chineseCounting\"/>\n      <xsd:enumeration value=\"chineseLegalSimplified\"/>\n      <xsd:enumeration value=\"chineseCountingThousand\"/>\n      <xsd:enumeration value=\"koreanDigital\"/>\n      <xsd:enumeration value=\"koreanCounting\"/>\n      <xsd:enumeration value=\"koreanLegal\"/>\n      <xsd:enumeration value=\"koreanDigital2\"/>\n      <xsd:enumeration value=\"vietnameseCounting\"/>\n      <xsd:enumeration value=\"russianLower\"/>\n      <xsd:enumeration value=\"russianUpper\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"numberInDash\"/>\n      <xsd:enumeration value=\"hebrew1\"/>\n      <xsd:enumeration value=\"hebrew2\"/>\n      <xsd:enumeration value=\"arabicAlpha\"/>\n      <xsd:enumeration value=\"arabicAbjad\"/>\n      <xsd:enumeration value=\"hindiVowels\"/>\n      <xsd:enumeration value=\"hindiConsonants\"/>\n      <xsd:enumeration value=\"hindiNumbers\"/>\n      <xsd:enumeration value=\"hindiCounting\"/>\n      <xsd:enumeration value=\"thaiLetters\"/>\n      <xsd:enumeration value=\"thaiNumbers\"/>\n      <xsd:enumeration value=\"thaiCounting\"/>\n      <xsd:enumeration value=\"bahtText\"/>\n      <xsd:enumeration value=\"dollarText\"/>\n      <xsd:enumeration value=\"custom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PageOrientation\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"portrait\"/>\n      <xsd:enumeration value=\"landscape\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PageSz\">\n    <xsd:attribute name=\"w\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"h\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"orient\" type=\"ST_PageOrientation\" use=\"optional\"/>\n    <xsd:attribute name=\"code\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageMar\">\n    <xsd:attribute name=\"top\" type=\"ST_SignedTwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"right\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"bottom\" type=\"ST_SignedTwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"left\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"header\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"footer\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"gutter\" type=\"s:ST_TwipsMeasure\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PageBorderZOrder\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"front\"/>\n      <xsd:enumeration value=\"back\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PageBorderDisplay\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"allPages\"/>\n      <xsd:enumeration value=\"firstPage\"/>\n      <xsd:enumeration value=\"notFirstPage\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PageBorderOffset\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"page\"/>\n      <xsd:enumeration value=\"text\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PageBorders\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_TopPageBorder\" minOccurs=\"0\"/>\n      <xsd:element name=\"left\" type=\"CT_PageBorder\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_BottomPageBorder\" minOccurs=\"0\"/>\n      <xsd:element name=\"right\" type=\"CT_PageBorder\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"zOrder\" type=\"ST_PageBorderZOrder\" use=\"optional\" default=\"front\"/>\n    <xsd:attribute name=\"display\" type=\"ST_PageBorderDisplay\" use=\"optional\"/>\n    <xsd:attribute name=\"offsetFrom\" type=\"ST_PageBorderOffset\" use=\"optional\" default=\"text\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageBorder\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Border\">\n        <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BottomPageBorder\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_PageBorder\">\n        <xsd:attribute ref=\"r:bottomLeft\" use=\"optional\"/>\n        <xsd:attribute ref=\"r:bottomRight\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TopPageBorder\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_PageBorder\">\n        <xsd:attribute ref=\"r:topLeft\" use=\"optional\"/>\n        <xsd:attribute ref=\"r:topRight\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ChapterSep\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"hyphen\"/>\n      <xsd:enumeration value=\"period\"/>\n      <xsd:enumeration value=\"colon\"/>\n      <xsd:enumeration value=\"emDash\"/>\n      <xsd:enumeration value=\"enDash\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_LineNumberRestart\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"newPage\"/>\n      <xsd:enumeration value=\"newSection\"/>\n      <xsd:enumeration value=\"continuous\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LineNumber\">\n    <xsd:attribute name=\"countBy\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"start\" type=\"ST_DecimalNumber\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"distance\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"restart\" type=\"ST_LineNumberRestart\" use=\"optional\" default=\"newPage\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PageNumber\">\n    <xsd:attribute name=\"fmt\" type=\"ST_NumberFormat\" use=\"optional\" default=\"decimal\"/>\n    <xsd:attribute name=\"start\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"chapStyle\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"chapSep\" type=\"ST_ChapterSep\" use=\"optional\" default=\"hyphen\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Column\">\n    <xsd:attribute name=\"w\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"space\" type=\"s:ST_TwipsMeasure\" use=\"optional\" default=\"0\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Columns\">\n    <xsd:sequence minOccurs=\"0\">\n      <xsd:element name=\"col\" type=\"CT_Column\" maxOccurs=\"45\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"equalWidth\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"space\" type=\"s:ST_TwipsMeasure\" use=\"optional\" default=\"720\"/>\n    <xsd:attribute name=\"num\" type=\"ST_DecimalNumber\" use=\"optional\" default=\"1\"/>\n    <xsd:attribute name=\"sep\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_VerticalJc\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"top\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"both\"/>\n      <xsd:enumeration value=\"bottom\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_VerticalJc\">\n    <xsd:attribute name=\"val\" type=\"ST_VerticalJc\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DocGrid\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"lines\"/>\n      <xsd:enumeration value=\"linesAndChars\"/>\n      <xsd:enumeration value=\"snapToChars\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DocGrid\">\n    <xsd:attribute name=\"type\" type=\"ST_DocGrid\"/>\n    <xsd:attribute name=\"linePitch\" type=\"ST_DecimalNumber\"/>\n    <xsd:attribute name=\"charSpace\" type=\"ST_DecimalNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_HdrFtr\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"even\"/>\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"first\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_FtnEdn\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"separator\"/>\n      <xsd:enumeration value=\"continuationSeparator\"/>\n      <xsd:enumeration value=\"continuationNotice\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_HdrFtrRef\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Rel\">\n        <xsd:attribute name=\"type\" type=\"ST_HdrFtr\" use=\"required\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:group name=\"EG_HdrFtrReferences\">\n    <xsd:choice>\n      <xsd:element name=\"headerReference\" type=\"CT_HdrFtrRef\" minOccurs=\"0\"/>\n      <xsd:element name=\"footerReference\" type=\"CT_HdrFtrRef\" minOccurs=\"0\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_HdrFtr\">\n    <xsd:group ref=\"EG_BlockLevelElts\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_SectPrContents\">\n    <xsd:sequence>\n      <xsd:element name=\"footnotePr\" type=\"CT_FtnProps\" minOccurs=\"0\"/>\n      <xsd:element name=\"endnotePr\" type=\"CT_EdnProps\" minOccurs=\"0\"/>\n      <xsd:element name=\"type\" type=\"CT_SectType\" minOccurs=\"0\"/>\n      <xsd:element name=\"pgSz\" type=\"CT_PageSz\" minOccurs=\"0\"/>\n      <xsd:element name=\"pgMar\" type=\"CT_PageMar\" minOccurs=\"0\"/>\n      <xsd:element name=\"paperSrc\" type=\"CT_PaperSource\" minOccurs=\"0\"/>\n      <xsd:element name=\"pgBorders\" type=\"CT_PageBorders\" minOccurs=\"0\"/>\n      <xsd:element name=\"lnNumType\" type=\"CT_LineNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"pgNumType\" type=\"CT_PageNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"cols\" type=\"CT_Columns\" minOccurs=\"0\"/>\n      <xsd:element name=\"formProt\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"vAlign\" type=\"CT_VerticalJc\" minOccurs=\"0\"/>\n      <xsd:element name=\"noEndnote\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"titlePg\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"textDirection\" type=\"CT_TextDirection\" minOccurs=\"0\"/>\n      <xsd:element name=\"bidi\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"rtlGutter\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"docGrid\" type=\"CT_DocGrid\" minOccurs=\"0\"/>\n      <xsd:element name=\"printerSettings\" type=\"CT_Rel\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:attributeGroup name=\"AG_SectPrAttributes\">\n    <xsd:attribute name=\"rsidRPr\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidDel\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidR\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidSect\" type=\"ST_LongHexNumber\"/>\n  </xsd:attributeGroup>\n  <xsd:complexType name=\"CT_SectPrBase\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_SectPrContents\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_SectPrAttributes\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SectPr\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_HdrFtrReferences\" minOccurs=\"0\" maxOccurs=\"6\"/>\n      <xsd:group ref=\"EG_SectPrContents\" minOccurs=\"0\"/>\n      <xsd:element name=\"sectPrChange\" type=\"CT_SectPrChange\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attributeGroup ref=\"AG_SectPrAttributes\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_BrType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"page\"/>\n      <xsd:enumeration value=\"column\"/>\n      <xsd:enumeration value=\"textWrapping\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_BrClear\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"all\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Br\">\n    <xsd:attribute name=\"type\" type=\"ST_BrType\" use=\"optional\"/>\n    <xsd:attribute name=\"clear\" type=\"ST_BrClear\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_PTabAlignment\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"right\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PTabRelativeTo\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"margin\"/>\n      <xsd:enumeration value=\"indent\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_PTabLeader\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"dot\"/>\n      <xsd:enumeration value=\"hyphen\"/>\n      <xsd:enumeration value=\"underscore\"/>\n      <xsd:enumeration value=\"middleDot\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_PTab\">\n    <xsd:attribute name=\"alignment\" type=\"ST_PTabAlignment\" use=\"required\"/>\n    <xsd:attribute name=\"relativeTo\" type=\"ST_PTabRelativeTo\" use=\"required\"/>\n    <xsd:attribute name=\"leader\" type=\"ST_PTabLeader\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Sym\">\n    <xsd:attribute name=\"font\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"char\" type=\"ST_ShortHexNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ProofErr\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"spellStart\"/>\n      <xsd:enumeration value=\"spellEnd\"/>\n      <xsd:enumeration value=\"gramStart\"/>\n      <xsd:enumeration value=\"gramEnd\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ProofErr\">\n    <xsd:attribute name=\"type\" type=\"ST_ProofErr\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_EdGrp\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"everyone\"/>\n      <xsd:enumeration value=\"administrators\"/>\n      <xsd:enumeration value=\"contributors\"/>\n      <xsd:enumeration value=\"editors\"/>\n      <xsd:enumeration value=\"owners\"/>\n      <xsd:enumeration value=\"current\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Perm\">\n    <xsd:attribute name=\"id\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"displacedByCustomXml\" type=\"ST_DisplacedByCustomXml\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PermStart\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Perm\">\n        <xsd:attribute name=\"edGrp\" type=\"ST_EdGrp\" use=\"optional\"/>\n        <xsd:attribute name=\"ed\" type=\"s:ST_String\" use=\"optional\"/>\n        <xsd:attribute name=\"colFirst\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n        <xsd:attribute name=\"colLast\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Text\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"s:ST_String\">\n        <xsd:attribute ref=\"xml:space\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n  <xsd:group name=\"EG_RunInnerContent\">\n    <xsd:choice>\n      <xsd:element name=\"br\" type=\"CT_Br\"/>\n      <xsd:element name=\"t\" type=\"CT_Text\"/>\n      <xsd:element name=\"contentPart\" type=\"CT_Rel\"/>\n      <xsd:element name=\"delText\" type=\"CT_Text\"/>\n      <xsd:element name=\"instrText\" type=\"CT_Text\"/>\n      <xsd:element name=\"delInstrText\" type=\"CT_Text\"/>\n      <xsd:element name=\"noBreakHyphen\" type=\"CT_Empty\"/>\n      <xsd:element name=\"softHyphen\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"dayShort\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"monthShort\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"yearShort\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"dayLong\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"monthLong\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"yearLong\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"annotationRef\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"footnoteRef\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"endnoteRef\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"separator\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"continuationSeparator\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"sym\" type=\"CT_Sym\" minOccurs=\"0\"/>\n      <xsd:element name=\"pgNum\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"cr\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"tab\" type=\"CT_Empty\" minOccurs=\"0\"/>\n      <xsd:element name=\"object\" type=\"CT_Object\"/>\n      <xsd:element name=\"pict\" type=\"CT_Picture\"/>\n      <xsd:element name=\"fldChar\" type=\"CT_FldChar\"/>\n      <xsd:element name=\"ruby\" type=\"CT_Ruby\"/>\n      <xsd:element name=\"footnoteReference\" type=\"CT_FtnEdnRef\"/>\n      <xsd:element name=\"endnoteReference\" type=\"CT_FtnEdnRef\"/>\n      <xsd:element name=\"commentReference\" type=\"CT_Markup\"/>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\"/>\n      <xsd:element name=\"ptab\" type=\"CT_PTab\" minOccurs=\"0\"/>\n      <xsd:element name=\"lastRenderedPageBreak\" type=\"CT_Empty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_R\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_RPr\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_RunInnerContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rsidRPr\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidDel\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidR\" type=\"ST_LongHexNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Hint\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"eastAsia\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_Theme\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"majorEastAsia\"/>\n      <xsd:enumeration value=\"majorBidi\"/>\n      <xsd:enumeration value=\"majorAscii\"/>\n      <xsd:enumeration value=\"majorHAnsi\"/>\n      <xsd:enumeration value=\"minorEastAsia\"/>\n      <xsd:enumeration value=\"minorBidi\"/>\n      <xsd:enumeration value=\"minorAscii\"/>\n      <xsd:enumeration value=\"minorHAnsi\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Fonts\">\n    <xsd:attribute name=\"hint\" type=\"ST_Hint\"/>\n    <xsd:attribute name=\"ascii\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"hAnsi\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"eastAsia\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"cs\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"asciiTheme\" type=\"ST_Theme\"/>\n    <xsd:attribute name=\"hAnsiTheme\" type=\"ST_Theme\"/>\n    <xsd:attribute name=\"eastAsiaTheme\" type=\"ST_Theme\"/>\n    <xsd:attribute name=\"cstheme\" type=\"ST_Theme\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_RPrBase\">\n    <xsd:choice>\n      <xsd:element name=\"rStyle\" type=\"CT_String\"/>\n      <xsd:element name=\"rFonts\" type=\"CT_Fonts\"/>\n      <xsd:element name=\"b\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"bCs\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"i\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"iCs\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"caps\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"smallCaps\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"strike\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"dstrike\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"outline\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"shadow\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"emboss\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"imprint\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"noProof\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"snapToGrid\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"vanish\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"webHidden\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"color\" type=\"CT_Color\"/>\n      <xsd:element name=\"spacing\" type=\"CT_SignedTwipsMeasure\"/>\n      <xsd:element name=\"w\" type=\"CT_TextScale\"/>\n      <xsd:element name=\"kern\" type=\"CT_HpsMeasure\"/>\n      <xsd:element name=\"position\" type=\"CT_SignedHpsMeasure\"/>\n      <xsd:element name=\"sz\" type=\"CT_HpsMeasure\"/>\n      <xsd:element name=\"szCs\" type=\"CT_HpsMeasure\"/>\n      <xsd:element name=\"highlight\" type=\"CT_Highlight\"/>\n      <xsd:element name=\"u\" type=\"CT_Underline\"/>\n      <xsd:element name=\"effect\" type=\"CT_TextEffect\"/>\n      <xsd:element name=\"bdr\" type=\"CT_Border\"/>\n      <xsd:element name=\"shd\" type=\"CT_Shd\"/>\n      <xsd:element name=\"fitText\" type=\"CT_FitText\"/>\n      <xsd:element name=\"vertAlign\" type=\"CT_VerticalAlignRun\"/>\n      <xsd:element name=\"rtl\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"cs\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"em\" type=\"CT_Em\"/>\n      <xsd:element name=\"lang\" type=\"CT_Language\"/>\n      <xsd:element name=\"eastAsianLayout\" type=\"CT_EastAsianLayout\"/>\n      <xsd:element name=\"specVanish\" type=\"CT_OnOff\"/>\n      <xsd:element name=\"oMath\" type=\"CT_OnOff\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_RPrContent\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_RPrBase\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rPrChange\" type=\"CT_RPrChange\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_RPr\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_RPrContent\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_RPr\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:group name=\"EG_RPrMath\">\n    <xsd:choice>\n      <xsd:group ref=\"EG_RPr\"/>\n      <xsd:element name=\"ins\" type=\"CT_MathCtrlIns\"/>\n      <xsd:element name=\"del\" type=\"CT_MathCtrlDel\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_MathCtrlIns\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:choice minOccurs=\"0\">\n          <xsd:element name=\"del\" type=\"CT_RPrChange\" minOccurs=\"1\"/>\n          <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"1\"/>\n        </xsd:choice>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MathCtrlDel\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrackChange\">\n        <xsd:choice minOccurs=\"0\">\n          <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"1\"/>\n        </xsd:choice>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RPrOriginal\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_RPrBase\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ParaRPrOriginal\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ParaRPrTrackChanges\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_RPrBase\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ParaRPr\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_ParaRPrTrackChanges\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_RPrBase\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"rPrChange\" type=\"CT_ParaRPrChange\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ParaRPrTrackChanges\">\n    <xsd:sequence>\n      <xsd:element name=\"ins\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"del\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"moveFrom\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"moveTo\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_AltChunk\">\n    <xsd:sequence>\n      <xsd:element name=\"altChunkPr\" type=\"CT_AltChunkPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AltChunkPr\">\n    <xsd:sequence>\n      <xsd:element name=\"matchSrc\" type=\"CT_OnOff\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RubyAlign\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"center\"/>\n      <xsd:enumeration value=\"distributeLetter\"/>\n      <xsd:enumeration value=\"distributeSpace\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n      <xsd:enumeration value=\"rightVertical\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_RubyAlign\">\n    <xsd:attribute name=\"val\" type=\"ST_RubyAlign\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RubyPr\">\n    <xsd:sequence>\n      <xsd:element name=\"rubyAlign\" type=\"CT_RubyAlign\"/>\n      <xsd:element name=\"hps\" type=\"CT_HpsMeasure\"/>\n      <xsd:element name=\"hpsRaise\" type=\"CT_HpsMeasure\"/>\n      <xsd:element name=\"hpsBaseText\" type=\"CT_HpsMeasure\"/>\n      <xsd:element name=\"lid\" type=\"CT_Lang\"/>\n      <xsd:element name=\"dirty\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_RubyContent\">\n    <xsd:choice>\n      <xsd:element name=\"r\" type=\"CT_R\"/>\n      <xsd:group ref=\"EG_RunLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_RubyContent\">\n    <xsd:group ref=\"EG_RubyContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Ruby\">\n    <xsd:sequence>\n      <xsd:element name=\"rubyPr\" type=\"CT_RubyPr\"/>\n      <xsd:element name=\"rt\" type=\"CT_RubyContent\"/>\n      <xsd:element name=\"rubyBase\" type=\"CT_RubyContent\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Lock\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"sdtLocked\"/>\n      <xsd:enumeration value=\"contentLocked\"/>\n      <xsd:enumeration value=\"unlocked\"/>\n      <xsd:enumeration value=\"sdtContentLocked\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Lock\">\n    <xsd:attribute name=\"val\" type=\"ST_Lock\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtListItem\">\n    <xsd:attribute name=\"displayText\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"value\" type=\"s:ST_String\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_SdtDateMappingType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"date\"/>\n      <xsd:enumeration value=\"dateTime\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SdtDateMappingType\">\n    <xsd:attribute name=\"val\" type=\"ST_SdtDateMappingType\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CalendarType\">\n    <xsd:attribute name=\"val\" type=\"s:ST_CalendarType\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtDate\">\n    <xsd:sequence>\n      <xsd:element name=\"dateFormat\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"lid\" type=\"CT_Lang\" minOccurs=\"0\"/>\n      <xsd:element name=\"storeMappedDataAs\" type=\"CT_SdtDateMappingType\" minOccurs=\"0\"/>\n      <xsd:element name=\"calendar\" type=\"CT_CalendarType\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"fullDate\" type=\"ST_DateTime\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtComboBox\">\n    <xsd:sequence>\n      <xsd:element name=\"listItem\" type=\"CT_SdtListItem\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"lastValue\" type=\"s:ST_String\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtDocPart\">\n    <xsd:sequence>\n      <xsd:element name=\"docPartGallery\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"docPartCategory\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"docPartUnique\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtDropDownList\">\n    <xsd:sequence>\n      <xsd:element name=\"listItem\" type=\"CT_SdtListItem\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"lastValue\" type=\"s:ST_String\" use=\"optional\" default=\"\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Placeholder\">\n    <xsd:sequence>\n      <xsd:element name=\"docPart\" type=\"CT_String\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtText\">\n    <xsd:attribute name=\"multiLine\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DataBinding\">\n    <xsd:attribute name=\"prefixMappings\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"xpath\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"storeItemID\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtPr\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"alias\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"tag\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"id\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"lock\" type=\"CT_Lock\" minOccurs=\"0\"/>\n      <xsd:element name=\"placeholder\" type=\"CT_Placeholder\" minOccurs=\"0\"/>\n      <xsd:element name=\"temporary\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"showingPlcHdr\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"dataBinding\" type=\"CT_DataBinding\" minOccurs=\"0\"/>\n      <xsd:element name=\"label\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"tabIndex\" type=\"CT_UnsignedDecimalNumber\" minOccurs=\"0\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"1\">\n        <xsd:element name=\"equation\" type=\"CT_Empty\"/>\n        <xsd:element name=\"comboBox\" type=\"CT_SdtComboBox\"/>\n        <xsd:element name=\"date\" type=\"CT_SdtDate\"/>\n        <xsd:element name=\"docPartObj\" type=\"CT_SdtDocPart\"/>\n        <xsd:element name=\"docPartList\" type=\"CT_SdtDocPart\"/>\n        <xsd:element name=\"dropDownList\" type=\"CT_SdtDropDownList\"/>\n        <xsd:element name=\"picture\" type=\"CT_Empty\"/>\n        <xsd:element name=\"richText\" type=\"CT_Empty\"/>\n        <xsd:element name=\"text\" type=\"CT_SdtText\"/>\n        <xsd:element name=\"citation\" type=\"CT_Empty\"/>\n        <xsd:element name=\"group\" type=\"CT_Empty\"/>\n        <xsd:element name=\"bibliography\" type=\"CT_Empty\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtEndPr\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ContentRunContent\">\n    <xsd:choice>\n      <xsd:element name=\"customXml\" type=\"CT_CustomXmlRun\"/>\n      <xsd:element name=\"smartTag\" type=\"CT_SmartTagRun\"/>\n      <xsd:element name=\"sdt\" type=\"CT_SdtRun\"/>\n      <xsd:element name=\"dir\" type=\"CT_DirContentRun\"/>\n      <xsd:element name=\"bdo\" type=\"CT_BdoContentRun\"/>\n      <xsd:element name=\"r\" type=\"CT_R\"/>\n      <xsd:group ref=\"EG_RunLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_DirContentRun\">\n    <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    <xsd:attribute name=\"val\" type=\"ST_Direction\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_BdoContentRun\">\n    <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    <xsd:attribute name=\"val\" type=\"ST_Direction\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Direction\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"ltr\"/>\n      <xsd:enumeration value=\"rtl\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_SdtContentRun\">\n    <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ContentBlockContent\">\n    <xsd:choice>\n      <xsd:element name=\"customXml\" type=\"CT_CustomXmlBlock\"/>\n      <xsd:element name=\"sdt\" type=\"CT_SdtBlock\"/>\n      <xsd:element name=\"p\" type=\"CT_P\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"tbl\" type=\"CT_Tbl\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:group ref=\"EG_RunLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_SdtContentBlock\">\n    <xsd:group ref=\"EG_ContentBlockContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ContentRowContent\">\n    <xsd:choice>\n      <xsd:element name=\"tr\" type=\"CT_Row\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"customXml\" type=\"CT_CustomXmlRow\"/>\n      <xsd:element name=\"sdt\" type=\"CT_SdtRow\"/>\n      <xsd:group ref=\"EG_RunLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_SdtContentRow\">\n    <xsd:group ref=\"EG_ContentRowContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_ContentCellContent\">\n    <xsd:choice>\n      <xsd:element name=\"tc\" type=\"CT_Tc\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"customXml\" type=\"CT_CustomXmlCell\"/>\n      <xsd:element name=\"sdt\" type=\"CT_SdtCell\"/>\n      <xsd:group ref=\"EG_RunLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_SdtContentCell\">\n    <xsd:group ref=\"EG_ContentCellContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtBlock\">\n    <xsd:sequence>\n      <xsd:element name=\"sdtPr\" type=\"CT_SdtPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtEndPr\" type=\"CT_SdtEndPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtContent\" type=\"CT_SdtContentBlock\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtRun\">\n    <xsd:sequence>\n      <xsd:element name=\"sdtPr\" type=\"CT_SdtPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtEndPr\" type=\"CT_SdtEndPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtContent\" type=\"CT_SdtContentRun\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtCell\">\n    <xsd:sequence>\n      <xsd:element name=\"sdtPr\" type=\"CT_SdtPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtEndPr\" type=\"CT_SdtEndPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtContent\" type=\"CT_SdtContentCell\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SdtRow\">\n    <xsd:sequence>\n      <xsd:element name=\"sdtPr\" type=\"CT_SdtPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtEndPr\" type=\"CT_SdtEndPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sdtContent\" type=\"CT_SdtContentRow\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Attr\">\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomXmlRun\">\n    <xsd:sequence>\n      <xsd:element name=\"customXmlPr\" type=\"CT_CustomXmlPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"element\" type=\"s:ST_XmlName\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SmartTagRun\">\n    <xsd:sequence>\n      <xsd:element name=\"smartTagPr\" type=\"CT_SmartTagPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"element\" type=\"s:ST_XmlName\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomXmlBlock\">\n    <xsd:sequence>\n      <xsd:element name=\"customXmlPr\" type=\"CT_CustomXmlPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ContentBlockContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"element\" type=\"s:ST_XmlName\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomXmlPr\">\n    <xsd:sequence>\n      <xsd:element name=\"placeholder\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"attr\" type=\"CT_Attr\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomXmlRow\">\n    <xsd:sequence>\n      <xsd:element name=\"customXmlPr\" type=\"CT_CustomXmlPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ContentRowContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"element\" type=\"s:ST_XmlName\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CustomXmlCell\">\n    <xsd:sequence>\n      <xsd:element name=\"customXmlPr\" type=\"CT_CustomXmlPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ContentCellContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"element\" type=\"s:ST_XmlName\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SmartTagPr\">\n    <xsd:sequence>\n      <xsd:element name=\"attr\" type=\"CT_Attr\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:group name=\"EG_PContent\">\n    <xsd:choice>\n      <xsd:group ref=\"EG_ContentRunContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"fldSimple\" type=\"CT_SimpleField\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"hyperlink\" type=\"CT_Hyperlink\"/>\n      <xsd:element name=\"subDoc\" type=\"CT_Rel\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_P\">\n    <xsd:sequence>\n      <xsd:element name=\"pPr\" type=\"CT_PPr\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_PContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rsidRPr\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidR\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidDel\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidP\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidRDefault\" type=\"ST_LongHexNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TblWidth\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"nil\"/>\n      <xsd:enumeration value=\"pct\"/>\n      <xsd:enumeration value=\"dxa\"/>\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Height\">\n    <xsd:attribute name=\"val\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"hRule\" type=\"ST_HeightRule\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MeasurementOrPercent\">\n    <xsd:union memberTypes=\"ST_DecimalNumberOrPercent s:ST_UniversalMeasure\"/>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TblWidth\">\n    <xsd:attribute name=\"w\" type=\"ST_MeasurementOrPercent\"/>\n    <xsd:attribute name=\"type\" type=\"ST_TblWidth\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblGridCol\">\n    <xsd:attribute name=\"w\" type=\"s:ST_TwipsMeasure\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblGridBase\">\n    <xsd:sequence>\n      <xsd:element name=\"gridCol\" type=\"CT_TblGridCol\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblGrid\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TblGridBase\">\n        <xsd:sequence>\n          <xsd:element name=\"tblGridChange\" type=\"CT_TblGridChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TcBorders\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"start\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"left\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"end\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"right\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"insideH\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"insideV\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"tl2br\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"tr2bl\" type=\"CT_Border\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TcMar\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"start\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"left\" type=\"CT_TblWidth\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"end\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"right\" type=\"CT_TblWidth\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Merge\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"continue\"/>\n      <xsd:enumeration value=\"restart\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_VMerge\">\n    <xsd:attribute name=\"val\" type=\"ST_Merge\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_HMerge\">\n    <xsd:attribute name=\"val\" type=\"ST_Merge\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TcPrBase\">\n    <xsd:sequence>\n      <xsd:element name=\"cnfStyle\" type=\"CT_Cnf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tcW\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gridSpan\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"hMerge\" type=\"CT_HMerge\" minOccurs=\"0\"/>\n      <xsd:element name=\"vMerge\" type=\"CT_VMerge\" minOccurs=\"0\"/>\n      <xsd:element name=\"tcBorders\" type=\"CT_TcBorders\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shd\" type=\"CT_Shd\" minOccurs=\"0\"/>\n      <xsd:element name=\"noWrap\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"tcMar\" type=\"CT_TcMar\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"textDirection\" type=\"CT_TextDirection\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tcFitText\" type=\"CT_OnOff\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"vAlign\" type=\"CT_VerticalJc\" minOccurs=\"0\"/>\n      <xsd:element name=\"hideMark\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"headers\" type=\"CT_Headers\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TcPr\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TcPrInner\">\n        <xsd:sequence>\n          <xsd:element name=\"tcPrChange\" type=\"CT_TcPrChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TcPrInner\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TcPrBase\">\n        <xsd:sequence>\n          <xsd:group ref=\"EG_CellMarkupElements\" minOccurs=\"0\" maxOccurs=\"1\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Tc\">\n    <xsd:sequence>\n      <xsd:element name=\"tcPr\" type=\"CT_TcPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_BlockLevelElts\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"s:ST_String\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Cnf\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:length value=\"12\"/>\n      <xsd:pattern value=\"[01]*\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Cnf\">\n    <xsd:attribute name=\"val\" type=\"ST_Cnf\"/>\n    <xsd:attribute name=\"firstRow\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"lastRow\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"firstColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"lastColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"oddVBand\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"evenVBand\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"oddHBand\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"evenHBand\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"firstRowFirstColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"firstRowLastColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"lastRowFirstColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"lastRowLastColumn\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Headers\">\n    <xsd:sequence minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"header\" type=\"CT_String\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrPrBase\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:element name=\"cnfStyle\" type=\"CT_Cnf\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"divId\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"gridBefore\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"gridAfter\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"wBefore\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"wAfter\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"cantSplit\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"trHeight\" type=\"CT_Height\" minOccurs=\"0\"/>\n      <xsd:element name=\"tblHeader\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"tblCellSpacing\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"jc\" type=\"CT_JcTable\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"hidden\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TrPr\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TrPrBase\">\n        <xsd:sequence>\n          <xsd:element name=\"ins\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n          <xsd:element name=\"del\" type=\"CT_TrackChange\" minOccurs=\"0\"/>\n          <xsd:element name=\"trPrChange\" type=\"CT_TrPrChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Row\">\n    <xsd:sequence>\n      <xsd:element name=\"tblPrEx\" type=\"CT_TblPrEx\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trPr\" type=\"CT_TrPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:group ref=\"EG_ContentCellContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"rsidRPr\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidR\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidDel\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"rsidTr\" type=\"ST_LongHexNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TblLayoutType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"fixed\"/>\n      <xsd:enumeration value=\"autofit\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TblLayoutType\">\n    <xsd:attribute name=\"type\" type=\"ST_TblLayoutType\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TblOverlap\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"never\"/>\n      <xsd:enumeration value=\"overlap\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TblOverlap\">\n    <xsd:attribute name=\"val\" type=\"ST_TblOverlap\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPPr\">\n    <xsd:attribute name=\"leftFromText\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"rightFromText\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"topFromText\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"bottomFromText\" type=\"s:ST_TwipsMeasure\"/>\n    <xsd:attribute name=\"vertAnchor\" type=\"ST_VAnchor\"/>\n    <xsd:attribute name=\"horzAnchor\" type=\"ST_HAnchor\"/>\n    <xsd:attribute name=\"tblpXSpec\" type=\"s:ST_XAlign\"/>\n    <xsd:attribute name=\"tblpX\" type=\"ST_SignedTwipsMeasure\"/>\n    <xsd:attribute name=\"tblpYSpec\" type=\"s:ST_YAlign\"/>\n    <xsd:attribute name=\"tblpY\" type=\"ST_SignedTwipsMeasure\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblCellMar\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"start\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"left\" type=\"CT_TblWidth\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"end\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"right\" type=\"CT_TblWidth\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblBorders\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"start\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"left\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"end\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"right\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"insideH\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"insideV\" type=\"CT_Border\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPrBase\">\n    <xsd:sequence>\n      <xsd:element name=\"tblStyle\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"tblpPr\" type=\"CT_TblPPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblOverlap\" type=\"CT_TblOverlap\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"bidiVisual\" type=\"CT_OnOff\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblStyleRowBandSize\" type=\"CT_DecimalNumber\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblStyleColBandSize\" type=\"CT_DecimalNumber\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblW\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"jc\" type=\"CT_JcTable\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblCellSpacing\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblInd\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblBorders\" type=\"CT_TblBorders\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shd\" type=\"CT_Shd\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblLayout\" type=\"CT_TblLayoutType\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblCellMar\" type=\"CT_TblCellMar\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblLook\" type=\"CT_TblLook\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblCaption\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblDescription\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPr\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TblPrBase\">\n        <xsd:sequence>\n          <xsd:element name=\"tblPrChange\" type=\"CT_TblPrChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPrExBase\">\n    <xsd:sequence>\n      <xsd:element name=\"tblW\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"jc\" type=\"CT_JcTable\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblCellSpacing\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblInd\" type=\"CT_TblWidth\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblBorders\" type=\"CT_TblBorders\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shd\" type=\"CT_Shd\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblLayout\" type=\"CT_TblLayoutType\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblCellMar\" type=\"CT_TblCellMar\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblLook\" type=\"CT_TblLook\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblPrEx\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_TblPrExBase\">\n        <xsd:sequence>\n          <xsd:element name=\"tblPrExChange\" type=\"CT_TblPrExChange\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Tbl\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_RangeMarkupElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"tblPr\" type=\"CT_TblPr\"/>\n      <xsd:element name=\"tblGrid\" type=\"CT_TblGrid\"/>\n      <xsd:group ref=\"EG_ContentRowContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TblLook\">\n    <xsd:attribute name=\"firstRow\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"lastRow\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"firstColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"lastColumn\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"noHBand\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"noVBand\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"val\" type=\"ST_ShortHexNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FtnPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"pageBottom\"/>\n      <xsd:enumeration value=\"beneathText\"/>\n      <xsd:enumeration value=\"sectEnd\"/>\n      <xsd:enumeration value=\"docEnd\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FtnPos\">\n    <xsd:attribute name=\"val\" type=\"ST_FtnPos\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_EdnPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"sectEnd\"/>\n      <xsd:enumeration value=\"docEnd\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_EdnPos\">\n    <xsd:attribute name=\"val\" type=\"ST_EdnPos\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumFmt\">\n    <xsd:attribute name=\"val\" type=\"ST_NumberFormat\" use=\"required\"/>\n    <xsd:attribute name=\"format\" type=\"s:ST_String\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_RestartNumber\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"continuous\"/>\n      <xsd:enumeration value=\"eachSect\"/>\n      <xsd:enumeration value=\"eachPage\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_NumRestart\">\n    <xsd:attribute name=\"val\" type=\"ST_RestartNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FtnEdnRef\">\n    <xsd:attribute name=\"customMarkFollows\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"id\" use=\"required\" type=\"ST_DecimalNumber\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FtnEdnSepRef\">\n    <xsd:attribute name=\"id\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FtnEdn\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_BlockLevelElts\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_FtnEdn\" use=\"optional\"/>\n    <xsd:attribute name=\"id\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:group name=\"EG_FtnEdnNumProps\">\n    <xsd:sequence>\n      <xsd:element name=\"numStart\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"numRestart\" type=\"CT_NumRestart\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:group>\n  <xsd:complexType name=\"CT_FtnProps\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"CT_FtnPos\" minOccurs=\"0\"/>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_FtnEdnNumProps\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EdnProps\">\n    <xsd:sequence>\n      <xsd:element name=\"pos\" type=\"CT_EdnPos\" minOccurs=\"0\"/>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\"/>\n      <xsd:group ref=\"EG_FtnEdnNumProps\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FtnDocProps\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_FtnProps\">\n        <xsd:sequence>\n          <xsd:element name=\"footnote\" type=\"CT_FtnEdnSepRef\" minOccurs=\"0\" maxOccurs=\"3\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_EdnDocProps\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_EdnProps\">\n        <xsd:sequence>\n          <xsd:element name=\"endnote\" type=\"CT_FtnEdnSepRef\" minOccurs=\"0\" maxOccurs=\"3\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RecipientData\">\n    <xsd:sequence>\n      <xsd:element name=\"active\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"column\" type=\"CT_DecimalNumber\" minOccurs=\"1\"/>\n      <xsd:element name=\"uniqueTag\" type=\"CT_Base64Binary\" minOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Base64Binary\">\n    <xsd:attribute name=\"val\" type=\"xsd:base64Binary\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Recipients\">\n    <xsd:sequence>\n      <xsd:element name=\"recipientData\" type=\"CT_RecipientData\" minOccurs=\"1\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"recipients\" type=\"CT_Recipients\"/>\n  <xsd:complexType name=\"CT_OdsoFieldMapData\">\n    <xsd:sequence>\n      <xsd:element name=\"type\" type=\"CT_MailMergeOdsoFMDFieldType\" minOccurs=\"0\"/>\n      <xsd:element name=\"name\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"mappedName\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"column\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"lid\" type=\"CT_Lang\" minOccurs=\"0\"/>\n      <xsd:element name=\"dynamicAddress\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MailMergeSourceType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"database\"/>\n      <xsd:enumeration value=\"addressBook\"/>\n      <xsd:enumeration value=\"document1\"/>\n      <xsd:enumeration value=\"document2\"/>\n      <xsd:enumeration value=\"text\"/>\n      <xsd:enumeration value=\"email\"/>\n      <xsd:enumeration value=\"native\"/>\n      <xsd:enumeration value=\"legacy\"/>\n      <xsd:enumeration value=\"master\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MailMergeSourceType\">\n    <xsd:attribute name=\"val\" use=\"required\" type=\"ST_MailMergeSourceType\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Odso\">\n    <xsd:sequence>\n      <xsd:element name=\"udl\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"table\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"src\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"colDelim\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"type\" type=\"CT_MailMergeSourceType\" minOccurs=\"0\"/>\n      <xsd:element name=\"fHdr\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"fieldMapData\" type=\"CT_OdsoFieldMapData\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"recipientData\" type=\"CT_Rel\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_MailMerge\">\n    <xsd:sequence>\n      <xsd:element name=\"mainDocumentType\" type=\"CT_MailMergeDocType\" minOccurs=\"1\"/>\n      <xsd:element name=\"linkToQuery\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"dataType\" type=\"CT_MailMergeDataType\" minOccurs=\"1\"/>\n      <xsd:element name=\"connectString\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"query\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"dataSource\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"headerSource\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotSuppressBlankLines\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"destination\" type=\"CT_MailMergeDest\" minOccurs=\"0\"/>\n      <xsd:element name=\"addressFieldName\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"mailSubject\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"mailAsAttachment\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"viewMergedData\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"activeRecord\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"checkErrors\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"odso\" type=\"CT_Odso\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TargetScreenSz\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"544x376\"/>\n      <xsd:enumeration value=\"640x480\"/>\n      <xsd:enumeration value=\"720x512\"/>\n      <xsd:enumeration value=\"800x600\"/>\n      <xsd:enumeration value=\"1024x768\"/>\n      <xsd:enumeration value=\"1152x882\"/>\n      <xsd:enumeration value=\"1152x900\"/>\n      <xsd:enumeration value=\"1280x1024\"/>\n      <xsd:enumeration value=\"1600x1200\"/>\n      <xsd:enumeration value=\"1800x1440\"/>\n      <xsd:enumeration value=\"1920x1200\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TargetScreenSz\">\n    <xsd:attribute name=\"val\" type=\"ST_TargetScreenSz\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Compat\">\n    <xsd:sequence>\n      <xsd:element name=\"useSingleBorderforContiguousCells\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"wpJustification\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noTabHangInd\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noLeading\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"spaceForUL\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noColumnBalance\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"balanceSingleByteDoubleByteWidth\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noExtraLineSpacing\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotLeaveBackslashAlone\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ulTrailSpace\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotExpandShiftReturn\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"spacingInWholePoints\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"lineWrapLikeWord6\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"printBodyTextBeforeHeader\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"printColBlack\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"wpSpaceWidth\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"showBreaksInFrames\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"subFontBySize\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressBottomSpacing\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressTopSpacing\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressSpacingAtTopOfPage\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressTopSpacingWP\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suppressSpBfAfterPgBrk\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"swapBordersFacingPages\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"convMailMergeEsc\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"truncateFontHeightsLikeWP6\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"mwSmallCaps\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"usePrinterMetrics\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotSuppressParagraphBorders\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"wrapTrailSpaces\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"footnoteLayoutLikeWW8\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"shapeLayoutLikeWW8\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"alignTablesRowByRow\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"forgetLastTabAlignment\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"adjustLineHeightInTable\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"autoSpaceLikeWord95\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noSpaceRaiseLower\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotUseHTMLParagraphAutoSpacing\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"layoutRawTableWidth\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"layoutTableRowsApart\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useWord97LineBreakRules\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotBreakWrappedTables\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotSnapToGridInCell\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"selectFldWithFirstOrLastChar\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"applyBreakingRules\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotWrapTextWithPunct\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotUseEastAsianBreakRules\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useWord2002TableStyleRules\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"growAutofit\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useFELayout\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useNormalStyleForList\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotUseIndentAsNumberingTabStop\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useAltKinsokuLineBreakRules\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"allowSpaceOfSameStyleInTable\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotSuppressIndentation\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotAutofitConstrainedTables\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"autofitToFirstFixedWidthCell\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"underlineTabInNumList\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"displayHangulFixedWidth\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"splitPgBreakAndParaMark\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotVertAlignCellWithSp\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotBreakConstrainedForcedTable\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotVertAlignInTxbx\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useAnsiKerningPairs\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"cachedColBalance\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"compatSetting\" type=\"CT_CompatSetting\" minOccurs=\"0\" maxOccurs=\"unbounded\"\n      />\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_CompatSetting\">\n    <xsd:attribute name=\"name\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"uri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_String\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocVar\">\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"val\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocVars\">\n    <xsd:sequence>\n      <xsd:element name=\"docVar\" type=\"CT_DocVar\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocRsids\">\n    <xsd:sequence>\n      <xsd:element name=\"rsidRoot\" type=\"CT_LongHexNumber\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rsid\" type=\"CT_LongHexNumber\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_CharacterSpacing\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"doNotCompress\"/>\n      <xsd:enumeration value=\"compressPunctuation\"/>\n      <xsd:enumeration value=\"compressPunctuationAndJapaneseKana\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_CharacterSpacing\">\n    <xsd:attribute name=\"val\" type=\"ST_CharacterSpacing\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_SaveThroughXslt\">\n    <xsd:attribute ref=\"r:id\" use=\"optional\"/>\n    <xsd:attribute name=\"solutionID\" type=\"s:ST_String\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_RPrDefault\">\n    <xsd:sequence>\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_PPrDefault\">\n    <xsd:sequence>\n      <xsd:element name=\"pPr\" type=\"CT_PPrGeneral\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocDefaults\">\n    <xsd:sequence>\n      <xsd:element name=\"rPrDefault\" type=\"CT_RPrDefault\" minOccurs=\"0\"/>\n      <xsd:element name=\"pPrDefault\" type=\"CT_PPrDefault\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_WmlColorSchemeIndex\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"dark1\"/>\n      <xsd:enumeration value=\"light1\"/>\n      <xsd:enumeration value=\"dark2\"/>\n      <xsd:enumeration value=\"light2\"/>\n      <xsd:enumeration value=\"accent1\"/>\n      <xsd:enumeration value=\"accent2\"/>\n      <xsd:enumeration value=\"accent3\"/>\n      <xsd:enumeration value=\"accent4\"/>\n      <xsd:enumeration value=\"accent5\"/>\n      <xsd:enumeration value=\"accent6\"/>\n      <xsd:enumeration value=\"hyperlink\"/>\n      <xsd:enumeration value=\"followedHyperlink\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_ColorSchemeMapping\">\n    <xsd:attribute name=\"bg1\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"t1\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"bg2\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"t2\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"accent1\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"accent2\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"accent3\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"accent4\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"accent5\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"accent6\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"hyperlink\" type=\"ST_WmlColorSchemeIndex\"/>\n    <xsd:attribute name=\"followedHyperlink\" type=\"ST_WmlColorSchemeIndex\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ReadingModeInkLockDown\">\n    <xsd:attribute name=\"actualPg\" type=\"s:ST_OnOff\" use=\"required\"/>\n    <xsd:attribute name=\"w\" type=\"ST_PixelsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"h\" type=\"ST_PixelsMeasure\" use=\"required\"/>\n    <xsd:attribute name=\"fontSz\" type=\"ST_DecimalNumberOrPercent\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_WriteProtection\">\n    <xsd:attribute name=\"recommended\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attributeGroup ref=\"AG_Password\"/>\n    <xsd:attributeGroup ref=\"AG_TransitionalPassword\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Settings\">\n    <xsd:sequence>\n      <xsd:element name=\"writeProtection\" type=\"CT_WriteProtection\" minOccurs=\"0\"/>\n      <xsd:element name=\"view\" type=\"CT_View\" minOccurs=\"0\"/>\n      <xsd:element name=\"zoom\" type=\"CT_Zoom\" minOccurs=\"0\"/>\n      <xsd:element name=\"removePersonalInformation\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"removeDateAndTime\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotDisplayPageBoundaries\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"displayBackgroundShape\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"printPostScriptOverText\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"printFractionalCharacterWidth\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"printFormsData\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"embedTrueTypeFonts\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"embedSystemFonts\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"saveSubsetFonts\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"saveFormsData\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"mirrorMargins\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"alignBordersAndEdges\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bordersDoNotSurroundHeader\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bordersDoNotSurroundFooter\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"gutterAtTop\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hideSpellingErrors\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hideGrammaticalErrors\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"activeWritingStyle\" type=\"CT_WritingStyle\" minOccurs=\"0\"\n        maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"proofState\" type=\"CT_Proof\" minOccurs=\"0\"/>\n      <xsd:element name=\"formsDesign\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"attachedTemplate\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"linkStyles\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"stylePaneFormatFilter\" type=\"CT_StylePaneFilter\" minOccurs=\"0\"/>\n      <xsd:element name=\"stylePaneSortMethod\" type=\"CT_StyleSort\" minOccurs=\"0\"/>\n      <xsd:element name=\"documentType\" type=\"CT_DocType\" minOccurs=\"0\"/>\n      <xsd:element name=\"mailMerge\" type=\"CT_MailMerge\" minOccurs=\"0\"/>\n      <xsd:element name=\"revisionView\" type=\"CT_TrackChangesView\" minOccurs=\"0\"/>\n      <xsd:element name=\"trackRevisions\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotTrackMoves\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotTrackFormatting\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"documentProtection\" type=\"CT_DocProtect\" minOccurs=\"0\"/>\n      <xsd:element name=\"autoFormatOverride\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"styleLockTheme\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"styleLockQFSet\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"defaultTabStop\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"autoHyphenation\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"consecutiveHyphenLimit\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"hyphenationZone\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotHyphenateCaps\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"showEnvelope\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"summaryLength\" type=\"CT_DecimalNumberOrPrecent\" minOccurs=\"0\"/>\n      <xsd:element name=\"clickAndTypeStyle\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"defaultTableStyle\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"evenAndOddHeaders\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bookFoldRevPrinting\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bookFoldPrinting\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bookFoldPrintingSheets\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"drawingGridHorizontalSpacing\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"drawingGridVerticalSpacing\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"displayHorizontalDrawingGridEvery\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"displayVerticalDrawingGridEvery\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotUseMarginsForDrawingGridOrigin\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"drawingGridHorizontalOrigin\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"drawingGridVerticalOrigin\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotShadeFormData\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noPunctuationKerning\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"characterSpacingControl\" type=\"CT_CharacterSpacing\" minOccurs=\"0\"/>\n      <xsd:element name=\"printTwoOnOne\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"strictFirstAndLastChars\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"noLineBreaksAfter\" type=\"CT_Kinsoku\" minOccurs=\"0\"/>\n      <xsd:element name=\"noLineBreaksBefore\" type=\"CT_Kinsoku\" minOccurs=\"0\"/>\n      <xsd:element name=\"savePreviewPicture\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotValidateAgainstSchema\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"saveInvalidXml\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"ignoreMixedContent\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"alwaysShowPlaceholderText\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotDemarcateInvalidXml\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"saveXmlDataOnly\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"useXSLTWhenSaving\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"saveThroughXslt\" type=\"CT_SaveThroughXslt\" minOccurs=\"0\"/>\n      <xsd:element name=\"showXMLTags\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"alwaysMergeEmptyNamespace\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"updateFields\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hdrShapeDefaults\" type=\"CT_ShapeDefaults\" minOccurs=\"0\"/>\n      <xsd:element name=\"footnotePr\" type=\"CT_FtnDocProps\" minOccurs=\"0\"/>\n      <xsd:element name=\"endnotePr\" type=\"CT_EdnDocProps\" minOccurs=\"0\"/>\n      <xsd:element name=\"compat\" type=\"CT_Compat\" minOccurs=\"0\"/>\n      <xsd:element name=\"docVars\" type=\"CT_DocVars\" minOccurs=\"0\"/>\n      <xsd:element name=\"rsids\" type=\"CT_DocRsids\" minOccurs=\"0\"/>\n      <xsd:element ref=\"m:mathPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"attachedSchema\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"themeFontLang\" type=\"CT_Language\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"clrSchemeMapping\" type=\"CT_ColorSchemeMapping\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotIncludeSubdocsInStats\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotAutoCompressPictures\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"forceUpgrade\" type=\"CT_Empty\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"captions\" type=\"CT_Captions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"readModeInkLockDown\" type=\"CT_ReadingModeInkLockDown\" minOccurs=\"0\"/>\n      <xsd:element name=\"smartTagType\" type=\"CT_SmartTagType\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element ref=\"sl:schemaLibrary\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"shapeDefaults\" type=\"CT_ShapeDefaults\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotEmbedSmartTags\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"decimalSymbol\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"listSeparator\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StyleSort\">\n    <xsd:attribute name=\"val\" type=\"ST_StyleSort\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_StylePaneFilter\">\n    <xsd:attribute name=\"allStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"customStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"latentStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"stylesInUse\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"headingStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"numberingStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"tableStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"directFormattingOnRuns\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"directFormattingOnParagraphs\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"directFormattingOnNumbering\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"directFormattingOnTables\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"clearFormatting\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"top3HeadingStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"visibleStyles\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"alternateStyleNames\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"val\" type=\"ST_ShortHexNumber\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_StyleSort\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"name\"/>\n      <xsd:enumeration value=\"priority\"/>\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"font\"/>\n      <xsd:enumeration value=\"basedOn\"/>\n      <xsd:enumeration value=\"type\"/>\n      <xsd:enumeration value=\"0000\"/>\n      <xsd:enumeration value=\"0001\"/>\n      <xsd:enumeration value=\"0002\"/>\n      <xsd:enumeration value=\"0003\"/>\n      <xsd:enumeration value=\"0004\"/>\n      <xsd:enumeration value=\"0005\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_WebSettings\">\n    <xsd:sequence>\n      <xsd:element name=\"frameset\" type=\"CT_Frameset\" minOccurs=\"0\"/>\n      <xsd:element name=\"divs\" type=\"CT_Divs\" minOccurs=\"0\"/>\n      <xsd:element name=\"encoding\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"optimizeForBrowser\" type=\"CT_OptimizeForBrowser\" minOccurs=\"0\"/>\n      <xsd:element name=\"relyOnVML\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"allowPNG\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotRelyOnCSS\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotSaveAsSingleFile\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotOrganizeInFolder\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"doNotUseLongFileNames\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"pixelsPerInch\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"targetScreenSz\" type=\"CT_TargetScreenSz\" minOccurs=\"0\"/>\n      <xsd:element name=\"saveSmartTagsAsXml\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FrameScrollbar\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"on\"/>\n      <xsd:enumeration value=\"off\"/>\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FrameScrollbar\">\n    <xsd:attribute name=\"val\" type=\"ST_FrameScrollbar\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_OptimizeForBrowser\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_OnOff\">\n        <xsd:attribute name=\"target\" type=\"s:ST_String\" use=\"optional\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Frame\">\n    <xsd:sequence>\n      <xsd:element name=\"sz\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"name\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"title\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"longDesc\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"sourceFileName\" type=\"CT_Rel\" minOccurs=\"0\"/>\n      <xsd:element name=\"marW\" type=\"CT_PixelsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"marH\" type=\"CT_PixelsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"scrollbar\" type=\"CT_FrameScrollbar\" minOccurs=\"0\"/>\n      <xsd:element name=\"noResizeAllowed\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"linkedToFile\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FrameLayout\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"rows\"/>\n      <xsd:enumeration value=\"cols\"/>\n      <xsd:enumeration value=\"none\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FrameLayout\">\n    <xsd:attribute name=\"val\" type=\"ST_FrameLayout\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FramesetSplitbar\">\n    <xsd:sequence>\n      <xsd:element name=\"w\" type=\"CT_TwipsMeasure\" minOccurs=\"0\"/>\n      <xsd:element name=\"color\" type=\"CT_Color\" minOccurs=\"0\"/>\n      <xsd:element name=\"noBorder\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"flatBorders\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Frameset\">\n    <xsd:sequence>\n      <xsd:element name=\"sz\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"framesetSplitbar\" type=\"CT_FramesetSplitbar\" minOccurs=\"0\"/>\n      <xsd:element name=\"frameLayout\" type=\"CT_FrameLayout\" minOccurs=\"0\"/>\n      <xsd:element name=\"title\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n        <xsd:element name=\"frameset\" type=\"CT_Frameset\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n        <xsd:element name=\"frame\" type=\"CT_Frame\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      </xsd:choice>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumPicBullet\">\n    <xsd:choice>\n      <xsd:element name=\"pict\" type=\"CT_Picture\"/>\n      <xsd:element name=\"drawing\" type=\"CT_Drawing\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"numPicBulletId\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_LevelSuffix\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"tab\"/>\n      <xsd:enumeration value=\"space\"/>\n      <xsd:enumeration value=\"nothing\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_LevelSuffix\">\n    <xsd:attribute name=\"val\" type=\"ST_LevelSuffix\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LevelText\">\n    <xsd:attribute name=\"val\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"null\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LvlLegacy\">\n    <xsd:attribute name=\"legacy\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"legacySpace\" type=\"s:ST_TwipsMeasure\" use=\"optional\"/>\n    <xsd:attribute name=\"legacyIndent\" type=\"ST_SignedTwipsMeasure\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Lvl\">\n    <xsd:sequence>\n      <xsd:element name=\"start\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"numFmt\" type=\"CT_NumFmt\" minOccurs=\"0\"/>\n      <xsd:element name=\"lvlRestart\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"pStyle\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"isLgl\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"suff\" type=\"CT_LevelSuffix\" minOccurs=\"0\"/>\n      <xsd:element name=\"lvlText\" type=\"CT_LevelText\" minOccurs=\"0\"/>\n      <xsd:element name=\"lvlPicBulletId\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"legacy\" type=\"CT_LvlLegacy\" minOccurs=\"0\"/>\n      <xsd:element name=\"lvlJc\" type=\"CT_Jc\" minOccurs=\"0\"/>\n      <xsd:element name=\"pPr\" type=\"CT_PPrGeneral\" minOccurs=\"0\"/>\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ilvl\" type=\"ST_DecimalNumber\" use=\"required\"/>\n    <xsd:attribute name=\"tplc\" type=\"ST_LongHexNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"tentative\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_MultiLevelType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"singleLevel\"/>\n      <xsd:enumeration value=\"multilevel\"/>\n      <xsd:enumeration value=\"hybridMultilevel\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_MultiLevelType\">\n    <xsd:attribute name=\"val\" type=\"ST_MultiLevelType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AbstractNum\">\n    <xsd:sequence>\n      <xsd:element name=\"nsid\" type=\"CT_LongHexNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"multiLevelType\" type=\"CT_MultiLevelType\" minOccurs=\"0\"/>\n      <xsd:element name=\"tmpl\" type=\"CT_LongHexNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"name\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"styleLink\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"numStyleLink\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"lvl\" type=\"CT_Lvl\" minOccurs=\"0\" maxOccurs=\"9\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"abstractNumId\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_NumLvl\">\n    <xsd:sequence>\n      <xsd:element name=\"startOverride\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"lvl\" type=\"CT_Lvl\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"ilvl\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Num\">\n    <xsd:sequence>\n      <xsd:element name=\"abstractNumId\" type=\"CT_DecimalNumber\" minOccurs=\"1\"/>\n      <xsd:element name=\"lvlOverride\" type=\"CT_NumLvl\" minOccurs=\"0\" maxOccurs=\"9\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"numId\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Numbering\">\n    <xsd:sequence>\n      <xsd:element name=\"numPicBullet\" type=\"CT_NumPicBullet\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"abstractNum\" type=\"CT_AbstractNum\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"num\" type=\"CT_Num\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"numIdMacAtCleanup\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_TblStyleOverrideType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"wholeTable\"/>\n      <xsd:enumeration value=\"firstRow\"/>\n      <xsd:enumeration value=\"lastRow\"/>\n      <xsd:enumeration value=\"firstCol\"/>\n      <xsd:enumeration value=\"lastCol\"/>\n      <xsd:enumeration value=\"band1Vert\"/>\n      <xsd:enumeration value=\"band2Vert\"/>\n      <xsd:enumeration value=\"band1Horz\"/>\n      <xsd:enumeration value=\"band2Horz\"/>\n      <xsd:enumeration value=\"neCell\"/>\n      <xsd:enumeration value=\"nwCell\"/>\n      <xsd:enumeration value=\"seCell\"/>\n      <xsd:enumeration value=\"swCell\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_TblStylePr\">\n    <xsd:sequence>\n      <xsd:element name=\"pPr\" type=\"CT_PPrGeneral\" minOccurs=\"0\"/>\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"tblPr\" type=\"CT_TblPrBase\" minOccurs=\"0\"/>\n      <xsd:element name=\"trPr\" type=\"CT_TrPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tcPr\" type=\"CT_TcPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_TblStyleOverrideType\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_StyleType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"paragraph\"/>\n      <xsd:enumeration value=\"character\"/>\n      <xsd:enumeration value=\"table\"/>\n      <xsd:enumeration value=\"numbering\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Style\">\n    <xsd:sequence>\n      <xsd:element name=\"name\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"aliases\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"basedOn\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"next\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"link\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"autoRedefine\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"hidden\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"uiPriority\" type=\"CT_DecimalNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"semiHidden\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"unhideWhenUsed\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"qFormat\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"locked\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"personal\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"personalCompose\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"personalReply\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"rsid\" type=\"CT_LongHexNumber\" minOccurs=\"0\"/>\n      <xsd:element name=\"pPr\" type=\"CT_PPrGeneral\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"rPr\" type=\"CT_RPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblPr\" type=\"CT_TblPrBase\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"trPr\" type=\"CT_TrPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tcPr\" type=\"CT_TcPr\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"tblStylePr\" type=\"CT_TblStylePr\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"type\" type=\"ST_StyleType\" use=\"optional\"/>\n    <xsd:attribute name=\"styleId\" type=\"s:ST_String\" use=\"optional\"/>\n    <xsd:attribute name=\"default\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"customStyle\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LsdException\">\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"locked\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"uiPriority\" type=\"ST_DecimalNumber\"/>\n    <xsd:attribute name=\"semiHidden\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"unhideWhenUsed\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"qFormat\" type=\"s:ST_OnOff\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_LatentStyles\">\n    <xsd:sequence>\n      <xsd:element name=\"lsdException\" type=\"CT_LsdException\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"defLockedState\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"defUIPriority\" type=\"ST_DecimalNumber\"/>\n    <xsd:attribute name=\"defSemiHidden\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"defUnhideWhenUsed\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"defQFormat\" type=\"s:ST_OnOff\"/>\n    <xsd:attribute name=\"count\" type=\"ST_DecimalNumber\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Styles\">\n    <xsd:sequence>\n      <xsd:element name=\"docDefaults\" type=\"CT_DocDefaults\" minOccurs=\"0\"/>\n      <xsd:element name=\"latentStyles\" type=\"CT_LatentStyles\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_Style\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Panose\">\n    <xsd:attribute name=\"val\" type=\"s:ST_Panose\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_FontFamily\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"decorative\"/>\n      <xsd:enumeration value=\"modern\"/>\n      <xsd:enumeration value=\"roman\"/>\n      <xsd:enumeration value=\"script\"/>\n      <xsd:enumeration value=\"swiss\"/>\n      <xsd:enumeration value=\"auto\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_FontFamily\">\n    <xsd:attribute name=\"val\" type=\"ST_FontFamily\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_Pitch\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"fixed\"/>\n      <xsd:enumeration value=\"variable\"/>\n      <xsd:enumeration value=\"default\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Pitch\">\n    <xsd:attribute name=\"val\" type=\"ST_Pitch\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontSig\">\n    <xsd:attribute name=\"usb0\" use=\"required\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"usb1\" use=\"required\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"usb2\" use=\"required\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"usb3\" use=\"required\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"csb0\" use=\"required\" type=\"ST_LongHexNumber\"/>\n    <xsd:attribute name=\"csb1\" use=\"required\" type=\"ST_LongHexNumber\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontRel\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_Rel\">\n        <xsd:attribute name=\"fontKey\" type=\"s:ST_Guid\"/>\n        <xsd:attribute name=\"subsetted\" type=\"s:ST_OnOff\"/>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Font\">\n    <xsd:sequence>\n      <xsd:element name=\"altName\" type=\"CT_String\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"panose1\" type=\"CT_Panose\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"charset\" type=\"CT_Charset\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"family\" type=\"CT_FontFamily\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"notTrueType\" type=\"CT_OnOff\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"pitch\" type=\"CT_Pitch\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"sig\" type=\"CT_FontSig\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"embedRegular\" type=\"CT_FontRel\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"embedBold\" type=\"CT_FontRel\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"embedItalic\" type=\"CT_FontRel\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xsd:element name=\"embedBoldItalic\" type=\"CT_FontRel\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_FontsList\">\n    <xsd:sequence>\n      <xsd:element name=\"font\" type=\"CT_Font\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DivBdr\">\n    <xsd:sequence>\n      <xsd:element name=\"top\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"left\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"bottom\" type=\"CT_Border\" minOccurs=\"0\"/>\n      <xsd:element name=\"right\" type=\"CT_Border\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Div\">\n    <xsd:sequence>\n      <xsd:element name=\"blockQuote\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"bodyDiv\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n      <xsd:element name=\"marLeft\" type=\"CT_SignedTwipsMeasure\"/>\n      <xsd:element name=\"marRight\" type=\"CT_SignedTwipsMeasure\"/>\n      <xsd:element name=\"marTop\" type=\"CT_SignedTwipsMeasure\"/>\n      <xsd:element name=\"marBottom\" type=\"CT_SignedTwipsMeasure\"/>\n      <xsd:element name=\"divBdr\" type=\"CT_DivBdr\" minOccurs=\"0\"/>\n      <xsd:element name=\"divsChild\" type=\"CT_Divs\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n    <xsd:attribute name=\"id\" type=\"ST_DecimalNumber\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Divs\">\n    <xsd:sequence minOccurs=\"1\" maxOccurs=\"unbounded\">\n      <xsd:element name=\"div\" type=\"CT_Div\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_TxbxContent\">\n    <xsd:group ref=\"EG_BlockLevelElts\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n  </xsd:complexType>\n  <xsd:element name=\"txbxContent\" type=\"CT_TxbxContent\"/>\n  <xsd:group name=\"EG_MathContent\">\n    <xsd:choice>\n      <xsd:element ref=\"m:oMathPara\"/>\n      <xsd:element ref=\"m:oMath\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_BlockLevelChunkElts\">\n    <xsd:choice>\n      <xsd:group ref=\"EG_ContentBlockContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_BlockLevelElts\">\n    <xsd:choice>\n      <xsd:group ref=\"EG_BlockLevelChunkElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"altChunk\" type=\"CT_AltChunk\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:group name=\"EG_RunLevelElts\">\n    <xsd:choice>\n      <xsd:element name=\"proofErr\" minOccurs=\"0\" type=\"CT_ProofErr\"/>\n      <xsd:element name=\"permStart\" minOccurs=\"0\" type=\"CT_PermStart\"/>\n      <xsd:element name=\"permEnd\" minOccurs=\"0\" type=\"CT_Perm\"/>\n      <xsd:group ref=\"EG_RangeMarkupElements\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"ins\" type=\"CT_RunTrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"del\" type=\"CT_RunTrackChange\" minOccurs=\"0\"/>\n      <xsd:element name=\"moveFrom\" type=\"CT_RunTrackChange\"/>\n      <xsd:element name=\"moveTo\" type=\"CT_RunTrackChange\"/>\n      <xsd:group ref=\"EG_MathContent\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:group>\n  <xsd:complexType name=\"CT_Body\">\n    <xsd:sequence>\n      <xsd:group ref=\"EG_BlockLevelElts\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"sectPr\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_SectPr\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_ShapeDefaults\">\n    <xsd:choice maxOccurs=\"unbounded\">\n      <xsd:any processContents=\"lax\" namespace=\"urn:schemas-microsoft-com:office:office\"\n        minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Comments\">\n    <xsd:sequence>\n      <xsd:element name=\"comment\" type=\"CT_Comment\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"comments\" type=\"CT_Comments\"/>\n  <xsd:complexType name=\"CT_Footnotes\">\n    <xsd:sequence maxOccurs=\"unbounded\">\n      <xsd:element name=\"footnote\" type=\"CT_FtnEdn\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"footnotes\" type=\"CT_Footnotes\"/>\n  <xsd:complexType name=\"CT_Endnotes\">\n    <xsd:sequence maxOccurs=\"unbounded\">\n      <xsd:element name=\"endnote\" type=\"CT_FtnEdn\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:element name=\"endnotes\" type=\"CT_Endnotes\"/>\n  <xsd:element name=\"hdr\" type=\"CT_HdrFtr\"/>\n  <xsd:element name=\"ftr\" type=\"CT_HdrFtr\"/>\n  <xsd:complexType name=\"CT_SmartTagType\">\n    <xsd:attribute name=\"namespaceuri\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"name\" type=\"s:ST_String\"/>\n    <xsd:attribute name=\"url\" type=\"s:ST_String\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_ThemeColor\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"dark1\"/>\n      <xsd:enumeration value=\"light1\"/>\n      <xsd:enumeration value=\"dark2\"/>\n      <xsd:enumeration value=\"light2\"/>\n      <xsd:enumeration value=\"accent1\"/>\n      <xsd:enumeration value=\"accent2\"/>\n      <xsd:enumeration value=\"accent3\"/>\n      <xsd:enumeration value=\"accent4\"/>\n      <xsd:enumeration value=\"accent5\"/>\n      <xsd:enumeration value=\"accent6\"/>\n      <xsd:enumeration value=\"hyperlink\"/>\n      <xsd:enumeration value=\"followedHyperlink\"/>\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"background1\"/>\n      <xsd:enumeration value=\"text1\"/>\n      <xsd:enumeration value=\"background2\"/>\n      <xsd:enumeration value=\"text2\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:simpleType name=\"ST_DocPartBehavior\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"content\"/>\n      <xsd:enumeration value=\"p\"/>\n      <xsd:enumeration value=\"pg\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DocPartBehavior\">\n    <xsd:attribute name=\"val\" use=\"required\" type=\"ST_DocPartBehavior\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocPartBehaviors\">\n    <xsd:choice>\n      <xsd:element name=\"behavior\" type=\"CT_DocPartBehavior\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DocPartType\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"none\"/>\n      <xsd:enumeration value=\"normal\"/>\n      <xsd:enumeration value=\"autoExp\"/>\n      <xsd:enumeration value=\"toolbar\"/>\n      <xsd:enumeration value=\"speller\"/>\n      <xsd:enumeration value=\"formFld\"/>\n      <xsd:enumeration value=\"bbPlcHdr\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DocPartType\">\n    <xsd:attribute name=\"val\" use=\"required\" type=\"ST_DocPartType\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocPartTypes\">\n    <xsd:choice>\n      <xsd:element name=\"type\" type=\"CT_DocPartType\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n    <xsd:attribute name=\"all\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:simpleType name=\"ST_DocPartGallery\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"placeholder\"/>\n      <xsd:enumeration value=\"any\"/>\n      <xsd:enumeration value=\"default\"/>\n      <xsd:enumeration value=\"docParts\"/>\n      <xsd:enumeration value=\"coverPg\"/>\n      <xsd:enumeration value=\"eq\"/>\n      <xsd:enumeration value=\"ftrs\"/>\n      <xsd:enumeration value=\"hdrs\"/>\n      <xsd:enumeration value=\"pgNum\"/>\n      <xsd:enumeration value=\"tbls\"/>\n      <xsd:enumeration value=\"watermarks\"/>\n      <xsd:enumeration value=\"autoTxt\"/>\n      <xsd:enumeration value=\"txtBox\"/>\n      <xsd:enumeration value=\"pgNumT\"/>\n      <xsd:enumeration value=\"pgNumB\"/>\n      <xsd:enumeration value=\"pgNumMargins\"/>\n      <xsd:enumeration value=\"tblOfContents\"/>\n      <xsd:enumeration value=\"bib\"/>\n      <xsd:enumeration value=\"custQuickParts\"/>\n      <xsd:enumeration value=\"custCoverPg\"/>\n      <xsd:enumeration value=\"custEq\"/>\n      <xsd:enumeration value=\"custFtrs\"/>\n      <xsd:enumeration value=\"custHdrs\"/>\n      <xsd:enumeration value=\"custPgNum\"/>\n      <xsd:enumeration value=\"custTbls\"/>\n      <xsd:enumeration value=\"custWatermarks\"/>\n      <xsd:enumeration value=\"custAutoTxt\"/>\n      <xsd:enumeration value=\"custTxtBox\"/>\n      <xsd:enumeration value=\"custPgNumT\"/>\n      <xsd:enumeration value=\"custPgNumB\"/>\n      <xsd:enumeration value=\"custPgNumMargins\"/>\n      <xsd:enumeration value=\"custTblOfContents\"/>\n      <xsd:enumeration value=\"custBib\"/>\n      <xsd:enumeration value=\"custom1\"/>\n      <xsd:enumeration value=\"custom2\"/>\n      <xsd:enumeration value=\"custom3\"/>\n      <xsd:enumeration value=\"custom4\"/>\n      <xsd:enumeration value=\"custom5\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_DocPartGallery\">\n    <xsd:attribute name=\"val\" type=\"ST_DocPartGallery\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocPartCategory\">\n    <xsd:sequence>\n      <xsd:element name=\"name\" type=\"CT_String\" minOccurs=\"1\" maxOccurs=\"1\"/>\n      <xsd:element name=\"gallery\" type=\"CT_DocPartGallery\" minOccurs=\"1\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocPartName\">\n    <xsd:attribute name=\"val\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"decorated\" type=\"s:ST_OnOff\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocPartPr\">\n    <xsd:all>\n      <xsd:element name=\"name\" type=\"CT_DocPartName\" minOccurs=\"1\"/>\n      <xsd:element name=\"style\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"category\" type=\"CT_DocPartCategory\" minOccurs=\"0\"/>\n      <xsd:element name=\"types\" type=\"CT_DocPartTypes\" minOccurs=\"0\"/>\n      <xsd:element name=\"behaviors\" type=\"CT_DocPartBehaviors\" minOccurs=\"0\"/>\n      <xsd:element name=\"description\" type=\"CT_String\" minOccurs=\"0\"/>\n      <xsd:element name=\"guid\" type=\"CT_Guid\" minOccurs=\"0\"/>\n    </xsd:all>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocPart\">\n    <xsd:sequence>\n      <xsd:element name=\"docPartPr\" type=\"CT_DocPartPr\" minOccurs=\"0\"/>\n      <xsd:element name=\"docPartBody\" type=\"CT_Body\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocParts\">\n    <xsd:choice>\n      <xsd:element name=\"docPart\" type=\"CT_DocPart\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:choice>\n  </xsd:complexType>\n  <xsd:element name=\"settings\" type=\"CT_Settings\"/>\n  <xsd:element name=\"webSettings\" type=\"CT_WebSettings\"/>\n  <xsd:element name=\"fonts\" type=\"CT_FontsList\"/>\n  <xsd:element name=\"numbering\" type=\"CT_Numbering\"/>\n  <xsd:element name=\"styles\" type=\"CT_Styles\"/>\n  <xsd:simpleType name=\"ST_CaptionPos\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"above\"/>\n      <xsd:enumeration value=\"below\"/>\n      <xsd:enumeration value=\"left\"/>\n      <xsd:enumeration value=\"right\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n  <xsd:complexType name=\"CT_Caption\">\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"pos\" type=\"ST_CaptionPos\" use=\"optional\"/>\n    <xsd:attribute name=\"chapNum\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"heading\" type=\"ST_DecimalNumber\" use=\"optional\"/>\n    <xsd:attribute name=\"noLabel\" type=\"s:ST_OnOff\" use=\"optional\"/>\n    <xsd:attribute name=\"numFmt\" type=\"ST_NumberFormat\" use=\"optional\"/>\n    <xsd:attribute name=\"sep\" type=\"ST_ChapterSep\" use=\"optional\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AutoCaption\">\n    <xsd:attribute name=\"name\" type=\"s:ST_String\" use=\"required\"/>\n    <xsd:attribute name=\"caption\" type=\"s:ST_String\" use=\"required\"/>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_AutoCaptions\">\n    <xsd:sequence>\n      <xsd:element name=\"autoCaption\" type=\"CT_AutoCaption\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Captions\">\n    <xsd:sequence>\n      <xsd:element name=\"caption\" type=\"CT_Caption\" minOccurs=\"1\" maxOccurs=\"unbounded\"/>\n      <xsd:element name=\"autoCaptions\" type=\"CT_AutoCaptions\" minOccurs=\"0\" maxOccurs=\"1\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_DocumentBase\">\n    <xsd:sequence>\n      <xsd:element name=\"background\" type=\"CT_Background\" minOccurs=\"0\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_Document\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_DocumentBase\">\n        <xsd:sequence>\n          <xsd:element name=\"body\" type=\"CT_Body\" minOccurs=\"0\" maxOccurs=\"1\"/>\n        </xsd:sequence>\n        <xsd:attribute name=\"conformance\" type=\"s:ST_ConformanceClass\"/>\n        <xsd:attribute ref=\"mc:Ignorable\" use=\"optional\" />\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:complexType name=\"CT_GlossaryDocument\">\n    <xsd:complexContent>\n      <xsd:extension base=\"CT_DocumentBase\">\n        <xsd:sequence>\n          <xsd:element name=\"docParts\" type=\"CT_DocParts\" minOccurs=\"0\"/>\n        </xsd:sequence>\n      </xsd:extension>\n    </xsd:complexContent>\n  </xsd:complexType>\n  <xsd:element name=\"document\" type=\"CT_Document\"/>\n  <xsd:element name=\"glossaryDocument\" type=\"CT_GlossaryDocument\"/>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd",
    "content": "<?xml version='1.0'?>\n<xs:schema targetNamespace=\"http://www.w3.org/XML/1998/namespace\" xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" xml:lang=\"en\">\n\n <xs:annotation>\n  <xs:documentation>\n   See http://www.w3.org/XML/1998/namespace.html and\n   http://www.w3.org/TR/REC-xml for information about this namespace.\n\n    This schema document describes the XML namespace, in a form\n    suitable for import by other schema documents.  \n\n    Note that local names in this namespace are intended to be defined\n    only by the World Wide Web Consortium or its subgroups.  The\n    following names are currently defined in this namespace and should\n    not be used with conflicting semantics by any Working Group,\n    specification, or document instance:\n\n    base (as an attribute name): denotes an attribute whose value\n         provides a URI to be used as the base for interpreting any\n         relative URIs in the scope of the element on which it\n         appears; its value is inherited.  This name is reserved\n         by virtue of its definition in the XML Base specification.\n\n    lang (as an attribute name): denotes an attribute whose value\n         is a language code for the natural language of the content of\n         any element; its value is inherited.  This name is reserved\n         by virtue of its definition in the XML specification.\n  \n    space (as an attribute name): denotes an attribute whose\n         value is a keyword indicating what whitespace processing\n         discipline is intended for the content of the element; its\n         value is inherited.  This name is reserved by virtue of its\n         definition in the XML specification.\n\n    Father (in any context at all): denotes Jon Bosak, the chair of \n         the original XML Working Group.  This name is reserved by \n         the following decision of the W3C XML Plenary and \n         XML Coordination groups:\n\n             In appreciation for his vision, leadership and dedication\n             the W3C XML Plenary on this 10th day of February, 2000\n             reserves for Jon Bosak in perpetuity the XML name\n             xml:Father\n  </xs:documentation>\n </xs:annotation>\n\n <xs:annotation>\n  <xs:documentation>This schema defines attributes and an attribute group\n        suitable for use by\n        schemas wishing to allow xml:base, xml:lang or xml:space attributes\n        on elements they define.\n\n        To enable this, such a schema must import this schema\n        for the XML namespace, e.g. as follows:\n        &lt;schema . . .>\n         . . .\n         &lt;import namespace=\"http://www.w3.org/XML/1998/namespace\"\n                    schemaLocation=\"http://www.w3.org/2001/03/xml.xsd\"/>\n\n        Subsequently, qualified reference to any of the attributes\n        or the group defined below will have the desired effect, e.g.\n\n        &lt;type . . .>\n         . . .\n         &lt;attributeGroup ref=\"xml:specialAttrs\"/>\n \n         will define a type which will schema-validate an instance\n         element with any of those attributes</xs:documentation>\n </xs:annotation>\n\n <xs:annotation>\n  <xs:documentation>In keeping with the XML Schema WG's standard versioning\n   policy, this schema document will persist at\n   http://www.w3.org/2001/03/xml.xsd.\n   At the date of issue it can also be found at\n   http://www.w3.org/2001/xml.xsd.\n   The schema document at that URI may however change in the future,\n   in order to remain compatible with the latest version of XML Schema\n   itself.  In other words, if the XML Schema namespace changes, the version\n   of this document at\n   http://www.w3.org/2001/xml.xsd will change\n   accordingly; the version at\n   http://www.w3.org/2001/03/xml.xsd will not change.\n  </xs:documentation>\n </xs:annotation>\n\n <xs:attribute name=\"lang\" type=\"xs:language\">\n  <xs:annotation>\n   <xs:documentation>In due course, we should install the relevant ISO 2- and 3-letter\n         codes as the enumerated possible values . . .</xs:documentation>\n  </xs:annotation>\n </xs:attribute>\n\n <xs:attribute name=\"space\" default=\"preserve\">\n  <xs:simpleType>\n   <xs:restriction base=\"xs:NCName\">\n    <xs:enumeration value=\"default\"/>\n    <xs:enumeration value=\"preserve\"/>\n   </xs:restriction>\n  </xs:simpleType>\n </xs:attribute>\n\n <xs:attribute name=\"base\" type=\"xs:anyURI\">\n  <xs:annotation>\n   <xs:documentation>See http://www.w3.org/TR/xmlbase/ for\n                     information about this attribute.</xs:documentation>\n  </xs:annotation>\n </xs:attribute>\n\n <xs:attributeGroup name=\"specialAttrs\">\n  <xs:attribute ref=\"xml:base\"/>\n  <xs:attribute ref=\"xml:lang\"/>\n  <xs:attribute ref=\"xml:space\"/>\n </xs:attributeGroup>\n\n</xs:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd",
    "content": "﻿<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<xs:schema xmlns=\"http://schemas.openxmlformats.org/package/2006/content-types\"\n  xmlns:xs=\"http://www.w3.org/2001/XMLSchema\"\n  targetNamespace=\"http://schemas.openxmlformats.org/package/2006/content-types\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"unqualified\" blockDefault=\"#all\">\n\n  <xs:element name=\"Types\" type=\"CT_Types\"/>\n  <xs:element name=\"Default\" type=\"CT_Default\"/>\n  <xs:element name=\"Override\" type=\"CT_Override\"/>\n\n  <xs:complexType name=\"CT_Types\">\n    <xs:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\n      <xs:element ref=\"Default\"/>\n      <xs:element ref=\"Override\"/>\n    </xs:choice>\n  </xs:complexType>\n\n  <xs:complexType name=\"CT_Default\">\n    <xs:attribute name=\"Extension\" type=\"ST_Extension\" use=\"required\"/>\n    <xs:attribute name=\"ContentType\" type=\"ST_ContentType\" use=\"required\"/>\n  </xs:complexType>\n\n  <xs:complexType name=\"CT_Override\">\n    <xs:attribute name=\"ContentType\" type=\"ST_ContentType\" use=\"required\"/>\n    <xs:attribute name=\"PartName\" type=\"xs:anyURI\" use=\"required\"/>\n  </xs:complexType>\n\n  <xs:simpleType name=\"ST_ContentType\">\n    <xs:restriction base=\"xs:string\">\n      <xs:pattern\n        value=\"(((([\\p{IsBasicLatin}-[\\p{Cc}&#127;\\(\\)&lt;&gt;@,;:\\\\&quot;/\\[\\]\\?=\\{\\}\\s\\t]])+))/((([\\p{IsBasicLatin}-[\\p{Cc}&#127;\\(\\)&lt;&gt;@,;:\\\\&quot;/\\[\\]\\?=\\{\\}\\s\\t]])+))((\\s+)*;(\\s+)*(((([\\p{IsBasicLatin}-[\\p{Cc}&#127;\\(\\)&lt;&gt;@,;:\\\\&quot;/\\[\\]\\?=\\{\\}\\s\\t]])+))=((([\\p{IsBasicLatin}-[\\p{Cc}&#127;\\(\\)&lt;&gt;@,;:\\\\&quot;/\\[\\]\\?=\\{\\}\\s\\t]])+)|(&quot;(([\\p{IsLatin-1Supplement}\\p{IsBasicLatin}-[\\p{Cc}&#127;&quot;\\n\\r]]|(\\s+))|(\\\\[\\p{IsBasicLatin}]))*&quot;))))*)\"\n      />\n    </xs:restriction>\n  </xs:simpleType>\n\n  <xs:simpleType name=\"ST_Extension\">\n    <xs:restriction base=\"xs:string\">\n      <xs:pattern\n        value=\"([!$&amp;'\\(\\)\\*\\+,:=]|(%[0-9a-fA-F][0-9a-fA-F])|[:@]|[a-zA-Z0-9\\-_~])+\"/>\n    </xs:restriction>\n  </xs:simpleType>\n</xs:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd",
    "content": "﻿<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xs:schema targetNamespace=\"http://schemas.openxmlformats.org/package/2006/metadata/core-properties\"\n  xmlns=\"http://schemas.openxmlformats.org/package/2006/metadata/core-properties\"\n  xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n  xmlns:dcterms=\"http://purl.org/dc/terms/\" elementFormDefault=\"qualified\" blockDefault=\"#all\">\n\n  <xs:import namespace=\"http://purl.org/dc/elements/1.1/\"\n    schemaLocation=\"http://dublincore.org/schemas/xmls/qdc/2003/04/02/dc.xsd\"/>\n  <xs:import namespace=\"http://purl.org/dc/terms/\"\n    schemaLocation=\"http://dublincore.org/schemas/xmls/qdc/2003/04/02/dcterms.xsd\"/>\n  <xs:import id=\"xml\" namespace=\"http://www.w3.org/XML/1998/namespace\"/>\n\n  <xs:element name=\"coreProperties\" type=\"CT_CoreProperties\"/>\n\n  <xs:complexType name=\"CT_CoreProperties\">\n    <xs:all>\n      <xs:element name=\"category\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xs:string\"/>\n      <xs:element name=\"contentStatus\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xs:string\"/>\n      <xs:element ref=\"dcterms:created\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element ref=\"dc:creator\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element ref=\"dc:description\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element ref=\"dc:identifier\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element name=\"keywords\" minOccurs=\"0\" maxOccurs=\"1\" type=\"CT_Keywords\"/>\n      <xs:element ref=\"dc:language\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element name=\"lastModifiedBy\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xs:string\"/>\n      <xs:element name=\"lastPrinted\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xs:dateTime\"/>\n      <xs:element ref=\"dcterms:modified\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element name=\"revision\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xs:string\"/>\n      <xs:element ref=\"dc:subject\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element ref=\"dc:title\" minOccurs=\"0\" maxOccurs=\"1\"/>\n      <xs:element name=\"version\" minOccurs=\"0\" maxOccurs=\"1\" type=\"xs:string\"/>\n    </xs:all>\n  </xs:complexType>\n\n  <xs:complexType name=\"CT_Keywords\" mixed=\"true\">\n    <xs:sequence>\n      <xs:element name=\"value\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_Keyword\"/>\n    </xs:sequence>\n    <xs:attribute ref=\"xml:lang\" use=\"optional\"/>\n  </xs:complexType>\n\n  <xs:complexType name=\"CT_Keyword\">\n    <xs:simpleContent>\n      <xs:extension base=\"xs:string\">\n        <xs:attribute ref=\"xml:lang\" use=\"optional\"/>\n      </xs:extension>\n    </xs:simpleContent>\n  </xs:complexType>\n\n</xs:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<xsd:schema xmlns=\"http://schemas.openxmlformats.org/package/2006/digital-signature\"\n  xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  targetNamespace=\"http://schemas.openxmlformats.org/package/2006/digital-signature\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"unqualified\" blockDefault=\"#all\">\n\n  <xsd:element name=\"SignatureTime\" type=\"CT_SignatureTime\"/>\n  <xsd:element name=\"RelationshipReference\" type=\"CT_RelationshipReference\"/>\n  <xsd:element name=\"RelationshipsGroupReference\" type=\"CT_RelationshipsGroupReference\"/>\n\n  <xsd:complexType name=\"CT_SignatureTime\">\n    <xsd:sequence>\n      <xsd:element name=\"Format\" type=\"ST_Format\"/>\n      <xsd:element name=\"Value\" type=\"ST_Value\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n\n  <xsd:complexType name=\"CT_RelationshipReference\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"xsd:string\">\n        <xsd:attribute name=\"SourceId\" type=\"xsd:string\" use=\"required\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n\n  <xsd:complexType name=\"CT_RelationshipsGroupReference\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"xsd:string\">\n        <xsd:attribute name=\"SourceType\" type=\"xsd:anyURI\" use=\"required\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n\n  <xsd:simpleType name=\"ST_Format\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern\n        value=\"(YYYY)|(YYYY-MM)|(YYYY-MM-DD)|(YYYY-MM-DDThh:mmTZD)|(YYYY-MM-DDThh:mm:ssTZD)|(YYYY-MM-DDThh:mm:ss.sTZD)\"\n      />\n    </xsd:restriction>\n  </xsd:simpleType>\n\n  <xsd:simpleType name=\"ST_Value\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:pattern\n        value=\"(([0-9][0-9][0-9][0-9]))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2))))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1))))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))(((\\+|-)((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))(((\\+|-)((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])):(((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))\\.[0-9])(((\\+|-)((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))\"\n      />\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd",
    "content": "﻿<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<xsd:schema xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\"\n  xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n  targetNamespace=\"http://schemas.openxmlformats.org/package/2006/relationships\"\n  elementFormDefault=\"qualified\" attributeFormDefault=\"unqualified\" blockDefault=\"#all\">\n\n  <xsd:element name=\"Relationships\" type=\"CT_Relationships\"/>\n  <xsd:element name=\"Relationship\" type=\"CT_Relationship\"/>\n\n  <xsd:complexType name=\"CT_Relationships\">\n    <xsd:sequence>\n      <xsd:element ref=\"Relationship\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n    </xsd:sequence>\n  </xsd:complexType>\n\n  <xsd:complexType name=\"CT_Relationship\">\n    <xsd:simpleContent>\n      <xsd:extension base=\"xsd:string\">\n        <xsd:attribute name=\"TargetMode\" type=\"ST_TargetMode\" use=\"optional\"/>\n        <xsd:attribute name=\"Target\" type=\"xsd:anyURI\" use=\"required\"/>\n        <xsd:attribute name=\"Type\" type=\"xsd:anyURI\" use=\"required\"/>\n        <xsd:attribute name=\"Id\" type=\"xsd:ID\" use=\"required\"/>\n      </xsd:extension>\n    </xsd:simpleContent>\n  </xsd:complexType>\n\n  <xsd:simpleType name=\"ST_TargetMode\">\n    <xsd:restriction base=\"xsd:string\">\n      <xsd:enumeration value=\"External\"/>\n      <xsd:enumeration value=\"Internal\"/>\n    </xsd:restriction>\n  </xsd:simpleType>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/mce/mc.xsd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<xsd:schema xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\"\n\tattributeFormDefault=\"unqualified\" elementFormDefault=\"qualified\"\n\ttargetNamespace=\"http://schemas.openxmlformats.org/markup-compatibility/2006\"\n\txmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">\n\n  <!--\n    This XSD is a modified version of the one found at:\n    https://github.com/plutext/docx4j/blob/master/xsd/mce/markup-compatibility-2006-MINIMAL.xsd\n\n    This XSD has 2 objectives:\n\n        1. round tripping @mc:Ignorable\n\n\t\t\t<w:document\n\t\t\t            xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\"\n\t\t\t            xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n\t\t\t            mc:Ignorable=\"w14 w15 wp14\">\n\n        2. enabling AlternateContent to be manipulated in certain elements\n           (in the unusual case where the content model is xsd:any, it doesn't have to be explicitly added)\n\n\t\tSee further ECMA-376, 4th Edition, Office Open XML File Formats\n\t\tPart 3 : Markup Compatibility and Extensibility\n   -->\n\n  <!--  Objective 1 -->\n  <xsd:attribute name=\"Ignorable\" type=\"xsd:string\" />\n\n  <!--  Objective 2 -->\n\t<xsd:attribute name=\"MustUnderstand\" type=\"xsd:string\"  />\n\t<xsd:attribute name=\"ProcessContent\" type=\"xsd:string\"  />\n\n<!-- An AlternateContent element shall contain one or more Choice child elements, optionally followed by a\nFallback child element. If present, there shall be only one Fallback element, and it shall follow all Choice\nelements. -->\n\t<xsd:element name=\"AlternateContent\">\n\t\t<xsd:complexType>\n\t\t\t<xsd:sequence>\n\t\t\t\t<xsd:element name=\"Choice\" minOccurs=\"0\" maxOccurs=\"unbounded\">\n\t\t\t\t\t<xsd:complexType>\n\t\t\t\t\t\t<xsd:sequence>\n\t\t\t\t\t\t\t<xsd:any minOccurs=\"0\" maxOccurs=\"unbounded\"\n\t\t\t\t\t\t\t\tprocessContents=\"strict\">\n\t\t\t\t\t\t\t</xsd:any>\n\t\t\t\t\t\t</xsd:sequence>\n\t\t\t\t\t\t<xsd:attribute name=\"Requires\" type=\"xsd:string\" use=\"required\" />\n\t\t\t\t\t\t<xsd:attribute ref=\"mc:Ignorable\" use=\"optional\" />\n\t\t\t\t\t\t<xsd:attribute ref=\"mc:MustUnderstand\" use=\"optional\" />\n\t\t\t\t\t\t<xsd:attribute ref=\"mc:ProcessContent\" use=\"optional\" />\n\t\t\t\t\t</xsd:complexType>\n\t\t\t\t</xsd:element>\n\t\t\t\t<xsd:element name=\"Fallback\" minOccurs=\"0\" maxOccurs=\"1\">\n\t\t\t\t\t<xsd:complexType>\n\t\t\t\t\t\t<xsd:sequence>\n\t\t\t\t\t\t\t<xsd:any minOccurs=\"0\" maxOccurs=\"unbounded\"\n\t\t\t\t\t\t\t\tprocessContents=\"strict\">\n\t\t\t\t\t\t\t</xsd:any>\n\t\t\t\t\t\t</xsd:sequence>\n\t\t\t\t\t\t<xsd:attribute ref=\"mc:Ignorable\" use=\"optional\" />\n\t\t\t\t\t\t<xsd:attribute ref=\"mc:MustUnderstand\" use=\"optional\" />\n\t\t\t\t\t\t<xsd:attribute ref=\"mc:ProcessContent\" use=\"optional\" />\n\t\t\t\t\t</xsd:complexType>\n\t\t\t\t</xsd:element>\n\t\t\t</xsd:sequence>\n\t\t\t<!-- AlternateContent elements might include the attributes Ignorable,\n\t\t\t\tMustUnderstand and ProcessContent described in this Part of ECMA-376. These\n\t\t\t\tattributes’ qualified names shall be prefixed when associated with an AlternateContent\n\t\t\t\telement. -->\n\t\t\t<xsd:attribute ref=\"mc:Ignorable\" use=\"optional\" />\n\t\t\t<xsd:attribute ref=\"mc:MustUnderstand\" use=\"optional\" />\n\t\t\t<xsd:attribute ref=\"mc:ProcessContent\" use=\"optional\" />\n\t\t</xsd:complexType>\n\t</xsd:element>\n</xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/microsoft/wml-2010.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w12=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\" xmlns:a=\"http://schemas.openxmlformats.org/drawingml/2006/main\" xmlns=\"http://schemas.microsoft.com/office/word/2010/wordml\" targetNamespace=\"http://schemas.microsoft.com/office/word/2010/wordml\">\n   <!-- <xsd:import id=\"rel\" namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\" schemaLocation=\"orel.xsd\"/> -->\n   <xsd:import id=\"w\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <!-- <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\" schemaLocation=\"oartbasetypes.xsd\"/>\n   <xsd:import namespace=\"http://schemas.openxmlformats.org/drawingml/2006/main\" schemaLocation=\"oartsplineproperties.xsd\"/> -->\n   <xsd:complexType name=\"CT_LongHexNumber\">\n     <xsd:attribute name=\"val\" type=\"w:ST_LongHexNumber\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_OnOff\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"true\"/>\n       <xsd:enumeration value=\"false\"/>\n       <xsd:enumeration value=\"0\"/>\n       <xsd:enumeration value=\"1\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_OnOff\">\n     <xsd:attribute name=\"val\" type=\"ST_OnOff\"/>\n   </xsd:complexType>\n   <xsd:element name=\"docId\" type=\"CT_LongHexNumber\"/>\n   <xsd:element name=\"conflictMode\" type=\"CT_OnOff\"/>\n   <xsd:attributeGroup name=\"AG_Parids\">\n     <xsd:attribute name=\"paraId\" type=\"w:ST_LongHexNumber\"/>\n     <xsd:attribute name=\"textId\" type=\"w:ST_LongHexNumber\"/>\n   </xsd:attributeGroup>\n   <xsd:attribute name=\"anchorId\" type=\"w:ST_LongHexNumber\"/>\n   <xsd:attribute name=\"noSpellErr\" type=\"ST_OnOff\"/>\n   <xsd:element name=\"customXmlConflictInsRangeStart\" type=\"w:CT_TrackChange\"/>\n   <xsd:element name=\"customXmlConflictInsRangeEnd\" type=\"w:CT_Markup\"/>\n   <xsd:element name=\"customXmlConflictDelRangeStart\" type=\"w:CT_TrackChange\"/>\n   <xsd:element name=\"customXmlConflictDelRangeEnd\" type=\"w:CT_Markup\"/>\n   <xsd:group name=\"EG_RunLevelConflicts\">\n     <xsd:sequence>\n       <xsd:element name=\"conflictIns\" type=\"w:CT_RunTrackChange\" minOccurs=\"0\"/>\n       <xsd:element name=\"conflictDel\" type=\"w:CT_RunTrackChange\" minOccurs=\"0\"/>\n     </xsd:sequence>\n   </xsd:group>\n   <xsd:group name=\"EG_Conflicts\">\n     <xsd:choice>\n       <xsd:element name=\"conflictIns\" type=\"w:CT_TrackChange\" minOccurs=\"0\"/>\n       <xsd:element name=\"conflictDel\" type=\"w:CT_TrackChange\" minOccurs=\"0\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:complexType name=\"CT_Percentage\">\n     <xsd:attribute name=\"val\" type=\"a:ST_Percentage\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_PositiveFixedPercentage\">\n     <xsd:attribute name=\"val\" type=\"a:ST_PositiveFixedPercentage\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_PositivePercentage\">\n     <xsd:attribute name=\"val\" type=\"a:ST_PositivePercentage\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_SchemeColorVal\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"bg1\"/>\n       <xsd:enumeration value=\"tx1\"/>\n       <xsd:enumeration value=\"bg2\"/>\n       <xsd:enumeration value=\"tx2\"/>\n       <xsd:enumeration value=\"accent1\"/>\n       <xsd:enumeration value=\"accent2\"/>\n       <xsd:enumeration value=\"accent3\"/>\n       <xsd:enumeration value=\"accent4\"/>\n       <xsd:enumeration value=\"accent5\"/>\n       <xsd:enumeration value=\"accent6\"/>\n       <xsd:enumeration value=\"hlink\"/>\n       <xsd:enumeration value=\"folHlink\"/>\n       <xsd:enumeration value=\"dk1\"/>\n       <xsd:enumeration value=\"lt1\"/>\n       <xsd:enumeration value=\"dk2\"/>\n       <xsd:enumeration value=\"lt2\"/>\n       <xsd:enumeration value=\"phClr\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_RectAlignment\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"none\"/>\n       <xsd:enumeration value=\"tl\"/>\n       <xsd:enumeration value=\"t\"/>\n       <xsd:enumeration value=\"tr\"/>\n       <xsd:enumeration value=\"l\"/>\n       <xsd:enumeration value=\"ctr\"/>\n       <xsd:enumeration value=\"r\"/>\n       <xsd:enumeration value=\"bl\"/>\n       <xsd:enumeration value=\"b\"/>\n       <xsd:enumeration value=\"br\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_PathShadeType\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"shape\"/>\n       <xsd:enumeration value=\"circle\"/>\n       <xsd:enumeration value=\"rect\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_LineCap\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"rnd\"/>\n       <xsd:enumeration value=\"sq\"/>\n       <xsd:enumeration value=\"flat\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_PresetLineDashVal\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"solid\"/>\n       <xsd:enumeration value=\"dot\"/>\n       <xsd:enumeration value=\"sysDot\"/>\n       <xsd:enumeration value=\"dash\"/>\n       <xsd:enumeration value=\"sysDash\"/>\n       <xsd:enumeration value=\"lgDash\"/>\n       <xsd:enumeration value=\"dashDot\"/>\n       <xsd:enumeration value=\"sysDashDot\"/>\n       <xsd:enumeration value=\"lgDashDot\"/>\n       <xsd:enumeration value=\"lgDashDotDot\"/>\n       <xsd:enumeration value=\"sysDashDotDot\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_PenAlignment\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"ctr\"/>\n       <xsd:enumeration value=\"in\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_CompoundLine\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"sng\"/>\n       <xsd:enumeration value=\"dbl\"/>\n       <xsd:enumeration value=\"thickThin\"/>\n       <xsd:enumeration value=\"thinThick\"/>\n       <xsd:enumeration value=\"tri\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_RelativeRect\">\n     <xsd:attribute name=\"l\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"t\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"r\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"b\" use=\"optional\" type=\"a:ST_Percentage\"/>\n   </xsd:complexType>\n   <xsd:group name=\"EG_ColorTransform\">\n     <xsd:choice>\n       <xsd:element name=\"tint\" type=\"CT_PositiveFixedPercentage\"/>\n       <xsd:element name=\"shade\" type=\"CT_PositiveFixedPercentage\"/>\n       <xsd:element name=\"alpha\" type=\"CT_PositiveFixedPercentage\"/>\n       <xsd:element name=\"hueMod\" type=\"CT_PositivePercentage\"/>\n       <xsd:element name=\"sat\" type=\"CT_Percentage\"/>\n       <xsd:element name=\"satOff\" type=\"CT_Percentage\"/>\n       <xsd:element name=\"satMod\" type=\"CT_Percentage\"/>\n       <xsd:element name=\"lum\" type=\"CT_Percentage\"/>\n       <xsd:element name=\"lumOff\" type=\"CT_Percentage\"/>\n       <xsd:element name=\"lumMod\" type=\"CT_Percentage\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:complexType name=\"CT_SRgbColor\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"val\" type=\"s:ST_HexColorRGB\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_SchemeColor\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorTransform\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"val\" type=\"ST_SchemeColorVal\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:group name=\"EG_ColorChoice\">\n     <xsd:choice>\n       <xsd:element name=\"srgbClr\" type=\"CT_SRgbColor\"/>\n       <xsd:element name=\"schemeClr\" type=\"CT_SchemeColor\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:complexType name=\"CT_Color\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorChoice\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_GradientStop\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorChoice\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"pos\" type=\"a:ST_PositiveFixedPercentage\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_GradientStopList\">\n     <xsd:sequence>\n       <xsd:element name=\"gs\" type=\"CT_GradientStop\" minOccurs=\"2\" maxOccurs=\"10\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_LinearShadeProperties\">\n     <xsd:attribute name=\"ang\" type=\"a:ST_PositiveFixedAngle\" use=\"optional\"/>\n     <xsd:attribute name=\"scaled\" type=\"ST_OnOff\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_PathShadeProperties\">\n     <xsd:sequence>\n       <xsd:element name=\"fillToRect\" type=\"CT_RelativeRect\" minOccurs=\"0\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"path\" type=\"ST_PathShadeType\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:group name=\"EG_ShadeProperties\">\n     <xsd:choice>\n       <xsd:element name=\"lin\" type=\"CT_LinearShadeProperties\"/>\n       <xsd:element name=\"path\" type=\"CT_PathShadeProperties\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:complexType name=\"CT_SolidColorFillProperties\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorChoice\" minOccurs=\"0\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_GradientFillProperties\">\n     <xsd:sequence>\n       <xsd:element name=\"gsLst\" type=\"CT_GradientStopList\" minOccurs=\"0\"/>\n       <xsd:group ref=\"EG_ShadeProperties\" minOccurs=\"0\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:group name=\"EG_FillProperties\">\n     <xsd:choice>\n       <xsd:element name=\"noFill\" type=\"w:CT_Empty\"/>\n       <xsd:element name=\"solidFill\" type=\"CT_SolidColorFillProperties\"/>\n       <xsd:element name=\"gradFill\" type=\"CT_GradientFillProperties\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:complexType name=\"CT_PresetLineDashProperties\">\n     <xsd:attribute name=\"val\" type=\"ST_PresetLineDashVal\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:group name=\"EG_LineDashProperties\">\n     <xsd:choice>\n       <xsd:element name=\"prstDash\" type=\"CT_PresetLineDashProperties\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:complexType name=\"CT_LineJoinMiterProperties\">\n     <xsd:attribute name=\"lim\" type=\"a:ST_PositivePercentage\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:group name=\"EG_LineJoinProperties\">\n     <xsd:choice>\n       <xsd:element name=\"round\" type=\"w:CT_Empty\"/>\n       <xsd:element name=\"bevel\" type=\"w:CT_Empty\"/>\n       <xsd:element name=\"miter\" type=\"CT_LineJoinMiterProperties\"/>\n     </xsd:choice>\n   </xsd:group>\n   <xsd:simpleType name=\"ST_PresetCameraType\">\n     <xsd:restriction base=\"xsd:token\">\n       <xsd:enumeration value=\"legacyObliqueTopLeft\"/>\n       <xsd:enumeration value=\"legacyObliqueTop\"/>\n       <xsd:enumeration value=\"legacyObliqueTopRight\"/>\n       <xsd:enumeration value=\"legacyObliqueLeft\"/>\n       <xsd:enumeration value=\"legacyObliqueFront\"/>\n       <xsd:enumeration value=\"legacyObliqueRight\"/>\n       <xsd:enumeration value=\"legacyObliqueBottomLeft\"/>\n       <xsd:enumeration value=\"legacyObliqueBottom\"/>\n       <xsd:enumeration value=\"legacyObliqueBottomRight\"/>\n       <xsd:enumeration value=\"legacyPerspectiveTopLeft\"/>\n       <xsd:enumeration value=\"legacyPerspectiveTop\"/>\n       <xsd:enumeration value=\"legacyPerspectiveTopRight\"/>\n       <xsd:enumeration value=\"legacyPerspectiveLeft\"/>\n       <xsd:enumeration value=\"legacyPerspectiveFront\"/>\n       <xsd:enumeration value=\"legacyPerspectiveRight\"/>\n       <xsd:enumeration value=\"legacyPerspectiveBottomLeft\"/>\n       <xsd:enumeration value=\"legacyPerspectiveBottom\"/>\n       <xsd:enumeration value=\"legacyPerspectiveBottomRight\"/>\n       <xsd:enumeration value=\"orthographicFront\"/>\n       <xsd:enumeration value=\"isometricTopUp\"/>\n       <xsd:enumeration value=\"isometricTopDown\"/>\n       <xsd:enumeration value=\"isometricBottomUp\"/>\n       <xsd:enumeration value=\"isometricBottomDown\"/>\n       <xsd:enumeration value=\"isometricLeftUp\"/>\n       <xsd:enumeration value=\"isometricLeftDown\"/>\n       <xsd:enumeration value=\"isometricRightUp\"/>\n       <xsd:enumeration value=\"isometricRightDown\"/>\n       <xsd:enumeration value=\"isometricOffAxis1Left\"/>\n       <xsd:enumeration value=\"isometricOffAxis1Right\"/>\n       <xsd:enumeration value=\"isometricOffAxis1Top\"/>\n       <xsd:enumeration value=\"isometricOffAxis2Left\"/>\n       <xsd:enumeration value=\"isometricOffAxis2Right\"/>\n       <xsd:enumeration value=\"isometricOffAxis2Top\"/>\n       <xsd:enumeration value=\"isometricOffAxis3Left\"/>\n       <xsd:enumeration value=\"isometricOffAxis3Right\"/>\n       <xsd:enumeration value=\"isometricOffAxis3Bottom\"/>\n       <xsd:enumeration value=\"isometricOffAxis4Left\"/>\n       <xsd:enumeration value=\"isometricOffAxis4Right\"/>\n       <xsd:enumeration value=\"isometricOffAxis4Bottom\"/>\n       <xsd:enumeration value=\"obliqueTopLeft\"/>\n       <xsd:enumeration value=\"obliqueTop\"/>\n       <xsd:enumeration value=\"obliqueTopRight\"/>\n       <xsd:enumeration value=\"obliqueLeft\"/>\n       <xsd:enumeration value=\"obliqueRight\"/>\n       <xsd:enumeration value=\"obliqueBottomLeft\"/>\n       <xsd:enumeration value=\"obliqueBottom\"/>\n       <xsd:enumeration value=\"obliqueBottomRight\"/>\n       <xsd:enumeration value=\"perspectiveFront\"/>\n       <xsd:enumeration value=\"perspectiveLeft\"/>\n       <xsd:enumeration value=\"perspectiveRight\"/>\n       <xsd:enumeration value=\"perspectiveAbove\"/>\n       <xsd:enumeration value=\"perspectiveBelow\"/>\n       <xsd:enumeration value=\"perspectiveAboveLeftFacing\"/>\n       <xsd:enumeration value=\"perspectiveAboveRightFacing\"/>\n       <xsd:enumeration value=\"perspectiveContrastingLeftFacing\"/>\n       <xsd:enumeration value=\"perspectiveContrastingRightFacing\"/>\n       <xsd:enumeration value=\"perspectiveHeroicLeftFacing\"/>\n       <xsd:enumeration value=\"perspectiveHeroicRightFacing\"/>\n       <xsd:enumeration value=\"perspectiveHeroicExtremeLeftFacing\"/>\n       <xsd:enumeration value=\"perspectiveHeroicExtremeRightFacing\"/>\n       <xsd:enumeration value=\"perspectiveRelaxed\"/>\n       <xsd:enumeration value=\"perspectiveRelaxedModerately\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_Camera\">\n     <xsd:attribute name=\"prst\" use=\"required\" type=\"ST_PresetCameraType\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_SphereCoords\">\n     <xsd:attribute name=\"lat\" type=\"a:ST_PositiveFixedAngle\" use=\"required\"/>\n     <xsd:attribute name=\"lon\" type=\"a:ST_PositiveFixedAngle\" use=\"required\"/>\n     <xsd:attribute name=\"rev\" type=\"a:ST_PositiveFixedAngle\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_LightRigType\">\n     <xsd:restriction base=\"xsd:token\">\n       <xsd:enumeration value=\"legacyFlat1\"/>\n       <xsd:enumeration value=\"legacyFlat2\"/>\n       <xsd:enumeration value=\"legacyFlat3\"/>\n       <xsd:enumeration value=\"legacyFlat4\"/>\n       <xsd:enumeration value=\"legacyNormal1\"/>\n       <xsd:enumeration value=\"legacyNormal2\"/>\n       <xsd:enumeration value=\"legacyNormal3\"/>\n       <xsd:enumeration value=\"legacyNormal4\"/>\n       <xsd:enumeration value=\"legacyHarsh1\"/>\n       <xsd:enumeration value=\"legacyHarsh2\"/>\n       <xsd:enumeration value=\"legacyHarsh3\"/>\n       <xsd:enumeration value=\"legacyHarsh4\"/>\n       <xsd:enumeration value=\"threePt\"/>\n       <xsd:enumeration value=\"balanced\"/>\n       <xsd:enumeration value=\"soft\"/>\n       <xsd:enumeration value=\"harsh\"/>\n       <xsd:enumeration value=\"flood\"/>\n       <xsd:enumeration value=\"contrasting\"/>\n       <xsd:enumeration value=\"morning\"/>\n       <xsd:enumeration value=\"sunrise\"/>\n       <xsd:enumeration value=\"sunset\"/>\n       <xsd:enumeration value=\"chilly\"/>\n       <xsd:enumeration value=\"freezing\"/>\n       <xsd:enumeration value=\"flat\"/>\n       <xsd:enumeration value=\"twoPt\"/>\n       <xsd:enumeration value=\"glow\"/>\n       <xsd:enumeration value=\"brightRoom\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:simpleType name=\"ST_LightRigDirection\">\n     <xsd:restriction base=\"xsd:token\">\n       <xsd:enumeration value=\"tl\"/>\n       <xsd:enumeration value=\"t\"/>\n       <xsd:enumeration value=\"tr\"/>\n       <xsd:enumeration value=\"l\"/>\n       <xsd:enumeration value=\"r\"/>\n       <xsd:enumeration value=\"bl\"/>\n       <xsd:enumeration value=\"b\"/>\n       <xsd:enumeration value=\"br\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_LightRig\">\n     <xsd:sequence>\n       <xsd:element name=\"rot\" type=\"CT_SphereCoords\" minOccurs=\"0\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"rig\" type=\"ST_LightRigType\" use=\"required\"/>\n     <xsd:attribute name=\"dir\" type=\"ST_LightRigDirection\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_BevelPresetType\">\n     <xsd:restriction base=\"xsd:token\">\n       <xsd:enumeration value=\"relaxedInset\"/>\n       <xsd:enumeration value=\"circle\"/>\n       <xsd:enumeration value=\"slope\"/>\n       <xsd:enumeration value=\"cross\"/>\n       <xsd:enumeration value=\"angle\"/>\n       <xsd:enumeration value=\"softRound\"/>\n       <xsd:enumeration value=\"convex\"/>\n       <xsd:enumeration value=\"coolSlant\"/>\n       <xsd:enumeration value=\"divot\"/>\n       <xsd:enumeration value=\"riblet\"/>\n       <xsd:enumeration value=\"hardEdge\"/>\n       <xsd:enumeration value=\"artDeco\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_Bevel\">\n     <xsd:attribute name=\"w\" type=\"a:ST_PositiveCoordinate\" use=\"optional\"/>\n     <xsd:attribute name=\"h\" type=\"a:ST_PositiveCoordinate\" use=\"optional\"/>\n     <xsd:attribute name=\"prst\" type=\"ST_BevelPresetType\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_PresetMaterialType\">\n     <xsd:restriction base=\"xsd:token\">\n       <xsd:enumeration value=\"legacyMatte\"/>\n       <xsd:enumeration value=\"legacyPlastic\"/>\n       <xsd:enumeration value=\"legacyMetal\"/>\n       <xsd:enumeration value=\"legacyWireframe\"/>\n       <xsd:enumeration value=\"matte\"/>\n       <xsd:enumeration value=\"plastic\"/>\n       <xsd:enumeration value=\"metal\"/>\n       <xsd:enumeration value=\"warmMatte\"/>\n       <xsd:enumeration value=\"translucentPowder\"/>\n       <xsd:enumeration value=\"powder\"/>\n       <xsd:enumeration value=\"dkEdge\"/>\n       <xsd:enumeration value=\"softEdge\"/>\n       <xsd:enumeration value=\"clear\"/>\n       <xsd:enumeration value=\"flat\"/>\n       <xsd:enumeration value=\"softmetal\"/>\n       <xsd:enumeration value=\"none\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_Glow\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorChoice\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"rad\" use=\"optional\" type=\"a:ST_PositiveCoordinate\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_Shadow\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_ColorChoice\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"blurRad\" use=\"optional\" type=\"a:ST_PositiveCoordinate\"/>\n     <xsd:attribute name=\"dist\" use=\"optional\" type=\"a:ST_PositiveCoordinate\"/>\n     <xsd:attribute name=\"dir\" use=\"optional\" type=\"a:ST_PositiveFixedAngle\"/>\n     <xsd:attribute name=\"sx\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"sy\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"kx\" use=\"optional\" type=\"a:ST_FixedAngle\"/>\n     <xsd:attribute name=\"ky\" use=\"optional\" type=\"a:ST_FixedAngle\"/>\n     <xsd:attribute name=\"algn\" use=\"optional\" type=\"ST_RectAlignment\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_Reflection\">\n     <xsd:attribute name=\"blurRad\" use=\"optional\" type=\"a:ST_PositiveCoordinate\"/>\n     <xsd:attribute name=\"stA\" use=\"optional\" type=\"a:ST_PositiveFixedPercentage\"/>\n     <xsd:attribute name=\"stPos\" use=\"optional\" type=\"a:ST_PositiveFixedPercentage\"/>\n     <xsd:attribute name=\"endA\" use=\"optional\" type=\"a:ST_PositiveFixedPercentage\"/>\n     <xsd:attribute name=\"endPos\" use=\"optional\" type=\"a:ST_PositiveFixedPercentage\"/>\n     <xsd:attribute name=\"dist\" use=\"optional\" type=\"a:ST_PositiveCoordinate\"/>\n     <xsd:attribute name=\"dir\" use=\"optional\" type=\"a:ST_PositiveFixedAngle\"/>\n     <xsd:attribute name=\"fadeDir\" use=\"optional\" type=\"a:ST_PositiveFixedAngle\"/>\n     <xsd:attribute name=\"sx\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"sy\" use=\"optional\" type=\"a:ST_Percentage\"/>\n     <xsd:attribute name=\"kx\" use=\"optional\" type=\"a:ST_FixedAngle\"/>\n     <xsd:attribute name=\"ky\" use=\"optional\" type=\"a:ST_FixedAngle\"/>\n     <xsd:attribute name=\"algn\" use=\"optional\" type=\"ST_RectAlignment\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_FillTextEffect\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_TextOutlineEffect\">\n     <xsd:sequence>\n       <xsd:group ref=\"EG_FillProperties\" minOccurs=\"0\"/>\n       <xsd:group ref=\"EG_LineDashProperties\" minOccurs=\"0\"/>\n       <xsd:group ref=\"EG_LineJoinProperties\" minOccurs=\"0\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"w\" use=\"optional\" type=\"a:ST_LineWidth\"/>\n     <xsd:attribute name=\"cap\" use=\"optional\" type=\"ST_LineCap\"/>\n     <xsd:attribute name=\"cmpd\" use=\"optional\" type=\"ST_CompoundLine\"/>\n     <xsd:attribute name=\"algn\" use=\"optional\" type=\"ST_PenAlignment\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_Scene3D\">\n     <xsd:sequence>\n       <xsd:element name=\"camera\" type=\"CT_Camera\"/>\n       <xsd:element name=\"lightRig\" type=\"CT_LightRig\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_Props3D\">\n     <xsd:sequence>\n       <xsd:element name=\"bevelT\" type=\"CT_Bevel\" minOccurs=\"0\"/>\n       <xsd:element name=\"bevelB\" type=\"CT_Bevel\" minOccurs=\"0\"/>\n       <xsd:element name=\"extrusionClr\" type=\"CT_Color\" minOccurs=\"0\"/>\n       <xsd:element name=\"contourClr\" type=\"CT_Color\" minOccurs=\"0\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"extrusionH\" type=\"a:ST_PositiveCoordinate\" use=\"optional\"/>\n     <xsd:attribute name=\"contourW\" type=\"a:ST_PositiveCoordinate\" use=\"optional\"/>\n     <xsd:attribute name=\"prstMaterial\" type=\"ST_PresetMaterialType\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:group name=\"EG_RPrTextEffects\">\n     <xsd:sequence>\n       <xsd:element name=\"glow\" minOccurs=\"0\" type=\"CT_Glow\"/>\n       <xsd:element name=\"shadow\" minOccurs=\"0\" type=\"CT_Shadow\"/>\n       <xsd:element name=\"reflection\" minOccurs=\"0\" type=\"CT_Reflection\"/>\n       <xsd:element name=\"textOutline\" minOccurs=\"0\" type=\"CT_TextOutlineEffect\"/>\n       <xsd:element name=\"textFill\" minOccurs=\"0\" type=\"CT_FillTextEffect\"/>\n       <xsd:element name=\"scene3d\" minOccurs=\"0\" type=\"CT_Scene3D\"/>\n       <xsd:element name=\"props3d\" minOccurs=\"0\" type=\"CT_Props3D\"/>\n     </xsd:sequence>\n   </xsd:group>\n   <xsd:simpleType name=\"ST_Ligatures\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"none\"/>\n       <xsd:enumeration value=\"standard\"/>\n       <xsd:enumeration value=\"contextual\"/>\n       <xsd:enumeration value=\"historical\"/>\n       <xsd:enumeration value=\"discretional\"/>\n       <xsd:enumeration value=\"standardContextual\"/>\n       <xsd:enumeration value=\"standardHistorical\"/>\n       <xsd:enumeration value=\"contextualHistorical\"/>\n       <xsd:enumeration value=\"standardDiscretional\"/>\n       <xsd:enumeration value=\"contextualDiscretional\"/>\n       <xsd:enumeration value=\"historicalDiscretional\"/>\n       <xsd:enumeration value=\"standardContextualHistorical\"/>\n       <xsd:enumeration value=\"standardContextualDiscretional\"/>\n       <xsd:enumeration value=\"standardHistoricalDiscretional\"/>\n       <xsd:enumeration value=\"contextualHistoricalDiscretional\"/>\n       <xsd:enumeration value=\"all\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_Ligatures\">\n     <xsd:attribute name=\"val\" type=\"ST_Ligatures\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_NumForm\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"default\"/>\n       <xsd:enumeration value=\"lining\"/>\n       <xsd:enumeration value=\"oldStyle\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_NumForm\">\n     <xsd:attribute name=\"val\" type=\"ST_NumForm\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_NumSpacing\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"default\"/>\n       <xsd:enumeration value=\"proportional\"/>\n       <xsd:enumeration value=\"tabular\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_NumSpacing\">\n     <xsd:attribute name=\"val\" type=\"ST_NumSpacing\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_StyleSet\">\n     <xsd:attribute name=\"id\" type=\"s:ST_UnsignedDecimalNumber\" use=\"required\"/>\n     <xsd:attribute name=\"val\" type=\"ST_OnOff\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_StylisticSets\">\n     <xsd:sequence minOccurs=\"0\">\n       <xsd:element name=\"styleSet\" minOccurs=\"0\" maxOccurs=\"unbounded\" type=\"CT_StyleSet\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:group name=\"EG_RPrOpenType\">\n     <xsd:sequence>\n       <xsd:element name=\"ligatures\" minOccurs=\"0\" type=\"CT_Ligatures\"/>\n       <xsd:element name=\"numForm\" minOccurs=\"0\" type=\"CT_NumForm\"/>\n       <xsd:element name=\"numSpacing\" minOccurs=\"0\" type=\"CT_NumSpacing\"/>\n       <xsd:element name=\"stylisticSets\" minOccurs=\"0\" type=\"CT_StylisticSets\"/>\n       <xsd:element name=\"cntxtAlts\" minOccurs=\"0\" type=\"CT_OnOff\"/>\n     </xsd:sequence>\n   </xsd:group>\n   <xsd:element name=\"discardImageEditingData\" type=\"CT_OnOff\"/>\n   <xsd:element name=\"defaultImageDpi\" type=\"CT_DefaultImageDpi\"/>\n   <xsd:complexType name=\"CT_DefaultImageDpi\">\n     <xsd:attribute name=\"val\" type=\"w:ST_DecimalNumber\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:element name=\"entityPicker\" type=\"w:CT_Empty\"/>\n   <xsd:complexType name=\"CT_SdtCheckboxSymbol\">\n     <xsd:attribute name=\"font\" type=\"s:ST_String\"/>\n     <xsd:attribute name=\"val\" type=\"w:ST_ShortHexNumber\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_SdtCheckbox\">\n     <xsd:sequence>\n       <xsd:element name=\"checked\" type=\"CT_OnOff\" minOccurs=\"0\"/>\n       <xsd:element name=\"checkedState\" type=\"CT_SdtCheckboxSymbol\" minOccurs=\"0\"/>\n       <xsd:element name=\"uncheckedState\" type=\"CT_SdtCheckboxSymbol\" minOccurs=\"0\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:element name=\"checkbox\" type=\"CT_SdtCheckbox\"/>\n </xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/microsoft/wml-2012.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w12=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns=\"http://schemas.microsoft.com/office/word/2012/wordml\" targetNamespace=\"http://schemas.microsoft.com/office/word/2012/wordml\">\n   <xsd:import id=\"w12\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <xsd:import namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\" schemaLocation=\"../ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd\"/>\n   <xsd:element name=\"color\" type=\"w12:CT_Color\"/>\n   <xsd:simpleType name=\"ST_SdtAppearance\">\n     <xsd:restriction base=\"xsd:string\">\n       <xsd:enumeration value=\"boundingBox\"/>\n       <xsd:enumeration value=\"tags\"/>\n       <xsd:enumeration value=\"hidden\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:element name=\"dataBinding\" type=\"w12:CT_DataBinding\"/>\n   <xsd:complexType name=\"CT_SdtAppearance\">\n     <xsd:attribute name=\"val\" type=\"ST_SdtAppearance\"/>\n   </xsd:complexType>\n   <xsd:element name=\"appearance\" type=\"CT_SdtAppearance\"/>\n   <xsd:complexType name=\"CT_CommentsEx\">\n     <xsd:sequence>\n       <xsd:element name=\"commentEx\" type=\"CT_CommentEx\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_CommentEx\">\n     <xsd:attribute name=\"paraId\" type=\"w12:ST_LongHexNumber\" use=\"required\"/>\n     <xsd:attribute name=\"paraIdParent\" type=\"w12:ST_LongHexNumber\" use=\"optional\"/>\n     <xsd:attribute name=\"done\" type=\"s:ST_OnOff\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:element name=\"commentsEx\" type=\"CT_CommentsEx\"/>\n   <xsd:complexType name=\"CT_People\">\n     <xsd:sequence>\n       <xsd:element name=\"person\" type=\"CT_Person\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_PresenceInfo\">\n     <xsd:attribute name=\"providerId\" type=\"xsd:string\" use=\"required\"/>\n     <xsd:attribute name=\"userId\" type=\"xsd:string\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_Person\">\n     <xsd:sequence>\n       <xsd:element name=\"presenceInfo\" type=\"CT_PresenceInfo\" minOccurs=\"0\" maxOccurs=\"1\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"author\" type=\"s:ST_String\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:element name=\"people\" type=\"CT_People\"/>\n   <xsd:complexType name=\"CT_SdtRepeatedSection\">\n     <xsd:sequence>\n       <xsd:element name=\"sectionTitle\" type=\"w12:CT_String\" minOccurs=\"0\"/>\n       <xsd:element name=\"doNotAllowInsertDeleteSection\" type=\"w12:CT_OnOff\" minOccurs=\"0\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:simpleType name=\"ST_Guid\">\n     <xsd:restriction base=\"xsd:token\">\n       <xsd:pattern value=\"\\{[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}\\}\"/>\n     </xsd:restriction>\n   </xsd:simpleType>\n   <xsd:complexType name=\"CT_Guid\">\n     <xsd:attribute name=\"val\" type=\"ST_Guid\"/>\n   </xsd:complexType>\n   <xsd:element name=\"repeatingSection\" type=\"CT_SdtRepeatedSection\"/>\n   <xsd:element name=\"repeatingSectionItem\" type=\"w12:CT_Empty\"/>\n   <xsd:element name=\"chartTrackingRefBased\" type=\"w12:CT_OnOff\"/>\n   <xsd:element name=\"collapsed\" type=\"w12:CT_OnOff\"/>\n   <xsd:element name=\"docId\" type=\"CT_Guid\"/>\n   <xsd:element name=\"footnoteColumns\" type=\"w12:CT_DecimalNumber\"/>\n   <xsd:element name=\"webExtensionLinked\" type=\"w12:CT_OnOff\"/>\n   <xsd:element name=\"webExtensionCreated\" type=\"w12:CT_OnOff\"/>\n   <xsd:attribute name=\"restartNumberingAfterBreak\" type=\"s:ST_OnOff\"/>\n </xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/microsoft/wml-2018.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w12=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns=\"http://schemas.microsoft.com/office/word/2018/wordml\" targetNamespace=\"http://schemas.microsoft.com/office/word/2018/wordml\">\n   <xsd:import id=\"w12\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <xsd:complexType name=\"CT_Extension\">\n     <xsd:sequence>\n       <xsd:any processContents=\"lax\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"uri\" type=\"xsd:token\"/>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_ExtensionList\">\n     <xsd:sequence>\n       <xsd:element name=\"ext\" type=\"CT_Extension\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n </xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/microsoft/wml-cex-2018.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" xmlns:s=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\" xmlns:w16=\"http://schemas.microsoft.com/office/word/2018/wordml\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns=\"http://schemas.microsoft.com/office/word/2018/wordml/cex\" targetNamespace=\"http://schemas.microsoft.com/office/word/2018/wordml/cex\">\n   <xsd:import id=\"w16\" namespace=\"http://schemas.microsoft.com/office/word/2018/wordml\" schemaLocation=\"wml-2018.xsd\"/>\n   <xsd:import id=\"w\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <xsd:import id=\"s\" namespace=\"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\" schemaLocation=\"../ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd\"/>\n   <xsd:complexType name=\"CT_CommentsExtensible\">\n     <xsd:sequence>\n       <xsd:element name=\"commentExtensible\" type=\"CT_CommentExtensible\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n       <xsd:element name=\"extLst\" type=\"w16:CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_CommentExtensible\">\n     <xsd:sequence>\n       <xsd:element name=\"extLst\" type=\"w16:CT_ExtensionList\" minOccurs=\"0\" maxOccurs=\"1\"/>\n     </xsd:sequence>\n     <xsd:attribute name=\"durableId\" type=\"w:ST_LongHexNumber\" use=\"required\"/>\n     <xsd:attribute name=\"dateUtc\" type=\"w:ST_DateTime\" use=\"optional\"/>\n     <xsd:attribute name=\"intelligentPlaceholder\" type=\"s:ST_OnOff\" use=\"optional\"/>\n   </xsd:complexType>\n   <xsd:element name=\"commentsExtensible\" type=\"CT_CommentsExtensible\"/>\n </xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/microsoft/wml-cid-2016.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w12=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns=\"http://schemas.microsoft.com/office/word/2016/wordml/cid\" targetNamespace=\"http://schemas.microsoft.com/office/word/2016/wordml/cid\">\n   <xsd:import id=\"w12\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <xsd:complexType name=\"CT_CommentsIds\">\n     <xsd:sequence>\n       <xsd:element name=\"commentId\" type=\"CT_CommentId\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n     </xsd:sequence>\n   </xsd:complexType>\n   <xsd:complexType name=\"CT_CommentId\">\n     <xsd:attribute name=\"paraId\" type=\"w12:ST_LongHexNumber\" use=\"required\"/>\n     <xsd:attribute name=\"durableId\" type=\"w12:ST_LongHexNumber\" use=\"required\"/>\n   </xsd:complexType>\n   <xsd:element name=\"commentsIds\" type=\"CT_CommentsIds\"/>\n </xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w12=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns=\"http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash\" targetNamespace=\"http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash\">\n   <xsd:import id=\"w12\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <xsd:attribute name=\"storeItemChecksum\" type=\"w12:ST_String\"/>\n </xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/schemas/microsoft/wml-symex-2015.xsd",
    "content": " <xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:w12=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" elementFormDefault=\"qualified\" attributeFormDefault=\"qualified\" blockDefault=\"#all\" xmlns=\"http://schemas.microsoft.com/office/word/2015/wordml/symex\" targetNamespace=\"http://schemas.microsoft.com/office/word/2015/wordml/symex\">\n   <xsd:import id=\"w12\" namespace=\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\" schemaLocation=\"../ISO-IEC29500-4_2016/wml.xsd\"/>\n   <xsd:complexType name=\"CT_SymEx\">\n     <xsd:attribute name=\"font\" type=\"w12:ST_String\"/>\n     <xsd:attribute name=\"char\" type=\"w12:ST_LongHexNumber\"/>\n   </xsd:complexType>\n   <xsd:element name=\"symEx\" type=\"CT_SymEx\"/>\n </xsd:schema>\n"
  },
  {
    "path": "skills/xlsx/scripts/office/soffice.py",
    "content": "\"\"\"\nHelper for running LibreOffice (soffice) in environments where AF_UNIX\nsockets may be blocked (e.g., sandboxed VMs).  Detects the restriction\nat runtime and applies an LD_PRELOAD shim if needed.\n\nUsage:\n    from office.soffice import run_soffice, get_soffice_env\n\n    # Option 1 – run soffice directly\n    result = run_soffice([\"--headless\", \"--convert-to\", \"pdf\", \"input.docx\"])\n\n    # Option 2 – get env dict for your own subprocess calls\n    env = get_soffice_env()\n    subprocess.run([\"soffice\", ...], env=env)\n\"\"\"\n\nimport os\nimport socket\nimport subprocess\nimport tempfile\nfrom pathlib import Path\n\n\ndef get_soffice_env() -> dict:\n    env = os.environ.copy()\n    env[\"SAL_USE_VCLPLUGIN\"] = \"svp\"\n\n    if _needs_shim():\n        shim = _ensure_shim()\n        env[\"LD_PRELOAD\"] = str(shim)\n\n    return env\n\n\ndef run_soffice(args: list[str], **kwargs) -> subprocess.CompletedProcess:\n    env = get_soffice_env()\n    return subprocess.run([\"soffice\"] + args, env=env, **kwargs)\n\n\n\n_SHIM_SO = Path(tempfile.gettempdir()) / \"lo_socket_shim.so\"\n\n\ndef _needs_shim() -> bool:\n    try:\n        s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)\n        s.close()\n        return False\n    except OSError:\n        return True\n\n\ndef _ensure_shim() -> Path:\n    if _SHIM_SO.exists():\n        return _SHIM_SO\n\n    src = Path(tempfile.gettempdir()) / \"lo_socket_shim.c\"\n    src.write_text(_SHIM_SOURCE)\n    subprocess.run(\n        [\"gcc\", \"-shared\", \"-fPIC\", \"-o\", str(_SHIM_SO), str(src), \"-ldl\"],\n        check=True,\n        capture_output=True,\n    )\n    src.unlink()\n    return _SHIM_SO\n\n\n\n_SHIM_SOURCE = r\"\"\"\n#define _GNU_SOURCE\n#include <dlfcn.h>\n#include <errno.h>\n#include <signal.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <sys/socket.h>\n#include <unistd.h>\n\nstatic int (*real_socket)(int, int, int);\nstatic int (*real_socketpair)(int, int, int, int[2]);\nstatic int (*real_listen)(int, int);\nstatic int (*real_accept)(int, struct sockaddr *, socklen_t *);\nstatic int (*real_close)(int);\nstatic int (*real_read)(int, void *, size_t);\n\n/* Per-FD bookkeeping (FDs >= 1024 are passed through unshimmed). */\nstatic int is_shimmed[1024];\nstatic int peer_of[1024];\nstatic int wake_r[1024];            /* accept() blocks reading this */\nstatic int wake_w[1024];            /* close()  writes to this      */\nstatic int listener_fd = -1;        /* FD that received listen()    */\n\n__attribute__((constructor))\nstatic void init(void) {\n    real_socket     = dlsym(RTLD_NEXT, \"socket\");\n    real_socketpair = dlsym(RTLD_NEXT, \"socketpair\");\n    real_listen     = dlsym(RTLD_NEXT, \"listen\");\n    real_accept     = dlsym(RTLD_NEXT, \"accept\");\n    real_close      = dlsym(RTLD_NEXT, \"close\");\n    real_read       = dlsym(RTLD_NEXT, \"read\");\n    for (int i = 0; i < 1024; i++) {\n        peer_of[i] = -1;\n        wake_r[i]  = -1;\n        wake_w[i]  = -1;\n    }\n}\n\n/* ---- socket ---------------------------------------------------------- */\nint socket(int domain, int type, int protocol) {\n    if (domain == AF_UNIX) {\n        int fd = real_socket(domain, type, protocol);\n        if (fd >= 0) return fd;\n        /* socket(AF_UNIX) blocked – fall back to socketpair(). */\n        int sv[2];\n        if (real_socketpair(domain, type, protocol, sv) == 0) {\n            if (sv[0] >= 0 && sv[0] < 1024) {\n                is_shimmed[sv[0]] = 1;\n                peer_of[sv[0]]    = sv[1];\n                int wp[2];\n                if (pipe(wp) == 0) {\n                    wake_r[sv[0]] = wp[0];\n                    wake_w[sv[0]] = wp[1];\n                }\n            }\n            return sv[0];\n        }\n        errno = EPERM;\n        return -1;\n    }\n    return real_socket(domain, type, protocol);\n}\n\n/* ---- listen ---------------------------------------------------------- */\nint listen(int sockfd, int backlog) {\n    if (sockfd >= 0 && sockfd < 1024 && is_shimmed[sockfd]) {\n        listener_fd = sockfd;\n        return 0;\n    }\n    return real_listen(sockfd, backlog);\n}\n\n/* ---- accept ---------------------------------------------------------- */\nint accept(int sockfd, struct sockaddr *addr, socklen_t *addrlen) {\n    if (sockfd >= 0 && sockfd < 1024 && is_shimmed[sockfd]) {\n        /* Block until close() writes to the wake pipe. */\n        if (wake_r[sockfd] >= 0) {\n            char buf;\n            real_read(wake_r[sockfd], &buf, 1);\n        }\n        errno = ECONNABORTED;\n        return -1;\n    }\n    return real_accept(sockfd, addr, addrlen);\n}\n\n/* ---- close ----------------------------------------------------------- */\nint close(int fd) {\n    if (fd >= 0 && fd < 1024 && is_shimmed[fd]) {\n        int was_listener = (fd == listener_fd);\n        is_shimmed[fd] = 0;\n\n        if (wake_w[fd] >= 0) {              /* unblock accept() */\n            char c = 0;\n            write(wake_w[fd], &c, 1);\n            real_close(wake_w[fd]);\n            wake_w[fd] = -1;\n        }\n        if (wake_r[fd] >= 0) { real_close(wake_r[fd]); wake_r[fd]  = -1; }\n        if (peer_of[fd] >= 0) { real_close(peer_of[fd]); peer_of[fd] = -1; }\n\n        if (was_listener)\n            _exit(0);                        /* conversion done – exit */\n    }\n    return real_close(fd);\n}\n\"\"\"\n\n\n\nif __name__ == \"__main__\":\n    import sys\n    result = run_soffice(sys.argv[1:])\n    sys.exit(result.returncode)\n"
  },
  {
    "path": "skills/xlsx/scripts/office/unpack.py",
    "content": "\"\"\"Unpack Office files (DOCX, PPTX, XLSX) for editing.\n\nExtracts the ZIP archive, pretty-prints XML files, and optionally:\n- Merges adjacent runs with identical formatting (DOCX only)\n- Simplifies adjacent tracked changes from same author (DOCX only)\n\nUsage:\n    python unpack.py <office_file> <output_dir> [options]\n\nExamples:\n    python unpack.py document.docx unpacked/\n    python unpack.py presentation.pptx unpacked/\n    python unpack.py document.docx unpacked/ --merge-runs false\n\"\"\"\n\nimport argparse\nimport sys\nimport zipfile\nfrom pathlib import Path\n\nimport defusedxml.minidom\n\nfrom helpers.merge_runs import merge_runs as do_merge_runs\nfrom helpers.simplify_redlines import simplify_redlines as do_simplify_redlines\n\nSMART_QUOTE_REPLACEMENTS = {\n    \"\\u201c\": \"&#x201C;\",  \n    \"\\u201d\": \"&#x201D;\",  \n    \"\\u2018\": \"&#x2018;\",  \n    \"\\u2019\": \"&#x2019;\",  \n}\n\n\ndef unpack(\n    input_file: str,\n    output_directory: str,\n    merge_runs: bool = True,\n    simplify_redlines: bool = True,\n) -> tuple[None, str]:\n    input_path = Path(input_file)\n    output_path = Path(output_directory)\n    suffix = input_path.suffix.lower()\n\n    if not input_path.exists():\n        return None, f\"Error: {input_file} does not exist\"\n\n    if suffix not in {\".docx\", \".pptx\", \".xlsx\"}:\n        return None, f\"Error: {input_file} must be a .docx, .pptx, or .xlsx file\"\n\n    try:\n        output_path.mkdir(parents=True, exist_ok=True)\n\n        with zipfile.ZipFile(input_path, \"r\") as zf:\n            zf.extractall(output_path)\n\n        xml_files = list(output_path.rglob(\"*.xml\")) + list(output_path.rglob(\"*.rels\"))\n        for xml_file in xml_files:\n            _pretty_print_xml(xml_file)\n\n        message = f\"Unpacked {input_file} ({len(xml_files)} XML files)\"\n\n        if suffix == \".docx\":\n            if simplify_redlines:\n                simplify_count, _ = do_simplify_redlines(str(output_path))\n                message += f\", simplified {simplify_count} tracked changes\"\n\n            if merge_runs:\n                merge_count, _ = do_merge_runs(str(output_path))\n                message += f\", merged {merge_count} runs\"\n\n        for xml_file in xml_files:\n            _escape_smart_quotes(xml_file)\n\n        return None, message\n\n    except zipfile.BadZipFile:\n        return None, f\"Error: {input_file} is not a valid Office file\"\n    except Exception as e:\n        return None, f\"Error unpacking: {e}\"\n\n\ndef _pretty_print_xml(xml_file: Path) -> None:\n    try:\n        content = xml_file.read_text(encoding=\"utf-8\")\n        dom = defusedxml.minidom.parseString(content)\n        xml_file.write_bytes(dom.toprettyxml(indent=\"  \", encoding=\"utf-8\"))\n    except Exception:\n        pass  \n\n\ndef _escape_smart_quotes(xml_file: Path) -> None:\n    try:\n        content = xml_file.read_text(encoding=\"utf-8\")\n        for char, entity in SMART_QUOTE_REPLACEMENTS.items():\n            content = content.replace(char, entity)\n        xml_file.write_text(content, encoding=\"utf-8\")\n    except Exception:\n        pass\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser(\n        description=\"Unpack an Office file (DOCX, PPTX, XLSX) for editing\"\n    )\n    parser.add_argument(\"input_file\", help=\"Office file to unpack\")\n    parser.add_argument(\"output_directory\", help=\"Output directory\")\n    parser.add_argument(\n        \"--merge-runs\",\n        type=lambda x: x.lower() == \"true\",\n        default=True,\n        metavar=\"true|false\",\n        help=\"Merge adjacent runs with identical formatting (DOCX only, default: true)\",\n    )\n    parser.add_argument(\n        \"--simplify-redlines\",\n        type=lambda x: x.lower() == \"true\",\n        default=True,\n        metavar=\"true|false\",\n        help=\"Merge adjacent tracked changes from same author (DOCX only, default: true)\",\n    )\n    args = parser.parse_args()\n\n    _, message = unpack(\n        args.input_file,\n        args.output_directory,\n        merge_runs=args.merge_runs,\n        simplify_redlines=args.simplify_redlines,\n    )\n    print(message)\n\n    if \"Error\" in message:\n        sys.exit(1)\n"
  },
  {
    "path": "skills/xlsx/scripts/office/validate.py",
    "content": "\"\"\"\nCommand line tool to validate Office document XML files against XSD schemas and tracked changes.\n\nUsage:\n    python validate.py <path> [--original <original_file>] [--auto-repair] [--author NAME]\n\nThe first argument can be either:\n- An unpacked directory containing the Office document XML files\n- A packed Office file (.docx/.pptx/.xlsx) which will be unpacked to a temp directory\n\nAuto-repair fixes:\n- paraId/durableId values that exceed OOXML limits\n- Missing xml:space=\"preserve\" on w:t elements with whitespace\n\"\"\"\n\nimport argparse\nimport sys\nimport tempfile\nimport zipfile\nfrom pathlib import Path\n\nfrom validators import DOCXSchemaValidator, PPTXSchemaValidator, RedliningValidator\n\n\ndef main():\n    parser = argparse.ArgumentParser(description=\"Validate Office document XML files\")\n    parser.add_argument(\n        \"path\",\n        help=\"Path to unpacked directory or packed Office file (.docx/.pptx/.xlsx)\",\n    )\n    parser.add_argument(\n        \"--original\",\n        required=False,\n        default=None,\n        help=\"Path to original file (.docx/.pptx/.xlsx). If omitted, all XSD errors are reported and redlining validation is skipped.\",\n    )\n    parser.add_argument(\n        \"-v\",\n        \"--verbose\",\n        action=\"store_true\",\n        help=\"Enable verbose output\",\n    )\n    parser.add_argument(\n        \"--auto-repair\",\n        action=\"store_true\",\n        help=\"Automatically repair common issues (hex IDs, whitespace preservation)\",\n    )\n    parser.add_argument(\n        \"--author\",\n        default=\"Claude\",\n        help=\"Author name for redlining validation (default: Claude)\",\n    )\n    args = parser.parse_args()\n\n    path = Path(args.path)\n    assert path.exists(), f\"Error: {path} does not exist\"\n\n    original_file = None\n    if args.original:\n        original_file = Path(args.original)\n        assert original_file.is_file(), f\"Error: {original_file} is not a file\"\n        assert original_file.suffix.lower() in [\".docx\", \".pptx\", \".xlsx\"], (\n            f\"Error: {original_file} must be a .docx, .pptx, or .xlsx file\"\n        )\n\n    file_extension = (original_file or path).suffix.lower()\n    assert file_extension in [\".docx\", \".pptx\", \".xlsx\"], (\n        f\"Error: Cannot determine file type from {path}. Use --original or provide a .docx/.pptx/.xlsx file.\"\n    )\n\n    if path.is_file() and path.suffix.lower() in [\".docx\", \".pptx\", \".xlsx\"]:\n        temp_dir = tempfile.mkdtemp()\n        with zipfile.ZipFile(path, \"r\") as zf:\n            zf.extractall(temp_dir)\n        unpacked_dir = Path(temp_dir)\n    else:\n        assert path.is_dir(), f\"Error: {path} is not a directory or Office file\"\n        unpacked_dir = path\n\n    match file_extension:\n        case \".docx\":\n            validators = [\n                DOCXSchemaValidator(unpacked_dir, original_file, verbose=args.verbose),\n            ]\n            if original_file:\n                validators.append(\n                    RedliningValidator(unpacked_dir, original_file, verbose=args.verbose, author=args.author)  \n                )\n        case \".pptx\":\n            validators = [\n                PPTXSchemaValidator(unpacked_dir, original_file, verbose=args.verbose),\n            ]\n        case _:\n            print(f\"Error: Validation not supported for file type {file_extension}\")\n            sys.exit(1)\n\n    if args.auto_repair:\n        total_repairs = sum(v.repair() for v in validators)\n        if total_repairs:\n            print(f\"Auto-repaired {total_repairs} issue(s)\")\n\n    success = all(v.validate() for v in validators)\n\n    if success:\n        print(\"All validations PASSED!\")\n\n    sys.exit(0 if success else 1)\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "skills/xlsx/scripts/office/validators/__init__.py",
    "content": "\"\"\"\nValidation modules for Word document processing.\n\"\"\"\n\nfrom .base import BaseSchemaValidator\nfrom .docx import DOCXSchemaValidator\nfrom .pptx import PPTXSchemaValidator\nfrom .redlining import RedliningValidator\n\n__all__ = [\n    \"BaseSchemaValidator\",\n    \"DOCXSchemaValidator\",\n    \"PPTXSchemaValidator\",\n    \"RedliningValidator\",\n]\n"
  },
  {
    "path": "skills/xlsx/scripts/office/validators/base.py",
    "content": "\"\"\"\nBase validator with common validation logic for document files.\n\"\"\"\n\nimport re\nfrom pathlib import Path\n\nimport defusedxml.minidom\nimport lxml.etree\n\n\nclass BaseSchemaValidator:\n\n    IGNORED_VALIDATION_ERRORS = [\n        \"hyphenationZone\",\n        \"purl.org/dc/terms\",\n    ]\n\n    UNIQUE_ID_REQUIREMENTS = {\n        \"comment\": (\"id\", \"file\"),  \n        \"commentrangestart\": (\"id\", \"file\"),  \n        \"commentrangeend\": (\"id\", \"file\"),  \n        \"bookmarkstart\": (\"id\", \"file\"),  \n        \"bookmarkend\": (\"id\", \"file\"),  \n        \"sldid\": (\"id\", \"file\"),  \n        \"sldmasterid\": (\"id\", \"global\"),  \n        \"sldlayoutid\": (\"id\", \"global\"),  \n        \"cm\": (\"authorid\", \"file\"),  \n        \"sheet\": (\"sheetid\", \"file\"),  \n        \"definedname\": (\"id\", \"file\"),  \n        \"cxnsp\": (\"id\", \"file\"),  \n        \"sp\": (\"id\", \"file\"),  \n        \"pic\": (\"id\", \"file\"),  \n        \"grpsp\": (\"id\", \"file\"),  \n    }\n\n    EXCLUDED_ID_CONTAINERS = {\n        \"sectionlst\",  \n    }\n\n    ELEMENT_RELATIONSHIP_TYPES = {}\n\n    SCHEMA_MAPPINGS = {\n        \"word\": \"ISO-IEC29500-4_2016/wml.xsd\",  \n        \"ppt\": \"ISO-IEC29500-4_2016/pml.xsd\",  \n        \"xl\": \"ISO-IEC29500-4_2016/sml.xsd\",  \n        \"[Content_Types].xml\": \"ecma/fouth-edition/opc-contentTypes.xsd\",\n        \"app.xml\": \"ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd\",\n        \"core.xml\": \"ecma/fouth-edition/opc-coreProperties.xsd\",\n        \"custom.xml\": \"ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd\",\n        \".rels\": \"ecma/fouth-edition/opc-relationships.xsd\",\n        \"people.xml\": \"microsoft/wml-2012.xsd\",\n        \"commentsIds.xml\": \"microsoft/wml-cid-2016.xsd\",\n        \"commentsExtensible.xml\": \"microsoft/wml-cex-2018.xsd\",\n        \"commentsExtended.xml\": \"microsoft/wml-2012.xsd\",\n        \"chart\": \"ISO-IEC29500-4_2016/dml-chart.xsd\",\n        \"theme\": \"ISO-IEC29500-4_2016/dml-main.xsd\",\n        \"drawing\": \"ISO-IEC29500-4_2016/dml-main.xsd\",\n    }\n\n    MC_NAMESPACE = \"http://schemas.openxmlformats.org/markup-compatibility/2006\"\n    XML_NAMESPACE = \"http://www.w3.org/XML/1998/namespace\"\n\n    PACKAGE_RELATIONSHIPS_NAMESPACE = (\n        \"http://schemas.openxmlformats.org/package/2006/relationships\"\n    )\n    OFFICE_RELATIONSHIPS_NAMESPACE = (\n        \"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n    )\n    CONTENT_TYPES_NAMESPACE = (\n        \"http://schemas.openxmlformats.org/package/2006/content-types\"\n    )\n\n    MAIN_CONTENT_FOLDERS = {\"word\", \"ppt\", \"xl\"}\n\n    OOXML_NAMESPACES = {\n        \"http://schemas.openxmlformats.org/officeDocument/2006/math\",\n        \"http://schemas.openxmlformats.org/officeDocument/2006/relationships\",\n        \"http://schemas.openxmlformats.org/schemaLibrary/2006/main\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/main\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/chart\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/chartDrawing\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/diagram\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/picture\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing\",\n        \"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\",\n        \"http://schemas.openxmlformats.org/wordprocessingml/2006/main\",\n        \"http://schemas.openxmlformats.org/presentationml/2006/main\",\n        \"http://schemas.openxmlformats.org/spreadsheetml/2006/main\",\n        \"http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes\",\n        \"http://www.w3.org/XML/1998/namespace\",\n    }\n\n    def __init__(self, unpacked_dir, original_file=None, verbose=False):\n        self.unpacked_dir = Path(unpacked_dir).resolve()\n        self.original_file = Path(original_file) if original_file else None\n        self.verbose = verbose\n\n        self.schemas_dir = Path(__file__).parent.parent / \"schemas\"\n\n        patterns = [\"*.xml\", \"*.rels\"]\n        self.xml_files = [\n            f for pattern in patterns for f in self.unpacked_dir.rglob(pattern)\n        ]\n\n        if not self.xml_files:\n            print(f\"Warning: No XML files found in {self.unpacked_dir}\")\n\n    def validate(self):\n        raise NotImplementedError(\"Subclasses must implement the validate method\")\n\n    def repair(self) -> int:\n        return self.repair_whitespace_preservation()\n\n    def repair_whitespace_preservation(self) -> int:\n        repairs = 0\n\n        for xml_file in self.xml_files:\n            try:\n                content = xml_file.read_text(encoding=\"utf-8\")\n                dom = defusedxml.minidom.parseString(content)\n                modified = False\n\n                for elem in dom.getElementsByTagName(\"*\"):\n                    if elem.tagName.endswith(\":t\") and elem.firstChild:\n                        text = elem.firstChild.nodeValue\n                        if text and (text.startswith((' ', '\\t')) or text.endswith((' ', '\\t'))):\n                            if elem.getAttribute(\"xml:space\") != \"preserve\":\n                                elem.setAttribute(\"xml:space\", \"preserve\")\n                                text_preview = repr(text[:30]) + \"...\" if len(text) > 30 else repr(text)\n                                print(f\"  Repaired: {xml_file.name}: Added xml:space='preserve' to {elem.tagName}: {text_preview}\")\n                                repairs += 1\n                                modified = True\n\n                if modified:\n                    xml_file.write_bytes(dom.toxml(encoding=\"UTF-8\"))\n\n            except Exception:\n                pass\n\n        return repairs\n\n    def validate_xml(self):\n        errors = []\n\n        for xml_file in self.xml_files:\n            try:\n                lxml.etree.parse(str(xml_file))\n            except lxml.etree.XMLSyntaxError as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                    f\"Line {e.lineno}: {e.msg}\"\n                )\n            except Exception as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                    f\"Unexpected error: {str(e)}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} XML violations:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All XML files are well-formed\")\n            return True\n\n    def validate_namespaces(self):\n        errors = []\n\n        for xml_file in self.xml_files:\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n                declared = set(root.nsmap.keys()) - {None}  \n\n                for attr_val in [\n                    v for k, v in root.attrib.items() if k.endswith(\"Ignorable\")\n                ]:\n                    undeclared = set(attr_val.split()) - declared\n                    errors.extend(\n                        f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                        f\"Namespace '{ns}' in Ignorable but not declared\"\n                        for ns in undeclared\n                    )\n            except lxml.etree.XMLSyntaxError:\n                continue\n\n        if errors:\n            print(f\"FAILED - {len(errors)} namespace issues:\")\n            for error in errors:\n                print(error)\n            return False\n        if self.verbose:\n            print(\"PASSED - All namespace prefixes properly declared\")\n        return True\n\n    def validate_unique_ids(self):\n        errors = []\n        global_ids = {}  \n\n        for xml_file in self.xml_files:\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n                file_ids = {}  \n\n                mc_elements = root.xpath(\n                    \".//mc:AlternateContent\", namespaces={\"mc\": self.MC_NAMESPACE}\n                )\n                for elem in mc_elements:\n                    elem.getparent().remove(elem)\n\n                for elem in root.iter():\n                    tag = (\n                        elem.tag.split(\"}\")[-1].lower()\n                        if \"}\" in elem.tag\n                        else elem.tag.lower()\n                    )\n\n                    if tag in self.UNIQUE_ID_REQUIREMENTS:\n                        in_excluded_container = any(\n                            ancestor.tag.split(\"}\")[-1].lower() in self.EXCLUDED_ID_CONTAINERS\n                            for ancestor in elem.iterancestors()\n                        )\n                        if in_excluded_container:\n                            continue\n\n                        attr_name, scope = self.UNIQUE_ID_REQUIREMENTS[tag]\n\n                        id_value = None\n                        for attr, value in elem.attrib.items():\n                            attr_local = (\n                                attr.split(\"}\")[-1].lower()\n                                if \"}\" in attr\n                                else attr.lower()\n                            )\n                            if attr_local == attr_name:\n                                id_value = value\n                                break\n\n                        if id_value is not None:\n                            if scope == \"global\":\n                                if id_value in global_ids:\n                                    prev_file, prev_line, prev_tag = global_ids[\n                                        id_value\n                                    ]\n                                    errors.append(\n                                        f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                                        f\"Line {elem.sourceline}: Global ID '{id_value}' in <{tag}> \"\n                                        f\"already used in {prev_file} at line {prev_line} in <{prev_tag}>\"\n                                    )\n                                else:\n                                    global_ids[id_value] = (\n                                        xml_file.relative_to(self.unpacked_dir),\n                                        elem.sourceline,\n                                        tag,\n                                    )\n                            elif scope == \"file\":\n                                key = (tag, attr_name)\n                                if key not in file_ids:\n                                    file_ids[key] = {}\n\n                                if id_value in file_ids[key]:\n                                    prev_line = file_ids[key][id_value]\n                                    errors.append(\n                                        f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                                        f\"Line {elem.sourceline}: Duplicate {attr_name}='{id_value}' in <{tag}> \"\n                                        f\"(first occurrence at line {prev_line})\"\n                                    )\n                                else:\n                                    file_ids[key][id_value] = elem.sourceline\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} ID uniqueness violations:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All required IDs are unique\")\n            return True\n\n    def validate_file_references(self):\n        errors = []\n\n        rels_files = list(self.unpacked_dir.rglob(\"*.rels\"))\n\n        if not rels_files:\n            if self.verbose:\n                print(\"PASSED - No .rels files found\")\n            return True\n\n        all_files = []\n        for file_path in self.unpacked_dir.rglob(\"*\"):\n            if (\n                file_path.is_file()\n                and file_path.name != \"[Content_Types].xml\"\n                and not file_path.name.endswith(\".rels\")\n            ):  \n                all_files.append(file_path.resolve())\n\n        all_referenced_files = set()\n\n        if self.verbose:\n            print(\n                f\"Found {len(rels_files)} .rels files and {len(all_files)} target files\"\n            )\n\n        for rels_file in rels_files:\n            try:\n                rels_root = lxml.etree.parse(str(rels_file)).getroot()\n\n                rels_dir = rels_file.parent\n\n                referenced_files = set()\n                broken_refs = []\n\n                for rel in rels_root.findall(\n                    \".//ns:Relationship\",\n                    namespaces={\"ns\": self.PACKAGE_RELATIONSHIPS_NAMESPACE},\n                ):\n                    target = rel.get(\"Target\")\n                    if target and not target.startswith(\n                        (\"http\", \"mailto:\")\n                    ):  \n                        if target.startswith(\"/\"):\n                            target_path = self.unpacked_dir / target.lstrip(\"/\")\n                        elif rels_file.name == \".rels\":\n                            target_path = self.unpacked_dir / target\n                        else:\n                            base_dir = rels_dir.parent\n                            target_path = base_dir / target\n\n                        try:\n                            target_path = target_path.resolve()\n                            if target_path.exists() and target_path.is_file():\n                                referenced_files.add(target_path)\n                                all_referenced_files.add(target_path)\n                            else:\n                                broken_refs.append((target, rel.sourceline))\n                        except (OSError, ValueError):\n                            broken_refs.append((target, rel.sourceline))\n\n                if broken_refs:\n                    rel_path = rels_file.relative_to(self.unpacked_dir)\n                    for broken_ref, line_num in broken_refs:\n                        errors.append(\n                            f\"  {rel_path}: Line {line_num}: Broken reference to {broken_ref}\"\n                        )\n\n            except Exception as e:\n                rel_path = rels_file.relative_to(self.unpacked_dir)\n                errors.append(f\"  Error parsing {rel_path}: {e}\")\n\n        unreferenced_files = set(all_files) - all_referenced_files\n\n        if unreferenced_files:\n            for unref_file in sorted(unreferenced_files):\n                unref_rel_path = unref_file.relative_to(self.unpacked_dir)\n                errors.append(f\"  Unreferenced file: {unref_rel_path}\")\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} relationship validation errors:\")\n            for error in errors:\n                print(error)\n            print(\n                \"CRITICAL: These errors will cause the document to appear corrupt. \"\n                + \"Broken references MUST be fixed, \"\n                + \"and unreferenced files MUST be referenced or removed.\"\n            )\n            return False\n        else:\n            if self.verbose:\n                print(\n                    \"PASSED - All references are valid and all files are properly referenced\"\n                )\n            return True\n\n    def validate_all_relationship_ids(self):\n        import lxml.etree\n\n        errors = []\n\n        for xml_file in self.xml_files:\n            if xml_file.suffix == \".rels\":\n                continue\n\n            rels_dir = xml_file.parent / \"_rels\"\n            rels_file = rels_dir / f\"{xml_file.name}.rels\"\n\n            if not rels_file.exists():\n                continue\n\n            try:\n                rels_root = lxml.etree.parse(str(rels_file)).getroot()\n                rid_to_type = {}\n\n                for rel in rels_root.findall(\n                    f\".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship\"\n                ):\n                    rid = rel.get(\"Id\")\n                    rel_type = rel.get(\"Type\", \"\")\n                    if rid:\n                        if rid in rid_to_type:\n                            rels_rel_path = rels_file.relative_to(self.unpacked_dir)\n                            errors.append(\n                                f\"  {rels_rel_path}: Line {rel.sourceline}: \"\n                                f\"Duplicate relationship ID '{rid}' (IDs must be unique)\"\n                            )\n                        type_name = (\n                            rel_type.split(\"/\")[-1] if \"/\" in rel_type else rel_type\n                        )\n                        rid_to_type[rid] = type_name\n\n                xml_root = lxml.etree.parse(str(xml_file)).getroot()\n\n                r_ns = self.OFFICE_RELATIONSHIPS_NAMESPACE\n                rid_attrs_to_check = [\"id\", \"embed\", \"link\"]\n                for elem in xml_root.iter():\n                    for attr_name in rid_attrs_to_check:\n                        rid_attr = elem.get(f\"{{{r_ns}}}{attr_name}\")\n                        if not rid_attr:\n                            continue\n                        xml_rel_path = xml_file.relative_to(self.unpacked_dir)\n                        elem_name = (\n                            elem.tag.split(\"}\")[-1] if \"}\" in elem.tag else elem.tag\n                        )\n\n                        if rid_attr not in rid_to_type:\n                            errors.append(\n                                f\"  {xml_rel_path}: Line {elem.sourceline}: \"\n                                f\"<{elem_name}> r:{attr_name} references non-existent relationship '{rid_attr}' \"\n                                f\"(valid IDs: {', '.join(sorted(rid_to_type.keys())[:5])}{'...' if len(rid_to_type) > 5 else ''})\"\n                            )\n                        elif attr_name == \"id\" and self.ELEMENT_RELATIONSHIP_TYPES:\n                            expected_type = self._get_expected_relationship_type(\n                                elem_name\n                            )\n                            if expected_type:\n                                actual_type = rid_to_type[rid_attr]\n                                if expected_type not in actual_type.lower():\n                                    errors.append(\n                                        f\"  {xml_rel_path}: Line {elem.sourceline}: \"\n                                        f\"<{elem_name}> references '{rid_attr}' which points to '{actual_type}' \"\n                                        f\"but should point to a '{expected_type}' relationship\"\n                                    )\n\n            except Exception as e:\n                xml_rel_path = xml_file.relative_to(self.unpacked_dir)\n                errors.append(f\"  Error processing {xml_rel_path}: {e}\")\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} relationship ID reference errors:\")\n            for error in errors:\n                print(error)\n            print(\"\\nThese ID mismatches will cause the document to appear corrupt!\")\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All relationship ID references are valid\")\n            return True\n\n    def _get_expected_relationship_type(self, element_name):\n        elem_lower = element_name.lower()\n\n        if elem_lower in self.ELEMENT_RELATIONSHIP_TYPES:\n            return self.ELEMENT_RELATIONSHIP_TYPES[elem_lower]\n\n        if elem_lower.endswith(\"id\") and len(elem_lower) > 2:\n            prefix = elem_lower[:-2]  \n            if prefix.endswith(\"master\"):\n                return prefix.lower()\n            elif prefix.endswith(\"layout\"):\n                return prefix.lower()\n            else:\n                if prefix == \"sld\":\n                    return \"slide\"\n                return prefix.lower()\n\n        if elem_lower.endswith(\"reference\") and len(elem_lower) > 9:\n            prefix = elem_lower[:-9]  \n            return prefix.lower()\n\n        return None\n\n    def validate_content_types(self):\n        errors = []\n\n        content_types_file = self.unpacked_dir / \"[Content_Types].xml\"\n        if not content_types_file.exists():\n            print(\"FAILED - [Content_Types].xml file not found\")\n            return False\n\n        try:\n            root = lxml.etree.parse(str(content_types_file)).getroot()\n            declared_parts = set()\n            declared_extensions = set()\n\n            for override in root.findall(\n                f\".//{{{self.CONTENT_TYPES_NAMESPACE}}}Override\"\n            ):\n                part_name = override.get(\"PartName\")\n                if part_name is not None:\n                    declared_parts.add(part_name.lstrip(\"/\"))\n\n            for default in root.findall(\n                f\".//{{{self.CONTENT_TYPES_NAMESPACE}}}Default\"\n            ):\n                extension = default.get(\"Extension\")\n                if extension is not None:\n                    declared_extensions.add(extension.lower())\n\n            declarable_roots = {\n                \"sld\",\n                \"sldLayout\",\n                \"sldMaster\",\n                \"presentation\",  \n                \"document\",  \n                \"workbook\",\n                \"worksheet\",  \n                \"theme\",  \n            }\n\n            media_extensions = {\n                \"png\": \"image/png\",\n                \"jpg\": \"image/jpeg\",\n                \"jpeg\": \"image/jpeg\",\n                \"gif\": \"image/gif\",\n                \"bmp\": \"image/bmp\",\n                \"tiff\": \"image/tiff\",\n                \"wmf\": \"image/x-wmf\",\n                \"emf\": \"image/x-emf\",\n            }\n\n            all_files = list(self.unpacked_dir.rglob(\"*\"))\n            all_files = [f for f in all_files if f.is_file()]\n\n            for xml_file in self.xml_files:\n                path_str = str(xml_file.relative_to(self.unpacked_dir)).replace(\n                    \"\\\\\", \"/\"\n                )\n\n                if any(\n                    skip in path_str\n                    for skip in [\".rels\", \"[Content_Types]\", \"docProps/\", \"_rels/\"]\n                ):\n                    continue\n\n                try:\n                    root_tag = lxml.etree.parse(str(xml_file)).getroot().tag\n                    root_name = root_tag.split(\"}\")[-1] if \"}\" in root_tag else root_tag\n\n                    if root_name in declarable_roots and path_str not in declared_parts:\n                        errors.append(\n                            f\"  {path_str}: File with <{root_name}> root not declared in [Content_Types].xml\"\n                        )\n\n                except Exception:\n                    continue  \n\n            for file_path in all_files:\n                if file_path.suffix.lower() in {\".xml\", \".rels\"}:\n                    continue\n                if file_path.name == \"[Content_Types].xml\":\n                    continue\n                if \"_rels\" in file_path.parts or \"docProps\" in file_path.parts:\n                    continue\n\n                extension = file_path.suffix.lstrip(\".\").lower()\n                if extension and extension not in declared_extensions:\n                    if extension in media_extensions:\n                        relative_path = file_path.relative_to(self.unpacked_dir)\n                        errors.append(\n                            f'  {relative_path}: File with extension \\'{extension}\\' not declared in [Content_Types].xml - should add: <Default Extension=\"{extension}\" ContentType=\"{media_extensions[extension]}\"/>'\n                        )\n\n        except Exception as e:\n            errors.append(f\"  Error parsing [Content_Types].xml: {e}\")\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} content type declaration errors:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\n                    \"PASSED - All content files are properly declared in [Content_Types].xml\"\n                )\n            return True\n\n    def validate_file_against_xsd(self, xml_file, verbose=False):\n        xml_file = Path(xml_file).resolve()\n        unpacked_dir = self.unpacked_dir.resolve()\n\n        is_valid, current_errors = self._validate_single_file_xsd(\n            xml_file, unpacked_dir\n        )\n\n        if is_valid is None:\n            return None, set()  \n        elif is_valid:\n            return True, set()  \n\n        original_errors = self._get_original_file_errors(xml_file)\n\n        assert current_errors is not None\n        new_errors = current_errors - original_errors\n\n        new_errors = {\n            e for e in new_errors\n            if not any(pattern in e for pattern in self.IGNORED_VALIDATION_ERRORS)\n        }\n\n        if new_errors:\n            if verbose:\n                relative_path = xml_file.relative_to(unpacked_dir)\n                print(f\"FAILED - {relative_path}: {len(new_errors)} new error(s)\")\n                for error in list(new_errors)[:3]:\n                    truncated = error[:250] + \"...\" if len(error) > 250 else error\n                    print(f\"  - {truncated}\")\n            return False, new_errors\n        else:\n            if verbose:\n                print(\n                    f\"PASSED - No new errors (original had {len(current_errors)} errors)\"\n                )\n            return True, set()\n\n    def validate_against_xsd(self):\n        new_errors = []\n        original_error_count = 0\n        valid_count = 0\n        skipped_count = 0\n\n        for xml_file in self.xml_files:\n            relative_path = str(xml_file.relative_to(self.unpacked_dir))\n            is_valid, new_file_errors = self.validate_file_against_xsd(\n                xml_file, verbose=False\n            )\n\n            if is_valid is None:\n                skipped_count += 1\n                continue\n            elif is_valid and not new_file_errors:\n                valid_count += 1\n                continue\n            elif is_valid:\n                original_error_count += 1\n                valid_count += 1\n                continue\n\n            new_errors.append(f\"  {relative_path}: {len(new_file_errors)} new error(s)\")\n            for error in list(new_file_errors)[:3]:  \n                new_errors.append(\n                    f\"    - {error[:250]}...\" if len(error) > 250 else f\"    - {error}\"\n                )\n\n        if self.verbose:\n            print(f\"Validated {len(self.xml_files)} files:\")\n            print(f\"  - Valid: {valid_count}\")\n            print(f\"  - Skipped (no schema): {skipped_count}\")\n            if original_error_count:\n                print(f\"  - With original errors (ignored): {original_error_count}\")\n            print(\n                f\"  - With NEW errors: {len(new_errors) > 0 and len([e for e in new_errors if not e.startswith('    ')]) or 0}\"\n            )\n\n        if new_errors:\n            print(\"\\nFAILED - Found NEW validation errors:\")\n            for error in new_errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"\\nPASSED - No new XSD validation errors introduced\")\n            return True\n\n    def _get_schema_path(self, xml_file):\n        if xml_file.name in self.SCHEMA_MAPPINGS:\n            return self.schemas_dir / self.SCHEMA_MAPPINGS[xml_file.name]\n\n        if xml_file.suffix == \".rels\":\n            return self.schemas_dir / self.SCHEMA_MAPPINGS[\".rels\"]\n\n        if \"charts/\" in str(xml_file) and xml_file.name.startswith(\"chart\"):\n            return self.schemas_dir / self.SCHEMA_MAPPINGS[\"chart\"]\n\n        if \"theme/\" in str(xml_file) and xml_file.name.startswith(\"theme\"):\n            return self.schemas_dir / self.SCHEMA_MAPPINGS[\"theme\"]\n\n        if xml_file.parent.name in self.MAIN_CONTENT_FOLDERS:\n            return self.schemas_dir / self.SCHEMA_MAPPINGS[xml_file.parent.name]\n\n        return None\n\n    def _clean_ignorable_namespaces(self, xml_doc):\n        xml_string = lxml.etree.tostring(xml_doc, encoding=\"unicode\")\n        xml_copy = lxml.etree.fromstring(xml_string)\n\n        for elem in xml_copy.iter():\n            attrs_to_remove = []\n\n            for attr in elem.attrib:\n                if \"{\" in attr:\n                    ns = attr.split(\"}\")[0][1:]\n                    if ns not in self.OOXML_NAMESPACES:\n                        attrs_to_remove.append(attr)\n\n            for attr in attrs_to_remove:\n                del elem.attrib[attr]\n\n        self._remove_ignorable_elements(xml_copy)\n\n        return lxml.etree.ElementTree(xml_copy)\n\n    def _remove_ignorable_elements(self, root):\n        elements_to_remove = []\n\n        for elem in list(root):\n            if not hasattr(elem, \"tag\") or callable(elem.tag):\n                continue\n\n            tag_str = str(elem.tag)\n            if tag_str.startswith(\"{\"):\n                ns = tag_str.split(\"}\")[0][1:]\n                if ns not in self.OOXML_NAMESPACES:\n                    elements_to_remove.append(elem)\n                    continue\n\n            self._remove_ignorable_elements(elem)\n\n        for elem in elements_to_remove:\n            root.remove(elem)\n\n    def _preprocess_for_mc_ignorable(self, xml_doc):\n        root = xml_doc.getroot()\n\n        if f\"{{{self.MC_NAMESPACE}}}Ignorable\" in root.attrib:\n            del root.attrib[f\"{{{self.MC_NAMESPACE}}}Ignorable\"]\n\n        return xml_doc\n\n    def _validate_single_file_xsd(self, xml_file, base_path):\n        schema_path = self._get_schema_path(xml_file)\n        if not schema_path:\n            return None, None  \n\n        try:\n            with open(schema_path, \"rb\") as xsd_file:\n                parser = lxml.etree.XMLParser()\n                xsd_doc = lxml.etree.parse(\n                    xsd_file, parser=parser, base_url=str(schema_path)\n                )\n                schema = lxml.etree.XMLSchema(xsd_doc)\n\n            with open(xml_file, \"r\") as f:\n                xml_doc = lxml.etree.parse(f)\n\n            xml_doc, _ = self._remove_template_tags_from_text_nodes(xml_doc)\n            xml_doc = self._preprocess_for_mc_ignorable(xml_doc)\n\n            relative_path = xml_file.relative_to(base_path)\n            if (\n                relative_path.parts\n                and relative_path.parts[0] in self.MAIN_CONTENT_FOLDERS\n            ):\n                xml_doc = self._clean_ignorable_namespaces(xml_doc)\n\n            if schema.validate(xml_doc):\n                return True, set()\n            else:\n                errors = set()\n                for error in schema.error_log:\n                    errors.add(error.message)\n                return False, errors\n\n        except Exception as e:\n            return False, {str(e)}\n\n    def _get_original_file_errors(self, xml_file):\n        if self.original_file is None:\n            return set()\n\n        import tempfile\n        import zipfile\n\n        xml_file = Path(xml_file).resolve()\n        unpacked_dir = self.unpacked_dir.resolve()\n        relative_path = xml_file.relative_to(unpacked_dir)\n\n        with tempfile.TemporaryDirectory() as temp_dir:\n            temp_path = Path(temp_dir)\n\n            with zipfile.ZipFile(self.original_file, \"r\") as zip_ref:\n                zip_ref.extractall(temp_path)\n\n            original_xml_file = temp_path / relative_path\n\n            if not original_xml_file.exists():\n                return set()\n\n            is_valid, errors = self._validate_single_file_xsd(\n                original_xml_file, temp_path\n            )\n            return errors if errors else set()\n\n    def _remove_template_tags_from_text_nodes(self, xml_doc):\n        warnings = []\n        template_pattern = re.compile(r\"\\{\\{[^}]*\\}\\}\")\n\n        xml_string = lxml.etree.tostring(xml_doc, encoding=\"unicode\")\n        xml_copy = lxml.etree.fromstring(xml_string)\n\n        def process_text_content(text, content_type):\n            if not text:\n                return text\n            matches = list(template_pattern.finditer(text))\n            if matches:\n                for match in matches:\n                    warnings.append(\n                        f\"Found template tag in {content_type}: {match.group()}\"\n                    )\n                return template_pattern.sub(\"\", text)\n            return text\n\n        for elem in xml_copy.iter():\n            if not hasattr(elem, \"tag\") or callable(elem.tag):\n                continue\n            tag_str = str(elem.tag)\n            if tag_str.endswith(\"}t\") or tag_str == \"t\":\n                continue\n\n            elem.text = process_text_content(elem.text, \"text content\")\n            elem.tail = process_text_content(elem.tail, \"tail content\")\n\n        return lxml.etree.ElementTree(xml_copy), warnings\n\n\nif __name__ == \"__main__\":\n    raise RuntimeError(\"This module should not be run directly.\")\n"
  },
  {
    "path": "skills/xlsx/scripts/office/validators/docx.py",
    "content": "\"\"\"\nValidator for Word document XML files against XSD schemas.\n\"\"\"\n\nimport random\nimport re\nimport tempfile\nimport zipfile\n\nimport defusedxml.minidom\nimport lxml.etree\n\nfrom .base import BaseSchemaValidator\n\n\nclass DOCXSchemaValidator(BaseSchemaValidator):\n\n    WORD_2006_NAMESPACE = \"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n    W14_NAMESPACE = \"http://schemas.microsoft.com/office/word/2010/wordml\"\n    W16CID_NAMESPACE = \"http://schemas.microsoft.com/office/word/2016/wordml/cid\"\n\n    ELEMENT_RELATIONSHIP_TYPES = {}\n\n    def validate(self):\n        if not self.validate_xml():\n            return False\n\n        all_valid = True\n        if not self.validate_namespaces():\n            all_valid = False\n\n        if not self.validate_unique_ids():\n            all_valid = False\n\n        if not self.validate_file_references():\n            all_valid = False\n\n        if not self.validate_content_types():\n            all_valid = False\n\n        if not self.validate_against_xsd():\n            all_valid = False\n\n        if not self.validate_whitespace_preservation():\n            all_valid = False\n\n        if not self.validate_deletions():\n            all_valid = False\n\n        if not self.validate_insertions():\n            all_valid = False\n\n        if not self.validate_all_relationship_ids():\n            all_valid = False\n\n        if not self.validate_id_constraints():\n            all_valid = False\n\n        if not self.validate_comment_markers():\n            all_valid = False\n\n        self.compare_paragraph_counts()\n\n        return all_valid\n\n    def validate_whitespace_preservation(self):\n        errors = []\n\n        for xml_file in self.xml_files:\n            if xml_file.name != \"document.xml\":\n                continue\n\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n\n                for elem in root.iter(f\"{{{self.WORD_2006_NAMESPACE}}}t\"):\n                    if elem.text:\n                        text = elem.text\n                        if re.search(r\"^[ \\t\\n\\r]\", text) or re.search(\n                            r\"[ \\t\\n\\r]$\", text\n                        ):\n                            xml_space_attr = f\"{{{self.XML_NAMESPACE}}}space\"\n                            if (\n                                xml_space_attr not in elem.attrib\n                                or elem.attrib[xml_space_attr] != \"preserve\"\n                            ):\n                                text_preview = (\n                                    repr(text)[:50] + \"...\"\n                                    if len(repr(text)) > 50\n                                    else repr(text)\n                                )\n                                errors.append(\n                                    f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                                    f\"Line {elem.sourceline}: w:t element with whitespace missing xml:space='preserve': {text_preview}\"\n                                )\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} whitespace preservation violations:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All whitespace is properly preserved\")\n            return True\n\n    def validate_deletions(self):\n        errors = []\n\n        for xml_file in self.xml_files:\n            if xml_file.name != \"document.xml\":\n                continue\n\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n                namespaces = {\"w\": self.WORD_2006_NAMESPACE}\n\n                for t_elem in root.xpath(\".//w:del//w:t\", namespaces=namespaces):\n                    if t_elem.text:\n                        text_preview = (\n                            repr(t_elem.text)[:50] + \"...\"\n                            if len(repr(t_elem.text)) > 50\n                            else repr(t_elem.text)\n                        )\n                        errors.append(\n                            f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                            f\"Line {t_elem.sourceline}: <w:t> found within <w:del>: {text_preview}\"\n                        )\n\n                for instr_elem in root.xpath(\n                    \".//w:del//w:instrText\", namespaces=namespaces\n                ):\n                    text_preview = (\n                        repr(instr_elem.text or \"\")[:50] + \"...\"\n                        if len(repr(instr_elem.text or \"\")) > 50\n                        else repr(instr_elem.text or \"\")\n                    )\n                    errors.append(\n                        f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                        f\"Line {instr_elem.sourceline}: <w:instrText> found within <w:del> (use <w:delInstrText>): {text_preview}\"\n                    )\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} deletion validation violations:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - No w:t elements found within w:del elements\")\n            return True\n\n    def count_paragraphs_in_unpacked(self):\n        count = 0\n\n        for xml_file in self.xml_files:\n            if xml_file.name != \"document.xml\":\n                continue\n\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n                paragraphs = root.findall(f\".//{{{self.WORD_2006_NAMESPACE}}}p\")\n                count = len(paragraphs)\n            except Exception as e:\n                print(f\"Error counting paragraphs in unpacked document: {e}\")\n\n        return count\n\n    def count_paragraphs_in_original(self):\n        original = self.original_file\n        if original is None:\n            return 0\n\n        count = 0\n\n        try:\n            with tempfile.TemporaryDirectory() as temp_dir:\n                with zipfile.ZipFile(original, \"r\") as zip_ref:\n                    zip_ref.extractall(temp_dir)\n\n                doc_xml_path = temp_dir + \"/word/document.xml\"\n                root = lxml.etree.parse(doc_xml_path).getroot()\n\n                paragraphs = root.findall(f\".//{{{self.WORD_2006_NAMESPACE}}}p\")\n                count = len(paragraphs)\n\n        except Exception as e:\n            print(f\"Error counting paragraphs in original document: {e}\")\n\n        return count\n\n    def validate_insertions(self):\n        errors = []\n\n        for xml_file in self.xml_files:\n            if xml_file.name != \"document.xml\":\n                continue\n\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n                namespaces = {\"w\": self.WORD_2006_NAMESPACE}\n\n                invalid_elements = root.xpath(\n                    \".//w:ins//w:delText[not(ancestor::w:del)]\", namespaces=namespaces\n                )\n\n                for elem in invalid_elements:\n                    text_preview = (\n                        repr(elem.text or \"\")[:50] + \"...\"\n                        if len(repr(elem.text or \"\")) > 50\n                        else repr(elem.text or \"\")\n                    )\n                    errors.append(\n                        f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                        f\"Line {elem.sourceline}: <w:delText> within <w:ins>: {text_preview}\"\n                    )\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} insertion validation violations:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - No w:delText elements within w:ins elements\")\n            return True\n\n    def compare_paragraph_counts(self):\n        original_count = self.count_paragraphs_in_original()\n        new_count = self.count_paragraphs_in_unpacked()\n\n        diff = new_count - original_count\n        diff_str = f\"+{diff}\" if diff > 0 else str(diff)\n        print(f\"\\nParagraphs: {original_count} → {new_count} ({diff_str})\")\n\n    def _parse_id_value(self, val: str, base: int = 16) -> int:\n        return int(val, base)\n\n    def validate_id_constraints(self):\n        errors = []\n        para_id_attr = f\"{{{self.W14_NAMESPACE}}}paraId\"\n        durable_id_attr = f\"{{{self.W16CID_NAMESPACE}}}durableId\"\n\n        for xml_file in self.xml_files:\n            try:\n                for elem in lxml.etree.parse(str(xml_file)).iter():\n                    if val := elem.get(para_id_attr):\n                        if self._parse_id_value(val, base=16) >= 0x80000000:\n                            errors.append(\n                                f\"  {xml_file.name}:{elem.sourceline}: paraId={val} >= 0x80000000\"\n                            )\n\n                    if val := elem.get(durable_id_attr):\n                        if xml_file.name == \"numbering.xml\":\n                            try:\n                                if self._parse_id_value(val, base=10) >= 0x7FFFFFFF:\n                                    errors.append(\n                                        f\"  {xml_file.name}:{elem.sourceline}: \"\n                                        f\"durableId={val} >= 0x7FFFFFFF\"\n                                    )\n                            except ValueError:\n                                errors.append(\n                                    f\"  {xml_file.name}:{elem.sourceline}: \"\n                                    f\"durableId={val} must be decimal in numbering.xml\"\n                                )\n                        else:\n                            if self._parse_id_value(val, base=16) >= 0x7FFFFFFF:\n                                errors.append(\n                                    f\"  {xml_file.name}:{elem.sourceline}: \"\n                                    f\"durableId={val} >= 0x7FFFFFFF\"\n                                )\n            except Exception:\n                pass\n\n        if errors:\n            print(f\"FAILED - {len(errors)} ID constraint violations:\")\n            for e in errors:\n                print(e)\n        elif self.verbose:\n            print(\"PASSED - All paraId/durableId values within constraints\")\n        return not errors\n\n    def validate_comment_markers(self):\n        errors = []\n\n        document_xml = None\n        comments_xml = None\n        for xml_file in self.xml_files:\n            if xml_file.name == \"document.xml\" and \"word\" in str(xml_file):\n                document_xml = xml_file\n            elif xml_file.name == \"comments.xml\":\n                comments_xml = xml_file\n\n        if not document_xml:\n            if self.verbose:\n                print(\"PASSED - No document.xml found (skipping comment validation)\")\n            return True\n\n        try:\n            doc_root = lxml.etree.parse(str(document_xml)).getroot()\n            namespaces = {\"w\": self.WORD_2006_NAMESPACE}\n\n            range_starts = {\n                elem.get(f\"{{{self.WORD_2006_NAMESPACE}}}id\")\n                for elem in doc_root.xpath(\n                    \".//w:commentRangeStart\", namespaces=namespaces\n                )\n            }\n            range_ends = {\n                elem.get(f\"{{{self.WORD_2006_NAMESPACE}}}id\")\n                for elem in doc_root.xpath(\n                    \".//w:commentRangeEnd\", namespaces=namespaces\n                )\n            }\n            references = {\n                elem.get(f\"{{{self.WORD_2006_NAMESPACE}}}id\")\n                for elem in doc_root.xpath(\n                    \".//w:commentReference\", namespaces=namespaces\n                )\n            }\n\n            orphaned_ends = range_ends - range_starts\n            for comment_id in sorted(\n                orphaned_ends, key=lambda x: int(x) if x and x.isdigit() else 0\n            ):\n                errors.append(\n                    f'  document.xml: commentRangeEnd id=\"{comment_id}\" has no matching commentRangeStart'\n                )\n\n            orphaned_starts = range_starts - range_ends\n            for comment_id in sorted(\n                orphaned_starts, key=lambda x: int(x) if x and x.isdigit() else 0\n            ):\n                errors.append(\n                    f'  document.xml: commentRangeStart id=\"{comment_id}\" has no matching commentRangeEnd'\n                )\n\n            comment_ids = set()\n            if comments_xml and comments_xml.exists():\n                comments_root = lxml.etree.parse(str(comments_xml)).getroot()\n                comment_ids = {\n                    elem.get(f\"{{{self.WORD_2006_NAMESPACE}}}id\")\n                    for elem in comments_root.xpath(\n                        \".//w:comment\", namespaces=namespaces\n                    )\n                }\n\n                marker_ids = range_starts | range_ends | references\n                invalid_refs = marker_ids - comment_ids\n                for comment_id in sorted(\n                    invalid_refs, key=lambda x: int(x) if x and x.isdigit() else 0\n                ):\n                    if comment_id:  \n                        errors.append(\n                            f'  document.xml: marker id=\"{comment_id}\" references non-existent comment'\n                        )\n\n        except (lxml.etree.XMLSyntaxError, Exception) as e:\n            errors.append(f\"  Error parsing XML: {e}\")\n\n        if errors:\n            print(f\"FAILED - {len(errors)} comment marker violations:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All comment markers properly paired\")\n            return True\n\n    def repair(self) -> int:\n        repairs = super().repair()\n        repairs += self.repair_durableId()\n        return repairs\n\n    def repair_durableId(self) -> int:\n        repairs = 0\n\n        for xml_file in self.xml_files:\n            try:\n                content = xml_file.read_text(encoding=\"utf-8\")\n                dom = defusedxml.minidom.parseString(content)\n                modified = False\n\n                for elem in dom.getElementsByTagName(\"*\"):\n                    if not elem.hasAttribute(\"w16cid:durableId\"):\n                        continue\n\n                    durable_id = elem.getAttribute(\"w16cid:durableId\")\n                    needs_repair = False\n\n                    if xml_file.name == \"numbering.xml\":\n                        try:\n                            needs_repair = (\n                                self._parse_id_value(durable_id, base=10) >= 0x7FFFFFFF\n                            )\n                        except ValueError:\n                            needs_repair = True\n                    else:\n                        try:\n                            needs_repair = (\n                                self._parse_id_value(durable_id, base=16) >= 0x7FFFFFFF\n                            )\n                        except ValueError:\n                            needs_repair = True\n\n                    if needs_repair:\n                        value = random.randint(1, 0x7FFFFFFE)\n                        if xml_file.name == \"numbering.xml\":\n                            new_id = str(value)  \n                        else:\n                            new_id = f\"{value:08X}\"  \n\n                        elem.setAttribute(\"w16cid:durableId\", new_id)\n                        print(\n                            f\"  Repaired: {xml_file.name}: durableId {durable_id} → {new_id}\"\n                        )\n                        repairs += 1\n                        modified = True\n\n                if modified:\n                    xml_file.write_bytes(dom.toxml(encoding=\"UTF-8\"))\n\n            except Exception:\n                pass\n\n        return repairs\n\n\nif __name__ == \"__main__\":\n    raise RuntimeError(\"This module should not be run directly.\")\n"
  },
  {
    "path": "skills/xlsx/scripts/office/validators/pptx.py",
    "content": "\"\"\"\nValidator for PowerPoint presentation XML files against XSD schemas.\n\"\"\"\n\nimport re\n\nfrom .base import BaseSchemaValidator\n\n\nclass PPTXSchemaValidator(BaseSchemaValidator):\n\n    PRESENTATIONML_NAMESPACE = (\n        \"http://schemas.openxmlformats.org/presentationml/2006/main\"\n    )\n\n    ELEMENT_RELATIONSHIP_TYPES = {\n        \"sldid\": \"slide\",\n        \"sldmasterid\": \"slidemaster\",\n        \"notesmasterid\": \"notesmaster\",\n        \"sldlayoutid\": \"slidelayout\",\n        \"themeid\": \"theme\",\n        \"tablestyleid\": \"tablestyles\",\n    }\n\n    def validate(self):\n        if not self.validate_xml():\n            return False\n\n        all_valid = True\n        if not self.validate_namespaces():\n            all_valid = False\n\n        if not self.validate_unique_ids():\n            all_valid = False\n\n        if not self.validate_uuid_ids():\n            all_valid = False\n\n        if not self.validate_file_references():\n            all_valid = False\n\n        if not self.validate_slide_layout_ids():\n            all_valid = False\n\n        if not self.validate_content_types():\n            all_valid = False\n\n        if not self.validate_against_xsd():\n            all_valid = False\n\n        if not self.validate_notes_slide_references():\n            all_valid = False\n\n        if not self.validate_all_relationship_ids():\n            all_valid = False\n\n        if not self.validate_no_duplicate_slide_layouts():\n            all_valid = False\n\n        return all_valid\n\n    def validate_uuid_ids(self):\n        import lxml.etree\n\n        errors = []\n        uuid_pattern = re.compile(\n            r\"^[\\{\\(]?[0-9A-Fa-f]{8}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{12}[\\}\\)]?$\"\n        )\n\n        for xml_file in self.xml_files:\n            try:\n                root = lxml.etree.parse(str(xml_file)).getroot()\n\n                for elem in root.iter():\n                    for attr, value in elem.attrib.items():\n                        attr_name = attr.split(\"}\")[-1].lower()\n                        if attr_name == \"id\" or attr_name.endswith(\"id\"):\n                            if self._looks_like_uuid(value):\n                                if not uuid_pattern.match(value):\n                                    errors.append(\n                                        f\"  {xml_file.relative_to(self.unpacked_dir)}: \"\n                                        f\"Line {elem.sourceline}: ID '{value}' appears to be a UUID but contains invalid hex characters\"\n                                    )\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {xml_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} UUID ID validation errors:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All UUID-like IDs contain valid hex values\")\n            return True\n\n    def _looks_like_uuid(self, value):\n        clean_value = value.strip(\"{}()\").replace(\"-\", \"\")\n        return len(clean_value) == 32 and all(c.isalnum() for c in clean_value)\n\n    def validate_slide_layout_ids(self):\n        import lxml.etree\n\n        errors = []\n\n        slide_masters = list(self.unpacked_dir.glob(\"ppt/slideMasters/*.xml\"))\n\n        if not slide_masters:\n            if self.verbose:\n                print(\"PASSED - No slide masters found\")\n            return True\n\n        for slide_master in slide_masters:\n            try:\n                root = lxml.etree.parse(str(slide_master)).getroot()\n\n                rels_file = slide_master.parent / \"_rels\" / f\"{slide_master.name}.rels\"\n\n                if not rels_file.exists():\n                    errors.append(\n                        f\"  {slide_master.relative_to(self.unpacked_dir)}: \"\n                        f\"Missing relationships file: {rels_file.relative_to(self.unpacked_dir)}\"\n                    )\n                    continue\n\n                rels_root = lxml.etree.parse(str(rels_file)).getroot()\n\n                valid_layout_rids = set()\n                for rel in rels_root.findall(\n                    f\".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship\"\n                ):\n                    rel_type = rel.get(\"Type\", \"\")\n                    if \"slideLayout\" in rel_type:\n                        valid_layout_rids.add(rel.get(\"Id\"))\n\n                for sld_layout_id in root.findall(\n                    f\".//{{{self.PRESENTATIONML_NAMESPACE}}}sldLayoutId\"\n                ):\n                    r_id = sld_layout_id.get(\n                        f\"{{{self.OFFICE_RELATIONSHIPS_NAMESPACE}}}id\"\n                    )\n                    layout_id = sld_layout_id.get(\"id\")\n\n                    if r_id and r_id not in valid_layout_rids:\n                        errors.append(\n                            f\"  {slide_master.relative_to(self.unpacked_dir)}: \"\n                            f\"Line {sld_layout_id.sourceline}: sldLayoutId with id='{layout_id}' \"\n                            f\"references r:id='{r_id}' which is not found in slide layout relationships\"\n                        )\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {slide_master.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(f\"FAILED - Found {len(errors)} slide layout ID validation errors:\")\n            for error in errors:\n                print(error)\n            print(\n                \"Remove invalid references or add missing slide layouts to the relationships file.\"\n            )\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All slide layout IDs reference valid slide layouts\")\n            return True\n\n    def validate_no_duplicate_slide_layouts(self):\n        import lxml.etree\n\n        errors = []\n        slide_rels_files = list(self.unpacked_dir.glob(\"ppt/slides/_rels/*.xml.rels\"))\n\n        for rels_file in slide_rels_files:\n            try:\n                root = lxml.etree.parse(str(rels_file)).getroot()\n\n                layout_rels = [\n                    rel\n                    for rel in root.findall(\n                        f\".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship\"\n                    )\n                    if \"slideLayout\" in rel.get(\"Type\", \"\")\n                ]\n\n                if len(layout_rels) > 1:\n                    errors.append(\n                        f\"  {rels_file.relative_to(self.unpacked_dir)}: has {len(layout_rels)} slideLayout references\"\n                    )\n\n            except Exception as e:\n                errors.append(\n                    f\"  {rels_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        if errors:\n            print(\"FAILED - Found slides with duplicate slideLayout references:\")\n            for error in errors:\n                print(error)\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All slides have exactly one slideLayout reference\")\n            return True\n\n    def validate_notes_slide_references(self):\n        import lxml.etree\n\n        errors = []\n        notes_slide_references = {}  \n\n        slide_rels_files = list(self.unpacked_dir.glob(\"ppt/slides/_rels/*.xml.rels\"))\n\n        if not slide_rels_files:\n            if self.verbose:\n                print(\"PASSED - No slide relationship files found\")\n            return True\n\n        for rels_file in slide_rels_files:\n            try:\n                root = lxml.etree.parse(str(rels_file)).getroot()\n\n                for rel in root.findall(\n                    f\".//{{{self.PACKAGE_RELATIONSHIPS_NAMESPACE}}}Relationship\"\n                ):\n                    rel_type = rel.get(\"Type\", \"\")\n                    if \"notesSlide\" in rel_type:\n                        target = rel.get(\"Target\", \"\")\n                        if target:\n                            normalized_target = target.replace(\"../\", \"\")\n\n                            slide_name = rels_file.stem.replace(\n                                \".xml\", \"\"\n                            )  \n\n                            if normalized_target not in notes_slide_references:\n                                notes_slide_references[normalized_target] = []\n                            notes_slide_references[normalized_target].append(\n                                (slide_name, rels_file)\n                            )\n\n            except (lxml.etree.XMLSyntaxError, Exception) as e:\n                errors.append(\n                    f\"  {rels_file.relative_to(self.unpacked_dir)}: Error: {e}\"\n                )\n\n        for target, references in notes_slide_references.items():\n            if len(references) > 1:\n                slide_names = [ref[0] for ref in references]\n                errors.append(\n                    f\"  Notes slide '{target}' is referenced by multiple slides: {', '.join(slide_names)}\"\n                )\n                for slide_name, rels_file in references:\n                    errors.append(f\"    - {rels_file.relative_to(self.unpacked_dir)}\")\n\n        if errors:\n            print(\n                f\"FAILED - Found {len([e for e in errors if not e.startswith('    ')])} notes slide reference validation errors:\"\n            )\n            for error in errors:\n                print(error)\n            print(\"Each slide may optionally have its own slide file.\")\n            return False\n        else:\n            if self.verbose:\n                print(\"PASSED - All notes slide references are unique\")\n            return True\n\n\nif __name__ == \"__main__\":\n    raise RuntimeError(\"This module should not be run directly.\")\n"
  },
  {
    "path": "skills/xlsx/scripts/office/validators/redlining.py",
    "content": "\"\"\"\nValidator for tracked changes in Word documents.\n\"\"\"\n\nimport subprocess\nimport tempfile\nimport zipfile\nfrom pathlib import Path\n\n\nclass RedliningValidator:\n\n    def __init__(self, unpacked_dir, original_docx, verbose=False, author=\"Claude\"):\n        self.unpacked_dir = Path(unpacked_dir)\n        self.original_docx = Path(original_docx)\n        self.verbose = verbose\n        self.author = author\n        self.namespaces = {\n            \"w\": \"http://schemas.openxmlformats.org/wordprocessingml/2006/main\"\n        }\n\n    def repair(self) -> int:\n        return 0\n\n    def validate(self):\n        modified_file = self.unpacked_dir / \"word\" / \"document.xml\"\n        if not modified_file.exists():\n            print(f\"FAILED - Modified document.xml not found at {modified_file}\")\n            return False\n\n        try:\n            import xml.etree.ElementTree as ET\n\n            tree = ET.parse(modified_file)\n            root = tree.getroot()\n\n            del_elements = root.findall(\".//w:del\", self.namespaces)\n            ins_elements = root.findall(\".//w:ins\", self.namespaces)\n\n            author_del_elements = [\n                elem\n                for elem in del_elements\n                if elem.get(f\"{{{self.namespaces['w']}}}author\") == self.author\n            ]\n            author_ins_elements = [\n                elem\n                for elem in ins_elements\n                if elem.get(f\"{{{self.namespaces['w']}}}author\") == self.author\n            ]\n\n            if not author_del_elements and not author_ins_elements:\n                if self.verbose:\n                    print(f\"PASSED - No tracked changes by {self.author} found.\")\n                return True\n\n        except Exception:\n            pass\n\n        with tempfile.TemporaryDirectory() as temp_dir:\n            temp_path = Path(temp_dir)\n\n            try:\n                with zipfile.ZipFile(self.original_docx, \"r\") as zip_ref:\n                    zip_ref.extractall(temp_path)\n            except Exception as e:\n                print(f\"FAILED - Error unpacking original docx: {e}\")\n                return False\n\n            original_file = temp_path / \"word\" / \"document.xml\"\n            if not original_file.exists():\n                print(\n                    f\"FAILED - Original document.xml not found in {self.original_docx}\"\n                )\n                return False\n\n            try:\n                import xml.etree.ElementTree as ET\n\n                modified_tree = ET.parse(modified_file)\n                modified_root = modified_tree.getroot()\n                original_tree = ET.parse(original_file)\n                original_root = original_tree.getroot()\n            except ET.ParseError as e:\n                print(f\"FAILED - Error parsing XML files: {e}\")\n                return False\n\n            self._remove_author_tracked_changes(original_root)\n            self._remove_author_tracked_changes(modified_root)\n\n            modified_text = self._extract_text_content(modified_root)\n            original_text = self._extract_text_content(original_root)\n\n            if modified_text != original_text:\n                error_message = self._generate_detailed_diff(\n                    original_text, modified_text\n                )\n                print(error_message)\n                return False\n\n            if self.verbose:\n                print(f\"PASSED - All changes by {self.author} are properly tracked\")\n            return True\n\n    def _generate_detailed_diff(self, original_text, modified_text):\n        error_parts = [\n            f\"FAILED - Document text doesn't match after removing {self.author}'s tracked changes\",\n            \"\",\n            \"Likely causes:\",\n            \"  1. Modified text inside another author's <w:ins> or <w:del> tags\",\n            \"  2. Made edits without proper tracked changes\",\n            \"  3. Didn't nest <w:del> inside <w:ins> when deleting another's insertion\",\n            \"\",\n            \"For pre-redlined documents, use correct patterns:\",\n            \"  - To reject another's INSERTION: Nest <w:del> inside their <w:ins>\",\n            \"  - To restore another's DELETION: Add new <w:ins> AFTER their <w:del>\",\n            \"\",\n        ]\n\n        git_diff = self._get_git_word_diff(original_text, modified_text)\n        if git_diff:\n            error_parts.extend([\"Differences:\", \"============\", git_diff])\n        else:\n            error_parts.append(\"Unable to generate word diff (git not available)\")\n\n        return \"\\n\".join(error_parts)\n\n    def _get_git_word_diff(self, original_text, modified_text):\n        try:\n            with tempfile.TemporaryDirectory() as temp_dir:\n                temp_path = Path(temp_dir)\n\n                original_file = temp_path / \"original.txt\"\n                modified_file = temp_path / \"modified.txt\"\n\n                original_file.write_text(original_text, encoding=\"utf-8\")\n                modified_file.write_text(modified_text, encoding=\"utf-8\")\n\n                result = subprocess.run(\n                    [\n                        \"git\",\n                        \"diff\",\n                        \"--word-diff=plain\",\n                        \"--word-diff-regex=.\",  \n                        \"-U0\",  \n                        \"--no-index\",\n                        str(original_file),\n                        str(modified_file),\n                    ],\n                    capture_output=True,\n                    text=True,\n                )\n\n                if result.stdout.strip():\n                    lines = result.stdout.split(\"\\n\")\n                    content_lines = []\n                    in_content = False\n                    for line in lines:\n                        if line.startswith(\"@@\"):\n                            in_content = True\n                            continue\n                        if in_content and line.strip():\n                            content_lines.append(line)\n\n                    if content_lines:\n                        return \"\\n\".join(content_lines)\n\n                result = subprocess.run(\n                    [\n                        \"git\",\n                        \"diff\",\n                        \"--word-diff=plain\",\n                        \"-U0\",  \n                        \"--no-index\",\n                        str(original_file),\n                        str(modified_file),\n                    ],\n                    capture_output=True,\n                    text=True,\n                )\n\n                if result.stdout.strip():\n                    lines = result.stdout.split(\"\\n\")\n                    content_lines = []\n                    in_content = False\n                    for line in lines:\n                        if line.startswith(\"@@\"):\n                            in_content = True\n                            continue\n                        if in_content and line.strip():\n                            content_lines.append(line)\n                    return \"\\n\".join(content_lines)\n\n        except (subprocess.CalledProcessError, FileNotFoundError, Exception):\n            pass\n\n        return None\n\n    def _remove_author_tracked_changes(self, root):\n        ins_tag = f\"{{{self.namespaces['w']}}}ins\"\n        del_tag = f\"{{{self.namespaces['w']}}}del\"\n        author_attr = f\"{{{self.namespaces['w']}}}author\"\n\n        for parent in root.iter():\n            to_remove = []\n            for child in parent:\n                if child.tag == ins_tag and child.get(author_attr) == self.author:\n                    to_remove.append(child)\n            for elem in to_remove:\n                parent.remove(elem)\n\n        deltext_tag = f\"{{{self.namespaces['w']}}}delText\"\n        t_tag = f\"{{{self.namespaces['w']}}}t\"\n\n        for parent in root.iter():\n            to_process = []\n            for child in parent:\n                if child.tag == del_tag and child.get(author_attr) == self.author:\n                    to_process.append((child, list(parent).index(child)))\n\n            for del_elem, del_index in reversed(to_process):\n                for elem in del_elem.iter():\n                    if elem.tag == deltext_tag:\n                        elem.tag = t_tag\n\n                for child in reversed(list(del_elem)):\n                    parent.insert(del_index, child)\n                parent.remove(del_elem)\n\n    def _extract_text_content(self, root):\n        p_tag = f\"{{{self.namespaces['w']}}}p\"\n        t_tag = f\"{{{self.namespaces['w']}}}t\"\n\n        paragraphs = []\n        for p_elem in root.findall(f\".//{p_tag}\"):\n            text_parts = []\n            for t_elem in p_elem.findall(f\".//{t_tag}\"):\n                if t_elem.text:\n                    text_parts.append(t_elem.text)\n            paragraph_text = \"\".join(text_parts)\n            if paragraph_text:\n                paragraphs.append(paragraph_text)\n\n        return \"\\n\".join(paragraphs)\n\n\nif __name__ == \"__main__\":\n    raise RuntimeError(\"This module should not be run directly.\")\n"
  },
  {
    "path": "skills/xlsx/scripts/recalc.py",
    "content": "\"\"\"\nExcel Formula Recalculation Script\nRecalculates all formulas in an Excel file using LibreOffice\n\"\"\"\n\nimport json\nimport os\nimport platform\nimport subprocess\nimport sys\nfrom pathlib import Path\n\nfrom office.soffice import get_soffice_env\n\nfrom openpyxl import load_workbook\n\nMACRO_DIR_MACOS = \"~/Library/Application Support/LibreOffice/4/user/basic/Standard\"\nMACRO_DIR_LINUX = \"~/.config/libreoffice/4/user/basic/Standard\"\nMACRO_FILENAME = \"Module1.xba\"\n\nRECALCULATE_MACRO = \"\"\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE script:module PUBLIC \"-//OpenOffice.org//DTD OfficeDocument 1.0//EN\" \"module.dtd\">\n<script:module xmlns:script=\"http://openoffice.org/2000/script\" script:name=\"Module1\" script:language=\"StarBasic\">\n    Sub RecalculateAndSave()\n      ThisComponent.calculateAll()\n      ThisComponent.store()\n      ThisComponent.close(True)\n    End Sub\n</script:module>\"\"\"\n\n\ndef has_gtimeout():\n    try:\n        subprocess.run(\n            [\"gtimeout\", \"--version\"], capture_output=True, timeout=1, check=False\n        )\n        return True\n    except (FileNotFoundError, subprocess.TimeoutExpired):\n        return False\n\n\ndef setup_libreoffice_macro():\n    macro_dir = os.path.expanduser(\n        MACRO_DIR_MACOS if platform.system() == \"Darwin\" else MACRO_DIR_LINUX\n    )\n    macro_file = os.path.join(macro_dir, MACRO_FILENAME)\n\n    if (\n        os.path.exists(macro_file)\n        and \"RecalculateAndSave\" in Path(macro_file).read_text()\n    ):\n        return True\n\n    if not os.path.exists(macro_dir):\n        subprocess.run(\n            [\"soffice\", \"--headless\", \"--terminate_after_init\"],\n            capture_output=True,\n            timeout=10,\n            env=get_soffice_env(),\n        )\n        os.makedirs(macro_dir, exist_ok=True)\n\n    try:\n        Path(macro_file).write_text(RECALCULATE_MACRO)\n        return True\n    except Exception:\n        return False\n\n\ndef recalc(filename, timeout=30):\n    if not Path(filename).exists():\n        return {\"error\": f\"File {filename} does not exist\"}\n\n    abs_path = str(Path(filename).absolute())\n\n    if not setup_libreoffice_macro():\n        return {\"error\": \"Failed to setup LibreOffice macro\"}\n\n    cmd = [\n        \"soffice\",\n        \"--headless\",\n        \"--norestore\",\n        \"vnd.sun.star.script:Standard.Module1.RecalculateAndSave?language=Basic&location=application\",\n        abs_path,\n    ]\n\n    if platform.system() == \"Linux\":\n        cmd = [\"timeout\", str(timeout)] + cmd\n    elif platform.system() == \"Darwin\" and has_gtimeout():\n        cmd = [\"gtimeout\", str(timeout)] + cmd\n\n    result = subprocess.run(cmd, capture_output=True, text=True, env=get_soffice_env())\n\n    if result.returncode != 0 and result.returncode != 124:  \n        error_msg = result.stderr or \"Unknown error during recalculation\"\n        if \"Module1\" in error_msg or \"RecalculateAndSave\" not in error_msg:\n            return {\"error\": \"LibreOffice macro not configured properly\"}\n        return {\"error\": error_msg}\n\n    try:\n        wb = load_workbook(filename, data_only=True)\n\n        excel_errors = [\n            \"#VALUE!\",\n            \"#DIV/0!\",\n            \"#REF!\",\n            \"#NAME?\",\n            \"#NULL!\",\n            \"#NUM!\",\n            \"#N/A\",\n        ]\n        error_details = {err: [] for err in excel_errors}\n        total_errors = 0\n\n        for sheet_name in wb.sheetnames:\n            ws = wb[sheet_name]\n            for row in ws.iter_rows():\n                for cell in row:\n                    if cell.value is not None and isinstance(cell.value, str):\n                        for err in excel_errors:\n                            if err in cell.value:\n                                location = f\"{sheet_name}!{cell.coordinate}\"\n                                error_details[err].append(location)\n                                total_errors += 1\n                                break\n\n        wb.close()\n\n        result = {\n            \"status\": \"success\" if total_errors == 0 else \"errors_found\",\n            \"total_errors\": total_errors,\n            \"error_summary\": {},\n        }\n\n        for err_type, locations in error_details.items():\n            if locations:\n                result[\"error_summary\"][err_type] = {\n                    \"count\": len(locations),\n                    \"locations\": locations[:20],  \n                }\n\n        wb_formulas = load_workbook(filename, data_only=False)\n        formula_count = 0\n        for sheet_name in wb_formulas.sheetnames:\n            ws = wb_formulas[sheet_name]\n            for row in ws.iter_rows():\n                for cell in row:\n                    if (\n                        cell.value\n                        and isinstance(cell.value, str)\n                        and cell.value.startswith(\"=\")\n                    ):\n                        formula_count += 1\n        wb_formulas.close()\n\n        result[\"total_formulas\"] = formula_count\n\n        return result\n\n    except Exception as e:\n        return {\"error\": str(e)}\n\n\ndef main():\n    if len(sys.argv) < 2:\n        print(\"Usage: python recalc.py <excel_file> [timeout_seconds]\")\n        print(\"\\nRecalculates all formulas in an Excel file using LibreOffice\")\n        print(\"\\nReturns JSON with error details:\")\n        print(\"  - status: 'success' or 'errors_found'\")\n        print(\"  - total_errors: Total number of Excel errors found\")\n        print(\"  - total_formulas: Number of formulas in the file\")\n        print(\"  - error_summary: Breakdown by error type with locations\")\n        print(\"    - #VALUE!, #DIV/0!, #REF!, #NAME?, #NULL!, #NUM!, #N/A\")\n        sys.exit(1)\n\n    filename = sys.argv[1]\n    timeout = int(sys.argv[2]) if len(sys.argv) > 2 else 30\n\n    result = recalc(filename, timeout)\n    print(json.dumps(result, indent=2))\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "spec/agent-skills-spec.md",
    "content": "# Agent Skills Spec\n\nThe spec is now located at <https://agentskills.io/specification>\n"
  },
  {
    "path": "template/SKILL.md",
    "content": "---\nname: template-skill\ndescription: Replace with description of the skill and when Claude should use it.\n---\n\n# Insert instructions below\n"
  }
]