spire-presentation 10.6.4__py3-none-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (438) hide show
  1. spire/__init__.py +0 -0
  2. spire/presentation/ActiveSlide.py +207 -0
  3. spire/presentation/AnimateType.py +16 -0
  4. spire/presentation/AnimationCalculationMode.py +19 -0
  5. spire/presentation/AnimationColorBehavior.py +117 -0
  6. spire/presentation/AnimationColorDirection.py +18 -0
  7. spire/presentation/AnimationColorTransform.py +68 -0
  8. spire/presentation/AnimationColorspace.py +18 -0
  9. spire/presentation/AnimationCommandBehavior.py +71 -0
  10. spire/presentation/AnimationCommandType.py +19 -0
  11. spire/presentation/AnimationEffect.py +279 -0
  12. spire/presentation/AnimationEffectCollection.py +152 -0
  13. spire/presentation/AnimationEffectSubtype.py +65 -0
  14. spire/presentation/AnimationEffectType.py +166 -0
  15. spire/presentation/AnimationFilterEffect.py +74 -0
  16. spire/presentation/AnimationMotion.py +164 -0
  17. spire/presentation/AnimationMotionOrigin.py +18 -0
  18. spire/presentation/AnimationMotionPathEditMode.py +18 -0
  19. spire/presentation/AnimationProperty.py +138 -0
  20. spire/presentation/AnimationRepeatType.py +18 -0
  21. spire/presentation/AnimationRestartType.py +19 -0
  22. spire/presentation/AnimationRotation.py +68 -0
  23. spire/presentation/AnimationScale.py +96 -0
  24. spire/presentation/AnimationSet.py +35 -0
  25. spire/presentation/AnimationTriggerType.py +20 -0
  26. spire/presentation/AppException.py +14 -0
  27. spire/presentation/AudioCD.py +90 -0
  28. spire/presentation/AudioPlayMode.py +19 -0
  29. spire/presentation/AudioVolumeType.py +20 -0
  30. spire/presentation/AxisPositionType.py +19 -0
  31. spire/presentation/AxisType.py +18 -0
  32. spire/presentation/Backdrop.py +99 -0
  33. spire/presentation/BackgroundType.py +18 -0
  34. spire/presentation/BaseShapeLocking.py +24 -0
  35. spire/presentation/BehaviorAccumulateType.py +18 -0
  36. spire/presentation/BehaviorAdditiveType.py +21 -0
  37. spire/presentation/BevelColorType.py +17 -0
  38. spire/presentation/BevelPresetType.py +28 -0
  39. spire/presentation/BlackWhiteMode.py +27 -0
  40. spire/presentation/BlendEffect.py +63 -0
  41. spire/presentation/BlendMode.py +21 -0
  42. spire/presentation/BlindsSlideTransition.py +41 -0
  43. spire/presentation/BlurNode.py +41 -0
  44. spire/presentation/Camera.py +104 -0
  45. spire/presentation/Cell.py +526 -0
  46. spire/presentation/CellCollection.py +144 -0
  47. spire/presentation/CellRange.py +197 -0
  48. spire/presentation/CellRanges.py +110 -0
  49. spire/presentation/ChartAxis.py +843 -0
  50. spire/presentation/ChartBaseUnitType.py +19 -0
  51. spire/presentation/ChartCategory.py +34 -0
  52. spire/presentation/ChartCategoryCollection.py +174 -0
  53. spire/presentation/ChartCrossesType.py +18 -0
  54. spire/presentation/ChartData.py +218 -0
  55. spire/presentation/ChartDataLabel.py +475 -0
  56. spire/presentation/ChartDataLabelCollection.py +441 -0
  57. spire/presentation/ChartDataLabelPosition.py +25 -0
  58. spire/presentation/ChartDataPoint.py +232 -0
  59. spire/presentation/ChartDataPointCollection.py +72 -0
  60. spire/presentation/ChartDataTable.py +161 -0
  61. spire/presentation/ChartDisplayUnitType.py +26 -0
  62. spire/presentation/ChartEffectFormat.py +77 -0
  63. spire/presentation/ChartLegend.py +256 -0
  64. spire/presentation/ChartLegendPositionType.py +21 -0
  65. spire/presentation/ChartMarkerType.py +27 -0
  66. spire/presentation/ChartPlotArea.py +149 -0
  67. spire/presentation/ChartRotationThreeD.py +86 -0
  68. spire/presentation/ChartSeriesDataFormat.py +678 -0
  69. spire/presentation/ChartSeriesFormatCollection.py +212 -0
  70. spire/presentation/ChartShapeType.py +22 -0
  71. spire/presentation/ChartStyle.py +63 -0
  72. spire/presentation/ChartTextArea.py +182 -0
  73. spire/presentation/ChartType.py +96 -0
  74. spire/presentation/ChartWallsOrFloor.py +113 -0
  75. spire/presentation/ClickHyperlink.py +440 -0
  76. spire/presentation/ColorFormat.py +288 -0
  77. spire/presentation/ColorScheme.py +264 -0
  78. spire/presentation/ColorSchemeIndex.py +27 -0
  79. spire/presentation/ColorType.py +19 -0
  80. spire/presentation/ColumnCollection.py +57 -0
  81. spire/presentation/ColumnList.py +108 -0
  82. spire/presentation/Comment.py +175 -0
  83. spire/presentation/CommentAuthorCollection.py +57 -0
  84. spire/presentation/CommentAuthorList.py +137 -0
  85. spire/presentation/CommentCollection.py +57 -0
  86. spire/presentation/CommentList.py +180 -0
  87. spire/presentation/CommonBehavior.py +87 -0
  88. spire/presentation/CommonBehaviorCollection.py +182 -0
  89. spire/presentation/ConnectorLocking.py +14 -0
  90. spire/presentation/CoverSlideTransition.py +45 -0
  91. spire/presentation/CrossBetweenType.py +16 -0
  92. spire/presentation/DataLabelShapeType.py +30 -0
  93. spire/presentation/DefaultTextRangeProperties.py +567 -0
  94. spire/presentation/Direction.py +17 -0
  95. spire/presentation/DisplayBlanksAsType.py +18 -0
  96. spire/presentation/DocumentEditException.py +14 -0
  97. spire/presentation/DocumentReadException.py +14 -0
  98. spire/presentation/DocumentUnkownFormatException.py +14 -0
  99. spire/presentation/EffectDag.py +186 -0
  100. spire/presentation/EffectDataCollection.py +102 -0
  101. spire/presentation/EffectFillType.py +20 -0
  102. spire/presentation/EffectNode.py +14 -0
  103. spire/presentation/EffectStyle.py +58 -0
  104. spire/presentation/EffectStyleCollection.py +69 -0
  105. spire/presentation/EffectStyleList.py +71 -0
  106. spire/presentation/EmbedImageList.py +117 -0
  107. spire/presentation/ErrorBarSimpleType.py +16 -0
  108. spire/presentation/ErrorValueType.py +18 -0
  109. spire/presentation/ExtensionList.py +22 -0
  110. spire/presentation/Field.py +47 -0
  111. spire/presentation/FieldType.py +284 -0
  112. spire/presentation/FileFormat.py +42 -0
  113. spire/presentation/FillFormat.py +173 -0
  114. spire/presentation/FillFormatCollection.py +57 -0
  115. spire/presentation/FillFormatList.py +14 -0
  116. spire/presentation/FillFormatType.py +22 -0
  117. spire/presentation/FillListBase.py +69 -0
  118. spire/presentation/FillOverlayEffect.py +66 -0
  119. spire/presentation/FillStyleCollection.py +69 -0
  120. spire/presentation/FillStyleList.py +26 -0
  121. spire/presentation/FilterEffectSubtype.py +42 -0
  122. spire/presentation/FilterEffectType.py +34 -0
  123. spire/presentation/FilterEffectsType.py +16 -0
  124. spire/presentation/FilterRevealType.py +19 -0
  125. spire/presentation/FlythroughTransition.py +41 -0
  126. spire/presentation/FontAlignmentType.py +21 -0
  127. spire/presentation/FontCollectionIndex.py +18 -0
  128. spire/presentation/FontScheme.py +79 -0
  129. spire/presentation/FormatAndVersion.py +44 -0
  130. spire/presentation/FormatScheme.py +140 -0
  131. spire/presentation/FormatThreeD.py +81 -0
  132. spire/presentation/Geography.py +12 -0
  133. spire/presentation/GlitterTransition.py +41 -0
  134. spire/presentation/GlitterTransitionDirection.py +23 -0
  135. spire/presentation/GlowEffect.py +65 -0
  136. spire/presentation/GlowNode.py +42 -0
  137. spire/presentation/GradientFillFormat.py +147 -0
  138. spire/presentation/GradientShapeType.py +20 -0
  139. spire/presentation/GradientStop.py +48 -0
  140. spire/presentation/GradientStopCollection.py +57 -0
  141. spire/presentation/GradientStopData.py +43 -0
  142. spire/presentation/GradientStopDataCollection.py +100 -0
  143. spire/presentation/GradientStopList.py +183 -0
  144. spire/presentation/GradientStyle.py +21 -0
  145. spire/presentation/GraphicAnimation.py +56 -0
  146. spire/presentation/GraphicAnimationCollection.py +131 -0
  147. spire/presentation/GraphicBuildType.py +20 -0
  148. spire/presentation/GraphicFrame.py +217 -0
  149. spire/presentation/GraphicalNodeLocking.py +116 -0
  150. spire/presentation/GroupShape.py +75 -0
  151. spire/presentation/GroupShapeLocking.py +133 -0
  152. spire/presentation/HeaderType.py +20 -0
  153. spire/presentation/HistogramAxisFormat.py +30 -0
  154. spire/presentation/HyperlinkActionType.py +31 -0
  155. spire/presentation/IActivePresentation.py +27 -0
  156. spire/presentation/IActiveSlide.py +27 -0
  157. spire/presentation/IAudio.py +673 -0
  158. spire/presentation/IAudioData.py +85 -0
  159. spire/presentation/IAutoShape.py +560 -0
  160. spire/presentation/IChart.py +1010 -0
  161. spire/presentation/IChartAxis.py +864 -0
  162. spire/presentation/IChartEffectFormat.py +99 -0
  163. spire/presentation/IChartGridLine.py +371 -0
  164. spire/presentation/ICommentAuthor.py +107 -0
  165. spire/presentation/IDigitalSignature.py +93 -0
  166. spire/presentation/IDigitalSignatures.py +35 -0
  167. spire/presentation/IDocumentProperty.py +578 -0
  168. spire/presentation/IEmbedImage.py +493 -0
  169. spire/presentation/IErrorBarsFormat.py +140 -0
  170. spire/presentation/IImageData.py +123 -0
  171. spire/presentation/ILayout.py +120 -0
  172. spire/presentation/IMasterLayouts.py +60 -0
  173. spire/presentation/IMasterSlide.py +272 -0
  174. spire/presentation/INoteMasterSlide.py +195 -0
  175. spire/presentation/IOleObject.py +586 -0
  176. spire/presentation/IShape.py +631 -0
  177. spire/presentation/ISlide.py +767 -0
  178. spire/presentation/ISmartArt.py +114 -0
  179. spire/presentation/ISmartArtNode.py +238 -0
  180. spire/presentation/ISmartArtNodeCollection.py +144 -0
  181. spire/presentation/ITable.py +709 -0
  182. spire/presentation/ITextFrameProperties.py +459 -0
  183. spire/presentation/ITrendlineLabel.py +66 -0
  184. spire/presentation/ITrendlines.py +227 -0
  185. spire/presentation/IVideo.py +682 -0
  186. spire/presentation/ImageCollection.py +57 -0
  187. spire/presentation/ImageTransform.py +128 -0
  188. spire/presentation/ImageTransformBase.py +14 -0
  189. spire/presentation/ImageTransformEffectCollection.py +57 -0
  190. spire/presentation/ImportDataFormat.py +18 -0
  191. spire/presentation/InnerShadowEffect.py +98 -0
  192. spire/presentation/InnerShadowNode.py +65 -0
  193. spire/presentation/InsertPlaceholderType.py +22 -0
  194. spire/presentation/InteriorColorPattern.py +35 -0
  195. spire/presentation/InvXTransition.py +39 -0
  196. spire/presentation/KnownColors.py +156 -0
  197. spire/presentation/LRTransition.py +41 -0
  198. spire/presentation/LayoutProperty.py +123 -0
  199. spire/presentation/LegendEntry.py +29 -0
  200. spire/presentation/LegendEntryCollection.py +42 -0
  201. spire/presentation/LicenseProvider.py +112 -0
  202. spire/presentation/LightRig.py +95 -0
  203. spire/presentation/LightingDirectionType.py +24 -0
  204. spire/presentation/LineCapStyle.py +19 -0
  205. spire/presentation/LineDashStyleType.py +28 -0
  206. spire/presentation/LineEndLength.py +19 -0
  207. spire/presentation/LineEndType.py +22 -0
  208. spire/presentation/LineEndWidth.py +19 -0
  209. spire/presentation/LineFillFormat.py +123 -0
  210. spire/presentation/LineJoinType.py +19 -0
  211. spire/presentation/LineStyleCollection.py +69 -0
  212. spire/presentation/LineStyleList.py +69 -0
  213. spire/presentation/LineText.py +48 -0
  214. spire/presentation/LinearGradientFill.py +50 -0
  215. spire/presentation/LocaleFonts.py +89 -0
  216. spire/presentation/MasterSlideCollection.py +57 -0
  217. spire/presentation/MasterSlideList.py +126 -0
  218. spire/presentation/MasterTheme.py +91 -0
  219. spire/presentation/MetaCharacterType.py +21 -0
  220. spire/presentation/MotionCmdPath.py +87 -0
  221. spire/presentation/MotionCommandPathType.py +20 -0
  222. spire/presentation/MotionPath.py +98 -0
  223. spire/presentation/MotionPathPointsType.py +24 -0
  224. spire/presentation/NotesSlide.py +96 -0
  225. spire/presentation/NumberedBulletStyle.py +57 -0
  226. spire/presentation/OleObject.py +116 -0
  227. spire/presentation/OleObjectCollection.py +134 -0
  228. spire/presentation/OleObjectProperties.py +165 -0
  229. spire/presentation/OptionalBlackTransition.py +44 -0
  230. spire/presentation/Order.py +17 -0
  231. spire/presentation/OuterShadowEffect.py +202 -0
  232. spire/presentation/OuterShadowNode.py +139 -0
  233. spire/presentation/PageSlideCount.py +21 -0
  234. spire/presentation/ParagraphBuildType.py +23 -0
  235. spire/presentation/ParagraphCollection.py +100 -0
  236. spire/presentation/ParagraphList.py +172 -0
  237. spire/presentation/ParagraphProperties.py +532 -0
  238. spire/presentation/PatternFillFormat.py +106 -0
  239. spire/presentation/PatternFillType.py +71 -0
  240. spire/presentation/PdfConformanceLevel.py +22 -0
  241. spire/presentation/PenAlignmentType.py +18 -0
  242. spire/presentation/PictureData.py +61 -0
  243. spire/presentation/PictureFillFormat.py +251 -0
  244. spire/presentation/PictureFillType.py +17 -0
  245. spire/presentation/PictureShape.py +103 -0
  246. spire/presentation/PictureType.py +19 -0
  247. spire/presentation/Placeholder.py +87 -0
  248. spire/presentation/PlaceholderSize.py +19 -0
  249. spire/presentation/PlaceholderType.py +32 -0
  250. spire/presentation/PptObject.py +36 -0
  251. spire/presentation/Presentation.py +1288 -0
  252. spire/presentation/PresentationTranslator.py +31 -0
  253. spire/presentation/PresetCameraType.py +78 -0
  254. spire/presentation/PresetLightRigType.py +43 -0
  255. spire/presentation/PresetMaterialType.py +31 -0
  256. spire/presentation/PresetShadow.py +100 -0
  257. spire/presentation/PresetShadowNode.py +67 -0
  258. spire/presentation/PresetShadowValue.py +35 -0
  259. spire/presentation/ProjectionType.py +16 -0
  260. spire/presentation/PropertyValueType.py +19 -0
  261. spire/presentation/QuartileCalculation.py +17 -0
  262. spire/presentation/RectangleAlignment.py +25 -0
  263. spire/presentation/ReflectionEffect.py +281 -0
  264. spire/presentation/ReflectionNode.py +184 -0
  265. spire/presentation/RelativeRectangle.py +162 -0
  266. spire/presentation/RevealTransition.py +41 -0
  267. spire/presentation/RowList.py +108 -0
  268. spire/presentation/SaveToHtmlOption.py +31 -0
  269. spire/presentation/SaveToPdfOption.py +102 -0
  270. spire/presentation/SaveToPptxOption.py +31 -0
  271. spire/presentation/SchemeColor.py +33 -0
  272. spire/presentation/Section.py +173 -0
  273. spire/presentation/SectionList.py +187 -0
  274. spire/presentation/SequenceCollection.py +109 -0
  275. spire/presentation/Shape.py +616 -0
  276. spire/presentation/ShapeAdjust.py +58 -0
  277. spire/presentation/ShapeAdjustCollection.py +71 -0
  278. spire/presentation/ShapeAdjustmentList.py +44 -0
  279. spire/presentation/ShapeAlignment.py +23 -0
  280. spire/presentation/ShapeArrange.py +19 -0
  281. spire/presentation/ShapeBevelStyle.py +67 -0
  282. spire/presentation/ShapeCollection.py +70 -0
  283. spire/presentation/ShapeElementFillSource.py +22 -0
  284. spire/presentation/ShapeElementStrokeSource.py +18 -0
  285. spire/presentation/ShapeList.py +1071 -0
  286. spire/presentation/ShapeLocking.py +31 -0
  287. spire/presentation/ShapeNode.py +78 -0
  288. spire/presentation/ShapeStyle.py +202 -0
  289. spire/presentation/ShapeThreeD.py +179 -0
  290. spire/presentation/ShapeType.py +204 -0
  291. spire/presentation/ShredTransition.py +41 -0
  292. spire/presentation/SideDirectionTransition.py +45 -0
  293. spire/presentation/SimpleShapeBaseLocking.py +182 -0
  294. spire/presentation/SlideBackground.py +174 -0
  295. spire/presentation/SlideCollection.py +57 -0
  296. spire/presentation/SlideColorScheme.py +56 -0
  297. spire/presentation/SlideColorSchemeCollection.py +114 -0
  298. spire/presentation/SlideLayoutType.py +51 -0
  299. spire/presentation/SlideList.py +300 -0
  300. spire/presentation/SlideOrienation.py +17 -0
  301. spire/presentation/SlidePicture.py +94 -0
  302. spire/presentation/SlidePictureLocking.py +31 -0
  303. spire/presentation/SlideShowTransition.py +279 -0
  304. spire/presentation/SlideShowType.py +16 -0
  305. spire/presentation/SlideSize.py +96 -0
  306. spire/presentation/SlideSizeType.py +32 -0
  307. spire/presentation/SmartArtColorType.py +51 -0
  308. spire/presentation/SmartArtLayoutType.py +99 -0
  309. spire/presentation/SmartArtStyleType.py +27 -0
  310. spire/presentation/SoftEdgeEffect.py +44 -0
  311. spire/presentation/SoftEdgeNode.py +27 -0
  312. spire/presentation/SplitSlideTransition.py +46 -0
  313. spire/presentation/StripsSlideTransition.py +41 -0
  314. spire/presentation/SystemColorType.py +46 -0
  315. spire/presentation/TabAlignmentType.py +20 -0
  316. spire/presentation/TabData.py +61 -0
  317. spire/presentation/TabStop.py +71 -0
  318. spire/presentation/TabStopCollection.py +57 -0
  319. spire/presentation/TabStopList.py +123 -0
  320. spire/presentation/TableBorderType.py +27 -0
  321. spire/presentation/TableColumn.py +32 -0
  322. spire/presentation/TableRow.py +32 -0
  323. spire/presentation/TableRowCollection.py +57 -0
  324. spire/presentation/TableStylePreset.py +90 -0
  325. spire/presentation/TagCollection.py +71 -0
  326. spire/presentation/TagList.py +170 -0
  327. spire/presentation/TextAlignmentType.py +21 -0
  328. spire/presentation/TextAnchorType.py +23 -0
  329. spire/presentation/TextAnimation.py +78 -0
  330. spire/presentation/TextAnimationCollection.py +141 -0
  331. spire/presentation/TextAutofitType.py +19 -0
  332. spire/presentation/TextBulletType.py +20 -0
  333. spire/presentation/TextCapType.py +19 -0
  334. spire/presentation/TextCharacterProperties.py +647 -0
  335. spire/presentation/TextFont.py +92 -0
  336. spire/presentation/TextHighLightingOptions.py +52 -0
  337. spire/presentation/TextHorizontalOverflowType.py +18 -0
  338. spire/presentation/TextLineFormat.py +418 -0
  339. spire/presentation/TextLineFormatCollection.py +57 -0
  340. spire/presentation/TextLineFormatList.py +57 -0
  341. spire/presentation/TextLineStyle.py +21 -0
  342. spire/presentation/TextParagraph.py +103 -0
  343. spire/presentation/TextParagraphProperties.py +496 -0
  344. spire/presentation/TextRange.py +132 -0
  345. spire/presentation/TextRangeCollection.py +69 -0
  346. spire/presentation/TextRangeList.py +129 -0
  347. spire/presentation/TextShapeType.py +58 -0
  348. spire/presentation/TextStrikethroughType.py +19 -0
  349. spire/presentation/TextStyle.py +75 -0
  350. spire/presentation/TextUnderlineType.py +34 -0
  351. spire/presentation/TextVerticalOverflowType.py +19 -0
  352. spire/presentation/Theme.py +111 -0
  353. spire/presentation/TickLabelPositionType.py +19 -0
  354. spire/presentation/TickMarkType.py +19 -0
  355. spire/presentation/TileFlipMode.py +20 -0
  356. spire/presentation/TimeAnimationValue.py +73 -0
  357. spire/presentation/TimeAnimationValueCollection.py +58 -0
  358. spire/presentation/TimeLine.py +69 -0
  359. spire/presentation/TimeNode.py +50 -0
  360. spire/presentation/TimeNodeAudio.py +116 -0
  361. spire/presentation/TimeNodeMedia.py +24 -0
  362. spire/presentation/TimeNodePresetClassType.py +22 -0
  363. spire/presentation/TimeNodes.py +85 -0
  364. spire/presentation/Timing.py +229 -0
  365. spire/presentation/Transition.py +26 -0
  366. spire/presentation/TransitionCornerDirection.py +20 -0
  367. spire/presentation/TransitionDirection.py +18 -0
  368. spire/presentation/TransitionEightDirection.py +24 -0
  369. spire/presentation/TransitionFlythroughInOutDirection.py +19 -0
  370. spire/presentation/TransitionInOutDirection.py +18 -0
  371. spire/presentation/TransitionRevealLRDirection.py +19 -0
  372. spire/presentation/TransitionShredInOutDirection.py +19 -0
  373. spire/presentation/TransitionSideDirectionType.py +19 -0
  374. spire/presentation/TransitionSoundMode.py +18 -0
  375. spire/presentation/TransitionSpeed.py +19 -0
  376. spire/presentation/TransitionSplitDirection.py +19 -0
  377. spire/presentation/TransitionTwoDirection.py +17 -0
  378. spire/presentation/TransitionType.py +71 -0
  379. spire/presentation/TreeMapLabelOption.py +18 -0
  380. spire/presentation/TrendlinesType.py +19 -0
  381. spire/presentation/TriState.py +18 -0
  382. spire/presentation/UOPReader.py +24 -0
  383. spire/presentation/UOPWriter.py +24 -0
  384. spire/presentation/VerticalTextType.py +23 -0
  385. spire/presentation/VideoCollection.py +106 -0
  386. spire/presentation/VideoData.py +99 -0
  387. spire/presentation/VideoPlayMode.py +19 -0
  388. spire/presentation/WavAudioCollection.py +106 -0
  389. spire/presentation/WheelSlideTransition.py +41 -0
  390. spire/presentation/ZoomSlideTransition.py +44 -0
  391. spire/presentation/_Presentation.py +140 -0
  392. spire/presentation/__init__.py +536 -0
  393. spire/presentation/common/Boolean.py +194 -0
  394. spire/presentation/common/Byte.py +258 -0
  395. spire/presentation/common/Char.py +742 -0
  396. spire/presentation/common/Color.py +2189 -0
  397. spire/presentation/common/Common.py +163 -0
  398. spire/presentation/common/CultureInfo.py +567 -0
  399. spire/presentation/common/DateTime.py +1163 -0
  400. spire/presentation/common/Double.py +440 -0
  401. spire/presentation/common/EmfType.py +25 -0
  402. spire/presentation/common/Encoding.py +930 -0
  403. spire/presentation/common/FontStyle.py +27 -0
  404. spire/presentation/common/GraphicsUnit.py +29 -0
  405. spire/presentation/common/ICollection.py +73 -0
  406. spire/presentation/common/IDictionary.py +124 -0
  407. spire/presentation/common/IEnumerable.py +44 -0
  408. spire/presentation/common/IEnumerator.py +62 -0
  409. spire/presentation/common/IList.py +148 -0
  410. spire/presentation/common/Int16.py +274 -0
  411. spire/presentation/common/Int32.py +282 -0
  412. spire/presentation/common/Int64.py +258 -0
  413. spire/presentation/common/License.py +187 -0
  414. spire/presentation/common/PixelFormat.py +45 -0
  415. spire/presentation/common/Point.py +300 -0
  416. spire/presentation/common/PointF.py +276 -0
  417. spire/presentation/common/Rectangle.py +451 -0
  418. spire/presentation/common/RectangleF.py +438 -0
  419. spire/presentation/common/Regex.py +964 -0
  420. spire/presentation/common/RegexOptions.py +31 -0
  421. spire/presentation/common/Single.py +418 -0
  422. spire/presentation/common/Size.py +273 -0
  423. spire/presentation/common/SizeF.py +261 -0
  424. spire/presentation/common/SpireObject.py +81 -0
  425. spire/presentation/common/Stream.py +552 -0
  426. spire/presentation/common/String.py +1880 -0
  427. spire/presentation/common/TimeSpan.py +874 -0
  428. spire/presentation/common/UInt16.py +274 -0
  429. spire/presentation/common/UInt32.py +274 -0
  430. spire/presentation/common/UInt64.py +274 -0
  431. spire/presentation/common/__init__.py +383 -0
  432. spire/presentation/lib/Spire.Presentation.Base.dll +0 -0
  433. spire/presentation/lib/__init__.py +0 -0
  434. spire/presentation/lib/libSkiaSharp.dll +0 -0
  435. spire_presentation-10.6.4.dist-info/METADATA +138 -0
  436. spire_presentation-10.6.4.dist-info/RECORD +438 -0
  437. spire_presentation-10.6.4.dist-info/WHEEL +5 -0
  438. spire_presentation-10.6.4.dist-info/top_level.txt +1 -0
@@ -0,0 +1,138 @@
1
+ Metadata-Version: 2.1
2
+ Name: spire-presentation
3
+ Version: 10.6.4
4
+ Summary: A 100% standalone Power Point Python API for Processing Power Point Files
5
+ Home-page: https://www.e-iceblue.com
6
+ Author: E-iceblue
7
+ Author-email: sales@e-iceblue.com
8
+ License: UNKNOWN
9
+ Platform: UNKNOWN
10
+ Classifier: Programming Language :: Python :: 3.6
11
+ Classifier: License :: Free To Use But Restricted
12
+ Classifier: License :: Other/Proprietary License
13
+ Classifier: Operating System :: Microsoft :: Windows
14
+ Classifier: Operating System :: POSIX :: Linux
15
+ Classifier: Operating System :: Unix
16
+ Requires-Python: >=3.7
17
+ Description-Content-Type: text/markdown
18
+ Requires-Dist: plum-dispatch (==1.7.4)
19
+
20
+ # Independent PowerPoint Presentation Processing API for Python
21
+
22
+ [![Foo](https://i.imgur.com/dvNJk7D.png)](https://www.e-iceblue.com/Introduce/presentation-for-python.html)
23
+
24
+ [Product Page](https://www.e-iceblue.com/Introduce/presentation-for-python.html) | [Documentation](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/Spire.Presentation-for-Python-Program-Guide-Content.html) | [Examples](https://github.com/eiceblue/Spire.Presentation-for-Python) | [Forum](https://www.e-iceblue.com/forum/spire-presentation-f14.html) | [Temporary License](https://www.e-iceblue.com/TemLicense.html) | [Customized Demo](https://www.e-iceblue.com/Misc/customized-demo.html)
25
+
26
+ [Spire.Presentation for Python](https://www.e-iceblue.com/Introduce/presentation-for-python.html) is a powerful API for processing PowerPoint presentations in Python applications. It enables developers to create, edit, convert, and save presentations without Microsoft PowerPoint. With features like slide management, text and image manipulation, chart creation, and watermarking, Spire.Presentation for Python offers a comprehensive toolkit for efficient presentation processing.
27
+
28
+ It supports popular presentation file formats like PPT, PPS, PPTX, and PPSX, and allows easy conversion between formats. Developers can export presentations to images, PDF, HTML, XPS, and SVG files. With its user-friendly interface and extensive functionality, Spire.Presentation for Python empowers developers to enhance PowerPoint presentation capabilities in their Python applications effortlessly.
29
+
30
+ ## Core Features & Functionality
31
+
32
+ ### High-Quality PowerPoint Presentation Conversion
33
+ - [Convert PowerPoint presentations to PDF](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/Conversion/Python-Convert-PowerPoint-Presentation-to-PDF.html) while preserving the original layout and formatting
34
+ - [Export presentation slides to images](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/Conversion/Python-Convert-PowerPoint-to-Images-PNG-JPG-BMP-SVG.html) (PNG, JPEG, BMP, SVG, etc.)
35
+ - [Convert PowerPoint presentations to HTML files](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/Conversion/Python-Convert-PowerPoint-to-HTML.html) for web viewing
36
+ - Convert presentations to more formats such as ODT, PPS, XPS, etc.
37
+
38
+ ### Efficient PowerPoint Presentation Manipulation
39
+
40
+ - [Extract text from slides](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/Paragraph-and-Text/Python-Extract-Text-from-PowerPoint-Presentations.html)
41
+ - [Export images from slides](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/Image-and-Shapes/Python-Extract-Images-from-PowerPoint-Presentations.html)
42
+ - [Add text and image watermarks to presentations](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/Watermark/Python-Add-Text-or-Image-Watermarks-to-PowerPoint.html)
43
+ - [Embed or export audio and video files in presentations](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/Audio-and-Video/Python-Add-or-Extract-Audio-and-Video-from-PowerPoint-Documents.html)
44
+ - [Encrypt or decrypt PowerPoint presentations](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/Security/Python-Protect-or-Unprotect-PowerPoint-Presentations.html)
45
+ - [Work with SmartArt in presentations](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/SmartArt/Python-Create-Read-or-Delete-SmartArt-in-PowerPoint.html)
46
+ - [Create tables in presentations](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/Table/Python-Create-or-Edit-Tables-in-PowerPoint-Presentations.html)
47
+ - [Change the slide size](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/Document-Operation/Python-Change-Slide-Size-in-PowerPoint.html) of presentations
48
+ - [Create charts in presentations](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/Chart/Python-Create-Column-Charts-in-PowerPoint.html)
49
+ - [Add or remove slides in presentations](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/Document-Operation/Python-Add-or-Delete-Slides-in-PowerPoint-Presentations.html)
50
+
51
+ ### Extensive Presentation Version Support
52
+
53
+ - PPT - PowerPoint Presentation 97-2003
54
+ - PPS - PowerPoint SlideShow 97-2003
55
+ - PPTX - PowerPoint Presentation 2007/2010/2013/2016/2019
56
+ - PPSX - PowerPoint SlideShow 2007, 2010
57
+
58
+ ## Code Examples
59
+
60
+ ### [Convert a PowerPoint presentation to PDF](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/Conversion/Python-Convert-PowerPoint-Presentation-to-PDF.html)
61
+ ```python
62
+ from spire.presentation import *
63
+ from spire.presentation.common import *
64
+
65
+ # Create an object of Presentation class
66
+ presentation = Presentation()
67
+
68
+ # Load a presentation file
69
+ presentation.LoadFromFile("Sample.pptx")
70
+
71
+ # Convert the presentation file to PDF and save it
72
+ presentation.SaveToFile("output/PresentationToPDF.pdf", FileFormat.PDF)
73
+ presentation.Dispose()
74
+ ```
75
+
76
+ ### [Convert a PowerPoint presentation to images](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/Conversion/Python-Convert-PowerPoint-to-Images-PNG-JPG-BMP-SVG.html)
77
+ ```python
78
+ from spire.presentation.common import *
79
+ from spire.presentation import *
80
+
81
+ # Create a Presentation object
82
+ presentation = Presentation()
83
+
84
+ # Load a PowerPoint presentation
85
+ presentation.LoadFromFile("Sample.pptx")
86
+
87
+ # Loop through the slides in the presentation
88
+ for i, slide in enumerate(presentation.Slides):
89
+ # Specify the output file name
90
+ fileName ="Output/ToImage_ + str(i) + ".png"
91
+ # Save each slide as a PNG image
92
+ image = slide.SaveAsImage()
93
+ image.Save(fileName)
94
+ image.Dispose()
95
+
96
+ presentation.Dispose()
97
+ ```
98
+
99
+ ### [Encrypt a PowerPoint presentation](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/Security/Python-Protect-or-Unprotect-PowerPoint-Presentations.html)
100
+ ```python
101
+ from spire.presentation import *
102
+
103
+ # Create a Presentation object
104
+ presentation = Presentation()
105
+ # Load a PowerPoint presentation
106
+ presentation.LoadFromFile("Sample.pptx")
107
+
108
+ # Encrypy the presentation with a password
109
+ presentation.Encrypt("your password")
110
+
111
+ # Save the resulting presentation
112
+ presentation.SaveToFile("Encrypted.pptx", FileFormat.Pptx2016)
113
+ presentation.Dispose()
114
+ ```
115
+
116
+ ### [Extract images from a PowerPoint presentation](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/Image-and-Shapes/Python-Extract-Images-from-PowerPoint-Presentations.html)
117
+ ```python
118
+ from spire.presentation.common import *
119
+ from spire.presentation import *
120
+
121
+ # Create a Presentation instance
122
+ ppt = Presentation()
123
+
124
+ # Load a PowerPoint document
125
+ ppt.LoadFromFile("sample.pptx")
126
+
127
+ # Iterate through all images in the document
128
+ for i, image in enumerate(ppt.Images):
129
+
130
+ # Extract the images
131
+ ImageName = "ExtractImage/Images_"+str(i)+".png"
132
+ image.Image.Save(ImageName)
133
+
134
+ ppt.Dispose()
135
+ ```
136
+
137
+ [Product Page](https://www.e-iceblue.com/Introduce/presentation-for-python.html) | [Documentation](https://www.e-iceblue.com/Tutorials/Python/Spire.Presentation-for-Python/Program-Guide/Spire.Presentation-for-Python-Program-Guide-Content.html) | [Examples](https://github.com/eiceblue/Spire.Presentation-for-Python) | [Forum](https://www.e-iceblue.com/forum/spire-presentation-f14.html) | [Temporary License](https://www.e-iceblue.com/TemLicense.html) | [Customized Demo](https://www.e-iceblue.com/Misc/customized-demo.html)
138
+
@@ -0,0 +1,438 @@
1
+ spire/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ spire/presentation/ActiveSlide.py,sha256=diCJZKVIEED0_QLGPqnGOB6mnxU-r7j1YWqe4gD1cbo,6899
3
+ spire/presentation/AnimateType.py,sha256=wpz65kZoOrKl7wcK8TFCDL9kDuDzmii3VC6di17dqxI,305
4
+ spire/presentation/AnimationCalculationMode.py,sha256=5UzWx1ZZ6t2644s4Fe5jhtQn-mp-mMKVzkmz8PkEsYw,423
5
+ spire/presentation/AnimationColorBehavior.py,sha256=Ug_PPAXKZre0czlfiMMioXkMG62E_DNfKxYxBPlQxc8,4664
6
+ spire/presentation/AnimationColorDirection.py,sha256=1j8trSvJ_9rC39V3Olrp7YhGEcGLHpRQcwAdrKWxbWA,400
7
+ spire/presentation/AnimationColorTransform.py,sha256=wSC85URfQhU9jUOqHbj_SIWjLFnHxjKbbhlGp6ueuzk,2438
8
+ spire/presentation/AnimationColorspace.py,sha256=Vk6g6zvRUKlfYcA_NmUqR1J9_GlbctwBf6Fw0IH9i3Q,399
9
+ spire/presentation/AnimationCommandBehavior.py,sha256=C2J05EXFY7s32-acYmVw7FYnoxRrobPBBTFJgm88CMQ,2485
10
+ spire/presentation/AnimationCommandType.py,sha256=cXDzQVGW-yul_OfGLgVYP0i0ET1UjHdrEOnO22FQgyE,427
11
+ spire/presentation/AnimationEffect.py,sha256=UVGkfdmKcDAgblI_AQbS-fNai37Rhdnrtf7ClMrDNZs,10564
12
+ spire/presentation/AnimationEffectCollection.py,sha256=sA-BrxXaNix2zvheV-jtOP_GezedO17AfcZBy1COl-o,5338
13
+ spire/presentation/AnimationEffectSubtype.py,sha256=ExThLyFKxbE5zFXVRfjixJGQudJ_Yu4_3JRia88Eklo,1334
14
+ spire/presentation/AnimationEffectType.py,sha256=VMjl9FbRjKBclAwraW-nwfzr7kDisVCbItAcrFbOFLw,3577
15
+ spire/presentation/AnimationFilterEffect.py,sha256=_xeIWyZBqcM-KLIhwsTdAR3LB7cow_uheMlK1TlFytw,2849
16
+ spire/presentation/AnimationMotion.py,sha256=xaiQfEmyxVwQvwBN5Pum7SJ-ETJAm6mdPSKG3IeG26Q,5609
17
+ spire/presentation/AnimationMotionOrigin.py,sha256=rnxxD3eLHCt0IsVzvY9AEoCKTGzkAT4WFXT6TSzRBCQ,403
18
+ spire/presentation/AnimationMotionPathEditMode.py,sha256=5UXETSKe5GuarRvwrwr72YGXOB8qXYPFw2GrJZ6txz4,431
19
+ spire/presentation/AnimationProperty.py,sha256=aqRsszA0wJOonNtg_i4DuFd-zMDL4M690Kav2ZWvYMo,5226
20
+ spire/presentation/AnimationRepeatType.py,sha256=7tbdlhsYGjzny9boegUMSFzh6zNhsmZeFg47tEMsrJY,405
21
+ spire/presentation/AnimationRestartType.py,sha256=1fHtrAezrSwCm9jh9bl8o_ey2QWotflVbLJUa8vE3KM,457
22
+ spire/presentation/AnimationRotation.py,sha256=EMpPZrF9ByBgFbGNcHSXk95btplu1XukCHLg5lLmdm0,2340
23
+ spire/presentation/AnimationScale.py,sha256=FLWyV_7ssqRFa1B-hcA7BPv67wPxmBFdGQwYArxK6Xw,3266
24
+ spire/presentation/AnimationSet.py,sha256=2tJsKFmF4HH4f6j-qv2SmUQIWoosd2Eh0MQgEy2-IdA,1106
25
+ spire/presentation/AnimationTriggerType.py,sha256=y2g9tPCFk552qiRzL8mdvY_brxGcs1x81nB4GrbsAkk,453
26
+ spire/presentation/AppException.py,sha256=cGzo1-8KkoZ8Qxv9LR8FcAHcxN93fbE3cmq8xBADdL0,355
27
+ spire/presentation/AudioCD.py,sha256=pCzI69D4zaNnEpE5btIIeBsgoo64tjXyIisy4eejEXc,3018
28
+ spire/presentation/AudioPlayMode.py,sha256=TYJZ-ZDl-jCcIZb8XY-Fgk4TY5XXPHf_dlPO_fOcUyg,404
29
+ spire/presentation/AudioVolumeType.py,sha256=GsXKwnlWaGVoebTysYQ9TGsJKB7xiAxmLFrBFMIZk0o,401
30
+ spire/presentation/AxisPositionType.py,sha256=uIPhqI5EAAoon2LT91xaBjvaQelAItOYttwqnxjn5ks,393
31
+ spire/presentation/AxisType.py,sha256=D1GDmB9AfEgZnH7ZC8XrEk1EOox-a7JrsMvmaaKGvyk,366
32
+ spire/presentation/Backdrop.py,sha256=GvpomU9eRVD4xFjsC6oNvIkTEG0TfMcWmJJC6mDG9M0,3324
33
+ spire/presentation/BackgroundType.py,sha256=3LiwdF7NizVtbnXDE3924nTmxnPKv0IOWEW8hFMlqOM,390
34
+ spire/presentation/BaseShapeLocking.py,sha256=csXf7mbnmNzWdHWQweY5Natsfn2o_roV2kSSrpn0PUg,676
35
+ spire/presentation/BehaviorAccumulateType.py,sha256=8DvpfB-aBRNUJGiY4AmfXMQVMFOlc9DviNIxTrngDrk,415
36
+ spire/presentation/BehaviorAdditiveType.py,sha256=ICOVfZFkxFeN4GusuxO646Jdl_TssFUrmpQYts5MdqA,451
37
+ spire/presentation/BevelColorType.py,sha256=xRCLw08b9EO_Nj_PrrZulk4fn_OPl73lIg8EHA7fIUE,376
38
+ spire/presentation/BevelPresetType.py,sha256=XkU6Z-5MbA2TBLrOLsVZKU_Ne0RQG974nVGQjQ7kM-Y,553
39
+ spire/presentation/BlackWhiteMode.py,sha256=xqdtbgcfD6DBLR9g1K2IJpvKNd7Z-XjaJAKD6OnPlMA,578
40
+ spire/presentation/BlendEffect.py,sha256=e3lNpVvLttNggwroQLr0a0d2AqJrRSXXi4e91xyOR2Q,2173
41
+ spire/presentation/BlendMode.py,sha256=U3w6prHamkjk26yE5k8b4Iu1RDYPOoO9RqlDNU3XqAQ,418
42
+ spire/presentation/BlindsSlideTransition.py,sha256=kVQjPL-f09N5FWNP-9kR_ctAyyFZ3Hjt_PbN24CQWTU,1341
43
+ spire/presentation/BlurNode.py,sha256=2RyWDnMOuXSu7_wJGakhKuQJvohGRPfVHReLUZr43TI,1280
44
+ spire/presentation/Camera.py,sha256=uFC0IaCG67mLLR_mFYBKvr1LeFzFL30f6keOl9o-jJU,3515
45
+ spire/presentation/Cell.py,sha256=a9BCXscPpFKwkljZFeIYFsp6Wd2plDAtExeWWTB4SRA,18266
46
+ spire/presentation/CellCollection.py,sha256=ryDNRTg9YCV34jq2khRlyKoJgSIZ0pRlePqvYhoprLw,5003
47
+ spire/presentation/CellRange.py,sha256=VBIWmSk_U-v8u2Zao9bOQbB05iM-HZRCxbJkTCRu0FU,6433
48
+ spire/presentation/CellRanges.py,sha256=fJG2pfIz-QGQFcXBhX6Z4XLMvvAU583ZGxTT-xvzF9U,3736
49
+ spire/presentation/ChartAxis.py,sha256=UmGhw2GN5OzcVnFhjnYXEPnHTI5OhwQGb-AmFwNih7w,31352
50
+ spire/presentation/ChartBaseUnitType.py,sha256=SrMcaObAjlbE5LG2vHv_8XWM5Ql4T2YQTh0gOcFUtDs,413
51
+ spire/presentation/ChartCategory.py,sha256=jj7YCduftWaTdsTvauKU6JnukDV7rSnBi2RpS1YfK-o,1044
52
+ spire/presentation/ChartCategoryCollection.py,sha256=4Shdo3C7LNNp-K8nqQNqtFRGlvVdCG4JGp6rvKvOmSE,6465
53
+ spire/presentation/ChartCrossesType.py,sha256=BAB_hazEwLEpEAo2BOXv10I4zbv3fDP1I2pQQn7IHcQ,398
54
+ spire/presentation/ChartData.py,sha256=7vwVQnWR6tLBtiWwc1y3UUnLOai6BWFwol9vGtu5xWo,7108
55
+ spire/presentation/ChartDataLabel.py,sha256=VDMHloInxNRss6YeodNPo0R4da2XFAEa3EAlkzB9Q50,18128
56
+ spire/presentation/ChartDataLabelCollection.py,sha256=UpnMcxh2C4TlGcwoEA1cm10pGYkuH-MseYNyJmSr7pw,17835
57
+ spire/presentation/ChartDataLabelPosition.py,sha256=lF3wojrolK1Y4fD2nakOv7M_t5V8YWxJKSeIvV97PpA,510
58
+ spire/presentation/ChartDataPoint.py,sha256=yfrAU4JXzCel0ISK4SRFTV89QXkFiSVrzDIfWG21GK4,8450
59
+ spire/presentation/ChartDataPointCollection.py,sha256=HxM7pzHehSOfiuT0OeQFykOmvhJvDXrUimm72PA3W_8,2497
60
+ spire/presentation/ChartDataTable.py,sha256=2TYz1EZcHe3EUAswCBxOxqg5JSnLeaKKX_JSV2WUq30,5571
61
+ spire/presentation/ChartDisplayUnitType.py,sha256=nY7IS50U5Iso0yBhrqlr6vm2rk7VmHv3ctSs74OFtts,576
62
+ spire/presentation/ChartEffectFormat.py,sha256=k3PG_zC0pLwbK6j0-S3GP3fkdMGzCpSRxpJnSY26NSU,2477
63
+ spire/presentation/ChartLegend.py,sha256=Ojn19GQO_7BfPyOegEyBAF2kNW5jiNg5qIKYtR-c4Sg,8726
64
+ spire/presentation/ChartLegendPositionType.py,sha256=ZYBiZsWA_0Jgndb_WdQy6qS0n6jLPBIfnNm0m9nE3zk,446
65
+ spire/presentation/ChartMarkerType.py,sha256=UWfTBnehRomNm-rOSgKeZX4jAZyAslVwEZQ26FK6Ecs,510
66
+ spire/presentation/ChartPlotArea.py,sha256=eW8n4j0E4MXSB4VmvpSPmdlEohwtyXMw05EDST18R_I,5103
67
+ spire/presentation/ChartRotationThreeD.py,sha256=XkilhTDgPYcP7_L10ZNyXOZNicXQJC5krv6XpJfDHCQ,3189
68
+ spire/presentation/ChartSeriesDataFormat.py,sha256=Y7Tn-_WCfXTUpH3zdZoGn7cWRs--x-8AE0yWqeocer4,26945
69
+ spire/presentation/ChartSeriesFormatCollection.py,sha256=cu0h_mPfOXq9-VFbAg5ktC0ENroC3jUg_8hhcA_S2dE,8043
70
+ spire/presentation/ChartShapeType.py,sha256=rm0CtnocEySNi3b69Xzii0Wor2hXj5agDjptUiwiiHw,454
71
+ spire/presentation/ChartStyle.py,sha256=pmuX9gripljqonocV5Vx-lqmroHoD1r0rfdvcr-UF_I,1168
72
+ spire/presentation/ChartTextArea.py,sha256=QOChfzn6FmN-zMHRWgmOiRvw_3pJcol4yb2f1Qezuls,6221
73
+ spire/presentation/ChartType.py,sha256=gNtXTJEZhEjCugQXo76RidOA9SF1FXUaL_Fg2yqZAFk,2452
74
+ spire/presentation/ChartWallsOrFloor.py,sha256=1wBDK0kZq2uI0AqtGL9zqdwROklKDYYG13qLkadNIBM,3801
75
+ spire/presentation/ClickHyperlink.py,sha256=OcGnRmlD7XpHTIgqseWWMCh7URVCbiTAJrn7CBmPGek,15679
76
+ spire/presentation/ColorFormat.py,sha256=DEe5oTB1fWs3CBWm5b8pFRW2y17MvL94mDRisxnMLls,10208
77
+ spire/presentation/ColorScheme.py,sha256=BYgphagHHwgdBqE05MrFSi2tusRKuHsONvTRjcQ0m7M,8827
78
+ spire/presentation/ColorSchemeIndex.py,sha256=Dfw5hOZ-nTwEB905SLxffiP42T2qGWtqNVqysGf4NjY,555
79
+ spire/presentation/ColorType.py,sha256=j2SppZGz4tQ2a8T2DDWes1mD0q3oiq4mmTMtANWMN0s,353
80
+ spire/presentation/ColumnCollection.py,sha256=FiO0c7vcrhR6WtrR8MaxSsPzLgo8AzpspVfz4y7N0UE,1886
81
+ spire/presentation/ColumnList.py,sha256=nLwI0M8VTTZ3Yjrl45Cz3KGwq3vBONpFD80AccTI4FM,3655
82
+ spire/presentation/Comment.py,sha256=BRFdj_2MN1VJIvWvvIFBznsqZ5veA4iFugcedPDC9a4,5897
83
+ spire/presentation/CommentAuthorCollection.py,sha256=7blGZGrp7zsD4U6sJQX3wG4fvuGVu605EpqPXUzwmWQ,1955
84
+ spire/presentation/CommentAuthorList.py,sha256=rzhR1x42M0zZyRKa_PGko4ssZ2_dsEWKR1EoJ-AQ_Lo,4874
85
+ spire/presentation/CommentCollection.py,sha256=oQpwzlCKUZF1m3OXl6tlkeqJE0PSk_DKNLCL_cf19Yc,1902
86
+ spire/presentation/CommentList.py,sha256=NnxssguMaBKOISs_JyesbfiUq6AWrLfuUijPof6_k8o,6337
87
+ spire/presentation/CommonBehavior.py,sha256=xVQJ-TKuDO9xzWpSJVcUpxgljjBp3WL4htD-MeAVK9w,3145
88
+ spire/presentation/CommonBehaviorCollection.py,sha256=S-Z1kUr5KH_koWHNEe74kcWQUocH8RPCZdpkQfWXgkI,7081
89
+ spire/presentation/ConnectorLocking.py,sha256=JFddg7hsDTzPuy4tCb2QmOjbdFqNeRFpxQBttroyQZo,390
90
+ spire/presentation/CoverSlideTransition.py,sha256=pnCUsfqIy792wnUjaqYi5T8o9302zwbBGRqxGrCdYkY,1489
91
+ spire/presentation/CrossBetweenType.py,sha256=h33Ps9kvJQnS9yPhz2nU7rdpOVbIz9pZLv747sz5ohI,326
92
+ spire/presentation/DataLabelShapeType.py,sha256=9Kqw-NYmMTJLemCc-DoS-lclBVYHukexSDjRdLoc7yc,703
93
+ spire/presentation/DefaultTextRangeProperties.py,sha256=QcCWw_9ZzOvZjUzQ0UzRajilwxQ_kcNtJftTK4sD0jU,23383
94
+ spire/presentation/Direction.py,sha256=N4gSyZPDx_iel7nQEDrKA3dovtj06XgO-KpdZsfm2ls,375
95
+ spire/presentation/DisplayBlanksAsType.py,sha256=CTFcaiRRymJaNgGISrnqJ79R7qf2okKn8aUtotR5dV4,395
96
+ spire/presentation/DocumentEditException.py,sha256=efXnUmrVKRZNrZ09xh7kQwHG5wbIbsTmZIIAfpnoWfE,390
97
+ spire/presentation/DocumentReadException.py,sha256=nBPwYsQgXihq4RPjSWv-aC2pkzgo6EetXah_F-ykkrw,356
98
+ spire/presentation/DocumentUnkownFormatException.py,sha256=utpJfM8j7f9reu62BpTBFkS5vQtx9uxyXYXvnHj5dhM,380
99
+ spire/presentation/EffectDag.py,sha256=fxWsE_zB-9uFQXCiYPUQXPIQp-LYOk8MeMh6FFjruUs,6552
100
+ spire/presentation/EffectDataCollection.py,sha256=2ukn_7VZ3oE6csn4rXzCEBb9Qo4IaLW3LM11c4W3KMI,3545
101
+ spire/presentation/EffectFillType.py,sha256=3FtyeryxLH6CF6ZMg8e1r6ClrHVOcgsgsRvBqyxEGbw,406
102
+ spire/presentation/EffectNode.py,sha256=PQDXVs3Z-xJReb6GtoTY2Jsuvn5KVlG0p09Slt234Ac,364
103
+ spire/presentation/EffectStyle.py,sha256=M-uusqy3Ud6K7gtj1D9YSEwwClWjwzrbhQ3MGNBQ1sc,1793
104
+ spire/presentation/EffectStyleCollection.py,sha256=QfYg780FrAdIa2y-MsHw9KVpa0pIYzYu6eqgYlBmsBM,2331
105
+ spire/presentation/EffectStyleList.py,sha256=uLenqXCCqzTQUKwMAh0bChkv6HjI8KugMS5nzxE6RB4,2312
106
+ spire/presentation/EmbedImageList.py,sha256=WHRlVLn7G3zgefXNGWA2r2do5roPkb_mxP5UZJMK-V0,4191
107
+ spire/presentation/ErrorBarSimpleType.py,sha256=rK2nIsbaY4GzFBoeT1bL275S1jXUSGNba5qRMKONh1c,312
108
+ spire/presentation/ErrorValueType.py,sha256=BdSi2SoDC8NT6BvySBYb6HS856FZnMRu6vsuOfm0qaA,380
109
+ spire/presentation/ExtensionList.py,sha256=ZzTEmZ2IC73K3ExAgOCGOCT3AGv9fJdt9WIsEgzm2Vw,581
110
+ spire/presentation/Field.py,sha256=8GhvmM7-bOQgmksTTN4KLd0zoZLjKNq0ii-ECT704gg,1347
111
+ spire/presentation/FieldType.py,sha256=J7OgeVP3sh7UrCqzU_dJGUGlhiBRasTKvlxTL7dEq3o,8977
112
+ spire/presentation/FileFormat.py,sha256=R2Fk5eGR7F9eadEH4apG6BpDGOFYAPdkmRt4ACQnU6Y,759
113
+ spire/presentation/FillFormat.py,sha256=t0yGPMeZYBT_lBQ3lrnRy6W7A5_8VJch2hTOlhNlUac,6041
114
+ spire/presentation/FillFormatCollection.py,sha256=hkMVX8bZee-1M86vCbWZteNyZfAsKupuqxUFixh0EmY,1941
115
+ spire/presentation/FillFormatList.py,sha256=nY4Lg920mg16XIBQ0XBZkKkt3AuIP70Qc9pxcisr6d4,360
116
+ spire/presentation/FillFormatType.py,sha256=kMAfIh7CCq6WfOUx2P5Mx1u0sg-92kiaUGgeuc9EE7M,448
117
+ spire/presentation/FillListBase.py,sha256=OC5eYkRwPhpXT8GyPQXveTQOg1j8L3RQRGjczO0x3nM,2239
118
+ spire/presentation/FillOverlayEffect.py,sha256=f0APU9yno_wutHaa0YOfdlHvxqc1snnZYLwsytrNrFk,2204
119
+ spire/presentation/FillStyleCollection.py,sha256=D--bfDBnBo4kPKvtgYfYSlP8koUNW7POnURjbs5nqNI,2305
120
+ spire/presentation/FillStyleList.py,sha256=w7QbyrN3ONMrAuTBnVKelSYGxqKc52DZM5FqVDcPcTc,715
121
+ spire/presentation/FilterEffectSubtype.py,sha256=APpxonYS-jdGae0INZSEE94Axgcp9X26ZM9r3ueBtvE,823
122
+ spire/presentation/FilterEffectType.py,sha256=j6hHd0-r4WhfYA1REImS2WhG2eKGalYbXZDPXiZDeTQ,648
123
+ spire/presentation/FilterEffectsType.py,sha256=dszFyhkBk6n0QaQqUmP89PIykUuW07Pb7AkfyKsY8yQ,320
124
+ spire/presentation/FilterRevealType.py,sha256=IhKHeIoEm-JINw91E71BS7uK8ckJShBRgFKq4ZeFCA4,395
125
+ spire/presentation/FlythroughTransition.py,sha256=8IDEVbCHoe7p82yaw1Z6p6Udi3c3JW-W44r8zeR01b4,1377
126
+ spire/presentation/FontAlignmentType.py,sha256=eX6A8hLJgXjpwnt8Ms1QyoiRWP6HsIagnytmTGnNp_A,434
127
+ spire/presentation/FontCollectionIndex.py,sha256=mMnvqbylmKXCegBrTFdFSqy6R__7d8z-cfyJKFxxcko,393
128
+ spire/presentation/FontScheme.py,sha256=2Vjc8AYyrbz6SaUbpS2laUro4d8e3ZVwfjSY2Q5AIr0,2437
129
+ spire/presentation/FormatAndVersion.py,sha256=WRinabz9Vyrrh2Fv6zxW_WJD73vZ_wLXnDrB9-Zh_Ig,863
130
+ spire/presentation/FormatScheme.py,sha256=oWLcOmqAerx4_LMua3TMQvo2s4l8gm8QtFjW_8Jtxa4,4736
131
+ spire/presentation/FormatThreeD.py,sha256=Br2808HFU4wr2VFC6XElA6gBq1xjrQSkm62DvaP-HQg,2606
132
+ spire/presentation/Geography.py,sha256=VtV5vIVgMVMu0Tg3dWRZOTd44vXbZFPWaxExFYV2Ibg,267
133
+ spire/presentation/GlitterTransition.py,sha256=GAw8BR8Gizijxn-K3QBL-3SrAYMTNLuHk9Rggj1p-4k,1326
134
+ spire/presentation/GlitterTransitionDirection.py,sha256=cknHORMLEGi1gj9j8UP0FFl7bsZkKJy9RsvkManiI9I,559
135
+ spire/presentation/GlowEffect.py,sha256=elPLwbsoLGNbkHqYVetnJY0idwivKtsBfESks8PHDQI,2015
136
+ spire/presentation/GlowNode.py,sha256=_AkidB_j46ndUCgUjoMcvHaNKwwb4N4n807G4Cr40TQ,1159
137
+ spire/presentation/GradientFillFormat.py,sha256=i6kw9oBVqZS8-Lwf-xdw1zLNT8WAtrZDNqmFfnaj6iQ,5713
138
+ spire/presentation/GradientShapeType.py,sha256=uPYbaPdEtJLd1Up-FerO9c8B9fww_bgu56ANWXz5lxc,425
139
+ spire/presentation/GradientStop.py,sha256=RQML_w2ci23qCTP1u8nt9z4K_WgKO6HM6xRWGDMahRo,1549
140
+ spire/presentation/GradientStopCollection.py,sha256=6AVIuOIKSy9sRrXP7UNdNV0oWLy0bdGkoT1MbrHBYag,1943
141
+ spire/presentation/GradientStopData.py,sha256=_8oSnSAHeHWbQLXkfJhUQlcGnuh5bL3Qm45U9QA4dGc,1333
142
+ spire/presentation/GradientStopDataCollection.py,sha256=BAY1QWkzt7iLb9lLgmU34mg5Sxa9JpZxpL9b5C4fSsg,3612
143
+ spire/presentation/GradientStopList.py,sha256=xbigH0Hu1zaANsftL5qMJVlMY3yaeHZd505kBVaDwu0,7155
144
+ spire/presentation/GradientStyle.py,sha256=Rp3TKqRSPH15BjcwuSlUFwpWQUnn_XQg39tlLiiokHM,452
145
+ spire/presentation/GraphicAnimation.py,sha256=Ud70xaZ--5XugPj_fu7SVdF3rm1ops5RLLOS9LCqFiI,1740
146
+ spire/presentation/GraphicAnimationCollection.py,sha256=ss7aS51qnPIqzsib7oW3UaEtMFrkeFQ_yOdIITDyC2U,4521
147
+ spire/presentation/GraphicBuildType.py,sha256=5HpB4eM9EPtxeHq_5hUnQPzTyuyF74_IkxGjIuDIpTU,489
148
+ spire/presentation/GraphicFrame.py,sha256=6-SvV2M0PwrnN1Y8_YafEQEWvMQ53DTxXI5wH01mo24,7570
149
+ spire/presentation/GraphicalNodeLocking.py,sha256=ZFZ1NoYl1IY7tYj_PW9VOTGECyXd4TPNgo5x-6hOepA,4893
150
+ spire/presentation/GroupShape.py,sha256=h0ZBx07CQYVKBB4fJHU3lMQ6wzJjt5atmV_V8iBfaQs,2438
151
+ spire/presentation/GroupShapeLocking.py,sha256=VD61F_LZGShfulrC_lgivyhTrAPwV710H3pmDsgG4zY,5536
152
+ spire/presentation/HeaderType.py,sha256=4B_QVTDfchyo5_-vmV0V2rZKAZ1iebuxH17yAMM_HhE,412
153
+ spire/presentation/HistogramAxisFormat.py,sha256=g9JPVGEiitcWbA4uewwtXbz8lmWSkbPM2KEMwxp7pd8,977
154
+ spire/presentation/HyperlinkActionType.py,sha256=9LJtSbNLZPnGO08rNg3jrJbVjLfWYg6GOcwCgPIjQSA,706
155
+ spire/presentation/IActivePresentation.py,sha256=MxyMcaAWRn0jxbOwiKbTVB-8y0W1PCveb8wq2fyqDzI,786
156
+ spire/presentation/IActiveSlide.py,sha256=iYdgKz0JgMkAoM2ABtTQFgXoWgZ7XOpkDpi4d4XSTK4,731
157
+ spire/presentation/IAudio.py,sha256=YH5eC2pPSjMOEzWWL8SlMgW_NVoPKO07nKlG53rGCYg,23486
158
+ spire/presentation/IAudioData.py,sha256=68D1loqmLMrTsscNcF0kf-AOXGrIecoIBHpL4n-9RJs,2409
159
+ spire/presentation/IAutoShape.py,sha256=whp8wehCOPX1aciKN4Q4eM1RT77mh-fouclRFL20lyA,19674
160
+ spire/presentation/IChart.py,sha256=D49SqT5E0pLpGxvr9HJ5q0bQGahWq6awvHFJZ3VkvrI,35281
161
+ spire/presentation/IChartAxis.py,sha256=-X-qJxSUFeFCyf9itSbZ1dCO6JFVzTRwBrV9wV_Cosg,32465
162
+ spire/presentation/IChartEffectFormat.py,sha256=8-1w3gSyRaVCCu18nKf8WhCB3P___CGU5vUTCfVlvpE,3146
163
+ spire/presentation/IChartGridLine.py,sha256=yxJmSVJP3Zk82L6vr_CSg-jGXxkTYXkgGhtUNkG_MJI,14163
164
+ spire/presentation/ICommentAuthor.py,sha256=n1j62HXz9Gi_47eJGSiv0dPTFUBQqTdZnxlAKAK8bQQ,3278
165
+ spire/presentation/IDigitalSignature.py,sha256=Hut-GX1qY5u3vxiUgBzUNWXcAcEt__-jqabircVThaw,3146
166
+ spire/presentation/IDigitalSignatures.py,sha256=NCEw34pa4BSUafNV1MGpnfpdBvT4ILC3TUgCElQ-Izw,1289
167
+ spire/presentation/IDocumentProperty.py,sha256=2qvjIcU523CXBV4EEVPLVNVNBO7YBKY5UZ9TWIIlToI,21274
168
+ spire/presentation/IEmbedImage.py,sha256=wUzfoReP8Ad9LCWQ9B4AYFw44Wnnerq6oBd01LPhKyU,17563
169
+ spire/presentation/IErrorBarsFormat.py,sha256=pS2VaEt94rr1HlKR_ve_-ciLbVuf457J3BVMu7mzT9c,5361
170
+ spire/presentation/IImageData.py,sha256=aTv_bE7reX2YT7N-Jkf1ySTG8xh7ChWE4imz2x4lPhs,3823
171
+ spire/presentation/ILayout.py,sha256=GdoV-8WpNGpBFHYQxtVMS540HvEd-vtqCoFf-R_dzJQ,3964
172
+ spire/presentation/IMasterLayouts.py,sha256=A6FbnJfyB2128-oNY8D3IETKmUj1gw6xYT-oFjptSQo,1766
173
+ spire/presentation/IMasterSlide.py,sha256=Nkq357OnBa-tJsTyD4tES4BkM5l5arjxLQ5LiZ3_VmM,8903
174
+ spire/presentation/INoteMasterSlide.py,sha256=QcXGw2QI1m9hlsb9Ar1RnoszEoxN-BJWBfvI97kIB2Q,6475
175
+ spire/presentation/IOleObject.py,sha256=wh8fp1WPAPojD8rZ8tvFO5xm4qLI1SLnkV94HB_HdS8,20881
176
+ spire/presentation/IShape.py,sha256=SQ2qQZNar7MpS_HoHLKuf0EkyfvzwXyDNwJp9jPZyHQ,21700
177
+ spire/presentation/ISlide.py,sha256=V4vPgzBcgx_fpHsAkdX9sr8P-HOcFo3Le44oyQ81pSU,26446
178
+ spire/presentation/ISmartArt.py,sha256=wKUk4-T0be8hCo4h064w7VDe8u51d-Wl_Ke7NCGOc40,3676
179
+ spire/presentation/ISmartArtNode.py,sha256=7VwKLvbX_Q2td783YBUJWTLEOsvjFIvwR6R0ED145uo,8421
180
+ spire/presentation/ISmartArtNodeCollection.py,sha256=zLKkuEDVViLovqkVANmnr0oMUprZHa5w6_VBzdvz4J4,4927
181
+ spire/presentation/ITable.py,sha256=lbfoTLMc0tKntZgACn2XYf1m2nI3BumPa5FGDGXenWc,25673
182
+ spire/presentation/ITextFrameProperties.py,sha256=WTGO7gdF56Bn9JpSiFi6qWTL7Qy1iGOq4nMonBn1Mfk,17716
183
+ spire/presentation/ITrendlineLabel.py,sha256=9w_M8GlKH76y0-EOkuWBKy2gKyNEDrsd-9andGUoADE,2559
184
+ spire/presentation/ITrendlines.py,sha256=959oc6cZgtAsQBpsvmnfPDYZAtbAjqra0i2SLtNlhJk,8233
185
+ spire/presentation/IVideo.py,sha256=SOZu2cB2OBzhBt9xGkqW4qYotYMrdY7Pmn-4W4VKlZM,24151
186
+ spire/presentation/ImageCollection.py,sha256=XS9zzK6SdkVeiG1ZD4T51Ahygr1J2VzMeFonAjUx5bE,1868
187
+ spire/presentation/ImageTransform.py,sha256=BDfG8y_WuE8Ep5jgA7vUn4E7tsVRRgdPLNiF4C0Oso4,4481
188
+ spire/presentation/ImageTransformBase.py,sha256=jFOg1SBFk43BUbj0Biu_PjkhQmhsn-y4eDWHh2cwmEE,357
189
+ spire/presentation/ImageTransformEffectCollection.py,sha256=M8dPW8NykO1i6XBEVJ3Bm5DlzpomCbjEBnVlj_IGDH8,2040
190
+ spire/presentation/ImportDataFormat.py,sha256=Bz-EFkfDV5Ho6mfMBVrN4wMk-FcnKPYrZF_7A1WRmYw,376
191
+ spire/presentation/InnerShadowEffect.py,sha256=6P0l4kOMXWVSrirXA4b0fqKKEIs1S-pmW3zP2D5Ol3E,3340
192
+ spire/presentation/InnerShadowNode.py,sha256=lKq7LuU72HW_e0cShaIBvk0cu6qKjngaymDUI70NW88,1948
193
+ spire/presentation/InsertPlaceholderType.py,sha256=OsFZZq1BGvsspZ79cEpeZoYGzv2uZZQiFo9RZB2Q_p8,449
194
+ spire/presentation/InteriorColorPattern.py,sha256=oigFJR3KAZyeQ15GoC5Sm7mqOOTVEyD_fF8ziHl6Vws,696
195
+ spire/presentation/InvXTransition.py,sha256=qF3vKB-1U5rvIJo-ZYSt8OLuxq41IrF1ae4FslOyaKY,1290
196
+ spire/presentation/KnownColors.py,sha256=pyDIWm11o0kFPSyf-GuQ5uqzKPCvOBXiAHhStwd93-Q,3167
197
+ spire/presentation/LRTransition.py,sha256=xNOT0xmrm0fs0Y-TM5x9YAFO1JbbptGhHn1FvhmKPl8,1269
198
+ spire/presentation/LayoutProperty.py,sha256=e0f9WNeXOrcl9Xr9E7gVfaIRlWVNaKFU5byg3RP8V9s,4985
199
+ spire/presentation/LegendEntry.py,sha256=3sbNwhR9j2_nxMpbCE6X79kBsylNxaIDm6fwXrSNfh0,831
200
+ spire/presentation/LegendEntryCollection.py,sha256=PO3Zzc2KwjhumzmEfBpbG2l12DF4OcIMtMwQq586ZZM,1331
201
+ spire/presentation/LicenseProvider.py,sha256=QpViN9GBtS7mJAbPKofLYK_E9ihOBs-PFP-imq0w1Eo,3876
202
+ spire/presentation/LightRig.py,sha256=V0Dngo_HxqeJhdExb_jZ8_ts8AMv4IDyP6Q4utIoBPk,3552
203
+ spire/presentation/LightingDirectionType.py,sha256=A-teofVKY5pU0EvRAtnfdXqQB6bcm2jAMD7UQhcf-4c,487
204
+ spire/presentation/LineCapStyle.py,sha256=YwjMl8Cc-TjO-qr47pUHZM7Bo48qKMyMSYKGXkoQl4M,392
205
+ spire/presentation/LineDashStyleType.py,sha256=FWpXcs4HoSxbuXjJxFfdTxdM8p3QXR_hYb7KRbB-lpQ,584
206
+ spire/presentation/LineEndLength.py,sha256=d6dxI9NgipUqpzDKF-URQIcPF4aTPFT5eLAwKufj-UI,401
207
+ spire/presentation/LineEndType.py,sha256=iZNB4ITHsw7GNu9U8mM0Aa3tuppGn3muIShF9mNc_Oo,467
208
+ spire/presentation/LineEndWidth.py,sha256=RE4roKdaSJ1HN9S_fj1Xs5SAae6S_Ep61zX3lBdHoC8,400
209
+ spire/presentation/LineFillFormat.py,sha256=6zvoSIsbQ81uMmAYEeA_-9UUVmrJM6JE6kWbt3I0jus,4354
210
+ spire/presentation/LineJoinType.py,sha256=3JEUNNwtt6homOkdPJVN8omfgnypMOrxCJOfzWzAjfo,394
211
+ spire/presentation/LineStyleCollection.py,sha256=xi8hayma7KfBemZW0_r2Rd1cpp6FaR9P2XdogqQlgqQ,2305
212
+ spire/presentation/LineStyleList.py,sha256=wnCwv4jEDK1sqdP5YrLwv8CzBicd64zQVl-l4-cOiaw,2251
213
+ spire/presentation/LineText.py,sha256=Jsx15jgha5g3fFWCfBNQ386XEEPqlL-dE329dZ3ljMc,1265
214
+ spire/presentation/LinearGradientFill.py,sha256=Un9UL9Tqmu-Jm2K7kP5Gg7IUA9EoujhovB8Jm3N-n9Q,1717
215
+ spire/presentation/LocaleFonts.py,sha256=TaT-w0WVu0N5NoFNq1LkfhOtUp7VdQYCd3onsDMvbyQ,3058
216
+ spire/presentation/MasterSlideCollection.py,sha256=79YAFRvqW_x-pax43DCM8sLsLwDx-l-5FFVSM63WJkY,1933
217
+ spire/presentation/MasterSlideList.py,sha256=4KEnCSNbO0opxIsioeVAkskJQTeoKy_NAedWW_ZcPD0,4404
218
+ spire/presentation/MasterTheme.py,sha256=OSliH7JEcu9NmbYVVzEW3i2oDm34xr1dLBhGf61-63A,3058
219
+ spire/presentation/MetaCharacterType.py,sha256=Ttz_FIsgjuLjRvxY8Gl7dqdfkYe_JgRx3y4ZCUATvOA,490
220
+ spire/presentation/MotionCmdPath.py,sha256=q_4aoY3AT5krF2-mXZ6sUd2y77iJ-NIIDCPOzgJXp9c,3016
221
+ spire/presentation/MotionCommandPathType.py,sha256=ITAGGDtmmVDhtG0fZQRvvp3MU63E-fVQa5QoP7YltJk,456
222
+ spire/presentation/MotionPath.py,sha256=_8FcDjtZ-cAwYbuOeuQ3_0aS0yltCk2j5pWjlQU1pb0,3365
223
+ spire/presentation/MotionPathPointsType.py,sha256=BIPiS2H4P3ZdLC3enPtrIjnkfGZjNGzDV_wGZP4CTcE,523
224
+ spire/presentation/NotesSlide.py,sha256=sVpqaXuYc0zeQBak8xTsk0raRMniN4DWlbRf0bqxAu4,3260
225
+ spire/presentation/NumberedBulletStyle.py,sha256=PYwz5XAF88RABKWcVZph4LBDjP4Up4H2oD8EqV_BRks,1695
226
+ spire/presentation/OleObject.py,sha256=DMuKRR9-dTMhqdUj8hoOxOGw5a083RLC-BjXpVcSvYI,3830
227
+ spire/presentation/OleObjectCollection.py,sha256=Ctpoa3Kkqzoxm4Th8m4Ium1sYXLg7e9wxpcpMPUGmT8,4480
228
+ spire/presentation/OleObjectProperties.py,sha256=YYQajlb_CNcPxaXVZqJrAuRLvLu2JCrOWnGV8oPreTw,5399
229
+ spire/presentation/OptionalBlackTransition.py,sha256=rsxt3-5Gs2iX8bt4l6-eOrUo-mRUzti_A55deI_hZR8,1518
230
+ spire/presentation/Order.py,sha256=df9grZcTdIkrIHYSnoHwSGRABcn8nrbASq0oOgnEwLk,339
231
+ spire/presentation/OuterShadowEffect.py,sha256=nreMY0Fh8OrZOvMjzcBNXkYAvmPj8XyrhC6Qy00YQzs,7703
232
+ spire/presentation/OuterShadowNode.py,sha256=UzSnXChQxTbpOLPFETilwTggevhassY7kIyG9MLfvso,4656
233
+ spire/presentation/PageSlideCount.py,sha256=ib6zYcgI6iODndbIWhzPGxTytQKD2eGCVGjBVqYrtrM,403
234
+ spire/presentation/ParagraphBuildType.py,sha256=rcDHt3ksApNNWnGIOKmPUbY3xZsQDIhiF6cPsgd22Qg,511
235
+ spire/presentation/ParagraphCollection.py,sha256=lp_yZkLA5x6XFasOzT0j7fVHY4IapFSaGk81EGXFp5s,3604
236
+ spire/presentation/ParagraphList.py,sha256=6daWTHofxuf9s1GDEC2qZplEz9NuvO7jIqs2bcnIewc,6093
237
+ spire/presentation/ParagraphProperties.py,sha256=ioHjsYfmDGLyKUvHjImm-0qKCs-ZGPNS7WilEtoXCD0,21277
238
+ spire/presentation/PatternFillFormat.py,sha256=atRmqtlAlWoD1DwM24ICg2LElMGHLXXPcVyOKnrzvNQ,4184
239
+ spire/presentation/PatternFillType.py,sha256=1vbwrt9IJUaSr3S1WXo2jNcj5zqd8ZULkKgBcm0KrJ0,1600
240
+ spire/presentation/PdfConformanceLevel.py,sha256=JJgyuAFRFmHIJAELOwI3ckmcY5A-uNYXAvISAT_6TKw,464
241
+ spire/presentation/PenAlignmentType.py,sha256=W0C3wT2DiZAZo-LWbroDv7_880O7b6d5nxu9P20f7Xw,388
242
+ spire/presentation/PictureData.py,sha256=js6sxDm2UnMparmcTofMYB7js_-A-0kgXQjb2f-ZsR4,1954
243
+ spire/presentation/PictureFillFormat.py,sha256=p4RRC0cTg5PVpe6deR48mSTnfqie5E9Lqo2G_jOIlfs,9062
244
+ spire/presentation/PictureFillType.py,sha256=McwxzJ3RK2XPWJAUgC0xenBLBGm_Kcj02MsX3DoVAd8,373
245
+ spire/presentation/PictureShape.py,sha256=xuUn5MBzoAcY3X2JiXL-LENW-uGh0aFZAkrugQ818ic,3482
246
+ spire/presentation/PictureType.py,sha256=A9aE1fhoGNJZiqmSfFYDnufcnotzYVmihndrXkgDI4U,406
247
+ spire/presentation/Placeholder.py,sha256=HrK_qE3R391AE-buur9FgSzUdLshBN2bmUQ5A8D5vgU,2738
248
+ spire/presentation/PlaceholderSize.py,sha256=5owOn9al-1V6S_JdcOulnGmVW78YXBqTtafG80vCU0Q,401
249
+ spire/presentation/PlaceholderType.py,sha256=B-IY4g4jaX96naqQsDp30zVjmTbwLcLrvctLOhFpTaM,639
250
+ spire/presentation/PptObject.py,sha256=LX8OQLSBIC3eBc7qaaoXnBWvBhtu59OCXPr6lCIDAGE,972
251
+ spire/presentation/Presentation.py,sha256=vqOWkbW5rkTKfP33K6A7Oy1UD_kAcQCVNp68PpCcbdI,46880
252
+ spire/presentation/PresentationTranslator.py,sha256=tmvTvL37iSTqtpKeQuguCD1c47ms9rEBmYzPqtRPam4,1022
253
+ spire/presentation/PresetCameraType.py,sha256=-DpkF1b7kygARYeIXO27txjeueDPEWzHn1kNc49a2QI,2294
254
+ spire/presentation/PresetLightRigType.py,sha256=uzIr3Rxy1cbAK4KiRZU0q6DFWfi36ueU9JvLC5mCf24,880
255
+ spire/presentation/PresetMaterialType.py,sha256=tHr0zOb7vYQhoOB2nVlVnWv8TMdgF3qZeYUwC44De_4,637
256
+ spire/presentation/PresetShadow.py,sha256=wzDPhj_5f_IE5LSCJMugoAMAXxrk5DC0W59vl1lwxu0,3249
257
+ spire/presentation/PresetShadowNode.py,sha256=hvttDhaGAuIObqmxQWUQXsQxv659yk1pkVknhzMu9RA,2004
258
+ spire/presentation/PresetShadowValue.py,sha256=WRCmErZ5KASfni4nhwLEN2ZXwV5Uy0iuVbKP1fu_mT0,906
259
+ spire/presentation/ProjectionType.py,sha256=cJtJqCbYu_3WXFumXOVGatuxxNZ--pkR8uK_ez04zUg,334
260
+ spire/presentation/PropertyValueType.py,sha256=0DymHWxFIqQ0ymR8XqFlLBMcPNOyF6hNYowopO6sxkQ,400
261
+ spire/presentation/QuartileCalculation.py,sha256=lqZ7JZgxGv1KnWx2Sgd54qj0clxgny9VNkRm3pauTt8,432
262
+ spire/presentation/RectangleAlignment.py,sha256=zpisQislgnEOr9i4E54XfGi65alizwPuJnr1BfbR9cw,504
263
+ spire/presentation/ReflectionEffect.py,sha256=DFbNo9DXGfP2x0c-nwlYrom-wf6lhrN7EstEncWXvss,10871
264
+ spire/presentation/ReflectionNode.py,sha256=G_Nrq82-ph9Yl-oHNvAuNm9K9IX28BeOUR0ta6395pU,6347
265
+ spire/presentation/RelativeRectangle.py,sha256=bkZzEtlr7bOaZfB_DYwLrRlNRYAD6jFTMhUDidBUeWU,5467
266
+ spire/presentation/RevealTransition.py,sha256=2_SRvW3f-NE6shy46pfx-kdYCrLHu_4uEp6iTnUbWpM,1320
267
+ spire/presentation/RowList.py,sha256=BeNKByGivJH3LqDz7UqqoTqZjqwujB7KvIT2X_2o05E,3492
268
+ spire/presentation/SaveToHtmlOption.py,sha256=zDqre-aXaeQ0cPHcQh3-MSQHdazDMwhnhtJun7UUJ5A,947
269
+ spire/presentation/SaveToPdfOption.py,sha256=hmCYrq0IxC-IF9ThBbQCNB1a1kqVKiUYfGyZxLG4l2w,3627
270
+ spire/presentation/SaveToPptxOption.py,sha256=3sCdqzIH80ZDFFqaqnVNa84E9tZYcWHQsDKNeHMZLko,963
271
+ spire/presentation/SchemeColor.py,sha256=KuOVS9jc_rkM-fr_ibTMg06rTFqelNJ4PkiZHxMR5BI,661
272
+ spire/presentation/Section.py,sha256=TdbuEXWtpvdIIsylUXir9LrMAuqSbctKfTOb2S2vpLA,5265
273
+ spire/presentation/SectionList.py,sha256=XwpcyWN94jzjSluQWVHJBJF7bC6j8m2Lc4IW7MJSa3M,6402
274
+ spire/presentation/SequenceCollection.py,sha256=Wr_fO5sDsk64RUU_a7mTEMvhmFXQGZa_ZJSelIElJJg,3538
275
+ spire/presentation/Shape.py,sha256=LLRtCIMODt6zhXkZzReNMIDPFORC7AhOI0dtVlMbfII,20761
276
+ spire/presentation/ShapeAdjust.py,sha256=-qyuep9_JA88tMBNWSMHIQsFljSTElK1mXdBKng75x4,1715
277
+ spire/presentation/ShapeAdjustCollection.py,sha256=zdsD3Jaf9mVpaaQXo7sn9bSXt3luA2vABVYqqO3qyWQ,2463
278
+ spire/presentation/ShapeAdjustmentList.py,sha256=JKajya5Gy0I2XCls2ML00Q3IMMz5cAiyCXwJb55eY2s,1364
279
+ spire/presentation/ShapeAlignment.py,sha256=niKKbhWdvd6_5mueBmkgcoPSXuaSUN3jh4o-TZ4sf7g,516
280
+ spire/presentation/ShapeArrange.py,sha256=ZlKt2OuBGSulXyp-03aAJSYk-KzqnUwkeDpAPneo9pA,423
281
+ spire/presentation/ShapeBevelStyle.py,sha256=GiAl7jH_vgA5G6ilOPYdEiqMPYLdgNEdWn1QMx1Ea7U,2380
282
+ spire/presentation/ShapeCollection.py,sha256=42uZpG1xj_eAe49L4K92sAuTq1FUDlQJew59i-iyakU,2237
283
+ spire/presentation/ShapeElementFillSource.py,sha256=_n_vhKvq9E9ssNoZpn8GnH5pFMH1cgbxsybX88iwP8I,480
284
+ spire/presentation/ShapeElementStrokeSource.py,sha256=hdB8iSBgegrwJygpFKujprQG1EZoQeRwbDeQVzJaouU,411
285
+ spire/presentation/ShapeList.py,sha256=8po5gX9hU_IoE_0LxW5R2A7Mlh9Bk630T0-DxIkEXPw,41939
286
+ spire/presentation/ShapeLocking.py,sha256=cX0UMPf-t0OqC-Onc5Scfij9T25I8jQTRRLUhZ3bARk,1106
287
+ spire/presentation/ShapeNode.py,sha256=0S-RodejMoV71m6ifaeDz92Q-tHj2NypfT2S-WoBe7Y,2377
288
+ spire/presentation/ShapeStyle.py,sha256=IQIEFf5MHF9qlWq5TcCA2cH4EcGFJB77mGkNmGcnaSo,7064
289
+ spire/presentation/ShapeThreeD.py,sha256=7ppe6z1IoqJXFrLLLx-DSnJZpgV3nMdq2o1y5W2rhMU,6710
290
+ spire/presentation/ShapeType.py,sha256=XV-RujC583C5iG_uNyEDhoxIFR_hUDDaDSiJZ34hPhw,4949
291
+ spire/presentation/ShredTransition.py,sha256=H4Tp0eYHKdMtRkX1HApmv8p496A8LZjQXJeIm5kWmcw,1317
292
+ spire/presentation/SideDirectionTransition.py,sha256=Mh-xigeapDGQQTEwmiidMt6pfcGyhXpuxfCLJec1xGI,1524
293
+ spire/presentation/SimpleShapeBaseLocking.py,sha256=7S-NxfnS2pZZDczqy43VbGGmckzNkmRhKVUVoqHZBn4,7988
294
+ spire/presentation/SlideBackground.py,sha256=MOvB0LLVjA49EHjRUaNBWLVIak_JlcdbRARsutH7JPw,6143
295
+ spire/presentation/SlideCollection.py,sha256=MYSy3pU8Qg8t_A98hVGA6EP_sZMXkgJ_Ge9MrQNgidU,1868
296
+ spire/presentation/SlideColorScheme.py,sha256=OsNkR_bGO7RIg-BU3JtrGHKUQ2eFWjCJirFJDgXk-OM,1694
297
+ spire/presentation/SlideColorSchemeCollection.py,sha256=z9o41hlvwYZQFxMmMqjq9mMzAy0lRcjJBmXXukkZOA0,4178
298
+ spire/presentation/SlideLayoutType.py,sha256=_wxvntrGl5i9ywmZkZ59P4mSindxLgf9FSQwDxE-zcs,1197
299
+ spire/presentation/SlideList.py,sha256=pPDKGBmBHzrJITW7TCy8Wcsc9-Fw4yGP1hNj2eAojXU,9602
300
+ spire/presentation/SlideOrienation.py,sha256=zT7WqMIg83iu3pi_pYqUTl6iwcoFtSTVFZxf3nq1DcY,375
301
+ spire/presentation/SlidePicture.py,sha256=aMQCAXzC6plp0lijuZrcxZrCFf4ERuHc2g7GkKgDZaw,3078
302
+ spire/presentation/SlidePictureLocking.py,sha256=ZToiASMpLYGZVX_6Khvivzy2NocQLOefzmj7GhfdaiE,1098
303
+ spire/presentation/SlideShowTransition.py,sha256=Tb3GHfYzk3WwjhYzFYRl3wdEVnnYkQShMWbDH4NaHc8,11323
304
+ spire/presentation/SlideShowType.py,sha256=LWT2BxUrA3IMox3KVJozQ8Vwk-v00Ml50OaEGfuvM3Q,312
305
+ spire/presentation/SlideSize.py,sha256=nejBJ_b34K3EvGA7JU4Qp7Oey0VENmjqJ6DmTFhIdmM,3231
306
+ spire/presentation/SlideSizeType.py,sha256=3AANynzc4cP_S5fl62FDYxTPOCu8tNN60HClG-aP278,621
307
+ spire/presentation/SmartArtColorType.py,sha256=5qUxjAmvyK04ps2Xvd3zWJKrszFyEGeJklZvRmKBwls,1478
308
+ spire/presentation/SmartArtLayoutType.py,sha256=ROE5vTRfuxQLD9WKGrgPPRDQ2j10tnMG5IIKcE4-dU0,2483
309
+ spire/presentation/SmartArtStyleType.py,sha256=j4owSjz_2wY8WKDyfRiZn99QfJXe1laLX6xyYpZWh4s,555
310
+ spire/presentation/SoftEdgeEffect.py,sha256=8_srd-bvSq9OE-eI-lyBkXqz5p1iOXmRq2de-rLkG44,1408
311
+ spire/presentation/SoftEdgeNode.py,sha256=FQIaJfret8yUqqycIHmCpZyqnyxnfTfSRW2r8QEft0c,818
312
+ spire/presentation/SplitSlideTransition.py,sha256=UQ85YUIRaQ7tDE0eyenmiEPrEVtBcI4dwF5EtRUy0so,1590
313
+ spire/presentation/StripsSlideTransition.py,sha256=vlS3G4IflIFf7zzFoD_yG2jARrttA_gMTOFWOYY2tMU,1359
314
+ spire/presentation/SystemColorType.py,sha256=Xct52IMUKsxv5TEcr0U7Y-1w9AEoTsk-VyvET_Q2p7I,1006
315
+ spire/presentation/TabAlignmentType.py,sha256=umrsabSpnkFI56QCqycRIENbMz92PjSF5P2ksFiIjhQ,412
316
+ spire/presentation/TabData.py,sha256=735UA8zWjfbjew8ObQUzY6Kql5nA4zvYoKHcohnJ29M,2241
317
+ spire/presentation/TabStop.py,sha256=GU-FfIhBdoGn0JS4DHMkpm_XigdABRvRm_9vktz6Nqk,2686
318
+ spire/presentation/TabStopCollection.py,sha256=DxE83BNygkdUag7QRRoDU_8wc5XQUHy1wV_GBOZC-Zc,1897
319
+ spire/presentation/TabStopList.py,sha256=7ZVmuUJj41RwBLgRo7aPSGXQJvSmhK0rUgMX5d56gw4,4128
320
+ spire/presentation/TableBorderType.py,sha256=Y3j0mJsEiLxHjeCBlFqDhzpVwO9Ce-hfX6QB3dvLYM0,584
321
+ spire/presentation/TableColumn.py,sha256=B_griGFwduGWIh1orx6c-YgGptVfjB5bql2Knydsmkg,977
322
+ spire/presentation/TableRow.py,sha256=9684ij-BaCT2LOD8v9Gk2NNtXPPpU2h5W2k-typIMzo,958
323
+ spire/presentation/TableRowCollection.py,sha256=PT_BN74pO8FwDzE_xChkiv-EzmtRc86Sn00Z8De5KWA,1889
324
+ spire/presentation/TableStylePreset.py,sha256=h3rIcb9GPFWqk16P9wQapx_xxyIw1bGjIzWaKUhu2_g,2457
325
+ spire/presentation/TagCollection.py,sha256=XX2jdq5FvFoZnaq3Z-xy8_HjxE5CuZjaPu7C0o9-Z-k,2347
326
+ spire/presentation/TagList.py,sha256=DrkDUdd3cHTywtZJRJ_mK_HiNi9ZFTnImlGFdNEz8j8,5401
327
+ spire/presentation/TextAlignmentType.py,sha256=vXofhDmLVx2-8_pSUNKLa-6Ljs6PleXt_UJqYhulYbQ,441
328
+ spire/presentation/TextAnchorType.py,sha256=Jnbxxu_bDi1eVHv22pktKRoExfmN0YFrIKXU3fkdgmA,462
329
+ spire/presentation/TextAnimation.py,sha256=bFuKxSP6_eBGQRMHsTf_8ng5FMKNCFtQsqoVwXVHL4k,2570
330
+ spire/presentation/TextAnimationCollection.py,sha256=zI6n_z1qtPj0a4gM2TiLTz2JOCqOduJdooU6rEKYDBI,4878
331
+ spire/presentation/TextAutofitType.py,sha256=6R-4Sz9DMVZGIyTC9vyVdY2XLBdD3tPiyXnJ5nevb4E,399
332
+ spire/presentation/TextBulletType.py,sha256=YiVGiYE8Biyo0LROJn8UBn5Nv28b0PUTgwZZZBWOi7I,433
333
+ spire/presentation/TextCapType.py,sha256=-zLBtgUSatGBnxmFUk_l7HddVphUBHSPdK1N534S4FM,406
334
+ spire/presentation/TextCharacterProperties.py,sha256=lYZbdWcjyESTzs723gU5L5iFHBhM2dCZ5GG6CBu97so,26178
335
+ spire/presentation/TextFont.py,sha256=pxdob4CCy5wfNCx8mbHnEF_vChP4U9vWk9pTxo6397I,3265
336
+ spire/presentation/TextHighLightingOptions.py,sha256=C3Va9fkIKKf3Kuahar7BBX_mJr1eJKOczQA0anlieo8,2034
337
+ spire/presentation/TextHorizontalOverflowType.py,sha256=EtVrPyVMbzQzJeA1MeWohjuqh9LMPiCJXHFrLOeILlk,404
338
+ spire/presentation/TextLineFormat.py,sha256=M4TjD0-BTqjE2LDasoSk0vWtwiQKWqLEyWPlWPIyquE,15914
339
+ spire/presentation/TextLineFormatCollection.py,sha256=R4oTxbBvVpA10OoRvbaaYZWgPz1BQhGPOyUaXeo9zbA,1981
340
+ spire/presentation/TextLineFormatList.py,sha256=FTkVTR_KMFNYAFxbnpAmGhPwuDHOkpGorS1N_UttZ_E,1870
341
+ spire/presentation/TextLineStyle.py,sha256=uLtDDD-olHIyNz75hM78V0sSZmz04BnWiW-adQPnbMU,447
342
+ spire/presentation/TextParagraph.py,sha256=IhrmQMHOODhx195WRwO-M9SknWwagapkjPgwHvWCIuI,3456
343
+ spire/presentation/TextParagraphProperties.py,sha256=n647Py60UhQyBkAVV0KNAUW_xqenTylYPmsTiutgvxs,20949
344
+ spire/presentation/TextRange.py,sha256=QfzT94J808rkSD52bIoGs_-AO70zgmeOKJjP5p3SbAg,4256
345
+ spire/presentation/TextRangeCollection.py,sha256=o_r4CYWPurEU0-lO2cPPkNKRwXP9-E0-BThZ7L9Oglc,2334
346
+ spire/presentation/TextRangeList.py,sha256=knRONRya9SjlqunnNPQjs_vteKhBMR2PLNIyC8C3P7U,4351
347
+ spire/presentation/TextShapeType.py,sha256=_t6bznvf1dJGI_4BncyIgeSR3IGfMzdrqKY0qLFUVIg,1176
348
+ spire/presentation/TextStrikethroughType.py,sha256=GaJQrfSsPc0NvqB99jZY_sNszepuuvZQU-vv3gfA5A0,419
349
+ spire/presentation/TextStyle.py,sha256=WSIdt0zjryDg8oi25MgtFw7o4UOQCDNJU7ZKeQoyvEY,2738
350
+ spire/presentation/TextUnderlineType.py,sha256=qYmuFsxYrUwtEYtkNfivmTwvQie8yBzr9As3rbjn07o,705
351
+ spire/presentation/TextVerticalOverflowType.py,sha256=CVkrk4uZANd4PBvE_cSEzNxW76-kf36VQxIUZ7YpJ7o,418
352
+ spire/presentation/Theme.py,sha256=styW2p9JtAJX4_62qMgsEYIjFz70zS1mijSLZhRhaYg,3401
353
+ spire/presentation/TickLabelPositionType.py,sha256=yCBdXzIptphWBh2XdM35LK1NvTTlO3nWVW0MpxJtr_U,511
354
+ spire/presentation/TickMarkType.py,sha256=dQ6HmtwgaJgaDWwNU_MviffofyzkJkuzXzADg8n1HUQ,449
355
+ spire/presentation/TileFlipMode.py,sha256=__aRILETh-k7s-JA8Y5EFTHgf4b-O0IacfFzYWG62rY,432
356
+ spire/presentation/TimeAnimationValue.py,sha256=5g17yFcvtfYkcLCCArmmgT-zP1qrPalz_ycMPGk2LAU,2397
357
+ spire/presentation/TimeAnimationValueCollection.py,sha256=2jtyhnGAFxXV7krWanlfd0yRkXqx8eD8rBk8yhJL8Eo,1930
358
+ spire/presentation/TimeLine.py,sha256=rZSQEeYhc6df6YKVimhE_fWECopc2pdnfV1qLz5H_0Q,2155
359
+ spire/presentation/TimeNode.py,sha256=jSeOAnpzedmDJZyQRRBt1FL6ZewLpJjYBp8ZXr5wWe4,1368
360
+ spire/presentation/TimeNodeAudio.py,sha256=selvbLvgb52zvrsAmDeMJDJ5zqN91IqgI-aBmfhE_GA,3469
361
+ spire/presentation/TimeNodeMedia.py,sha256=bGT99ui1vT0J4DFTs5iySRIVXaTONE5Q_sbL_U3y7xs,631
362
+ spire/presentation/TimeNodePresetClassType.py,sha256=4-qLHdcG9PEoe6yVP0tJkqH8YwqPrBmeDrmeEebH7AA,453
363
+ spire/presentation/TimeNodes.py,sha256=tqOl9bhEWhDtOB88CrZpz5DWQDNW4Hqo6Hr8GOwEdkk,2323
364
+ spire/presentation/Timing.py,sha256=nLR_hfEAEdW57XvKDN6DrXsJzoAhP5484raqJAuw1Ag,8373
365
+ spire/presentation/Transition.py,sha256=wMxDwZfnea11l3rSNeNDaF7PDSMH44ccJzVCiZ9Z-yM,694
366
+ spire/presentation/TransitionCornerDirection.py,sha256=83C70P5lLc4XkZCi70287sJ65toOep2QpM24DCCluZM,443
367
+ spire/presentation/TransitionDirection.py,sha256=6Chcn2arlYxndlOW8d2-rIaTf_0E4fP9QLdlK_jHAHg,398
368
+ spire/presentation/TransitionEightDirection.py,sha256=Q10NOhJDyH_te2mt2EprQmkDqn_m_10ljT3vo7stTNs,496
369
+ spire/presentation/TransitionFlythroughInOutDirection.py,sha256=HkRFRP37avyP87u1C4vKAqWI6D7hxHZLpvi-SdfvRgw,440
370
+ spire/presentation/TransitionInOutDirection.py,sha256=iGn9FZXjbixRUsnmCGGKaZFcS3xsqHbnxM6V8gMqXVE,400
371
+ spire/presentation/TransitionRevealLRDirection.py,sha256=BaTMj2mtBNyc-oGV66-fckQYGikpKliPgmbBnxV3qn4,483
372
+ spire/presentation/TransitionShredInOutDirection.py,sha256=6b17OtNtKVmkSUWDuQxg5b1iNsRFlXEOWaoAF1cT5jI,446
373
+ spire/presentation/TransitionSideDirectionType.py,sha256=H1u5FmW1AEMuDZlWTq9tzePswOd1COZ4_EFz_65jZa8,414
374
+ spire/presentation/TransitionSoundMode.py,sha256=EowxeoC5JgZ-8Up10XfJfw-shMV4usTnSfle8v6QTzY,406
375
+ spire/presentation/TransitionSpeed.py,sha256=Vp4yqx4qdNQlIxlwTqtNU3QF3NrKuEECpaG4xvNgCKw,396
376
+ spire/presentation/TransitionSplitDirection.py,sha256=0WYbOHn8rVpWA7R5Qz4FOW4EbmWht7V67_HfrXh8YEA,443
377
+ spire/presentation/TransitionTwoDirection.py,sha256=kubeQ-8Rlyd2wxGT1Dl4LGNNN5Uxd460QU7g7-Mvmho,386
378
+ spire/presentation/TransitionType.py,sha256=kjRThIfCglKQ6sdUgTea9hu3nE7_C6qwf6tkYxGfcIY,1285
379
+ spire/presentation/TreeMapLabelOption.py,sha256=nbocTT3VzIpWH0x8ZApdXjCeST__K4IHsY_k2YpjGwk,410
380
+ spire/presentation/TrendlinesType.py,sha256=aIFXLM6L0LdVvaGcF9D1_4Z2_d2V7-rYknsvXL2R1sM,381
381
+ spire/presentation/TriState.py,sha256=cj7cD-aAr4uVtIJ3sNzVdjjxw3JQssP3K4mhh2Gdjes,377
382
+ spire/presentation/UOPReader.py,sha256=abh0IhIYHM0gV7U3E-A2Ju_2rdYz7fUbP7wdMjYzgOM,637
383
+ spire/presentation/UOPWriter.py,sha256=jwLS5wHWYlDpf7STOj1HYN3iStqJovje8w_sMynStB4,637
384
+ spire/presentation/VerticalTextType.py,sha256=MfKGX5hHVIfJi3RmTh1x6y2365EsEjDQj0hMTN8hQjk,538
385
+ spire/presentation/VideoCollection.py,sha256=LwK_XKLu0-q44jaqrNAKP795xmdasXmd8MkOvlnzlwA,3620
386
+ spire/presentation/VideoData.py,sha256=fY5MNt_mxFpTSVk7hInKR8-IQG1FoIBvlJLk8uxVfio,3008
387
+ spire/presentation/VideoPlayMode.py,sha256=wPd3sQNg8NvryErc9YuyltBdLHU-sUzeIl-n42Mc0LQ,404
388
+ spire/presentation/WavAudioCollection.py,sha256=P5JZFwF4kpHVF7P8t8OrVu4L4cvk7tbaIh_Lr_eQx4A,3563
389
+ spire/presentation/WheelSlideTransition.py,sha256=peZrLPaBY_ex7Oa4v_f_W6L-ynqp4z37Z3IsdyDBbsE,1285
390
+ spire/presentation/ZoomSlideTransition.py,sha256=242fgY8sngHntPzmFZ7Xh6shRd4TdoqN-DcPxLZzDwM,1515
391
+ spire/presentation/_Presentation.py,sha256=oRxLbykcFqVCgJbC_nm-j6idaIDERh1voh9DCPRz7t0,4482
392
+ spire/presentation/__init__.py,sha256=QL8I6Yyyl0ZECezmWAuWCK9WqUocPlQ7wjodQ_JfoDY,28265
393
+ spire/presentation/common/Boolean.py,sha256=Gg9BuhmYb0mU10Qypjcotmi6y8eYNkkL7ZVNWJXNvXM,5019
394
+ spire/presentation/common/Byte.py,sha256=HPugnfUOmO41y-YJA6dZwoF3b8-c57M6zAGWbqT0J48,6567
395
+ spire/presentation/common/Char.py,sha256=86CbXciZ9KQqoD0LwEmdZjk22w7X1_rVHp-kvYT1QRw,17817
396
+ spire/presentation/common/Color.py,sha256=uYBsLKFbdqYF7PXuRzB8x6qjPEwjxIqNsrAhk8ZmGdc,55510
397
+ spire/presentation/common/Common.py,sha256=nXeuE9Blcv7Rd0JlAB9UQGWFiMJpf6QAmkFWAHrfmeA,5174
398
+ spire/presentation/common/CultureInfo.py,sha256=nwFgmdhTMCOGauGKNoNdaNY3660-WpKh49aFExRuWxA,16924
399
+ spire/presentation/common/DateTime.py,sha256=RKIQPDAtr4O9Y3G10MIkfI2vPNyqhT7N_adNcvjDooo,33867
400
+ spire/presentation/common/Double.py,sha256=CpQg0MScflfa8YE9bDotLBaS75vJEu9AGDgUkXf6O4U,11578
401
+ spire/presentation/common/EmfType.py,sha256=xQSrQ2suaN8NnV-S6xRmi_nQZhqhdc3CfGU8XYkWLrw,627
402
+ spire/presentation/common/Encoding.py,sha256=j9n4ng3N0N0YQbxgrNW3cW9w091dVEIXPFnljhTeaCQ,28339
403
+ spire/presentation/common/FontStyle.py,sha256=YC-j5qLDf9A_q7RqRYw7SHLmqRCjWnnppFtZTT33bWI,655
404
+ spire/presentation/common/GraphicsUnit.py,sha256=okBnR-Rg5Plg9T5yU29P94myOUE3ykU1pg9T2Hhcgnw,687
405
+ spire/presentation/common/ICollection.py,sha256=OfqKypHDwwgDGZMwQ7dho-63DZosQn82wjD5fCbhSuU,2156
406
+ spire/presentation/common/IDictionary.py,sha256=Ll9QjoHss2h1-CJJbEq-dNdTsJrTE23XOkj2-_dknN4,2014
407
+ spire/presentation/common/IEnumerable.py,sha256=l-bxpSofSo5DplJI1GQDFl3Xm1WM8VDx2H-96nH7dhQ,1426
408
+ spire/presentation/common/IEnumerator.py,sha256=kwwgAZkTXzaChJ84-xz3JvvB8277M8AHK3k-EKyyWlQ,1713
409
+ spire/presentation/common/IList.py,sha256=2vSsYwQVcQywFqmISDHC6aBmjoYbyifWA9pE0G5Nr90,4050
410
+ spire/presentation/common/Int16.py,sha256=IU-1d63XdDPRgL1DaUS_SGDXwdbNqMjCM9JqDlQMtb0,7121
411
+ spire/presentation/common/Int32.py,sha256=W9IAGGw2aVkgja-vPy-AvvCMc2xN3ww6x__5Uq0B88s,7527
412
+ spire/presentation/common/Int64.py,sha256=hf_Pl3gYPgUoSYTmbjE7F5faIIxejyp7cxsCEv_UqK4,6627
413
+ spire/presentation/common/License.py,sha256=i0tArKy5F-s5uMlsqI_xi-P6w2ZqRnRVCa2plpzUiBc,8689
414
+ spire/presentation/common/PixelFormat.py,sha256=_h4oLppoWjPqFTtPsQzACFTG9vo28iggtKRdrECsDeo,1196
415
+ spire/presentation/common/Point.py,sha256=fOpUybylgCqdJNvQcyQq9x8z1-hHJ8FooNn4I5KWU7g,7921
416
+ spire/presentation/common/PointF.py,sha256=g4kTwcHHlB-bGzC4mKkmXZOvtpALy_kVPJ7IErMh8XY,7572
417
+ spire/presentation/common/Rectangle.py,sha256=OOyoiCGZuoFbW8mXlnqygPgiixDwF-4GAtXsyxjtBj8,12335
418
+ spire/presentation/common/RectangleF.py,sha256=CRdweThcLeoz9hnSyTFSK5FoPKkEPtYhanq4nd1oOw0,12497
419
+ spire/presentation/common/Regex.py,sha256=G7-W5IIm1sWwbTcikUR__0p8OIeWPzRqKzahHoCqWuI,33605
420
+ spire/presentation/common/RegexOptions.py,sha256=UDAXOOMJB0b-FqCmOwOFaydf3a8BG-C_L_XUGtFvmzI,771
421
+ spire/presentation/common/Single.py,sha256=AUBq25j3wtaFjPgO5Vlg4mP-9KBw_8XwTsRtmhKkkYs,10848
422
+ spire/presentation/common/Size.py,sha256=kBRZRJtFimWxgcyvJVJDnE5BRTITdZfB2PY0h9TBbhg,7205
423
+ spire/presentation/common/SizeF.py,sha256=D2O9MvpH2xrsbS_XV5y8Hocb_PKG8aOgAc8hTK_tdns,7302
424
+ spire/presentation/common/SpireObject.py,sha256=ePvUecLN97Vn2J6rHwgXIKdWbBvyGSl0QYQbexeLCk8,2161
425
+ spire/presentation/common/Stream.py,sha256=EbJZRC9iFZ2oE3S-y1QgrVeJKN1WygswRoIqFyf4o0U,17377
426
+ spire/presentation/common/String.py,sha256=tysKd7tPb8CtRHvaHYL2DstuwWKM_zDs_enETqFTgVs,55057
427
+ spire/presentation/common/TimeSpan.py,sha256=NjKzlpCPrHvfIaK8fu0Ipcjr_eUWbR9rs5NbUDh3_-Q,25799
428
+ spire/presentation/common/UInt16.py,sha256=yFB9ZzaFmXDx9yUH28t6MDeFAyRNoM5EhN3eU1aaRL0,7192
429
+ spire/presentation/common/UInt32.py,sha256=DYsKvxrI7J-0ppCzPM5SCeP5rTszqUqdTPcjiwc26IU,7192
430
+ spire/presentation/common/UInt64.py,sha256=cHaKw1n6DHkxngz62YPdksXxFSJPotiGEC-Q9qWnLMg,7192
431
+ spire/presentation/common/__init__.py,sha256=bNRHgxUN12PGcC5IQBvqKPlFkmSu2fdc7e0qzd7Vz8E,17132
432
+ spire/presentation/lib/Spire.Presentation.Base.dll,sha256=s0g5XdOOq_72e6s-zRSQRtx6UQe-ElOA1PMsCn2ywbw,51629568
433
+ spire/presentation/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
434
+ spire/presentation/lib/libSkiaSharp.dll,sha256=BD0b-JGZXN5fxQ4aB1J_cy8nWQjGBDvS9nZl7ZYtHY4,9605176
435
+ spire_presentation-10.6.4.dist-info/METADATA,sha256=Hz0f16mspitjgMHaS2wQwN_Pq7iSFRoXWxz-OMN9z_o,8552
436
+ spire_presentation-10.6.4.dist-info/WHEEL,sha256=AiyVnrmrEuW_cPqhPlarzpb5qtD8ITcBeZKvhXXgyN4,98
437
+ spire_presentation-10.6.4.dist-info/top_level.txt,sha256=WxTypv85IOx5WpDWDS_HpIgu5l722KWSil7EHZwF08M,6
438
+ spire_presentation-10.6.4.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.38.4)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-win_amd64
5
+
@@ -0,0 +1 @@
1
+ spire