spire-presentation 11.2.0__py3-none-macosx_11_0_arm64.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 (440) hide show
  1. spire/__init__.py +0 -0
  2. spire/presentation/ActiveSlide.py +215 -0
  3. spire/presentation/AppException.py +14 -0
  4. spire/presentation/AudioCD.py +85 -0
  5. spire/presentation/AudioPlayMode.py +23 -0
  6. spire/presentation/AudioVolumeType.py +25 -0
  7. spire/presentation/BaseShapeLocking.py +25 -0
  8. spire/presentation/Camera.py +127 -0
  9. spire/presentation/ClickHyperlink.py +476 -0
  10. spire/presentation/Comment.py +214 -0
  11. spire/presentation/ConnectorLocking.py +14 -0
  12. spire/presentation/DefaultTextRangeProperties.py +526 -0
  13. spire/presentation/Direction.py +19 -0
  14. spire/presentation/Field.py +57 -0
  15. spire/presentation/FieldType.py +282 -0
  16. spire/presentation/FileFormat.py +64 -0
  17. spire/presentation/FontAlignmentType.py +27 -0
  18. spire/presentation/FontCollectionIndex.py +21 -0
  19. spire/presentation/FontScheme.py +78 -0
  20. spire/presentation/FormatAndVersion.py +73 -0
  21. spire/presentation/GroupShape.py +73 -0
  22. spire/presentation/GroupShapeLocking.py +122 -0
  23. spire/presentation/HyperlinkActionType.py +47 -0
  24. spire/presentation/IActivePresentation.py +29 -0
  25. spire/presentation/IActiveSlide.py +27 -0
  26. spire/presentation/IAudio.py +608 -0
  27. spire/presentation/IAudioData.py +63 -0
  28. spire/presentation/IAutoShape.py +622 -0
  29. spire/presentation/ICommentAuthor.py +119 -0
  30. spire/presentation/IDigitalSignature.py +72 -0
  31. spire/presentation/IDigitalSignatures.py +34 -0
  32. spire/presentation/IDocumentProperty.py +533 -0
  33. spire/presentation/IEmbedImage.py +546 -0
  34. spire/presentation/ILayout.py +143 -0
  35. spire/presentation/IMasterSlide.py +281 -0
  36. spire/presentation/INoteMasterSlide.py +179 -0
  37. spire/presentation/IOleObject.py +661 -0
  38. spire/presentation/IShape.py +670 -0
  39. spire/presentation/ISlide.py +826 -0
  40. spire/presentation/ITextFrameProperties.py +566 -0
  41. spire/presentation/IVideo.py +809 -0
  42. spire/presentation/ImportDataFormat.py +21 -0
  43. spire/presentation/InsertPlaceholderType.py +22 -0
  44. spire/presentation/KnownColors.py +155 -0
  45. spire/presentation/LightRig.py +112 -0
  46. spire/presentation/LightingDirectionType.py +24 -0
  47. spire/presentation/LineCapStyle.py +23 -0
  48. spire/presentation/LineDashStyleType.py +41 -0
  49. spire/presentation/LineEndLength.py +23 -0
  50. spire/presentation/LineEndType.py +29 -0
  51. spire/presentation/LineEndWidth.py +23 -0
  52. spire/presentation/LineFillFormat.py +142 -0
  53. spire/presentation/LineJoinType.py +23 -0
  54. spire/presentation/LineText.py +48 -0
  55. spire/presentation/LinearGradientFill.py +64 -0
  56. spire/presentation/LocaleFonts.py +113 -0
  57. spire/presentation/MasterTheme.py +92 -0
  58. spire/presentation/MetaCharacterType.py +27 -0
  59. spire/presentation/NotesSlide.py +98 -0
  60. spire/presentation/NumberedBulletStyle.py +56 -0
  61. spire/presentation/OleObject.py +128 -0
  62. spire/presentation/Order.py +16 -0
  63. spire/presentation/PageSlideCount.py +20 -0
  64. spire/presentation/ParagraphProperties.py +632 -0
  65. spire/presentation/PictureShape.py +124 -0
  66. spire/presentation/Placeholder.py +101 -0
  67. spire/presentation/PlaceholderSize.py +23 -0
  68. spire/presentation/PlaceholderType.py +49 -0
  69. spire/presentation/PptObject.py +39 -0
  70. spire/presentation/Presentation.py +1389 -0
  71. spire/presentation/PresetCameraType.py +76 -0
  72. spire/presentation/PresetLightRigType.py +61 -0
  73. spire/presentation/PresetMaterialType.py +47 -0
  74. spire/presentation/PresetShadowValue.py +36 -0
  75. spire/presentation/RectangleAlignment.py +25 -0
  76. spire/presentation/RelativeRectangle.py +207 -0
  77. spire/presentation/Section.py +187 -0
  78. spire/presentation/SectionList.py +197 -0
  79. spire/presentation/Shape.py +631 -0
  80. spire/presentation/ShapeAdjust.py +65 -0
  81. spire/presentation/ShapeAlignment.py +34 -0
  82. spire/presentation/ShapeArrange.py +26 -0
  83. spire/presentation/ShapeBevelStyle.py +89 -0
  84. spire/presentation/ShapeCollection.py +75 -0
  85. spire/presentation/ShapeElementFillSource.py +29 -0
  86. spire/presentation/ShapeElementStrokeSource.py +21 -0
  87. spire/presentation/ShapeLocking.py +43 -0
  88. spire/presentation/ShapeNode.py +99 -0
  89. spire/presentation/ShapeStyle.py +221 -0
  90. spire/presentation/ShapeThreeD.py +201 -0
  91. spire/presentation/ShapeType.py +202 -0
  92. spire/presentation/SimpleShapeBaseLocking.py +223 -0
  93. spire/presentation/SlideBackground.py +169 -0
  94. spire/presentation/SlideColorScheme.py +61 -0
  95. spire/presentation/SlideLayoutType.py +87 -0
  96. spire/presentation/SlideList.py +355 -0
  97. spire/presentation/SlideOrienation.py +19 -0
  98. spire/presentation/SlidePicture.py +97 -0
  99. spire/presentation/SlidePictureLocking.py +39 -0
  100. spire/presentation/SlideShowType.py +21 -0
  101. spire/presentation/SlideSize.py +121 -0
  102. spire/presentation/SlideSizeType.py +49 -0
  103. spire/presentation/SystemColorType.py +46 -0
  104. spire/presentation/TabAlignmentType.py +20 -0
  105. spire/presentation/TabData.py +61 -0
  106. spire/presentation/TabStop.py +88 -0
  107. spire/presentation/TextAlignmentType.py +27 -0
  108. spire/presentation/TextAnchorType.py +31 -0
  109. spire/presentation/TextAutofitType.py +23 -0
  110. spire/presentation/TextBulletType.py +25 -0
  111. spire/presentation/TextCapType.py +23 -0
  112. spire/presentation/TextCharacterProperties.py +662 -0
  113. spire/presentation/TextFont.py +106 -0
  114. spire/presentation/TextHighLightingOptions.py +83 -0
  115. spire/presentation/TextHorizontalOverflowType.py +21 -0
  116. spire/presentation/TextLineFormat.py +403 -0
  117. spire/presentation/TextLineStyle.py +27 -0
  118. spire/presentation/TextParagraph.py +132 -0
  119. spire/presentation/TextParagraphProperties.py +517 -0
  120. spire/presentation/TextRange.py +160 -0
  121. spire/presentation/TextShapeType.py +101 -0
  122. spire/presentation/TextStrikethroughType.py +23 -0
  123. spire/presentation/TextStyle.py +85 -0
  124. spire/presentation/TextUnderlineType.py +53 -0
  125. spire/presentation/TextVerticalOverflowType.py +23 -0
  126. spire/presentation/Theme.py +119 -0
  127. spire/presentation/TileFlipMode.py +25 -0
  128. spire/presentation/TriState.py +17 -0
  129. spire/presentation/VerticalTextType.py +31 -0
  130. spire/presentation/VideoData.py +98 -0
  131. spire/presentation/VideoPlayMode.py +23 -0
  132. spire/presentation/_Presentation.py +171 -0
  133. spire/presentation/__init__.py +431 -0
  134. spire/presentation/animation/AnimateType.py +24 -0
  135. spire/presentation/animation/AnimationCalculationMode.py +23 -0
  136. spire/presentation/animation/AnimationColorBehavior.py +146 -0
  137. spire/presentation/animation/AnimationColorDirection.py +21 -0
  138. spire/presentation/animation/AnimationColorTransform.py +86 -0
  139. spire/presentation/animation/AnimationColorspace.py +21 -0
  140. spire/presentation/animation/AnimationCommandBehavior.py +82 -0
  141. spire/presentation/animation/AnimationCommandType.py +23 -0
  142. spire/presentation/animation/AnimationEffect.py +341 -0
  143. spire/presentation/animation/AnimationEffectCollection.py +178 -0
  144. spire/presentation/animation/AnimationEffectSubtype.py +164 -0
  145. spire/presentation/animation/AnimationEffectType.py +466 -0
  146. spire/presentation/animation/AnimationFilterEffect.py +92 -0
  147. spire/presentation/animation/AnimationMotion.py +192 -0
  148. spire/presentation/animation/AnimationMotionOrigin.py +21 -0
  149. spire/presentation/animation/AnimationMotionPathEditMode.py +21 -0
  150. spire/presentation/animation/AnimationProperty.py +173 -0
  151. spire/presentation/animation/AnimationRepeatType.py +21 -0
  152. spire/presentation/animation/AnimationRestartType.py +23 -0
  153. spire/presentation/animation/AnimationRotation.py +60 -0
  154. spire/presentation/animation/AnimationScale.py +121 -0
  155. spire/presentation/animation/AnimationSet.py +35 -0
  156. spire/presentation/animation/AnimationTriggerType.py +25 -0
  157. spire/presentation/animation/BehaviorAccumulateType.py +21 -0
  158. spire/presentation/animation/BehaviorAdditiveType.py +27 -0
  159. spire/presentation/animation/CommonBehavior.py +110 -0
  160. spire/presentation/animation/CommonBehaviorCollection.py +211 -0
  161. spire/presentation/animation/FilterEffectSubtype.py +70 -0
  162. spire/presentation/animation/FilterEffectType.py +71 -0
  163. spire/presentation/animation/FilterEffectsType.py +21 -0
  164. spire/presentation/animation/FilterRevealType.py +23 -0
  165. spire/presentation/animation/GraphicAnimation.py +60 -0
  166. spire/presentation/animation/GraphicAnimationCollection.py +134 -0
  167. spire/presentation/animation/GraphicBuildType.py +25 -0
  168. spire/presentation/animation/MotionCmdPath.py +115 -0
  169. spire/presentation/animation/MotionCommandPathType.py +25 -0
  170. spire/presentation/animation/MotionPath.py +120 -0
  171. spire/presentation/animation/MotionPathPointsType.py +33 -0
  172. spire/presentation/animation/ParagraphBuildType.py +31 -0
  173. spire/presentation/animation/PropertyValueType.py +23 -0
  174. spire/presentation/animation/SequenceCollection.py +111 -0
  175. spire/presentation/animation/TextAnimation.py +81 -0
  176. spire/presentation/animation/TextAnimationCollection.py +162 -0
  177. spire/presentation/animation/TimeAnimationValue.py +73 -0
  178. spire/presentation/animation/TimeAnimationValueCollection.py +54 -0
  179. spire/presentation/animation/TimeLine.py +78 -0
  180. spire/presentation/animation/TimeNode.py +62 -0
  181. spire/presentation/animation/TimeNodeAudio.py +128 -0
  182. spire/presentation/animation/TimeNodeMedia.py +30 -0
  183. spire/presentation/animation/TimeNodePresetClassType.py +29 -0
  184. spire/presentation/animation/TimeNodes.py +109 -0
  185. spire/presentation/animation/Timing.py +249 -0
  186. spire/presentation/animation/__init__.py +0 -0
  187. spire/presentation/charts/AxisPositionType.py +23 -0
  188. spire/presentation/charts/AxisType.py +21 -0
  189. spire/presentation/charts/CellRange.py +200 -0
  190. spire/presentation/charts/CellRanges.py +126 -0
  191. spire/presentation/charts/ChartAxis.py +828 -0
  192. spire/presentation/charts/ChartBaseUnitType.py +18 -0
  193. spire/presentation/charts/ChartCategory.py +40 -0
  194. spire/presentation/charts/ChartCategoryCollection.py +195 -0
  195. spire/presentation/charts/ChartCrossesType.py +21 -0
  196. spire/presentation/charts/ChartData.py +267 -0
  197. spire/presentation/charts/ChartDataLabel.py +481 -0
  198. spire/presentation/charts/ChartDataLabelCollection.py +464 -0
  199. spire/presentation/charts/ChartDataLabelPosition.py +35 -0
  200. spire/presentation/charts/ChartDataPoint.py +246 -0
  201. spire/presentation/charts/ChartDataPointCollection.py +75 -0
  202. spire/presentation/charts/ChartDataTable.py +164 -0
  203. spire/presentation/charts/ChartDisplayUnitType.py +37 -0
  204. spire/presentation/charts/ChartEffectFormat.py +76 -0
  205. spire/presentation/charts/ChartLegend.py +260 -0
  206. spire/presentation/charts/ChartLegendPositionType.py +27 -0
  207. spire/presentation/charts/ChartMarkerType.py +39 -0
  208. spire/presentation/charts/ChartPlotArea.py +150 -0
  209. spire/presentation/charts/ChartRotationThreeD.py +72 -0
  210. spire/presentation/charts/ChartSeriesDataFormat.py +600 -0
  211. spire/presentation/charts/ChartSeriesFormatCollection.py +238 -0
  212. spire/presentation/charts/ChartShapeType.py +29 -0
  213. spire/presentation/charts/ChartStyle.py +61 -0
  214. spire/presentation/charts/ChartTextArea.py +158 -0
  215. spire/presentation/charts/ChartType.py +95 -0
  216. spire/presentation/charts/ChartWallsOrFloor.py +114 -0
  217. spire/presentation/charts/CrossBetweenType.py +20 -0
  218. spire/presentation/charts/DataLabelShapeType.py +28 -0
  219. spire/presentation/charts/DisplayBlanksAsType.py +17 -0
  220. spire/presentation/charts/ErrorBarSimpleType.py +21 -0
  221. spire/presentation/charts/ErrorValueType.py +25 -0
  222. spire/presentation/charts/Geography.py +12 -0
  223. spire/presentation/charts/HistogramAxisFormat.py +26 -0
  224. spire/presentation/charts/IChart.py +905 -0
  225. spire/presentation/charts/IChartAxis.py +826 -0
  226. spire/presentation/charts/IChartEffectFormat.py +87 -0
  227. spire/presentation/charts/IChartGridLine.py +337 -0
  228. spire/presentation/charts/IErrorBarsFormat.py +128 -0
  229. spire/presentation/charts/ITrendlineLabel.py +73 -0
  230. spire/presentation/charts/ITrendlines.py +285 -0
  231. spire/presentation/charts/InteriorColorPattern.py +35 -0
  232. spire/presentation/charts/LayoutProperty.py +124 -0
  233. spire/presentation/charts/LegendEntry.py +30 -0
  234. spire/presentation/charts/LegendEntryCollection.py +52 -0
  235. spire/presentation/charts/PictureType.py +23 -0
  236. spire/presentation/charts/ProjectionType.py +22 -0
  237. spire/presentation/charts/QuartileCalculation.py +17 -0
  238. spire/presentation/charts/TickLabelPositionType.py +23 -0
  239. spire/presentation/charts/TickMarkType.py +23 -0
  240. spire/presentation/charts/TreeMapLabelOption.py +21 -0
  241. spire/presentation/charts/TrendlinesType.py +27 -0
  242. spire/presentation/charts/__init__.py +0 -0
  243. spire/presentation/collections/CommentAuthorCollection.py +60 -0
  244. spire/presentation/collections/CommentAuthorList.py +168 -0
  245. spire/presentation/collections/CommentCollection.py +44 -0
  246. spire/presentation/collections/CommentList.py +167 -0
  247. spire/presentation/collections/EffectDataCollection.py +101 -0
  248. spire/presentation/collections/EffectStyleCollection.py +73 -0
  249. spire/presentation/collections/EffectStyleList.py +69 -0
  250. spire/presentation/collections/EmbedImageList.py +121 -0
  251. spire/presentation/collections/FillFormatCollection.py +45 -0
  252. spire/presentation/collections/FillFormatList.py +13 -0
  253. spire/presentation/collections/FillListBase.py +78 -0
  254. spire/presentation/collections/FillStyleCollection.py +76 -0
  255. spire/presentation/collections/FillStyleList.py +32 -0
  256. spire/presentation/collections/GradientStopCollection.py +40 -0
  257. spire/presentation/collections/GradientStopDataCollection.py +76 -0
  258. spire/presentation/collections/GradientStopList.py +171 -0
  259. spire/presentation/collections/IMasterLayouts.py +78 -0
  260. spire/presentation/collections/ImageCollection.py +39 -0
  261. spire/presentation/collections/ImageTransformEffectCollection.py +39 -0
  262. spire/presentation/collections/LineStyleCollection.py +62 -0
  263. spire/presentation/collections/LineStyleList.py +79 -0
  264. spire/presentation/collections/MasterSlideCollection.py +40 -0
  265. spire/presentation/collections/MasterSlideList.py +140 -0
  266. spire/presentation/collections/OleObjectCollection.py +120 -0
  267. spire/presentation/collections/OleObjectProperties.py +154 -0
  268. spire/presentation/collections/ParagraphCollection.py +90 -0
  269. spire/presentation/collections/ParagraphList.py +195 -0
  270. spire/presentation/collections/ShapeAdjustCollection.py +57 -0
  271. spire/presentation/collections/ShapeAdjustmentList.py +43 -0
  272. spire/presentation/collections/ShapeList.py +1132 -0
  273. spire/presentation/collections/SlideCollection.py +56 -0
  274. spire/presentation/collections/SlideColorSchemeCollection.py +122 -0
  275. spire/presentation/collections/TabStopCollection.py +57 -0
  276. spire/presentation/collections/TabStopList.py +127 -0
  277. spire/presentation/collections/TagCollection.py +58 -0
  278. spire/presentation/collections/TagList.py +174 -0
  279. spire/presentation/collections/TextLineFormatCollection.py +43 -0
  280. spire/presentation/collections/TextLineFormatList.py +61 -0
  281. spire/presentation/collections/TextRangeCollection.py +60 -0
  282. spire/presentation/collections/TextRangeList.py +145 -0
  283. spire/presentation/collections/VideoCollection.py +112 -0
  284. spire/presentation/collections/WavAudioCollection.py +110 -0
  285. spire/presentation/collections/__init__.py +0 -0
  286. spire/presentation/common/Boolean.py +194 -0
  287. spire/presentation/common/Byte.py +258 -0
  288. spire/presentation/common/Char.py +742 -0
  289. spire/presentation/common/Color.py +2189 -0
  290. spire/presentation/common/Common.py +163 -0
  291. spire/presentation/common/CultureInfo.py +567 -0
  292. spire/presentation/common/DateTime.py +1163 -0
  293. spire/presentation/common/Double.py +440 -0
  294. spire/presentation/common/EmfType.py +25 -0
  295. spire/presentation/common/Encoding.py +930 -0
  296. spire/presentation/common/FontStyle.py +27 -0
  297. spire/presentation/common/GraphicsUnit.py +29 -0
  298. spire/presentation/common/ICollection.py +73 -0
  299. spire/presentation/common/IDictionary.py +124 -0
  300. spire/presentation/common/IEnumerable.py +44 -0
  301. spire/presentation/common/IEnumerator.py +62 -0
  302. spire/presentation/common/IList.py +148 -0
  303. spire/presentation/common/Int16.py +274 -0
  304. spire/presentation/common/Int32.py +282 -0
  305. spire/presentation/common/Int64.py +258 -0
  306. spire/presentation/common/License.py +187 -0
  307. spire/presentation/common/PixelFormat.py +45 -0
  308. spire/presentation/common/Point.py +300 -0
  309. spire/presentation/common/PointF.py +276 -0
  310. spire/presentation/common/Rectangle.py +451 -0
  311. spire/presentation/common/RectangleF.py +438 -0
  312. spire/presentation/common/Regex.py +964 -0
  313. spire/presentation/common/RegexOptions.py +31 -0
  314. spire/presentation/common/Single.py +418 -0
  315. spire/presentation/common/Size.py +273 -0
  316. spire/presentation/common/SizeF.py +261 -0
  317. spire/presentation/common/SpireObject.py +81 -0
  318. spire/presentation/common/Stream.py +552 -0
  319. spire/presentation/common/String.py +1880 -0
  320. spire/presentation/common/TimeSpan.py +874 -0
  321. spire/presentation/common/UInt16.py +274 -0
  322. spire/presentation/common/UInt32.py +274 -0
  323. spire/presentation/common/UInt64.py +274 -0
  324. spire/presentation/common/__init__.py +383 -0
  325. spire/presentation/diagrams/ISmartArt.py +142 -0
  326. spire/presentation/diagrams/ISmartArtNode.py +347 -0
  327. spire/presentation/diagrams/ISmartArtNodeCollection.py +196 -0
  328. spire/presentation/diagrams/SmartArtColorType.py +51 -0
  329. spire/presentation/diagrams/SmartArtLayoutType.py +99 -0
  330. spire/presentation/diagrams/SmartArtStyleType.py +43 -0
  331. spire/presentation/diagrams/__init__.py +0 -0
  332. spire/presentation/drawing/Backdrop.py +96 -0
  333. spire/presentation/drawing/BackgroundType.py +21 -0
  334. spire/presentation/drawing/BevelColorType.py +19 -0
  335. spire/presentation/drawing/BevelPresetType.py +41 -0
  336. spire/presentation/drawing/BlackWhiteMode.py +39 -0
  337. spire/presentation/drawing/BlendEffect.py +60 -0
  338. spire/presentation/drawing/BlendMode.py +27 -0
  339. spire/presentation/drawing/BlurNode.py +29 -0
  340. spire/presentation/drawing/ColorFormat.py +341 -0
  341. spire/presentation/drawing/ColorScheme.py +274 -0
  342. spire/presentation/drawing/ColorSchemeIndex.py +25 -0
  343. spire/presentation/drawing/ColorType.py +27 -0
  344. spire/presentation/drawing/EffectDag.py +200 -0
  345. spire/presentation/drawing/EffectFillType.py +25 -0
  346. spire/presentation/drawing/EffectNode.py +13 -0
  347. spire/presentation/drawing/EffectStyle.py +60 -0
  348. spire/presentation/drawing/ExtensionList.py +25 -0
  349. spire/presentation/drawing/FillFormat.py +195 -0
  350. spire/presentation/drawing/FillFormatType.py +29 -0
  351. spire/presentation/drawing/FillOverlayEffect.py +85 -0
  352. spire/presentation/drawing/FormatScheme.py +126 -0
  353. spire/presentation/drawing/FormatThreeD.py +91 -0
  354. spire/presentation/drawing/GlowEffect.py +67 -0
  355. spire/presentation/drawing/GlowNode.py +36 -0
  356. spire/presentation/drawing/GradientFillFormat.py +132 -0
  357. spire/presentation/drawing/GradientShapeType.py +25 -0
  358. spire/presentation/drawing/GradientStop.py +40 -0
  359. spire/presentation/drawing/GradientStopData.py +36 -0
  360. spire/presentation/drawing/GradientStyle.py +26 -0
  361. spire/presentation/drawing/GraphicFrame.py +185 -0
  362. spire/presentation/drawing/GraphicalNodeLocking.py +121 -0
  363. spire/presentation/drawing/IImageData.py +105 -0
  364. spire/presentation/drawing/ImageTransform.py +134 -0
  365. spire/presentation/drawing/ImageTransformBase.py +13 -0
  366. spire/presentation/drawing/InnerShadowEffect.py +95 -0
  367. spire/presentation/drawing/InnerShadowNode.py +55 -0
  368. spire/presentation/drawing/OuterShadowEffect.py +227 -0
  369. spire/presentation/drawing/OuterShadowNode.py +157 -0
  370. spire/presentation/drawing/PatternFillFormat.py +97 -0
  371. spire/presentation/drawing/PatternFillType.py +127 -0
  372. spire/presentation/drawing/PenAlignmentType.py +21 -0
  373. spire/presentation/drawing/PictureData.py +61 -0
  374. spire/presentation/drawing/PictureFillFormat.py +257 -0
  375. spire/presentation/drawing/PictureFillType.py +19 -0
  376. spire/presentation/drawing/PresetShadow.py +115 -0
  377. spire/presentation/drawing/PresetShadowNode.py +72 -0
  378. spire/presentation/drawing/ReflectionEffect.py +301 -0
  379. spire/presentation/drawing/ReflectionNode.py +197 -0
  380. spire/presentation/drawing/SchemeColor.py +32 -0
  381. spire/presentation/drawing/SoftEdgeEffect.py +48 -0
  382. spire/presentation/drawing/SoftEdgeNode.py +25 -0
  383. spire/presentation/drawing/__init__.py +0 -0
  384. spire/presentation/export/PdfConformanceLevel.py +30 -0
  385. spire/presentation/export/SaveToHtmlOption.py +37 -0
  386. spire/presentation/export/SaveToPdfOption.py +109 -0
  387. spire/presentation/export/SaveToPptxOption.py +37 -0
  388. spire/presentation/export/__init__.py +0 -0
  389. spire/presentation/lib/Spire.Presentation.Base.dylib +0 -0
  390. spire/presentation/lib/__init__.py +0 -0
  391. spire/presentation/lib/libSkiaSharp.dylib +0 -0
  392. spire/presentation/license/LicenseProvider.py +112 -0
  393. spire/presentation/license/__init__.py +0 -0
  394. spire/presentation/table/Cell.py +475 -0
  395. spire/presentation/table/CellCollection.py +158 -0
  396. spire/presentation/table/ColumnCollection.py +42 -0
  397. spire/presentation/table/ColumnList.py +119 -0
  398. spire/presentation/table/ITable.py +689 -0
  399. spire/presentation/table/RowList.py +126 -0
  400. spire/presentation/table/TableBorderType.py +39 -0
  401. spire/presentation/table/TableColumn.py +39 -0
  402. spire/presentation/table/TableRow.py +39 -0
  403. spire/presentation/table/TableRowCollection.py +45 -0
  404. spire/presentation/table/TableStylePreset.py +88 -0
  405. spire/presentation/table/__init__.py +0 -0
  406. spire/presentation/transition/BlindsSlideTransition.py +45 -0
  407. spire/presentation/transition/CoverSlideTransition.py +58 -0
  408. spire/presentation/transition/FlythroughTransition.py +51 -0
  409. spire/presentation/transition/GlitterTransition.py +49 -0
  410. spire/presentation/transition/GlitterTransitionDirection.py +31 -0
  411. spire/presentation/transition/InvXTransition.py +47 -0
  412. spire/presentation/transition/LRTransition.py +47 -0
  413. spire/presentation/transition/OptionalBlackTransition.py +52 -0
  414. spire/presentation/transition/RevealTransition.py +51 -0
  415. spire/presentation/transition/ShredTransition.py +52 -0
  416. spire/presentation/transition/SideDirectionTransition.py +50 -0
  417. spire/presentation/transition/SlideShowTransition.py +262 -0
  418. spire/presentation/transition/SplitSlideTransition.py +53 -0
  419. spire/presentation/transition/StripsSlideTransition.py +52 -0
  420. spire/presentation/transition/Transition.py +33 -0
  421. spire/presentation/transition/TransitionCornerDirection.py +25 -0
  422. spire/presentation/transition/TransitionDirection.py +21 -0
  423. spire/presentation/transition/TransitionEightDirection.py +33 -0
  424. spire/presentation/transition/TransitionFlythroughInOutDirection.py +23 -0
  425. spire/presentation/transition/TransitionInOutDirection.py +21 -0
  426. spire/presentation/transition/TransitionRevealLRDirection.py +23 -0
  427. spire/presentation/transition/TransitionShredInOutDirection.py +23 -0
  428. spire/presentation/transition/TransitionSideDirectionType.py +23 -0
  429. spire/presentation/transition/TransitionSoundMode.py +21 -0
  430. spire/presentation/transition/TransitionSpeed.py +23 -0
  431. spire/presentation/transition/TransitionSplitDirection.py +23 -0
  432. spire/presentation/transition/TransitionTwoDirection.py +19 -0
  433. spire/presentation/transition/TransitionType.py +127 -0
  434. spire/presentation/transition/WheelSlideTransition.py +46 -0
  435. spire/presentation/transition/ZoomSlideTransition.py +48 -0
  436. spire/presentation/transition/__init__.py +0 -0
  437. spire_presentation-11.2.0.dist-info/METADATA +138 -0
  438. spire_presentation-11.2.0.dist-info/RECORD +440 -0
  439. spire_presentation-11.2.0.dist-info/WHEEL +5 -0
  440. spire_presentation-11.2.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,440 @@
1
+ spire/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ spire/presentation/ActiveSlide.py,sha256=tO6miszJ4eCv5IsgjyaplC939Xj1QFb83C9oV-odpUA,7243
3
+ spire/presentation/AppException.py,sha256=vnkTvOpXiS9aIOMVJ8SdYSPcQ8-zaShe299W1kcG9A0,389
4
+ spire/presentation/AudioCD.py,sha256=K2XehFsYsjjjgSleQ8T6R90RM05CfiXKR8fzkOXujC4,2789
5
+ spire/presentation/AudioPlayMode.py,sha256=lQQf_VVSu-jU6Fg6b3L6vFDKblWjdWxulwvFIFK8Jno,570
6
+ spire/presentation/AudioVolumeType.py,sha256=P2BcVGepnJeUUL-vSzlEhSIxiABUKeNCH9pl71Arm8Q,547
7
+ spire/presentation/BaseShapeLocking.py,sha256=T3UOyvWGlPjQE-vKh5XB_ojNCT3R_X4i7SXvKrRKjS4,797
8
+ spire/presentation/Camera.py,sha256=u4muwVVKRWO3ADe2u156HxjE66bfdWEyA4KkJ-YFhMQ,4521
9
+ spire/presentation/ClickHyperlink.py,sha256=BtH2Lk_DlCJKu-jDKSqRZEqfEEp2KdWQ1hyLOpZvILk,16256
10
+ spire/presentation/Comment.py,sha256=hhBHNA870bfZkvXgc2DFU252J7U620k3FPf0SxPFFNE,6838
11
+ spire/presentation/ConnectorLocking.py,sha256=qEpCYCp3LPdCiMCiGHKn0Ej1oGcGxyG63VICpsIqmEc,466
12
+ spire/presentation/DefaultTextRangeProperties.py,sha256=b2X5KCIW3FdYLScIn9HjiCnbM4LCrv4tQRXmY2kixmM,21382
13
+ spire/presentation/Direction.py,sha256=dRtNraIv1J6UcPnipm59hi34w6HY1hEqRuTIW-oNXtQ,437
14
+ spire/presentation/Field.py,sha256=gPDlQBKpzRrITYLpCuJYAAz1yWy8BfvEI3bNwoagDf0,1715
15
+ spire/presentation/FieldType.py,sha256=F6CUkAGzRKLiz0m3sViFxO7D0acKujuoN4_07cdHE5o,9074
16
+ spire/presentation/FileFormat.py,sha256=wxvqah4yw-IIg35lD_jBWK8W7Za0mGTXbKIkX4v1goc,1606
17
+ spire/presentation/FontAlignmentType.py,sha256=k3s-ianSzQovGHN7_cS2RbpgBbtFWBzH73VO2vPryRs,702
18
+ spire/presentation/FontCollectionIndex.py,sha256=Q9pgy410cCtces_D6chrlCKEqWj0kS9kGmqP0JVZLAg,523
19
+ spire/presentation/FontScheme.py,sha256=U6OqUeppE5fNdpKDUwOZobXJB6ZxocovYma-mT-fBBY,2457
20
+ spire/presentation/FormatAndVersion.py,sha256=N9htgex4-co5ZvJ-JiFm_216V00hMuRd9bvCflZagWw,2143
21
+ spire/presentation/GroupShape.py,sha256=7pC5-G5e_Dxldcv6OOi8vV_zrFuPPQBeLyAs7uHN3hk,2400
22
+ spire/presentation/GroupShapeLocking.py,sha256=rtYR6qit7hKyQ0COiptZBk2RHNzW1FyAeLgeFSmRVm4,5313
23
+ spire/presentation/HyperlinkActionType.py,sha256=O1InpACftNhyDYJ7aLvdsptjlNE1fxD4PIPqCVjTbjw,1593
24
+ spire/presentation/IActivePresentation.py,sha256=YOZUVdyhyA7NLCb0J9uz2KKI7d_Tk-JfGDhIgUegFS4,925
25
+ spire/presentation/IActiveSlide.py,sha256=cs6i5O6iULqrPai9UwSm8gDV4Rg3pYpFUxgt1Ia0pOY,858
26
+ spire/presentation/IAudio.py,sha256=L8JnACoQNkFgxqQA3ogajKWmfE2vsvys5ielyGwp2-M,20893
27
+ spire/presentation/IAudioData.py,sha256=EKPaghnp7SCLOC15IPMAMI0Igy9nQ66b5z-oq-iU5zY,2026
28
+ spire/presentation/IAutoShape.py,sha256=Mqe0_HkIdwNE02jYwAabfseneb2cQZB_s_tTQc39YtQ,20723
29
+ spire/presentation/ICommentAuthor.py,sha256=Vw7WmVT0GS1oVZ1Jt4uT28gRyhPpE6kPnJ-WwiNnZig,3947
30
+ spire/presentation/IDigitalSignature.py,sha256=aUOD2hjLUrb46-qbtbyWtQ227-dV9Y8Vf9R18b5_qos,2646
31
+ spire/presentation/IDigitalSignatures.py,sha256=9A9BtPHUu0OLyx5ycnH-SlbpA_i8Bn0OHPYAm_TIx1I,1259
32
+ spire/presentation/IDocumentProperty.py,sha256=U8ZjE1Tj2wvjulcPIDVTD2R2PHOSQztQo22aVF56gek,19509
33
+ spire/presentation/IEmbedImage.py,sha256=jAUv3Pcqf06oIf5svFe4bpwX2dJ_mdqOncKDjrNmzNA,17884
34
+ spire/presentation/ILayout.py,sha256=t6MrKSFxLWcRuEcrc0XLn9zOJ8nrELYalTS_Uy2nKww,4883
35
+ spire/presentation/IMasterSlide.py,sha256=fehM1k98vs0eTbfZw99qKq7CDJpYnpBfEnbxuaZ68dA,9075
36
+ spire/presentation/INoteMasterSlide.py,sha256=UQ_M-JEUIRLh_Unvyuh4YTuFV76yAQ3TsfpfZwpWcMg,5981
37
+ spire/presentation/IOleObject.py,sha256=UWQJPL1yfdyQmMDXltQPAxBzfanZMoSErmictZH4_4U,21566
38
+ spire/presentation/IShape.py,sha256=UEdVSe4g77a8Pzy1PDv5AdAlMEm8sBpEkpEHjIwc0vA,21728
39
+ spire/presentation/ISlide.py,sha256=j_uSCn77pVnAm6FR87h1WKOjE-z6_mlLz_cD1ZeqDBQ,27450
40
+ spire/presentation/ITextFrameProperties.py,sha256=mb3xUGThlIHjbEmoYF0X63uXILpg4EblqvQoneWcOJY,20440
41
+ spire/presentation/IVideo.py,sha256=LgdRrL-qMVw48FvuGTOhk5ma0mVYN_2_Qo0RPKrIKSo,25525
42
+ spire/presentation/ImportDataFormat.py,sha256=vQKQ_ue4pF3oaNPKb0pQFT10Fr8NbOfPUhmb2U6Q3iw,552
43
+ spire/presentation/InsertPlaceholderType.py,sha256=OsFZZq1BGvsspZ79cEpeZoYGzv2uZZQiFo9RZB2Q_p8,449
44
+ spire/presentation/KnownColors.py,sha256=ql8-lFIKteOqIRaMNl90WthZ2eTCpH6T-MWJ7_-Yl0I,3138
45
+ spire/presentation/LightRig.py,sha256=P-0lry4Jifo-MyJ_eNkCYNtNg9XM6qwUU7QXQy07jNQ,4045
46
+ spire/presentation/LightingDirectionType.py,sha256=8DloEBBjvCYZVVvHLYM2PHcOtLMKOvy6uLj403GclqY,592
47
+ spire/presentation/LineCapStyle.py,sha256=Cy7ldOiVRJvWtWxI_S_CEmZ-zTfC2PYCxReeor6MZiU,593
48
+ spire/presentation/LineDashStyleType.py,sha256=UMizcvtj7ze7TgttfMVn0DUXb_gxzI0CPCmh6l6kZlU,1154
49
+ spire/presentation/LineEndLength.py,sha256=h3thanRkow8hMZrcIutzepxOM55cZcYBu8nNL-Al5VY,549
50
+ spire/presentation/LineEndType.py,sha256=i4Ajhsqvg_SrQ1kXHmILaQJBE1l7OyNELSWQn0lSIWw,838
51
+ spire/presentation/LineEndWidth.py,sha256=d4UUcZTLV8E0QOB5aIFJkJat-6B7SbGJ3hk9_ojV0pA,603
52
+ spire/presentation/LineFillFormat.py,sha256=5uXgGZKrcswBTO791nvhOw6v9WZiR5TvuSraBQfamXI,4762
53
+ spire/presentation/LineJoinType.py,sha256=aLEJ0bUJfCUWiC9rI3M72t_reoNorbwOgDP9wgZLsk4,605
54
+ spire/presentation/LineText.py,sha256=Jsx15jgha5g3fFWCfBNQ386XEEPqlL-dE329dZ3ljMc,1265
55
+ spire/presentation/LinearGradientFill.py,sha256=t9ZlUB_9OKCW_ar_vaqNxvWCuepoNc7rY7OlHDgQfRw,2223
56
+ spire/presentation/LocaleFonts.py,sha256=00rfqvYGNCE78X7ANmu6bWM91weYsh_j1Sd1GUdjJl8,4039
57
+ spire/presentation/MasterTheme.py,sha256=wNeRGjlEQ_BhIPgFfuN7r427N5pYXIiU1Hmni4aJQbw,3161
58
+ spire/presentation/MetaCharacterType.py,sha256=VsDZw2fHZqY4P6EY3b-xe4QvFF1defns47fOuai4v5g,907
59
+ spire/presentation/NotesSlide.py,sha256=xHxWm8BniHP-PvmuT53nCzoGpQogCW8IXSNJmAPHtCA,3457
60
+ spire/presentation/NumberedBulletStyle.py,sha256=5f0vT9eKNo3Cxc5UIovwxrhDQFOcP1roe_NeGVaWet8,1666
61
+ spire/presentation/OleObject.py,sha256=yw8lnYHgVNook1i1CQRKxg2GBP_KriMyysNB4hpEFvg,4107
62
+ spire/presentation/Order.py,sha256=dgH9JjAwSJH1emcCkXv0Qr80lJSxOQenGZZ0HqFms4M,416
63
+ spire/presentation/PageSlideCount.py,sha256=zs_X8XApSFnV27fB4yTP1gOcyvIxH9vus5UarpTKma0,507
64
+ spire/presentation/ParagraphProperties.py,sha256=zX2_BHEdiJGk9oqRCHD5IECXNGNq8mhF0PZiKKpWNus,23983
65
+ spire/presentation/PictureShape.py,sha256=W9uboiRpYzgLE-q7EEdpCiYfvzKTRVMgIf6RP0GDFUo,4097
66
+ spire/presentation/Placeholder.py,sha256=51abqCYmSkYfBm-aVRFsfYSzerfhwva0O8p-_k80jdE,3536
67
+ spire/presentation/PlaceholderSize.py,sha256=Odz3X_iJ_wk0XiBknLQADRfSbmWE0x4mLqOFi6X8rxI,541
68
+ spire/presentation/PlaceholderType.py,sha256=pJV53YZ4j7LHR277Zrq_Ipo4gaYzUFeBNwJK_PiMfgY,1318
69
+ spire/presentation/PptObject.py,sha256=IuACvd837Vg2Dv3eyWdjdZ4EXpKYO9GqvLowaw2R89E,1321
70
+ spire/presentation/Presentation.py,sha256=cPkV3L9Zz0chDgVQesUjXKAK75p8fopiRqC1wroCWSU,52595
71
+ spire/presentation/PresetCameraType.py,sha256=NzrY4kAxBswsr9WajV0YfBNEo2zYAuM--RGjuL5nnQE,2300
72
+ spire/presentation/PresetLightRigType.py,sha256=mzFsayT5dBdaOEaQ56Nn5DvVhpJG9Zg3tErAu5Gw4a0,1776
73
+ spire/presentation/PresetMaterialType.py,sha256=gVMALrk6HXfqvTIAE6-BiFB9H8J-E2Dziniw0Jz6T9U,1479
74
+ spire/presentation/PresetShadowValue.py,sha256=D1itUNK0wk9Dn7_0q2SvKuUnlfoNGeJwbYVQLStsfwQ,1061
75
+ spire/presentation/RectangleAlignment.py,sha256=DEVjTGbLxNnqz27-uWvm2puulirh21UopQ147KkIGEY,593
76
+ spire/presentation/RelativeRectangle.py,sha256=aR-TngLniePLlY1UBY55S04B4cED6hQl9-T0q_N4mfE,7393
77
+ spire/presentation/Section.py,sha256=D6_9nSqSxbrZDLW42nWLetElOjLyD8LBrDYjmeoSFos,5983
78
+ spire/presentation/SectionList.py,sha256=RjWi5EEt9Gh7sMUVVXrHrcki6yEwWkRRwOJaxJyKIoo,6733
79
+ spire/presentation/Shape.py,sha256=AQptb0QD5EQ2XkTqpW-kCZ6bBUd7a-zck-PCAGV7dGQ,20632
80
+ spire/presentation/ShapeAdjust.py,sha256=ifv3Q7aF9XcoqMgPzSzjXkkO4Yg-dpKctTD8KkgZkLU,2162
81
+ spire/presentation/ShapeAlignment.py,sha256=Qz21-gy1KadO34mg4OcmiZmEpOzLQe1hDgu2fhPS9DM,1151
82
+ spire/presentation/ShapeArrange.py,sha256=-iuWr5uZzAGgL8uO1ExaFoxjMYFQquO5DMHcBkWhXz4,816
83
+ spire/presentation/ShapeBevelStyle.py,sha256=VIrEwtZ9eNETUSvm3XHQFMxml4VkFc9krBrb8eznCJI,2931
84
+ spire/presentation/ShapeCollection.py,sha256=1GdQ64QcSlpDccbmYMI_qctWaomwUc-C_RKmqHkiJOQ,2554
85
+ spire/presentation/ShapeElementFillSource.py,sha256=UEJchsWBD8Qw7utw1Ay3HXYDtOkfU-SB5TLkBWQmK5o,819
86
+ spire/presentation/ShapeElementStrokeSource.py,sha256=djCLhwXrsEZyeS_FnGFNQzIcZQTO16Yb6-U3yJB5IBk,564
87
+ spire/presentation/ShapeLocking.py,sha256=0-VJgNF5te_JwWYblGjc4dpilI-APMmxv8bJO9Up4TA,1481
88
+ spire/presentation/ShapeNode.py,sha256=UdyoFBVID-iI6ZTO9DPmATLBTbkX5HUfV9y9Et_nzc4,3396
89
+ spire/presentation/ShapeStyle.py,sha256=SJCjgKZfp9v2zRb3MhsODs6w6V8Nf02S3bQTms4qS-k,7762
90
+ spire/presentation/ShapeThreeD.py,sha256=d8JUKRaDN-sMS3FsljvjKq5kCmA-aMVx1RCk8saCNxM,7171
91
+ spire/presentation/ShapeType.py,sha256=wikp9tqfwtO1mkSzR9a5Y-OUo9624ybmApwQzcv__So,4922
92
+ spire/presentation/SimpleShapeBaseLocking.py,sha256=8Qqah_GIyFp5GsSUn_G-Gd8kp_KrSkJfQHUm0WYwLDc,9577
93
+ spire/presentation/SlideBackground.py,sha256=bN9IXnqPcVCSJWFDbhsRH5-2OAXnD7SbuPpGmDum2pk,6377
94
+ spire/presentation/SlideColorScheme.py,sha256=UDSe1WgLcTWMPhlm6e5rgIzjr66nRAYWgkI7n9mMR6E,1871
95
+ spire/presentation/SlideLayoutType.py,sha256=d-NLbB_ZeIfvBQ4z6X9C8B1By7HW3wDCPXNOesMSgXo,3110
96
+ spire/presentation/SlideList.py,sha256=5bVpyrbewRj9rdjlYtrknSm9FWL0f0vp2ZcCky8QxgU,11703
97
+ spire/presentation/SlideOrienation.py,sha256=KAC4HpjqHqOIxcgr7psAdqsNqCz3oTRVNps0l_E9ntQ,465
98
+ spire/presentation/SlidePicture.py,sha256=LXlH_cCMa50CDAMFcdqIzNZub8KlwafhGaow752viR0,3319
99
+ spire/presentation/SlidePictureLocking.py,sha256=exrZs-TMsjpS-ekA6LFVTJCKdZS2FRpmmaSqLqVkmYM,1358
100
+ spire/presentation/SlideShowType.py,sha256=K09yb3KtRu1hA96dr7QevoEX7SLvKjfz7Z_94d56R9s,544
101
+ spire/presentation/SlideSize.py,sha256=ho7XVlro2KstncewkU45mt4sBDGDN7XiMW2-UF8j96M,3831
102
+ spire/presentation/SlideSizeType.py,sha256=4fa8JAPQXcUcrRodVXmItrtnpM5BIKTV0QaJAlcCTx4,1488
103
+ spire/presentation/SystemColorType.py,sha256=w7YdB28us7xQkCKlMzeqxEDdHsD5wbgOwLxy9rLMMD0,1049
104
+ spire/presentation/TabAlignmentType.py,sha256=uOC7sqKRF9pREL0DB7-MeLbtgh-zZ5YrivXuh3H0gX0,457
105
+ spire/presentation/TabData.py,sha256=13baDYOGVBuR_CSSY-Y365UOGO9MDQBWmZTeydI1PKM,2037
106
+ spire/presentation/TabStop.py,sha256=VqR3-0Ie6mWop71EjTy2IDv2FAYXMydWn0kfHW3cw4Y,2966
107
+ spire/presentation/TextAlignmentType.py,sha256=qznkumjyUJ7rof8vWZxrUFpT_iZ4N1fPGNH3WueyQQ0,644
108
+ spire/presentation/TextAnchorType.py,sha256=D2iBf5tDmW3gkb8SzV6ERSEpxyZDOmiMvoxTCSiLmwM,785
109
+ spire/presentation/TextAutofitType.py,sha256=3MHHpy3wcu6MjLWclBBVYuHDtJ1Jp8yWpzcZjQcBfu0,552
110
+ spire/presentation/TextBulletType.py,sha256=IJyj5hFQ_VbJS4pfrDSXwdAolU_9v94PZeYxaSDsRhc,612
111
+ spire/presentation/TextCapType.py,sha256=z86vcJk5GoRAswRYNW0kBA-Zcri-BdcuSriZpf_q8yw,572
112
+ spire/presentation/TextCharacterProperties.py,sha256=3bmPh1UWpqNyeTjhWj4Y_k6Lsj7DkUc6RiZfW7d38jo,26633
113
+ spire/presentation/TextFont.py,sha256=WI7WUiALzpRHF8SfYrNuj-TYmQtR1U4VVl8CKh4MVyc,3479
114
+ spire/presentation/TextHighLightingOptions.py,sha256=2gEQFxy7EhUvBaUoLj9joSAGrYboRQL8YqS9n-ydYDY,3161
115
+ spire/presentation/TextHorizontalOverflowType.py,sha256=wG-wdvMvUzVcEyqXr_WYI9V6rHjQybSKIZl4L1HvwGc,531
116
+ spire/presentation/TextLineFormat.py,sha256=V8nVmCuxx_qQahVpIf9FlqUNNknozMHINkemgCGT8ko,15364
117
+ spire/presentation/TextLineStyle.py,sha256=HxBc6nGHvwE8MaH9w1yApEc6ojaY5ynTWIACnyvXAeA,743
118
+ spire/presentation/TextParagraph.py,sha256=KKuSY7wSxEeSrGPg20S9WkJ8bBNvfA8ewgyv3uzCp18,4830
119
+ spire/presentation/TextParagraphProperties.py,sha256=dQfC609-sMPlHQVxFSHT0W41VkCfXFw0_2nibOn3G34,21251
120
+ spire/presentation/TextRange.py,sha256=RzHF-dmR0eFlJ9_tbczVjFBbonz1u7U5fu97fI02bvk,5390
121
+ spire/presentation/TextShapeType.py,sha256=0_6dBhoqOr6mYnz9Rje35qVii4-OZMJlPLBs8slqM_I,2823
122
+ spire/presentation/TextStrikethroughType.py,sha256=mXvb-2m6XnMePUcT93vyMM4mwm6gPOE6jwArvbthmcY,570
123
+ spire/presentation/TextStyle.py,sha256=84b3HxMHU37Te-xe41zIv3duhCo_IMfLymOKhZD4BgI,3185
124
+ spire/presentation/TextUnderlineType.py,sha256=kLe5Z_nR4HS6uEplP0MnTYsCgn7tlhp-udG-_WnKHTU,1466
125
+ spire/presentation/TextVerticalOverflowType.py,sha256=sGSbyxFHsi_l2xbMhF0qnR5_eJnR2G_0BjdPjTci02s,536
126
+ spire/presentation/Theme.py,sha256=YLuA9P1pRRvnJKw13NhmFJFK-YFrKveTxBaW_W8fPJU,3508
127
+ spire/presentation/TileFlipMode.py,sha256=EOUAmIV_-XcPbJLKveqFCQxce-avM5xKTxTX9gOLkVA,639
128
+ spire/presentation/TriState.py,sha256=7o-KRi9wCgqGFnJDequEiy1lI5oxdvtikqSSqRX-Nxs,347
129
+ spire/presentation/VerticalTextType.py,sha256=QnfgZqtJk6ET8V0dDpqdCl2m_6fo1iKQ7J8TZ9uG8ms,924
130
+ spire/presentation/VideoData.py,sha256=nRZk9GqVu222O9Tv5TcB7NdpRKUEeP5H9qgRGTnZlJA,3033
131
+ spire/presentation/VideoPlayMode.py,sha256=IMe5Br8YGYbLCDe-y5vwuydtUD0tzOweu_bxZ6IYTzs,571
132
+ spire/presentation/_Presentation.py,sha256=q8n_1Bwp50mE0LLBxEcpQSOkMUizozKM49a942uq6RM,6015
133
+ spire/presentation/__init__.py,sha256=keJ32BAqGGZwFoIDBR8nZMPR0cYqGO1j4rjBUhcI0lk,29696
134
+ spire/presentation/animation/AnimateType.py,sha256=r-9-O4l7djyjahzUcaa7K3PKsTsUTERL9fdMuu9W3Rw,644
135
+ spire/presentation/animation/AnimationCalculationMode.py,sha256=88BtVcpqnHfWGnBnXZbLH60Bou_perd9DJF27cVA9IY,606
136
+ spire/presentation/animation/AnimationColorBehavior.py,sha256=v6xJDmeAqa2YKS9ac8fnM1T9ja3v2iai6acA7ZQzslE,5152
137
+ spire/presentation/animation/AnimationColorDirection.py,sha256=9ei8sskd8kbCn2bIQhalRHsk4cJJI6_hfHYahgvZwUI,575
138
+ spire/presentation/animation/AnimationColorTransform.py,sha256=wbyf36-UbMl0bB_WASRn5bSmSJCd3UEwpTfb7ScWLtY,2962
139
+ spire/presentation/animation/AnimationColorspace.py,sha256=CxZsPT394b4dVU58V5p50h2Wsq0_xb5EkpwdWoBL5GQ,491
140
+ spire/presentation/animation/AnimationCommandBehavior.py,sha256=7vdjikcgU1MsYvCLIFr56t5j8DG4Owao023KwbQcUew,2636
141
+ spire/presentation/animation/AnimationCommandType.py,sha256=SL5dyLNML_ur0HrnWwOJhEZF7osUsnw_woCMGHovoeY,554
142
+ spire/presentation/animation/AnimationEffect.py,sha256=Q8YG28kJbvuu981-4e97t-o-gtL_u-V-Yspb-CPjhHw,12241
143
+ spire/presentation/animation/AnimationEffectCollection.py,sha256=GrHajSQTH87EgMnw1Rgisq1vQ03lnSwAp9LYpUhtsyo,6356
144
+ spire/presentation/animation/AnimationEffectSubtype.py,sha256=sAyJhH2bdZbaCgpTYiyXixxCvwUJtj5lKvIY45ugyCs,4844
145
+ spire/presentation/animation/AnimationEffectType.py,sha256=cIfDz7gMtGYIiqmn-QQwNxSVONmJ_oJRvrQaD5mD2cw,11605
146
+ spire/presentation/animation/AnimationFilterEffect.py,sha256=8Mqyu7seaKYg9fKtmUsLUw6JlJHU6H-Ly9ausv3MjBw,3215
147
+ spire/presentation/animation/AnimationMotion.py,sha256=bvgKPRGcbPhEsW7OZeYDlFZQym0Gw3eaNm2W0dlF2BU,7211
148
+ spire/presentation/animation/AnimationMotionOrigin.py,sha256=ugM-lIKuhEeM7EN2BXr5Oi2IuTF3368oI4OjJiIf9T8,540
149
+ spire/presentation/animation/AnimationMotionPathEditMode.py,sha256=3oAO_2dksUBA0ZwFL0OZ3W4CS0B14xTIdDb48Y_DViU,555
150
+ spire/presentation/animation/AnimationProperty.py,sha256=SUKToW_qg3BUJWDv7Dj5AV77h0fnL93iWLp23UmvBOQ,6000
151
+ spire/presentation/animation/AnimationRepeatType.py,sha256=jNxXfCuCNvNIWNIENeyLgotBX6J2CqCUNGuhyanEm1g,561
152
+ spire/presentation/animation/AnimationRestartType.py,sha256=6pCiC_Di7QTb_nC1YVrmWhGb90fYprPE1ZADr3nC1NU,552
153
+ spire/presentation/animation/AnimationRotation.py,sha256=kqV7IsvOLEPOCZUmiFzUKyJpUu4TSt8TRm-iNdFt1Ys,2077
154
+ spire/presentation/animation/AnimationScale.py,sha256=JX9nnR8miqBonUVAR4SCSAxC_B2QP9dsJddYuzz0bVk,3919
155
+ spire/presentation/animation/AnimationSet.py,sha256=mRUTvqku0vA0rRUTv5dSr83xm_mrbWAYbmq4HLYUdZg,1099
156
+ spire/presentation/animation/AnimationTriggerType.py,sha256=1DqbOoRXHWbdMDGeUHY46I4j3W5OvonkLX_to2rfEUs,678
157
+ spire/presentation/animation/BehaviorAccumulateType.py,sha256=aX3mDsurff5j_U-XCz7UDFBEKq_S322tEEHJlzzITkU,574
158
+ spire/presentation/animation/BehaviorAdditiveType.py,sha256=n3LRAatnDURePkGq1iDVorwxBy2ytBgBN_8_sI1xyYQ,785
159
+ spire/presentation/animation/CommonBehavior.py,sha256=-6JxWfwaUPOHIBqnbDgcaJqdI_iCgSsX7Yb_xDhZdVo,3759
160
+ spire/presentation/animation/CommonBehaviorCollection.py,sha256=jAwvOE_aCiATZuS7FNRJjOyI_R3RiCIu54jWiyMV9KY,8523
161
+ spire/presentation/animation/FilterEffectSubtype.py,sha256=D5tuoeHrWgGeGD7hWj1rB7bOXYsbMofwOhlupXOWZj0,2327
162
+ spire/presentation/animation/FilterEffectType.py,sha256=rfMGXcEwx07lQ7MW5I0S7cArJAV4yEA0PJHTer_w2_s,2153
163
+ spire/presentation/animation/FilterEffectsType.py,sha256=a86_VfDbQExhbpekFgAvRNAAlaNi78uadslGOtXBQmc,664
164
+ spire/presentation/animation/FilterRevealType.py,sha256=VJKspwhGtpK9a5JYdo6W6j9EGIEYEXA8TAv9LVb-DLc,577
165
+ spire/presentation/animation/GraphicAnimation.py,sha256=SZqLdB9YmqgopaDJig5ZhE9XLktAk5PLA4AcYBwGXE8,2215
166
+ spire/presentation/animation/GraphicAnimationCollection.py,sha256=FYFeW_zhYiMEjNAzhyayJDpiYJ2R2dU5KCCBGdqqn7g,4788
167
+ spire/presentation/animation/GraphicBuildType.py,sha256=l_nohdpuKQHER4DsCjCVgZbVWowss0V9QCGqpnDzp9Q,805
168
+ spire/presentation/animation/MotionCmdPath.py,sha256=_3Y-vPtZXuAX8uRurBam8QFBTDqNs_xx7EZa8wXTlZQ,4142
169
+ spire/presentation/animation/MotionCommandPathType.py,sha256=YndQF9ZAFc4QOJwVpu5Bf7CC0NJAM1_f95nGYUV-0tg,723
170
+ spire/presentation/animation/MotionPath.py,sha256=O0HlcGMyx_dRvFzJji0AFh7MgDJgKNj1dJDw-9i4FpE,4113
171
+ spire/presentation/animation/MotionPathPointsType.py,sha256=l0TRxaFZehEswtx6QoBbrczpq-h9yh3Wzb6l-9cQjG8,1034
172
+ spire/presentation/animation/ParagraphBuildType.py,sha256=b4jLlWhtSllUWjRLtxrAzDzfBAgry6Kcs65k-46t8Cw,971
173
+ spire/presentation/animation/PropertyValueType.py,sha256=c4utZnfqeaolKwvZ3pYkghAJAJ-X_1a5uEt6Toczg8M,656
174
+ spire/presentation/animation/SequenceCollection.py,sha256=hLd7in9a_UKlCjkdQEdG8NqCSDFMJ12WiVyBPcy7kOM,3728
175
+ spire/presentation/animation/TextAnimation.py,sha256=Adx-PpaVZq1osXGeZw9VoQFiDhUADbXPrlhRQHLBwCc,2943
176
+ spire/presentation/animation/TextAnimationCollection.py,sha256=I7-LYcaTZ3HUWaq_Gq7Zj6EnaDWIl8Qk1svuruSgHCY,5686
177
+ spire/presentation/animation/TimeAnimationValue.py,sha256=mTv23DyrBv4YKUQn5tbmjKRoZ8spebYSE0VSb8NS3AI,2708
178
+ spire/presentation/animation/TimeAnimationValueCollection.py,sha256=MSY4eyZ7cLQf7J_xNbIzcTFzRQSNagDKKl5yRYSEfKw,1976
179
+ spire/presentation/animation/TimeLine.py,sha256=vcQx_1ITsYuwIK87JqSenwV-efkpL6Ky1T9QRodXoNA,2783
180
+ spire/presentation/animation/TimeNode.py,sha256=ygD_ieFqyEmAzv_ITbkmxnApJxBfsa_bKA7I6K7_vG0,2050
181
+ spire/presentation/animation/TimeNodeAudio.py,sha256=-xTN0kggxYo6EXp2wY8qJiDVTlM9QlkH-x3Hzfi6_gg,4219
182
+ spire/presentation/animation/TimeNodeMedia.py,sha256=vgtTnWIBWWqlkeFweiKvtMAI3r6WnMnRposwVwbPqcs,1015
183
+ spire/presentation/animation/TimeNodePresetClassType.py,sha256=CE5XoyNcLTB-EhXOlKgFz2SAbcWWBJqpxkYk736mzpk,816
184
+ spire/presentation/animation/TimeNodes.py,sha256=sIMZy6LYbMB1pg5GLdtRf-HjLK0seAi07L-ZsZqUwPg,3732
185
+ spire/presentation/animation/Timing.py,sha256=CjXkxmOwrFXXSeupXwL-07mDFyprkjEQ7RABMYBEDUg,9295
186
+ spire/presentation/animation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
+ spire/presentation/charts/AxisPositionType.py,sha256=UFXLbfjDGyc_KEkzwRlf8KRhnRUzipmfDq30Tc6vTEE,510
188
+ spire/presentation/charts/AxisType.py,sha256=ScKq6kk8TeK9cfmwzde4EB7ZIyzHn6Yb1YwdaF-H1gA,511
189
+ spire/presentation/charts/CellRange.py,sha256=ex21dLDAtZ_hXmne8UQ7PUsSer55UHOzsMAVopj1Wgc,6754
190
+ spire/presentation/charts/CellRanges.py,sha256=0UslWDJMyVaKGCyfvHnf-8YOjOpWE64v-8mKIBQ6KB0,4158
191
+ spire/presentation/charts/ChartAxis.py,sha256=5RbMTpuXim8PPWEAp1jNfLl51ckA9davSZ3r5gZwpTs,31445
192
+ spire/presentation/charts/ChartBaseUnitType.py,sha256=ItCT_nboM6lhl5x-BiIhmUP9s7z8g937jZ0VAlwYm4w,393
193
+ spire/presentation/charts/ChartCategory.py,sha256=SQdAKn4Xq_VWLOWPg6YHHc1tB7pppayhDcNV55BCEzU,1336
194
+ spire/presentation/charts/ChartCategoryCollection.py,sha256=2WsCyVaPfl0xL0DUsD2WtIF665ktwfLuTCoWdwuI1rE,7119
195
+ spire/presentation/charts/ChartCrossesType.py,sha256=sc70BaTiGeCVpXuVR_C_f53I-t5EXZJYGYn3iSCWM-M,573
196
+ spire/presentation/charts/ChartData.py,sha256=6u_z7vb1-4u0aSP3HvpOAnS2cqvKYXFvEX7SUeecbk8,9506
197
+ spire/presentation/charts/ChartDataLabel.py,sha256=HPmJP6v-Tn5v5VjTanTiiWF-NYrqdm0eZqDXPE1PYLo,18164
198
+ spire/presentation/charts/ChartDataLabelCollection.py,sha256=uXfSdHQ5ge6aRUENgJwXMw29SSkGyqNbAPJ_s2fEBg0,18639
199
+ spire/presentation/charts/ChartDataLabelPosition.py,sha256=Ab5AA_UPU5iJt3Xij91Ygj16C1_v1fxDFKozkatL2sM,893
200
+ spire/presentation/charts/ChartDataPoint.py,sha256=5G3ydB21eR9tDIzLJKrLieiIaPuj8odFC3sm5m1JqSA,9128
201
+ spire/presentation/charts/ChartDataPointCollection.py,sha256=3N4wE1b_BzxV6vQVN2GvuVprYw0Dj3IoMYgC5timK_Q,2634
202
+ spire/presentation/charts/ChartDataTable.py,sha256=tl7P2NgYmKZm4rcAyc6LhdQiHoxq2uF3KrNgvaut9Sc,5740
203
+ spire/presentation/charts/ChartDisplayUnitType.py,sha256=WXHwZqAe1BxQKuLLULXQAeJDQ0-b9n7NzETThLTIJFQ,1148
204
+ spire/presentation/charts/ChartEffectFormat.py,sha256=xDAru3c3_MHaqu1hZUHnPKdMnhIMJy1teJkvOaRYpfM,2373
205
+ spire/presentation/charts/ChartLegend.py,sha256=LepIzGdoOCElRw_9TZ9qtXCqzKKxy7ziZm3D9zE3Fuw,9042
206
+ spire/presentation/charts/ChartLegendPositionType.py,sha256=mOGipFga8-YrqLHfwhBVS6-OfbyEiQyJItmF3PCkkRw,660
207
+ spire/presentation/charts/ChartMarkerType.py,sha256=KSiQTf4aXTAJ3qga91m7ly7u1g9UwpMf-rbKW3ZfOW8,916
208
+ spire/presentation/charts/ChartPlotArea.py,sha256=jGN0kP2M-gW7Zn_gllf5T9MEuUAHnPS9-wrEukPdA6o,5187
209
+ spire/presentation/charts/ChartRotationThreeD.py,sha256=sPMZ5QwNr9MJgPc4bEJ8Myp0S7O0bnohY1kLwRYOW4E,2789
210
+ spire/presentation/charts/ChartSeriesDataFormat.py,sha256=F51QFy2Gj4LuFRskbZ7zy8j-ZrClMfg1BZKx_juvX4w,24729
211
+ spire/presentation/charts/ChartSeriesFormatCollection.py,sha256=G8UlmK_skv_fnbnp-zr9gLX3O6SfQ9cQ1wz9hZh6WJ8,8890
212
+ spire/presentation/charts/ChartShapeType.py,sha256=A7g-iDLvsanhSsUGxZoA2NtK-KrbG0_vDHPx4qz-JZg,698
213
+ spire/presentation/charts/ChartStyle.py,sha256=Zmpge1A7xSAI0YpdmY7xt8Fkx_aS4VlHe7NrxZCLQD0,1133
214
+ spire/presentation/charts/ChartTextArea.py,sha256=uIQe0CeAGiTKnFQt10K_xm0rnJGC45XhAnEiCVgTMwA,5457
215
+ spire/presentation/charts/ChartType.py,sha256=cZDFbNJFQ2tS9-_3AB4uEBsfhzEYdwoMy-seTnY9lxY,2422
216
+ spire/presentation/charts/ChartWallsOrFloor.py,sha256=QrVTexI3_tRa8ShQPaEyfXunFjC9SMv3O4djGibMmPw,3896
217
+ spire/presentation/charts/CrossBetweenType.py,sha256=D9JkQoctJ6AoPQW_4fZ2KHzG4d5C0OMIDK4MVUd_3OI,515
218
+ spire/presentation/charts/DataLabelShapeType.py,sha256=5C3OxBYY08yCmnozLSpgkPtOkEKMVV3Fro77yobbeGE,686
219
+ spire/presentation/charts/DisplayBlanksAsType.py,sha256=DLK5ESv5sfqtgr6E8J2KlYAU7F5PbnO2e7rO2G3uQME,366
220
+ spire/presentation/charts/ErrorBarSimpleType.py,sha256=zAbsHdzyasd8WKKolpve3uX0Q-dAFX_yO8WO9CjKxqs,582
221
+ spire/presentation/charts/ErrorValueType.py,sha256=f8znGymHDXHFZ7SRR6DHDhoifwQZBzNRcS4X-pTjYhs,786
222
+ spire/presentation/charts/Geography.py,sha256=VtV5vIVgMVMu0Tg3dWRZOTd44vXbZFPWaxExFYV2Ibg,267
223
+ spire/presentation/charts/HistogramAxisFormat.py,sha256=qrsR_herC8k9aq4yNufpJSHyXW8Z6QmYqPB3oxc_PwE,770
224
+ spire/presentation/charts/IChart.py,sha256=gtqKVjsjbMp83dTm4WHynKtMJ2ClCKgfwY5vGKJTNk8,30984
225
+ spire/presentation/charts/IChartAxis.py,sha256=Up79yUm1RampOfzRohUeJXhB3EcODVXXqo8dGPUGVd0,31399
226
+ spire/presentation/charts/IChartEffectFormat.py,sha256=cIY3KCP1hLz5kdO_usoe1ZJMl0bRAEFyoF5UR0l-jMk,2953
227
+ spire/presentation/charts/IChartGridLine.py,sha256=aw5qbUuQpYNr8vybAjZ-Qv7RL56GeF-UQOvUGZuQIjs,12643
228
+ spire/presentation/charts/IErrorBarsFormat.py,sha256=TZNqQYHxLI4-BKaxVlq8Lq-FBXiuYVwtUpO5cDIZyiI,4843
229
+ spire/presentation/charts/ITrendlineLabel.py,sha256=sgHut1got5eeW56jMvdZA8lTaLYDg4xAePgVsegYJQA,2923
230
+ spire/presentation/charts/ITrendlines.py,sha256=esDUZokKlWfr0au0kpGlk-ydRd48pW0zXzWJauS_mQo,9836
231
+ spire/presentation/charts/InteriorColorPattern.py,sha256=2WkEYzrtbfAmEj7ReDZURits4V6JPetkpDZwD-3sHyo,729
232
+ spire/presentation/charts/LayoutProperty.py,sha256=hJHejEqWev78QqYM6mAj12dduDukQVwJCJoINcms-_c,5076
233
+ spire/presentation/charts/LegendEntry.py,sha256=D5rTxGzkEGHodP7W18D0f9itzcRaoCM_aq35hXVjxPM,937
234
+ spire/presentation/charts/LegendEntryCollection.py,sha256=4xYA_ChXDNdsLgy4DZaYWTPOFhzUw9DjeF1KPGmPyJg,1678
235
+ spire/presentation/charts/PictureType.py,sha256=hg1JvPSDxtoMOQEbPkNTvJskzkpvAtUBr9r2blxx1yE,593
236
+ spire/presentation/charts/ProjectionType.py,sha256=4ECRKs51u3cGPB3Z57fFmVt2cxLZU-y0CTEWRg5ogIc,678
237
+ spire/presentation/charts/QuartileCalculation.py,sha256=0PEO4FaiaKVFZKrrIcLw9ekQnnIGNk8dzr_CPCOZaWM,518
238
+ spire/presentation/charts/TickLabelPositionType.py,sha256=VDPQDQt9GbHfuzP250z1LalwilVFleBsWCiZBBrduWc,693
239
+ spire/presentation/charts/TickMarkType.py,sha256=F072eLwcL1FvoZ5zzX78wtXDnTeT_ulN38--0JrIOT0,628
240
+ spire/presentation/charts/TreeMapLabelOption.py,sha256=bX3QxIyavu-C1JPGMg6CF50mq_X9O8GuFni3CEoKJoQ,546
241
+ spire/presentation/charts/TrendlinesType.py,sha256=K1nH3gHLtSfGvjfV8ciF-SDx4-nHfd7hB1J41tqe2ZU,785
242
+ spire/presentation/charts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
243
+ spire/presentation/collections/CommentAuthorCollection.py,sha256=vFHIohgN8nzj6idFQICdco8PPgy47uLeI5F3SSlQwiA,2265
244
+ spire/presentation/collections/CommentAuthorList.py,sha256=LbSzK-qX-f9kJthZjUvzfoUC3mIHQt0wzPAOTAebebU,6082
245
+ spire/presentation/collections/CommentCollection.py,sha256=UXnl8PIgwhWNgszYqNqjpNFPIJ3pGkjgRkxJ2LlHTb4,1530
246
+ spire/presentation/collections/CommentList.py,sha256=pGVeeb33Ktuc69JuyLeM9PfmmHcprqc7lrWTZWJZShI,5907
247
+ spire/presentation/collections/EffectDataCollection.py,sha256=dumrXt50HCRzUeSza6vJTWegIZBCPMqNOnJ7wCTZDvE,3828
248
+ spire/presentation/collections/EffectStyleCollection.py,sha256=CE3WOCx3aiLJHJtEVFP4mSbkEZ6jyr1EsGD_X8UBLeA,2741
249
+ spire/presentation/collections/EffectStyleList.py,sha256=_NnMXGCPZGAbLUPIUns8nkn8TSgZNfbkT58H9kKpBtQ,2505
250
+ spire/presentation/collections/EmbedImageList.py,sha256=N_HrJovPcdJ8uLYPZJwPtOW8ydmHs41YJR6SE9Fwzcw,4379
251
+ spire/presentation/collections/FillFormatCollection.py,sha256=G3in1UhoEXARNejjQJlWP3QSBZgxSuC-BmwKPRt4_yc,1539
252
+ spire/presentation/collections/FillFormatList.py,sha256=MzMykstLEz9XZZJVmp482G2avZ1zcwh_a-Fm2gSKc3k,331
253
+ spire/presentation/collections/FillListBase.py,sha256=ZYpz-Zwqxs3R-h_PPiy0pD5Ce6A8veph7n_CU8gMXAc,2676
254
+ spire/presentation/collections/FillStyleCollection.py,sha256=CkEuG7U1YLCvDG3Zg7WveX8vqovUbl0Z8RpA3P-qxEE,2718
255
+ spire/presentation/collections/FillStyleList.py,sha256=EYhEn-TJQG1C6PBcLXPK0JrZ8aX3gk8VVrQSqmB1JOw,1034
256
+ spire/presentation/collections/GradientStopCollection.py,sha256=zv-Adm8q1eaEXCPsx8sfBeIKqyOrGWQtm8_n0AmKBKU,1275
257
+ spire/presentation/collections/GradientStopDataCollection.py,sha256=SlC27f3tqAWLubQnw5DnLRp8VJRW63HgLAt7bQRbkhA,2706
258
+ spire/presentation/collections/GradientStopList.py,sha256=9MFeCAuSD6EJD8EN8xPmjGc4sj__it72EMSnPKV-ah8,6328
259
+ spire/presentation/collections/IMasterLayouts.py,sha256=cHdafqhEFhNIT4-xPzUvw4-qxj-BSCSImlsuE27tvDc,2567
260
+ spire/presentation/collections/ImageCollection.py,sha256=LINiLNcdFWE-Xd4w1UiuuZ7K12jhHeXbNqcAaNk9A10,1212
261
+ spire/presentation/collections/ImageTransformEffectCollection.py,sha256=4E-3gS983NvvBzex7dLffN02xzayZSNCOxnWVW31D34,1354
262
+ spire/presentation/collections/LineStyleCollection.py,sha256=1c0hxY2vMDHDap2NJhBmXf57b2FjBLjs6zy5PY4LZKI,2229
263
+ spire/presentation/collections/LineStyleList.py,sha256=YryFSCJBVDyGDc-VhnXvvUc1w7mIUkpBOVoEOUeDRzM,2723
264
+ spire/presentation/collections/MasterSlideCollection.py,sha256=f_FwBV1lAaILGs22DqZpOjgNNVhsmtZlDZTRX1Z44MQ,1425
265
+ spire/presentation/collections/MasterSlideList.py,sha256=4bS6tigMRy1El3THVS9FpLfVLBzQ-fnqLbq8a48Hpdc,4770
266
+ spire/presentation/collections/OleObjectCollection.py,sha256=_sLvj7fH9rKxGv4lsM4JyCDaznkO1USfP-CqnGWYPMo,4449
267
+ spire/presentation/collections/OleObjectProperties.py,sha256=mZCOyTtH5WzIJImi-ECnluIOOzSuaKIO4S4CKQz-1vs,5626
268
+ spire/presentation/collections/ParagraphCollection.py,sha256=os64bd6kIE03NWCdlVBSMsQQl139IT98N4OzTe6jkd8,3472
269
+ spire/presentation/collections/ParagraphList.py,sha256=y-mx5uCHlUNecVPuJepo4N1pBsjp2sWpdqQpsiArez8,6955
270
+ spire/presentation/collections/ShapeAdjustCollection.py,sha256=1W8tpj8y3dnk7iA-2HorzIIfEkkxR878_kkPt1y52u4,2120
271
+ spire/presentation/collections/ShapeAdjustmentList.py,sha256=HmZ7cgYCMmpbLr3_ZpMGW1uQ8hfBByeUxSOGV3x5j4Q,1425
272
+ spire/presentation/collections/ShapeList.py,sha256=Su2pAGqAwjuBwS-jsY8pszUyYaQpwkQxDRkpaCRMsEs,41798
273
+ spire/presentation/collections/SlideCollection.py,sha256=cPNE-UzGXLp8MT5MzzI2cSUtW2sief_Y6mi-M8WK1nk,1963
274
+ spire/presentation/collections/SlideColorSchemeCollection.py,sha256=WAu5QvAht-fouAWNuzop0_2dg_nqzySWvgc-RGiOyMA,4275
275
+ spire/presentation/collections/TabStopCollection.py,sha256=-8hWeAtDk3-S2EuPpUwKu5-fFHNnVCso-U2PT6-eALM,2000
276
+ spire/presentation/collections/TabStopList.py,sha256=p5jzgEOYLXRKrRBsNbUOsOMGM7Bu5cVfTZo15hp6f0s,4112
277
+ spire/presentation/collections/TagCollection.py,sha256=lpXzBVkmKK6TVNKuUvO0u7sd63OPpnhVJ8JRTHdbpFs,1898
278
+ spire/presentation/collections/TagList.py,sha256=tQ7RVBUbEHoIZtgpw6EAw8tTEBDEQTUZR4duChYYtRI,5267
279
+ spire/presentation/collections/TextLineFormatCollection.py,sha256=B9MHsAUMsvl9zW0ODq806PF8ewJc3FzbYACw9N_TG00,1536
280
+ spire/presentation/collections/TextLineFormatList.py,sha256=IgnYqLxkeVWjqRn3m8A4s5NAFihniw1jJNPcw-3i7_o,2128
281
+ spire/presentation/collections/TextRangeCollection.py,sha256=yapIxPtxO8Tn1A0XBHCd-PFHDi7F5Mbut_QproN72JY,2110
282
+ spire/presentation/collections/TextRangeList.py,sha256=HOfwQAAZjQPNKwSFqXaRAEp8JzkexdQhDbtVUhCPCZI,4865
283
+ spire/presentation/collections/VideoCollection.py,sha256=3rJEDBBcKoo-c41Gly3TY8hiP6KHs8OHOU0BvEXZJRw,3681
284
+ spire/presentation/collections/WavAudioCollection.py,sha256=LO_REzUmZokXV7HA65Xh9lQvmHR_EYIF0oiI0gqR2UA,3661
285
+ spire/presentation/collections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
286
+ spire/presentation/common/Boolean.py,sha256=Gg9BuhmYb0mU10Qypjcotmi6y8eYNkkL7ZVNWJXNvXM,5019
287
+ spire/presentation/common/Byte.py,sha256=HPugnfUOmO41y-YJA6dZwoF3b8-c57M6zAGWbqT0J48,6567
288
+ spire/presentation/common/Char.py,sha256=86CbXciZ9KQqoD0LwEmdZjk22w7X1_rVHp-kvYT1QRw,17817
289
+ spire/presentation/common/Color.py,sha256=uYBsLKFbdqYF7PXuRzB8x6qjPEwjxIqNsrAhk8ZmGdc,55510
290
+ spire/presentation/common/Common.py,sha256=nXeuE9Blcv7Rd0JlAB9UQGWFiMJpf6QAmkFWAHrfmeA,5174
291
+ spire/presentation/common/CultureInfo.py,sha256=nwFgmdhTMCOGauGKNoNdaNY3660-WpKh49aFExRuWxA,16924
292
+ spire/presentation/common/DateTime.py,sha256=RKIQPDAtr4O9Y3G10MIkfI2vPNyqhT7N_adNcvjDooo,33867
293
+ spire/presentation/common/Double.py,sha256=CpQg0MScflfa8YE9bDotLBaS75vJEu9AGDgUkXf6O4U,11578
294
+ spire/presentation/common/EmfType.py,sha256=xQSrQ2suaN8NnV-S6xRmi_nQZhqhdc3CfGU8XYkWLrw,627
295
+ spire/presentation/common/Encoding.py,sha256=j9n4ng3N0N0YQbxgrNW3cW9w091dVEIXPFnljhTeaCQ,28339
296
+ spire/presentation/common/FontStyle.py,sha256=YC-j5qLDf9A_q7RqRYw7SHLmqRCjWnnppFtZTT33bWI,655
297
+ spire/presentation/common/GraphicsUnit.py,sha256=okBnR-Rg5Plg9T5yU29P94myOUE3ykU1pg9T2Hhcgnw,687
298
+ spire/presentation/common/ICollection.py,sha256=OfqKypHDwwgDGZMwQ7dho-63DZosQn82wjD5fCbhSuU,2156
299
+ spire/presentation/common/IDictionary.py,sha256=Ll9QjoHss2h1-CJJbEq-dNdTsJrTE23XOkj2-_dknN4,2014
300
+ spire/presentation/common/IEnumerable.py,sha256=l-bxpSofSo5DplJI1GQDFl3Xm1WM8VDx2H-96nH7dhQ,1426
301
+ spire/presentation/common/IEnumerator.py,sha256=kwwgAZkTXzaChJ84-xz3JvvB8277M8AHK3k-EKyyWlQ,1713
302
+ spire/presentation/common/IList.py,sha256=2vSsYwQVcQywFqmISDHC6aBmjoYbyifWA9pE0G5Nr90,4050
303
+ spire/presentation/common/Int16.py,sha256=IU-1d63XdDPRgL1DaUS_SGDXwdbNqMjCM9JqDlQMtb0,7121
304
+ spire/presentation/common/Int32.py,sha256=W9IAGGw2aVkgja-vPy-AvvCMc2xN3ww6x__5Uq0B88s,7527
305
+ spire/presentation/common/Int64.py,sha256=hf_Pl3gYPgUoSYTmbjE7F5faIIxejyp7cxsCEv_UqK4,6627
306
+ spire/presentation/common/License.py,sha256=i0tArKy5F-s5uMlsqI_xi-P6w2ZqRnRVCa2plpzUiBc,8689
307
+ spire/presentation/common/PixelFormat.py,sha256=_h4oLppoWjPqFTtPsQzACFTG9vo28iggtKRdrECsDeo,1196
308
+ spire/presentation/common/Point.py,sha256=fOpUybylgCqdJNvQcyQq9x8z1-hHJ8FooNn4I5KWU7g,7921
309
+ spire/presentation/common/PointF.py,sha256=g4kTwcHHlB-bGzC4mKkmXZOvtpALy_kVPJ7IErMh8XY,7572
310
+ spire/presentation/common/Rectangle.py,sha256=OOyoiCGZuoFbW8mXlnqygPgiixDwF-4GAtXsyxjtBj8,12335
311
+ spire/presentation/common/RectangleF.py,sha256=CRdweThcLeoz9hnSyTFSK5FoPKkEPtYhanq4nd1oOw0,12497
312
+ spire/presentation/common/Regex.py,sha256=G7-W5IIm1sWwbTcikUR__0p8OIeWPzRqKzahHoCqWuI,33605
313
+ spire/presentation/common/RegexOptions.py,sha256=UDAXOOMJB0b-FqCmOwOFaydf3a8BG-C_L_XUGtFvmzI,771
314
+ spire/presentation/common/Single.py,sha256=AUBq25j3wtaFjPgO5Vlg4mP-9KBw_8XwTsRtmhKkkYs,10848
315
+ spire/presentation/common/Size.py,sha256=kBRZRJtFimWxgcyvJVJDnE5BRTITdZfB2PY0h9TBbhg,7205
316
+ spire/presentation/common/SizeF.py,sha256=D2O9MvpH2xrsbS_XV5y8Hocb_PKG8aOgAc8hTK_tdns,7302
317
+ spire/presentation/common/SpireObject.py,sha256=ePvUecLN97Vn2J6rHwgXIKdWbBvyGSl0QYQbexeLCk8,2161
318
+ spire/presentation/common/Stream.py,sha256=EbJZRC9iFZ2oE3S-y1QgrVeJKN1WygswRoIqFyf4o0U,17377
319
+ spire/presentation/common/String.py,sha256=tysKd7tPb8CtRHvaHYL2DstuwWKM_zDs_enETqFTgVs,55057
320
+ spire/presentation/common/TimeSpan.py,sha256=NjKzlpCPrHvfIaK8fu0Ipcjr_eUWbR9rs5NbUDh3_-Q,25799
321
+ spire/presentation/common/UInt16.py,sha256=yFB9ZzaFmXDx9yUH28t6MDeFAyRNoM5EhN3eU1aaRL0,7192
322
+ spire/presentation/common/UInt32.py,sha256=DYsKvxrI7J-0ppCzPM5SCeP5rTszqUqdTPcjiwc26IU,7192
323
+ spire/presentation/common/UInt64.py,sha256=cHaKw1n6DHkxngz62YPdksXxFSJPotiGEC-Q9qWnLMg,7192
324
+ spire/presentation/common/__init__.py,sha256=Vo2z_qjiYCxQ9uCA6JkCs6zm56GmB4AwrSTzwegPo0w,17075
325
+ spire/presentation/diagrams/ISmartArt.py,sha256=q3OjbqNEJER1YQXCGCb_wRsFoB9VMp0JmpSulk6zq8Y,4987
326
+ spire/presentation/diagrams/ISmartArtNode.py,sha256=c1asUPIf3NeRolvYzHRfWAkadcaFqVavsO1VLrZ52M4,12408
327
+ spire/presentation/diagrams/ISmartArtNodeCollection.py,sha256=fMrc1qdzJUHKNNhOuKEOqu93rmvr9PPHvrHv9i-MsE8,6963
328
+ spire/presentation/diagrams/SmartArtColorType.py,sha256=JOWZbH1PKzADBwYEC2oRCEl_AfKxsgCxga9HwV-8wAc,1543
329
+ spire/presentation/diagrams/SmartArtLayoutType.py,sha256=Zon9i44TatD8Vmq6l5ieR3-9m9jGNjuq9Ewc8AAmZv0,2533
330
+ spire/presentation/diagrams/SmartArtStyleType.py,sha256=AV5M2Y29mPDmx_VdO9wsAWWmpOV54rKEnUV4OHrTe_0,1259
331
+ spire/presentation/diagrams/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
332
+ spire/presentation/drawing/Backdrop.py,sha256=l7b97hBoAosIFJ76KF_8f_mZCr8hjoWY9mPtDR0oarY,3646
333
+ spire/presentation/drawing/BackgroundType.py,sha256=GZZxl0vvauSLAs79XC9PREZ1eUPAxKT0RL8Umlv_80w,548
334
+ spire/presentation/drawing/BevelColorType.py,sha256=GyXksPCIejsjUUeYOMBSk7c6clk8bYx8utTbCUeMrD4,523
335
+ spire/presentation/drawing/BevelPresetType.py,sha256=A2PW7modFjyBkEWdyyHZpfdfSYXEXL1kAuwMFSBikSk,1283
336
+ spire/presentation/drawing/BlackWhiteMode.py,sha256=DcfqWIu5a_PDjJd1fnwOHPgyTGcVztVv68YAV0WAHPU,1274
337
+ spire/presentation/drawing/BlendEffect.py,sha256=gHyH5C_N3Vj-gbYKYSVISc1YzzmSFFpf7KIs744qlwQ,2188
338
+ spire/presentation/drawing/BlendMode.py,sha256=7AwxyBflaDZygF4yZqYAdVASCUGYcMM7jkLGh5qikF4,751
339
+ spire/presentation/drawing/BlurNode.py,sha256=aXzaWua93BhBKS7tITzzTAQt9yHpFGq1Y5TOy9a0TMo,1057
340
+ spire/presentation/drawing/ColorFormat.py,sha256=_ZqJo8GZBpts7uqPDZHZ3L7YO0OAVA7EoLG_N6JzSaU,10817
341
+ spire/presentation/drawing/ColorScheme.py,sha256=0ICR09Odp4sDzIBNdJJ84vgYEIDTV7RimpPtEvJWtUs,8540
342
+ spire/presentation/drawing/ColorSchemeIndex.py,sha256=AO5l3iufuH-nmnfntYAsT7_Y7Wao_nFq4ncNSaTa8R4,526
343
+ spire/presentation/drawing/ColorType.py,sha256=quYj1mL4IlsFCruLiRY8K63gsql_pQkJO3umGr3SqRI,822
344
+ spire/presentation/drawing/EffectDag.py,sha256=YvCTUfNZt-hdpcj9JLZ-NTd06cKKjNkdM0fq40x3EFE,7499
345
+ spire/presentation/drawing/EffectFillType.py,sha256=yAkDvcZkIl_VcPFARJz6sqSpv-AqhBBfF7ssZ0QXDOE,738
346
+ spire/presentation/drawing/EffectNode.py,sha256=SmRpXJP2wKF-SMeZdKJ3zp5Na4HE-vv0LsuipCpsACM,335
347
+ spire/presentation/drawing/EffectStyle.py,sha256=Z69q3yRIYB-aLgdIIpglAVuqMPYgjP-xI_kqlUeYZyg,2115
348
+ spire/presentation/drawing/ExtensionList.py,sha256=CyIPx1BOc8DhqIA9E9fJS-d44Yki1mRCryIRBiB_2D8,790
349
+ spire/presentation/drawing/FillFormat.py,sha256=bir_W7zWOgZkGBqKyltAD7OHJZrmu4N5uAldFOS-Ds0,6352
350
+ spire/presentation/drawing/FillFormatType.py,sha256=nkmDBgh7aXhktj_9aQvB5n1p1Mp7eHjra9l9R7ft_wI,912
351
+ spire/presentation/drawing/FillOverlayEffect.py,sha256=VDJYiPk1PfTHT1TY28L15-OsnHN5A5nB-Eq8v_nWMKs,3011
352
+ spire/presentation/drawing/FormatScheme.py,sha256=AXidHhO8ewddiSFnNWuJxo-w8KG_P9vsICBK_c4RvSE,4328
353
+ spire/presentation/drawing/FormatThreeD.py,sha256=q-DUqOKhuu_PAvkP35sPjf68wHRT4OV32wykq5-JZF4,3316
354
+ spire/presentation/drawing/GlowEffect.py,sha256=N7qm30HgumW_qHAgcu1OTuVTU6JlUlANIoWvP99XlLs,2460
355
+ spire/presentation/drawing/GlowNode.py,sha256=67ch8jPFidR0Cx8xRckyodiazNLYjMiEnlgcEn1Q7w4,1150
356
+ spire/presentation/drawing/GradientFillFormat.py,sha256=FVSJBouC7Ku_HbEtrYJ5Icpps6rjKf9cRRCQP9Xr2o4,5192
357
+ spire/presentation/drawing/GradientShapeType.py,sha256=844PRY3_syl8gmzMMzxFUXkKOTZFRTxh50njOX3qB9I,720
358
+ spire/presentation/drawing/GradientStop.py,sha256=7et0EpwVCWaSMuN9VI9Dm0U9PgMl_FfxdUBMIiKuUzw,1341
359
+ spire/presentation/drawing/GradientStopData.py,sha256=TAZsU23hUai5XjK2PLCp8CFxhgyHni4xVoTzWk7GXHw,1108
360
+ spire/presentation/drawing/GradientStyle.py,sha256=nij_R0skMfPbAaw72q_qR2oOcfbhdJAQmO-uoqjrc2Y,793
361
+ spire/presentation/drawing/GraphicFrame.py,sha256=MULQ6CgPc7Gr6dV8N8GYJqjIapS3xlx_kzZkoLkP5Bo,7626
362
+ spire/presentation/drawing/GraphicalNodeLocking.py,sha256=QFQs-GEj1E6CTnan9X-fN61ees5Bo6-lYie0R1Fesk0,5400
363
+ spire/presentation/drawing/IImageData.py,sha256=HLRG_b_2B9uH720Hxshu8JT9P26w-8xiPqwo1zWIUK4,3294
364
+ spire/presentation/drawing/ImageTransform.py,sha256=nIFM-uFX3lMeAwJg6GhwADjHDAEAnb91wutJNJrcx08,4590
365
+ spire/presentation/drawing/ImageTransformBase.py,sha256=TDVlWDovkz0Wg5PqwHlvhlN0XL4H8Yu3gW-Xw-Ki_1A,328
366
+ spire/presentation/drawing/InnerShadowEffect.py,sha256=R4v5asncMht7mL1ihi37iFuVZp_P6bowKYk40WOnHZs,3629
367
+ spire/presentation/drawing/InnerShadowNode.py,sha256=iU9ucd40Va8LDkulRSIrys94_1FwbJIa4jogISZd52c,1943
368
+ spire/presentation/drawing/OuterShadowEffect.py,sha256=gUWdW0xNz9zgnFn7-DVkXXJ4npocYc1ekUZEC82EgZA,8938
369
+ spire/presentation/drawing/OuterShadowNode.py,sha256=OldMi-g8dexyr1rzkIRE58XgDQLgsqpKFuK-zWlGEeo,5796
370
+ spire/presentation/drawing/PatternFillFormat.py,sha256=tBS7GnbUooiCTdhZ6gEPZtXik_iimalt93oEMq8NCio,4000
371
+ spire/presentation/drawing/PatternFillType.py,sha256=mx5zWBulIwj77Wd_S_rmzdvQQaqF8M4AYpP0WzK6uNY,4236
372
+ spire/presentation/drawing/PenAlignmentType.py,sha256=f0Ft1qxfOZCDPN9OsVNhj5rSwFFseECjFD_GoOOSQMI,556
373
+ spire/presentation/drawing/PictureData.py,sha256=vsNw9lE81GYxgjHLcHNqT28mAFxRwYVF8fJ4YW1uLFk,1972
374
+ spire/presentation/drawing/PictureFillFormat.py,sha256=fWmisMti0VdqjkTFr3-yk94BRxpz1bKB9pVBQkTwOGI,9723
375
+ spire/presentation/drawing/PictureFillType.py,sha256=U3rCBT943HuDR15q596mwDsEFxp7u_OmxB7_c4Ge4FA,526
376
+ spire/presentation/drawing/PresetShadow.py,sha256=Rgm1t1MOkYQhUKvIE52r7zXrm5_U-1Hcyf3-QBiCViE,4110
377
+ spire/presentation/drawing/PresetShadowNode.py,sha256=I9DHXIGsmjl2y_ejBUhHDMT-AXMcJvP-lKlp6QGF-fg,2472
378
+ spire/presentation/drawing/ReflectionEffect.py,sha256=ADUPR7FC7WkakR6k3E6QY1flFk51-YMIQOrhgE6wFKg,12080
379
+ spire/presentation/drawing/ReflectionNode.py,sha256=6muFW3HfkL7UxBlSpxiVzmMXx_2Lga20MFy_4NysEJE,7028
380
+ spire/presentation/drawing/SchemeColor.py,sha256=H58m_lq1XGBcD55rNYsPXPlcDhSZZA_KP82Dk1HxViw,728
381
+ spire/presentation/drawing/SoftEdgeEffect.py,sha256=d1GqV5azhEt-4813MLMA_mpD8HXBzmuvGI4sF0PIu-M,1672
382
+ spire/presentation/drawing/SoftEdgeNode.py,sha256=0SVes7ylqn3oyJtCXG_AX3LXXX9DQSw8ywFJh1k5x58,802
383
+ spire/presentation/drawing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
384
+ spire/presentation/export/PdfConformanceLevel.py,sha256=iNVP9RN4VXVDVwxAOzAPuzs9WXLJ3GE1YqmuHUAkLXg,858
385
+ spire/presentation/export/SaveToHtmlOption.py,sha256=1mDngk1O2_k7jKZbXN27EnqFalDwYRKl84gG-G4Isqs,1250
386
+ spire/presentation/export/SaveToPdfOption.py,sha256=PkxL8bPShaERYGbY-XQnUkZfjrk7Ni3kcHT5RQH_H4A,4211
387
+ spire/presentation/export/SaveToPptxOption.py,sha256=HH723owAGZVdjXxsSh3jfPlFxiQqU8feKfez9x189yE,1335
388
+ spire/presentation/export/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
389
+ spire/presentation/lib/Spire.Presentation.Base.dylib,sha256=i5ZEmJ6GrnXFecaTbLSBcvOEAqDdjkQgpZTKwauFFx0,48345648
390
+ spire/presentation/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
391
+ spire/presentation/lib/libSkiaSharp.dylib,sha256=oAMGuiK51CiHc6D512ZbnxPLX4AIZijIOsuDCjxx_MY,15217856
392
+ spire/presentation/license/LicenseProvider.py,sha256=QpViN9GBtS7mJAbPKofLYK_E9ihOBs-PFP-imq0w1Eo,3876
393
+ spire/presentation/license/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
394
+ spire/presentation/table/Cell.py,sha256=yXOm2EQjyPiECoPHow3Q3hS387feCAdnxw2EPvMkuoY,16363
395
+ spire/presentation/table/CellCollection.py,sha256=4v1011tztXQpY1BKI7xMeee8ynfWXMog8qaD2WNkDyU,5377
396
+ spire/presentation/table/ColumnCollection.py,sha256=GSRpd6i7F81EMoVLBzjXwQYUpp1KzuWzeDVO7xabiP8,1457
397
+ spire/presentation/table/ColumnList.py,sha256=Zma81sSu-fwQRJ7bcEOnbiPQ2BXA8rpLS8dF-klsr54,4073
398
+ spire/presentation/table/ITable.py,sha256=I21AUNol2ph7Gayt5VPefCgRR2XdjRf45BftNOVp7G4,24062
399
+ spire/presentation/table/RowList.py,sha256=cMjXkeKhFWB0Sm1K4wDeSZg_0HB_CueCx1kT1vWL64g,4178
400
+ spire/presentation/table/TableBorderType.py,sha256=Bz7SKEaWRmUU36tPx85hw3n_lk2WNUUBZ3TrgqRrNtw,1059
401
+ spire/presentation/table/TableColumn.py,sha256=Hj8MyAdyqpuScn_2TrbNVmGCQLskXAQYmN_Uz7MbU-s,1248
402
+ spire/presentation/table/TableRow.py,sha256=xP24TnM7rUG2uwr6dYuAE1rpzDnN12cftdS-Bn1aVvg,1246
403
+ spire/presentation/table/TableRowCollection.py,sha256=RWhxAJKKQpMjvPR8oX5GaToJLKCQuEPvCgLXxEJVRWI,1615
404
+ spire/presentation/table/TableStylePreset.py,sha256=YwcoVgSNtUT7tgV93TwCs0O7t9iAwdOuVjocmhNRuBc,2446
405
+ spire/presentation/table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
406
+ spire/presentation/transition/BlindsSlideTransition.py,sha256=HVJ-MFv_Bd0dDLnzw3Ibs6WsTiLGcyb7odO7ZpvPI-4,1675
407
+ spire/presentation/transition/CoverSlideTransition.py,sha256=51szAibdoqlQ8EBViPMTdnEVHPc-6LiWmoGi9m8Pqjs,2047
408
+ spire/presentation/transition/FlythroughTransition.py,sha256=F6xe1FvDSQBCzjCe0hibyVvUNW1UtEkAJ27qJeKo_LI,1806
409
+ spire/presentation/transition/GlitterTransition.py,sha256=cagNBHvD12B-2nSHUHNYZohCRUpgetoNt9mGblr5jQw,1782
410
+ spire/presentation/transition/GlitterTransitionDirection.py,sha256=GiPRCtkESUgeD6b5E14gGCF27n-5ZDDUSrjTjcmMqEA,1120
411
+ spire/presentation/transition/InvXTransition.py,sha256=F7hewrxef38Kt_w69Raf8AR54qttGmvDubvrP7-jD1E,1634
412
+ spire/presentation/transition/LRTransition.py,sha256=C4W996vrTcavKfpbJB3BH3MsMlfpekUYIawr8GcGJco,1698
413
+ spire/presentation/transition/OptionalBlackTransition.py,sha256=i7yceoOFHjB828hsRrrVyXyQYiG42YAb44R0-kkaosA,2057
414
+ spire/presentation/transition/RevealTransition.py,sha256=Sg8EPTq_oySpBRUkWXunqKgeVh1MIm6kiOsTJvZGTVQ,1832
415
+ spire/presentation/transition/ShredTransition.py,sha256=4fiWivtcnh-d4M6_ug5c6xQ017uEcMf-JW0X5_-UXlU,1792
416
+ spire/presentation/transition/SideDirectionTransition.py,sha256=whZqPd0zN8vYk6VX5BK7izSFDGWCjBTNOd8_76A16LY,1885
417
+ spire/presentation/transition/SlideShowTransition.py,sha256=MyUeNSRwgtSWC3-4fhX5OzyCx4ALG9xYzvjTW8qT794,10506
418
+ spire/presentation/transition/SplitSlideTransition.py,sha256=iIAbKOa9-eHOIHtY2ULaiJTmhiC9pXlbhsUvo8b_umk,1987
419
+ spire/presentation/transition/StripsSlideTransition.py,sha256=pwXt_q4f07DHx5OY6ApnMlVb7vpbdD5TPTSBGV2_0AY,1861
420
+ spire/presentation/transition/Transition.py,sha256=pvmyuhkXoMFkyCCkaABlWf4DEq_ZYheYH992TfgSmB8,1004
421
+ spire/presentation/transition/TransitionCornerDirection.py,sha256=lT5d8qu-EYhSaQh6AP9yGMmZeqsczCerfeSdO99pKag,700
422
+ spire/presentation/transition/TransitionDirection.py,sha256=NLHyHz2r9dhl1W4g3zYKW5vAxxmZrZXey3kam-5LIQA,542
423
+ spire/presentation/transition/TransitionEightDirection.py,sha256=Tfamc8elDjxBjrX4WczBK_nkTuUKdvIW2VN3Wxn2v7M,945
424
+ spire/presentation/transition/TransitionFlythroughInOutDirection.py,sha256=bTLnB2YRdwuXtL5bSam-TFhjD7mLQ5Q7kdsXe-gpEH0,620
425
+ spire/presentation/transition/TransitionInOutDirection.py,sha256=hsvnAIbPZH-Prd1yW98ACQCt3DTmAnhkn288MDB5PNU,525
426
+ spire/presentation/transition/TransitionRevealLRDirection.py,sha256=otDKAy_8cMtP2kcn1YilzMR8rOCL1vxShmu_TMOQSvU,783
427
+ spire/presentation/transition/TransitionShredInOutDirection.py,sha256=J9Z9FixrHmxFE8jbGPyDLIH5UBfn3QIleLf1y0CcMw0,700
428
+ spire/presentation/transition/TransitionSideDirectionType.py,sha256=dd7NfQPNLAIFE3p2GQI6ejDAe9Wb5LnuQ_UEi8jfJRU,598
429
+ spire/presentation/transition/TransitionSoundMode.py,sha256=zVMs0wEWn0VSRjubhEpNIJZW0gGVsYqOvHJIffRgeQ0,558
430
+ spire/presentation/transition/TransitionSpeed.py,sha256=Cvd4--BMSqtraVrdyUgU5gYdCAigxc2N2n8Q95lpTJ8,569
431
+ spire/presentation/transition/TransitionSplitDirection.py,sha256=4_nCGfMBCllxKM4MBh8K8SMdK0I8QedbHZ9uLieKmNM,616
432
+ spire/presentation/transition/TransitionTwoDirection.py,sha256=f2w5lq8bu5j1Vk5D6ymyukgrH7enuaLyC5DD89f8EkA,453
433
+ spire/presentation/transition/TransitionType.py,sha256=FbT_ielNzyC38DX4hhW_F_U4m4F7auBEQrP3t7e5Pno,3698
434
+ spire/presentation/transition/WheelSlideTransition.py,sha256=pUqoBn6UWHqe-tooylTK-_DgLDTVJ5QIFFAm8cWRSRY,1628
435
+ spire/presentation/transition/ZoomSlideTransition.py,sha256=j-SsuVpYhfMZjhdpsgIdBlO0ugf94ODeOs3VVpYn8Zw,1773
436
+ spire/presentation/transition/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
437
+ spire_presentation-11.2.0.dist-info/METADATA,sha256=MutzmA_Y2MgqSRiAFPKrpbWC2H_g4IEJpZtBti9k0ZE,8411
438
+ spire_presentation-11.2.0.dist-info/WHEEL,sha256=j7nN7xh8vAzUJNntqrZ0ZobyBlTK5h37JIgFj1rxjYo,106
439
+ spire_presentation-11.2.0.dist-info/top_level.txt,sha256=WxTypv85IOx5WpDWDS_HpIgu5l722KWSil7EHZwF08M,6
440
+ spire_presentation-11.2.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.45.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-macosx_11_0_arm64
5
+
@@ -0,0 +1 @@
1
+ spire