ppt-master 0.1.0__tar.gz

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 (11998) hide show
  1. ppt_master-0.1.0/LICENSE +21 -0
  2. ppt_master-0.1.0/MANIFEST.in +2 -0
  3. ppt_master-0.1.0/PKG-INFO +406 -0
  4. ppt_master-0.1.0/README.md +372 -0
  5. ppt_master-0.1.0/cli.py +134 -0
  6. ppt_master-0.1.0/ppt_master.egg-info/PKG-INFO +406 -0
  7. ppt_master-0.1.0/ppt_master.egg-info/SOURCES.txt +11996 -0
  8. ppt_master-0.1.0/ppt_master.egg-info/dependency_links.txt +1 -0
  9. ppt_master-0.1.0/ppt_master.egg-info/entry_points.txt +2 -0
  10. ppt_master-0.1.0/ppt_master.egg-info/requires.txt +18 -0
  11. ppt_master-0.1.0/ppt_master.egg-info/top_level.txt +2 -0
  12. ppt_master-0.1.0/pyproject.toml +66 -0
  13. ppt_master-0.1.0/setup.cfg +4 -0
  14. ppt_master-0.1.0/skills/__init__.py +1 -0
  15. ppt_master-0.1.0/skills/ppt-master/__init__.py +1 -0
  16. ppt_master-0.1.0/skills/ppt-master/cli.py +125 -0
  17. ppt_master-0.1.0/skills/ppt-master/scripts/README.md +132 -0
  18. ppt_master-0.1.0/skills/ppt-master/scripts/__init__.py +1 -0
  19. ppt_master-0.1.0/skills/ppt-master/scripts/analyze_images.py +584 -0
  20. ppt_master-0.1.0/skills/ppt-master/scripts/animation_config.py +124 -0
  21. ppt_master-0.1.0/skills/ppt-master/scripts/assets/bg_48.png +0 -0
  22. ppt_master-0.1.0/skills/ppt-master/scripts/assets/bg_96.png +0 -0
  23. ppt_master-0.1.0/skills/ppt-master/scripts/batch_validate.py +318 -0
  24. ppt_master-0.1.0/skills/ppt-master/scripts/check_annotations.py +126 -0
  25. ppt_master-0.1.0/skills/ppt-master/scripts/check_cli_sync.py +123 -0
  26. ppt_master-0.1.0/skills/ppt-master/scripts/check_deps_sync.py +271 -0
  27. ppt_master-0.1.0/skills/ppt-master/scripts/config.py +756 -0
  28. ppt_master-0.1.0/skills/ppt-master/scripts/docs/conversion.md +164 -0
  29. ppt_master-0.1.0/skills/ppt-master/scripts/docs/image.md +221 -0
  30. ppt_master-0.1.0/skills/ppt-master/scripts/docs/project.md +128 -0
  31. ppt_master-0.1.0/skills/ppt-master/scripts/docs/svg-pipeline.md +216 -0
  32. ppt_master-0.1.0/skills/ppt-master/scripts/docs/troubleshooting.md +80 -0
  33. ppt_master-0.1.0/skills/ppt-master/scripts/docs/update_spec.md +59 -0
  34. ppt_master-0.1.0/skills/ppt-master/scripts/error_helper.py +446 -0
  35. ppt_master-0.1.0/skills/ppt-master/scripts/finalize_svg.py +338 -0
  36. ppt_master-0.1.0/skills/ppt-master/scripts/gemini_watermark_remover.py +230 -0
  37. ppt_master-0.1.0/skills/ppt-master/scripts/generate_examples_index.py +245 -0
  38. ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/__init__.py +1 -0
  39. ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_bfl.py +179 -0
  40. ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_common.py +249 -0
  41. ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_fal.py +131 -0
  42. ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_gemini.py +226 -0
  43. ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_ideogram.py +156 -0
  44. ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_minimax.py +210 -0
  45. ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_modelscope.py +168 -0
  46. ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_openai.py +453 -0
  47. ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_openrouter.py +186 -0
  48. ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_qwen.py +201 -0
  49. ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_replicate.py +173 -0
  50. ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_siliconflow.py +184 -0
  51. ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_stability.py +147 -0
  52. ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_volcengine.py +191 -0
  53. ppt_master-0.1.0/skills/ppt-master/scripts/image_backends/backend_zhipu.py +190 -0
  54. ppt_master-0.1.0/skills/ppt-master/scripts/image_gen.py +769 -0
  55. ppt_master-0.1.0/skills/ppt-master/scripts/image_search.py +746 -0
  56. ppt_master-0.1.0/skills/ppt-master/scripts/image_sources/__init__.py +9 -0
  57. ppt_master-0.1.0/skills/ppt-master/scripts/image_sources/provider_common.py +471 -0
  58. ppt_master-0.1.0/skills/ppt-master/scripts/image_sources/provider_openverse.py +119 -0
  59. ppt_master-0.1.0/skills/ppt-master/scripts/image_sources/provider_pexels.py +124 -0
  60. ppt_master-0.1.0/skills/ppt-master/scripts/image_sources/provider_pixabay.py +129 -0
  61. ppt_master-0.1.0/skills/ppt-master/scripts/image_sources/provider_wikimedia.py +196 -0
  62. ppt_master-0.1.0/skills/ppt-master/scripts/latex_render.py +614 -0
  63. ppt_master-0.1.0/skills/ppt-master/scripts/notes_to_audio.py +379 -0
  64. ppt_master-0.1.0/skills/ppt-master/scripts/pptx_animations.py +659 -0
  65. ppt_master-0.1.0/skills/ppt-master/scripts/pptx_template_import.py +151 -0
  66. ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/__init__.py +13 -0
  67. ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/color_resolver.py +347 -0
  68. ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/converter.py +443 -0
  69. ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/custgeom_to_svg.py +192 -0
  70. ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/effect_to_svg.py +210 -0
  71. ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/emu_units.py +223 -0
  72. ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/fill_to_svg.py +393 -0
  73. ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/ln_to_svg.py +234 -0
  74. ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/ooxml_loader.py +375 -0
  75. ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/pic_to_svg.py +354 -0
  76. ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/prstgeom_to_svg.py +670 -0
  77. ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/shape_walker.py +392 -0
  78. ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/slide_to_svg.py +925 -0
  79. ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/tbl_to_svg.py +401 -0
  80. ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg/txbody_to_svg.py +1145 -0
  81. ppt_master-0.1.0/skills/ppt-master/scripts/pptx_to_svg.py +115 -0
  82. ppt_master-0.1.0/skills/ppt-master/scripts/project_manager.py +906 -0
  83. ppt_master-0.1.0/skills/ppt-master/scripts/project_utils.py +482 -0
  84. ppt_master-0.1.0/skills/ppt-master/scripts/register_template.py +383 -0
  85. ppt_master-0.1.0/skills/ppt-master/scripts/rotate_images.py +588 -0
  86. ppt_master-0.1.0/skills/ppt-master/scripts/source_to_md/doc_to_md.py +984 -0
  87. ppt_master-0.1.0/skills/ppt-master/scripts/source_to_md/excel_to_md.py +378 -0
  88. ppt_master-0.1.0/skills/ppt-master/scripts/source_to_md/pdf_to_md.py +1114 -0
  89. ppt_master-0.1.0/skills/ppt-master/scripts/source_to_md/ppt_to_md.py +646 -0
  90. ppt_master-0.1.0/skills/ppt-master/scripts/source_to_md/web_to_md.py +806 -0
  91. ppt_master-0.1.0/skills/ppt-master/scripts/svg_editor/__init__.py +2 -0
  92. ppt_master-0.1.0/skills/ppt-master/scripts/svg_editor/annotations.py +338 -0
  93. ppt_master-0.1.0/skills/ppt-master/scripts/svg_editor/server.py +939 -0
  94. ppt_master-0.1.0/skills/ppt-master/scripts/svg_editor/static/app.js +2466 -0
  95. ppt_master-0.1.0/skills/ppt-master/scripts/svg_editor/static/index.html +67 -0
  96. ppt_master-0.1.0/skills/ppt-master/scripts/svg_editor/static/style.css +920 -0
  97. ppt_master-0.1.0/skills/ppt-master/scripts/svg_finalize/__init__.py +12 -0
  98. ppt_master-0.1.0/skills/ppt-master/scripts/svg_finalize/align_embed_images.py +447 -0
  99. ppt_master-0.1.0/skills/ppt-master/scripts/svg_finalize/crop_images.py +358 -0
  100. ppt_master-0.1.0/skills/ppt-master/scripts/svg_finalize/embed_icons.py +369 -0
  101. ppt_master-0.1.0/skills/ppt-master/scripts/svg_finalize/embed_images.py +265 -0
  102. ppt_master-0.1.0/skills/ppt-master/scripts/svg_finalize/fix_image_aspect.py +380 -0
  103. ppt_master-0.1.0/skills/ppt-master/scripts/svg_finalize/flatten_tspan.py +740 -0
  104. ppt_master-0.1.0/skills/ppt-master/scripts/svg_finalize/svg_rect_to_path.py +337 -0
  105. ppt_master-0.1.0/skills/ppt-master/scripts/svg_position_calculator.py +1524 -0
  106. ppt_master-0.1.0/skills/ppt-master/scripts/svg_quality_checker.py +1491 -0
  107. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/__init__.py +17 -0
  108. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/animation_config.py +275 -0
  109. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/drawingml_context.py +162 -0
  110. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/drawingml_converter.py +573 -0
  111. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/drawingml_elements.py +1942 -0
  112. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/drawingml_paths.py +429 -0
  113. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/drawingml_styles.py +656 -0
  114. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/drawingml_utils.py +475 -0
  115. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/pptx_builder.py +993 -0
  116. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/pptx_cli.py +603 -0
  117. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/pptx_dimensions.py +148 -0
  118. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/pptx_discovery.py +101 -0
  119. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/pptx_media.py +160 -0
  120. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/pptx_narration.py +221 -0
  121. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/pptx_notes.py +159 -0
  122. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/pptx_slide_xml.py +136 -0
  123. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/tspan_flattener.py +48 -0
  124. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx/use_expander.py +127 -0
  125. ppt_master-0.1.0/skills/ppt-master/scripts/svg_to_pptx.py +17 -0
  126. ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/__init__.py +26 -0
  127. ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/analyzer.py +228 -0
  128. ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/applier.py +178 -0
  129. ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/chart_fill.py +366 -0
  130. ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/chart_read.py +99 -0
  131. ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/checker.py +450 -0
  132. ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/cli.py +164 -0
  133. ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/clone.py +176 -0
  134. ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/notes.py +114 -0
  135. ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/ooxml.py +229 -0
  136. ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/package.py +155 -0
  137. ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/scaffolder.py +75 -0
  138. ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/selectors.py +65 -0
  139. ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/table_fill.py +59 -0
  140. ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/text_fill.py +117 -0
  141. ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx/transitions.py +108 -0
  142. ppt_master-0.1.0/skills/ppt-master/scripts/template_fill_pptx.py +26 -0
  143. ppt_master-0.1.0/skills/ppt-master/scripts/template_import/__init__.py +1 -0
  144. ppt_master-0.1.0/skills/ppt-master/scripts/template_import/manifest.py +750 -0
  145. ppt_master-0.1.0/skills/ppt-master/scripts/total_md_split.py +367 -0
  146. ppt_master-0.1.0/skills/ppt-master/scripts/tts_backends/__init__.py +2 -0
  147. ppt_master-0.1.0/skills/ppt-master/scripts/tts_backends/backend_common.py +70 -0
  148. ppt_master-0.1.0/skills/ppt-master/scripts/tts_backends/backend_cosyvoice.py +83 -0
  149. ppt_master-0.1.0/skills/ppt-master/scripts/tts_backends/backend_edge.py +86 -0
  150. ppt_master-0.1.0/skills/ppt-master/scripts/tts_backends/backend_elevenlabs.py +108 -0
  151. ppt_master-0.1.0/skills/ppt-master/scripts/tts_backends/backend_minimax.py +93 -0
  152. ppt_master-0.1.0/skills/ppt-master/scripts/tts_backends/backend_qwen.py +75 -0
  153. ppt_master-0.1.0/skills/ppt-master/scripts/update_repo.py +151 -0
  154. ppt_master-0.1.0/skills/ppt-master/scripts/update_spec.py +252 -0
  155. ppt_master-0.1.0/skills/ppt-master/scripts/visual_review.py +305 -0
  156. ppt_master-0.1.0/skills/ppt-master/templates/README.md +67 -0
  157. ppt_master-0.1.0/skills/ppt-master/templates/__init__.py +1 -0
  158. ppt_master-0.1.0/skills/ppt-master/templates/brands/README.md +56 -0
  159. ppt_master-0.1.0/skills/ppt-master/templates/brands/anthropic/anthropic_claude_lockup.svg +2 -0
  160. ppt_master-0.1.0/skills/ppt-master/templates/brands/anthropic/anthropic_mark.svg +2 -0
  161. ppt_master-0.1.0/skills/ppt-master/templates/brands/anthropic/claude_wordmark.svg +2 -0
  162. ppt_master-0.1.0/skills/ppt-master/templates/brands/anthropic/design_spec.md +71 -0
  163. ppt_master-0.1.0/skills/ppt-master/templates/brands/brands_index.json +10 -0
  164. ppt_master-0.1.0/skills/ppt-master/templates/brands/google/design_spec.md +66 -0
  165. ppt_master-0.1.0/skills/ppt-master/templates/brands/google/google_g_logo.svg +1 -0
  166. ppt_master-0.1.0/skills/ppt-master/templates/brands/google/google_wordmark.svg +2 -0
  167. ppt_master-0.1.0/skills/ppt-master/templates/charts/CHART_STYLE_GUIDE.md +643 -0
  168. ppt_master-0.1.0/skills/ppt-master/templates/charts/README.md +17 -0
  169. ppt_master-0.1.0/skills/ppt-master/templates/charts/agenda_list.svg +139 -0
  170. ppt_master-0.1.0/skills/ppt-master/templates/charts/arc_anchored_list.svg +90 -0
  171. ppt_master-0.1.0/skills/ppt-master/templates/charts/area_chart.svg +196 -0
  172. ppt_master-0.1.0/skills/ppt-master/templates/charts/bar_chart.svg +135 -0
  173. ppt_master-0.1.0/skills/ppt-master/templates/charts/basic_table.svg +78 -0
  174. ppt_master-0.1.0/skills/ppt-master/templates/charts/box_plot_chart.svg +245 -0
  175. ppt_master-0.1.0/skills/ppt-master/templates/charts/bubble_chart.svg +257 -0
  176. ppt_master-0.1.0/skills/ppt-master/templates/charts/bullet_chart.svg +164 -0
  177. ppt_master-0.1.0/skills/ppt-master/templates/charts/butterfly_chart.svg +192 -0
  178. ppt_master-0.1.0/skills/ppt-master/templates/charts/charts_index.json +226 -0
  179. ppt_master-0.1.0/skills/ppt-master/templates/charts/chevron_chain_with_tail.svg +221 -0
  180. ppt_master-0.1.0/skills/ppt-master/templates/charts/chevron_process.svg +218 -0
  181. ppt_master-0.1.0/skills/ppt-master/templates/charts/circular_stages.svg +157 -0
  182. ppt_master-0.1.0/skills/ppt-master/templates/charts/client_server_flow.svg +183 -0
  183. ppt_master-0.1.0/skills/ppt-master/templates/charts/comparison_columns.svg +131 -0
  184. ppt_master-0.1.0/skills/ppt-master/templates/charts/comparison_table.svg +147 -0
  185. ppt_master-0.1.0/skills/ppt-master/templates/charts/concentric_circles.svg +239 -0
  186. ppt_master-0.1.0/skills/ppt-master/templates/charts/consulting_table.svg +130 -0
  187. ppt_master-0.1.0/skills/ppt-master/templates/charts/donut_chart.svg +192 -0
  188. ppt_master-0.1.0/skills/ppt-master/templates/charts/dual_axis_line_chart.svg +203 -0
  189. ppt_master-0.1.0/skills/ppt-master/templates/charts/dumbbell_chart.svg +159 -0
  190. ppt_master-0.1.0/skills/ppt-master/templates/charts/feature_matrix_table.svg +86 -0
  191. ppt_master-0.1.0/skills/ppt-master/templates/charts/financial_statement_table.svg +103 -0
  192. ppt_master-0.1.0/skills/ppt-master/templates/charts/fishbone_diagram.svg +148 -0
  193. ppt_master-0.1.0/skills/ppt-master/templates/charts/funnel_chart.svg +141 -0
  194. ppt_master-0.1.0/skills/ppt-master/templates/charts/gantt_chart.svg +197 -0
  195. ppt_master-0.1.0/skills/ppt-master/templates/charts/gauge_chart.svg +196 -0
  196. ppt_master-0.1.0/skills/ppt-master/templates/charts/grouped_bar_chart.svg +161 -0
  197. ppt_master-0.1.0/skills/ppt-master/templates/charts/harvey_balls_table.svg +113 -0
  198. ppt_master-0.1.0/skills/ppt-master/templates/charts/heatmap_chart.svg +181 -0
  199. ppt_master-0.1.0/skills/ppt-master/templates/charts/horizontal_bar_chart.svg +129 -0
  200. ppt_master-0.1.0/skills/ppt-master/templates/charts/hub_inward_arrows.svg +165 -0
  201. ppt_master-0.1.0/skills/ppt-master/templates/charts/hub_spoke.svg +187 -0
  202. ppt_master-0.1.0/skills/ppt-master/templates/charts/icon_grid.svg +168 -0
  203. ppt_master-0.1.0/skills/ppt-master/templates/charts/isometric_stairs.svg +116 -0
  204. ppt_master-0.1.0/skills/ppt-master/templates/charts/journey_map.svg +99 -0
  205. ppt_master-0.1.0/skills/ppt-master/templates/charts/kpi_cards.svg +109 -0
  206. ppt_master-0.1.0/skills/ppt-master/templates/charts/labeled_card.svg +79 -0
  207. ppt_master-0.1.0/skills/ppt-master/templates/charts/layered_architecture.svg +201 -0
  208. ppt_master-0.1.0/skills/ppt-master/templates/charts/line_chart.svg +141 -0
  209. ppt_master-0.1.0/skills/ppt-master/templates/charts/matrix_2x2.svg +172 -0
  210. ppt_master-0.1.0/skills/ppt-master/templates/charts/mind_map.svg +173 -0
  211. ppt_master-0.1.0/skills/ppt-master/templates/charts/module_composition.svg +154 -0
  212. ppt_master-0.1.0/skills/ppt-master/templates/charts/numbered_steps.svg +148 -0
  213. ppt_master-0.1.0/skills/ppt-master/templates/charts/pareto_chart.svg +126 -0
  214. ppt_master-0.1.0/skills/ppt-master/templates/charts/pie_chart.svg +112 -0
  215. ppt_master-0.1.0/skills/ppt-master/templates/charts/pipeline_with_stages.svg +173 -0
  216. ppt_master-0.1.0/skills/ppt-master/templates/charts/process_flow.svg +119 -0
  217. ppt_master-0.1.0/skills/ppt-master/templates/charts/progress_bar_chart.svg +143 -0
  218. ppt_master-0.1.0/skills/ppt-master/templates/charts/project_schedule_table.svg +112 -0
  219. ppt_master-0.1.0/skills/ppt-master/templates/charts/pros_cons_chart.svg +118 -0
  220. ppt_master-0.1.0/skills/ppt-master/templates/charts/pyramid_chart.svg +118 -0
  221. ppt_master-0.1.0/skills/ppt-master/templates/charts/pyramid_isometric.svg +182 -0
  222. ppt_master-0.1.0/skills/ppt-master/templates/charts/quadrant_bubble_scatter.svg +75 -0
  223. ppt_master-0.1.0/skills/ppt-master/templates/charts/quadrant_text_bullets.svg +257 -0
  224. ppt_master-0.1.0/skills/ppt-master/templates/charts/radar_chart.svg +140 -0
  225. ppt_master-0.1.0/skills/ppt-master/templates/charts/roadmap_vertical.svg +145 -0
  226. ppt_master-0.1.0/skills/ppt-master/templates/charts/sankey_chart.svg +136 -0
  227. ppt_master-0.1.0/skills/ppt-master/templates/charts/scatter_chart.svg +146 -0
  228. ppt_master-0.1.0/skills/ppt-master/templates/charts/segmented_wheel.svg +148 -0
  229. ppt_master-0.1.0/skills/ppt-master/templates/charts/snake_flow.svg +170 -0
  230. ppt_master-0.1.0/skills/ppt-master/templates/charts/stacked_area_chart.svg +163 -0
  231. ppt_master-0.1.0/skills/ppt-master/templates/charts/stacked_bar_chart.svg +163 -0
  232. ppt_master-0.1.0/skills/ppt-master/templates/charts/team_roster.svg +106 -0
  233. ppt_master-0.1.0/skills/ppt-master/templates/charts/timeline.svg +299 -0
  234. ppt_master-0.1.0/skills/ppt-master/templates/charts/top_down_tree.svg +174 -0
  235. ppt_master-0.1.0/skills/ppt-master/templates/charts/treemap_chart.svg +132 -0
  236. ppt_master-0.1.0/skills/ppt-master/templates/charts/venn_diagram.svg +106 -0
  237. ppt_master-0.1.0/skills/ppt-master/templates/charts/vertical_list.svg +122 -0
  238. ppt_master-0.1.0/skills/ppt-master/templates/charts/vertical_pillars.svg +110 -0
  239. ppt_master-0.1.0/skills/ppt-master/templates/charts/waterfall_chart.svg +132 -0
  240. ppt_master-0.1.0/skills/ppt-master/templates/charts/word_cloud.svg +99 -0
  241. ppt_master-0.1.0/skills/ppt-master/templates/decks/README.md +72 -0
  242. ppt_master-0.1.0/skills/ppt-master/templates/decks/decks_index.json +50 -0
  243. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/01_cover.svg +24 -0
  244. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/02_chapter.svg +29 -0
  245. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/02_toc.svg +49 -0
  246. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/03_content.svg +22 -0
  247. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/04_ending.svg +18 -0
  248. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/design_spec.md +220 -0
  249. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/footer_ribbon.png +0 -0
  250. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/header_brand.png +0 -0
  251. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/logo.png +0 -0
  252. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/skyline_bg.png +0 -0
  253. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/slogan_red.png +0 -0
  254. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/344/277/241/top_emblem.png +0 -0
  255. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/01_cover.svg +100 -0
  256. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/02_chapter.svg +81 -0
  257. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/02_toc.svg +112 -0
  258. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/03_content.svg +57 -0
  259. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/04_ending.svg +92 -0
  260. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/design_spec.md +228 -0
  261. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204//344/270/255/345/233/275/346/260/264/345/212/241logo.png +0 -0
  262. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204//345/215/216/344/270/234/351/231/242logo.png +0 -0
  263. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204//346/260/264/347/224/265/344/270/211/345/261/200logo.png +0 -0
  264. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204//347/224/265/345/273/272logo.png +0 -0
  265. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/01_cover.svg +90 -0
  266. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/02_chapter.svg +61 -0
  267. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/02_toc.svg +131 -0
  268. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/03_content.svg +77 -0
  269. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/04_ending.svg +78 -0
  270. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/design_spec.md +196 -0
  271. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243//344/270/255/345/233/275/346/260/264/345/212/241logo.png +0 -0
  272. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243//345/215/216/344/270/234/351/231/242logo.png +0 -0
  273. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243//346/260/264/347/224/265/344/270/211/345/261/200logo.png +0 -0
  274. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243//347/224/265/345/273/272logo.png +0 -0
  275. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/01_cover.svg +83 -0
  276. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/02_chapter.svg +55 -0
  277. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/02_toc.svg +110 -0
  278. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/03_content.svg +62 -0
  279. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/04_ending.svg +60 -0
  280. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/design_spec.md +185 -0
  281. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241//345/217/263/344/270/212/350/247/222 logo.png +0 -0
  282. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241//345/244/247/345/236/213 logo.png +0 -0
  283. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/01_cover.svg +49 -0
  284. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/02_chapter.svg +47 -0
  285. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/02_toc.svg +73 -0
  286. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/03_content.svg +57 -0
  287. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/04_ending.svg +62 -0
  288. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/design_spec.md +233 -0
  289. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204//345/217/263/344/270/212/350/247/222 logo.png +0 -0
  290. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204//345/244/247/345/236/213 logo.png +0 -0
  291. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/01_cover.svg +89 -0
  292. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/02_chapter.svg +55 -0
  293. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/02_toc.svg +92 -0
  294. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/03_content.svg +56 -0
  295. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/04_ending.svg +64 -0
  296. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/design_spec.md +189 -0
  297. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243//345/217/263/344/270/212/350/247/222 logo.png +0 -0
  298. ppt_master-0.1.0/skills/ppt-master/templates/decks//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243//345/244/247/345/236/213 logo.png +0 -0
  299. ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/01_cover.svg +32 -0
  300. ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/02_chapter.svg +29 -0
  301. ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/02_toc.svg +47 -0
  302. ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/03_content.svg +71 -0
  303. ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/04_ending.svg +38 -0
  304. ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/cover_bg.png +0 -0
  305. ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/design_spec.md +238 -0
  306. ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/logo_crm_banner.png +0 -0
  307. ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/logo_dark.png +0 -0
  308. ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/logo_white.png +0 -0
  309. ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/page_header_bg.png +0 -0
  310. ppt_master-0.1.0/skills/ppt-master/templates/decks//346/213/233/345/225/206/351/223/266/350/241/214/ref_content_bg.png +0 -0
  311. ppt_master-0.1.0/skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246/01_cover.svg +74 -0
  312. ppt_master-0.1.0/skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246/02_chapter.svg +52 -0
  313. ppt_master-0.1.0/skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246/02_toc.svg +80 -0
  314. ppt_master-0.1.0/skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246/03_content.svg +56 -0
  315. ppt_master-0.1.0/skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246/04_ending.svg +62 -0
  316. ppt_master-0.1.0/skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246/design_spec.md +251 -0
  317. ppt_master-0.1.0/skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246//351/207/215/345/272/206/345/244/247/345/255/246logo.png +0 -0
  318. ppt_master-0.1.0/skills/ppt-master/templates/decks//351/207/215/345/272/206/345/244/247/345/255/246//351/207/215/345/272/206/345/244/247/345/255/246logo2.png +0 -0
  319. ppt_master-0.1.0/skills/ppt-master/templates/design_spec_reference.md +348 -0
  320. ppt_master-0.1.0/skills/ppt-master/templates/icons/README.md +89 -0
  321. ppt_master-0.1.0/skills/ppt-master/templates/icons/__init__.py +1 -0
  322. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/a.svg +3 -0
  323. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/accessibility.svg +3 -0
  324. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/activity.svg +4 -0
  325. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/address-card.svg +3 -0
  326. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/alarm-clock.svg +5 -0
  327. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/alien.svg +3 -0
  328. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-bottom.svg +5 -0
  329. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-center-horizontal.svg +4 -0
  330. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-center-vertical.svg +4 -0
  331. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-left.svg +5 -0
  332. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-right.svg +5 -0
  333. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-text-center.svg +6 -0
  334. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-text-justify.svg +6 -0
  335. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-text-left.svg +6 -0
  336. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-text-right.svg +6 -0
  337. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/align-top.svg +5 -0
  338. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/anchor.svg +3 -0
  339. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/angle-down.svg +3 -0
  340. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/angle-left.svg +3 -0
  341. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/angle-right.svg +3 -0
  342. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/angle-up.svg +3 -0
  343. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/angles-down.svg +4 -0
  344. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/angles-left.svg +4 -0
  345. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/angles-right.svg +4 -0
  346. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/angles-up.svg +4 -0
  347. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/aperture.svg +8 -0
  348. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/aquarius.svg +5 -0
  349. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/archive-box.svg +4 -0
  350. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/aries.svg +3 -0
  351. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-down-from-line.svg +4 -0
  352. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-down-left.svg +3 -0
  353. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-down-right.svg +3 -0
  354. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-down-short-wide.svg +6 -0
  355. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-down-to-bracket.svg +4 -0
  356. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-down-to-line.svg +4 -0
  357. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-down-wide-short.svg +6 -0
  358. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-down.svg +3 -0
  359. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-left-arrow-right.svg +4 -0
  360. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-left-from-line.svg +4 -0
  361. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-left-to-line.svg +4 -0
  362. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-left.svg +3 -0
  363. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-right-from-bracket.svg +4 -0
  364. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-right-from-line.svg +4 -0
  365. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-right-to-bracket.svg +4 -0
  366. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-right-to-line.svg +4 -0
  367. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-right.svg +3 -0
  368. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-rotate-left.svg +3 -0
  369. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-rotate-right.svg +3 -0
  370. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-trend-down.svg +3 -0
  371. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-trend-up.svg +3 -0
  372. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-turn-down-left.svg +3 -0
  373. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-turn-down-right.svg +3 -0
  374. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-turn-left-down.svg +3 -0
  375. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-turn-left-up.svg +3 -0
  376. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-turn-right-down.svg +3 -0
  377. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-turn-right-up.svg +3 -0
  378. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-turn-up-left.svg +3 -0
  379. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-turn-up-right.svg +3 -0
  380. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-u-down-left.svg +3 -0
  381. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-u-down-right.svg +3 -0
  382. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-u-left-down.svg +3 -0
  383. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-u-left-up.svg +3 -0
  384. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-u-right-down.svg +3 -0
  385. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-u-right-up.svg +3 -0
  386. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-u-up-left.svg +3 -0
  387. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-u-up-right.svg +3 -0
  388. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up-arrow-down.svg +4 -0
  389. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up-from-bracket.svg +4 -0
  390. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up-from-line.svg +4 -0
  391. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up-left.svg +3 -0
  392. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up-right-from-square.svg +4 -0
  393. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up-right.svg +3 -0
  394. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up-short-wide.svg +6 -0
  395. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up-to-line.svg +4 -0
  396. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up-wide-short.svg +6 -0
  397. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrow-up.svg +3 -0
  398. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrows-left-right.svg +3 -0
  399. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrows-repeat.svg +4 -0
  400. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrows-rotate-clockwise.svg +4 -0
  401. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrows-rotate-counter-clockwise.svg +4 -0
  402. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/arrows-up-down.svg +3 -0
  403. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/at.svg +3 -0
  404. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/axe.svg +3 -0
  405. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/b.svg +3 -0
  406. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/badge-check.svg +3 -0
  407. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/badge.svg +3 -0
  408. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ban.svg +3 -0
  409. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/baseball-bat.svg +4 -0
  410. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/baseball.svg +5 -0
  411. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/basketball.svg +8 -0
  412. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/battery-charge.svg +4 -0
  413. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/battery-empty.svg +3 -0
  414. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/battery-full.svg +3 -0
  415. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/battery-half.svg +3 -0
  416. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/battery-slash.svg +4 -0
  417. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bed.svg +3 -0
  418. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bee.svg +4 -0
  419. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bell-slash.svg +5 -0
  420. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bell.svg +4 -0
  421. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bicycle.svg +6 -0
  422. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bishop.svg +3 -0
  423. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/block-quote.svg +7 -0
  424. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bluetooth.svg +3 -0
  425. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bold.svg +3 -0
  426. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bolt.svg +3 -0
  427. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bomb.svg +5 -0
  428. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bone.svg +3 -0
  429. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/book-open.svg +3 -0
  430. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/book.svg +3 -0
  431. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bookmark-plus.svg +3 -0
  432. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bookmark.svg +3 -0
  433. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/books.svg +5 -0
  434. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bottle.svg +4 -0
  435. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bow-and-arrow.svg +3 -0
  436. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bowl.svg +4 -0
  437. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/box.svg +3 -0
  438. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bridge.svg +3 -0
  439. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/british-pound.svg +3 -0
  440. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/browser.svg +3 -0
  441. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/brush.svg +4 -0
  442. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bug.svg +4 -0
  443. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/building.svg +3 -0
  444. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bullhorn.svg +4 -0
  445. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/burger.svg +5 -0
  446. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/bus.svg +3 -0
  447. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/butterfly.svg +3 -0
  448. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/c.svg +3 -0
  449. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cake-slice.svg +4 -0
  450. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cake.svg +7 -0
  451. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/calculator.svg +3 -0
  452. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/calendar.svg +4 -0
  453. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/camera-slash.svg +4 -0
  454. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/camera.svg +3 -0
  455. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cancer.svg +4 -0
  456. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/capricorn.svg +3 -0
  457. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/car.svg +3 -0
  458. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/card-stack.svg +5 -0
  459. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/caret-down.svg +3 -0
  460. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/caret-left.svg +3 -0
  461. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/caret-right.svg +3 -0
  462. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/caret-up.svg +3 -0
  463. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/castle.svg +3 -0
  464. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cat.svg +4 -0
  465. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/chair.svg +4 -0
  466. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/chart-bar.svg +5 -0
  467. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/chart-line.svg +4 -0
  468. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/chart-pie.svg +4 -0
  469. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/checkmark.svg +3 -0
  470. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-3-dots-horizontal.svg +3 -0
  471. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-3-dots-vertical.svg +3 -0
  472. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-arrow-down-left.svg +3 -0
  473. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-arrow-down-right.svg +3 -0
  474. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-arrow-down.svg +3 -0
  475. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-arrow-left.svg +3 -0
  476. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-arrow-right.svg +3 -0
  477. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-arrow-up-left.svg +3 -0
  478. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-arrow-up-right.svg +3 -0
  479. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-arrow-up.svg +3 -0
  480. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-checkmark.svg +3 -0
  481. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-divide.svg +3 -0
  482. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-equals.svg +3 -0
  483. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-exclamation.svg +3 -0
  484. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-half.svg +3 -0
  485. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-info.svg +3 -0
  486. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-minus.svg +3 -0
  487. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-0.svg +4 -0
  488. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-1.svg +3 -0
  489. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-2.svg +3 -0
  490. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-3.svg +3 -0
  491. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-4.svg +3 -0
  492. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-5.svg +3 -0
  493. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-6.svg +4 -0
  494. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-7.svg +3 -0
  495. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-8.svg +5 -0
  496. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-number-9.svg +4 -0
  497. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-pause.svg +3 -0
  498. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-play.svg +3 -0
  499. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-plus.svg +3 -0
  500. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-question.svg +3 -0
  501. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-stop.svg +3 -0
  502. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-user.svg +4 -0
  503. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle-x.svg +3 -0
  504. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/circle.svg +3 -0
  505. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/citrus-slice.svg +6 -0
  506. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/city.svg +3 -0
  507. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/clipboard.svg +4 -0
  508. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/clock.svg +3 -0
  509. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/closed-captioning.svg +3 -0
  510. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/clothes-hanger.svg +3 -0
  511. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cloud-arrow-down.svg +3 -0
  512. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cloud-arrow-up.svg +3 -0
  513. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cloud-fog.svg +6 -0
  514. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cloud-lightning.svg +4 -0
  515. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cloud-rain.svg +6 -0
  516. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cloud-snow.svg +8 -0
  517. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cloud.svg +3 -0
  518. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/club.svg +3 -0
  519. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cocktail.svg +3 -0
  520. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/code-block.svg +3 -0
  521. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/code.svg +5 -0
  522. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cog.svg +3 -0
  523. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/coin.svg +3 -0
  524. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/columns.svg +4 -0
  525. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/command.svg +3 -0
  526. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/comment-dots.svg +3 -0
  527. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/comment.svg +3 -0
  528. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/comments-slash.svg +4 -0
  529. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/comments.svg +4 -0
  530. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/compact-disc.svg +3 -0
  531. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/compass-drafting.svg +4 -0
  532. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/compass.svg +4 -0
  533. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/component.svg +6 -0
  534. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/copy.svg +4 -0
  535. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/copyright.svg +3 -0
  536. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/credit-card.svg +4 -0
  537. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/crop.svg +4 -0
  538. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/crosshairs.svg +4 -0
  539. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/crown.svg +3 -0
  540. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/crystal-ball.svg +4 -0
  541. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cube.svg +3 -0
  542. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cupcake.svg +4 -0
  543. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/curling-stone.svg +4 -0
  544. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cursor-click.svg +6 -0
  545. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/cursor.svg +3 -0
  546. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/d-pad.svg +6 -0
  547. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/d.svg +3 -0
  548. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/database.svg +5 -0
  549. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/delete.svg +3 -0
  550. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/desktop.svg +3 -0
  551. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/diamond-exclamation.svg +3 -0
  552. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/diamond-half.svg +3 -0
  553. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/diamond-shape.svg +3 -0
  554. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/diamond.svg +3 -0
  555. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/dice.svg +4 -0
  556. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/die-1.svg +3 -0
  557. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/die-2.svg +3 -0
  558. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/die-3.svg +3 -0
  559. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/die-4.svg +3 -0
  560. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/die-5.svg +3 -0
  561. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/die-6.svg +3 -0
  562. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/distribute-horizontal.svg +5 -0
  563. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/distribute-vertical.svg +5 -0
  564. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/divide.svg +5 -0
  565. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/dna.svg +3 -0
  566. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/dog.svg +3 -0
  567. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/dollar.svg +3 -0
  568. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/door-open.svg +3 -0
  569. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/door.svg +3 -0
  570. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/dots-horizontal.svg +5 -0
  571. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/dots-vertical.svg +5 -0
  572. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/droplet.svg +3 -0
  573. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/e.svg +3 -0
  574. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ear-slash.svg +4 -0
  575. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ear.svg +3 -0
  576. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/eject.svg +4 -0
  577. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/envelope.svg +4 -0
  578. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/equals.svg +4 -0
  579. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/euro.svg +3 -0
  580. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/exclude.svg +3 -0
  581. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/eye-slash.svg +4 -0
  582. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/eye.svg +3 -0
  583. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/eyedropper.svg +4 -0
  584. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/f.svg +3 -0
  585. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-angry.svg +3 -0
  586. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-cry.svg +3 -0
  587. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-id.svg +9 -0
  588. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-laugh.svg +3 -0
  589. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-meh.svg +3 -0
  590. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-melt.svg +3 -0
  591. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-no-mouth.svg +3 -0
  592. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-open-mouth.svg +3 -0
  593. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-sad.svg +3 -0
  594. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/face-smile.svg +3 -0
  595. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/factory.svg +3 -0
  596. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/fast-forward.svg +3 -0
  597. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/file-plus.svg +3 -0
  598. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/file.svg +4 -0
  599. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/files.svg +4 -0
  600. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/film.svg +3 -0
  601. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/filter.svg +6 -0
  602. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/fire.svg +3 -0
  603. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/fireplace.svg +4 -0
  604. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/fish.svg +3 -0
  605. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/flag.svg +3 -0
  606. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/floppy-disk.svg +4 -0
  607. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/flower.svg +5 -0
  608. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/folder-open.svg +3 -0
  609. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/folder.svg +3 -0
  610. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/folders.svg +4 -0
  611. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/font-case.svg +4 -0
  612. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/football.svg +3 -0
  613. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/frame.svg +3 -0
  614. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/funnel.svg +3 -0
  615. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/g.svg +3 -0
  616. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/game-controller.svg +3 -0
  617. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/gauge-high.svg +3 -0
  618. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/gauge-low.svg +3 -0
  619. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/gauge-medium.svg +3 -0
  620. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/gem.svg +3 -0
  621. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/gemini.svg +3 -0
  622. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ghost.svg +3 -0
  623. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/gift.svg +5 -0
  624. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/git-branch.svg +3 -0
  625. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/git-commit.svg +3 -0
  626. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/git-compare.svg +4 -0
  627. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/git-fork.svg +3 -0
  628. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/git-merge.svg +3 -0
  629. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/glasses.svg +3 -0
  630. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/globe.svg +6 -0
  631. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/grid-masonry.svg +6 -0
  632. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/grid.svg +3 -0
  633. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/grip-horizontal.svg +8 -0
  634. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/grip-vertical.svg +8 -0
  635. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/group.svg +14 -0
  636. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/h.svg +3 -0
  637. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hammer.svg +4 -0
  638. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hand-tap.svg +6 -0
  639. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hand.svg +3 -0
  640. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hashtag.svg +3 -0
  641. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/head-side.svg +3 -0
  642. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/headlights.svg +6 -0
  643. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/headphones.svg +3 -0
  644. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/heart-broken.svg +3 -0
  645. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/heart-half.svg +3 -0
  646. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/heart.svg +3 -0
  647. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hexagon.svg +3 -0
  648. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hockey.svg +5 -0
  649. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/home-1.svg +3 -0
  650. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/home.svg +3 -0
  651. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hospital.svg +3 -0
  652. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hourglass-empty.svg +3 -0
  653. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hourglass-half-bottom.svg +3 -0
  654. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/hourglass-half-top.svg +3 -0
  655. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/i-cursor.svg +3 -0
  656. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/i.svg +3 -0
  657. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ice-cream.svg +4 -0
  658. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/image.svg +3 -0
  659. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/images.svg +4 -0
  660. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/inbox.svg +3 -0
  661. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/indent.svg +7 -0
  662. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/intersect.svg +3 -0
  663. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/italic.svg +3 -0
  664. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/j.svg +3 -0
  665. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/jersey.svg +4 -0
  666. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/joystick.svg +3 -0
  667. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/k.svg +3 -0
  668. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/key-skeleton.svg +3 -0
  669. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/key.svg +3 -0
  670. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/keyboard.svg +13 -0
  671. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/keyhole.svg +3 -0
  672. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/king.svg +3 -0
  673. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/knight.svg +3 -0
  674. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/l.svg +3 -0
  675. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/label.svg +3 -0
  676. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ladder.svg +3 -0
  677. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/lamp.svg +4 -0
  678. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/language.svg +3 -0
  679. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/laptop.svg +4 -0
  680. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/laundry-machine.svg +3 -0
  681. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/layers.svg +5 -0
  682. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/leaf.svg +3 -0
  683. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/leo.svg +3 -0
  684. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/libra.svg +4 -0
  685. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/life-ring.svg +3 -0
  686. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/lightbulb.svg +3 -0
  687. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/lines-magnifying-glass.svg +7 -0
  688. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/lines-plus.svg +7 -0
  689. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/lines.svg +6 -0
  690. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/link.svg +5 -0
  691. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/list-ordered.svg +8 -0
  692. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/list.svg +10 -0
  693. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/location-arrow-slash.svg +4 -0
  694. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/location-arrow.svg +3 -0
  695. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/location-target.svg +4 -0
  696. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/lock-closed.svg +3 -0
  697. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/lock-open.svg +3 -0
  698. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/m.svg +3 -0
  699. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/magnet.svg +5 -0
  700. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/magnifying-glass.svg +3 -0
  701. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/mailbox.svg +3 -0
  702. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/map-pin.svg +3 -0
  703. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/map.svg +5 -0
  704. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/maximize.svg +4 -0
  705. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/meeple.svg +3 -0
  706. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/megaphone.svg +3 -0
  707. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/meteor.svg +3 -0
  708. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/microchip.svg +4 -0
  709. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/microphone-slash.svg +5 -0
  710. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/microphone.svg +4 -0
  711. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/minimize.svg +4 -0
  712. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/minus.svg +3 -0
  713. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/mobile.svg +3 -0
  714. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/money.svg +7 -0
  715. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/moon-cloud.svg +5 -0
  716. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/moon-fog.svg +6 -0
  717. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/moon.svg +4 -0
  718. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/mortarboard.svg +4 -0
  719. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/mountains.svg +3 -0
  720. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/mouse.svg +5 -0
  721. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/move-down.svg +5 -0
  722. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/move-up.svg +5 -0
  723. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/mug.svg +6 -0
  724. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/museum.svg +4 -0
  725. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/music.svg +3 -0
  726. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/n.svg +3 -0
  727. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/newspaper.svg +3 -0
  728. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-0-alt.svg +3 -0
  729. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-0.svg +3 -0
  730. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-1-alt.svg +3 -0
  731. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-1.svg +3 -0
  732. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-2-alt.svg +3 -0
  733. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-2.svg +3 -0
  734. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-3-alt.svg +3 -0
  735. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-3.svg +3 -0
  736. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-4-alt.svg +3 -0
  737. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-4.svg +3 -0
  738. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-5-alt.svg +3 -0
  739. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-5.svg +3 -0
  740. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-6-alt.svg +3 -0
  741. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-6.svg +3 -0
  742. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-7-alt.svg +3 -0
  743. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-7.svg +3 -0
  744. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-8-alt.svg +3 -0
  745. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-8.svg +3 -0
  746. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-9-alt.svg +3 -0
  747. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/number-9.svg +3 -0
  748. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/nut.svg +3 -0
  749. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/o.svg +3 -0
  750. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/octagon-exclamation.svg +3 -0
  751. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/octagon.svg +3 -0
  752. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/option.svg +4 -0
  753. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/outdent.svg +7 -0
  754. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/outlet.svg +3 -0
  755. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/p.svg +3 -0
  756. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/paint-bucket.svg +4 -0
  757. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/paint-roller.svg +3 -0
  758. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/painting.svg +4 -0
  759. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/palette.svg +3 -0
  760. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/pants.svg +3 -0
  761. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/paper-plane.svg +3 -0
  762. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/paperclip.svg +3 -0
  763. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/pause.svg +4 -0
  764. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/paw.svg +7 -0
  765. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/pawn.svg +3 -0
  766. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/pen-nib.svg +3 -0
  767. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/pencil-square.svg +4 -0
  768. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/pencil.svg +4 -0
  769. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/percent.svg +5 -0
  770. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/person-walking.svg +4 -0
  771. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/person-wave.svg +4 -0
  772. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/person.svg +4 -0
  773. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/phone-slash.svg +4 -0
  774. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/phone.svg +3 -0
  775. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/pills.svg +5 -0
  776. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/pisces.svg +3 -0
  777. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/pizza.svg +4 -0
  778. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/plane.svg +3 -0
  779. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/planet.svg +4 -0
  780. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/play-pause.svg +5 -0
  781. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/play.svg +3 -0
  782. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/playing-card.svg +3 -0
  783. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/plug.svg +3 -0
  784. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/plus.svg +3 -0
  785. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/point-down.svg +3 -0
  786. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/point-left.svg +3 -0
  787. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/point-right.svg +3 -0
  788. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/point-up.svg +3 -0
  789. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/poop.svg +3 -0
  790. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/potion-empty.svg +3 -0
  791. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/potion-full.svg +3 -0
  792. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/potion-half.svg +3 -0
  793. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/power.svg +4 -0
  794. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/printer.svg +4 -0
  795. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/q.svg +3 -0
  796. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/queen.svg +4 -0
  797. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/question-mark.svg +4 -0
  798. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/quote-left.svg +4 -0
  799. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/quote-right.svg +4 -0
  800. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/radar.svg +3 -0
  801. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/radioactive.svg +3 -0
  802. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/rainbow-cloud.svg +5 -0
  803. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/rainbow.svg +4 -0
  804. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/receipt.svg +3 -0
  805. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/recycle.svg +5 -0
  806. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/reflect-horizontal.svg +5 -0
  807. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/reflect-vertical.svg +5 -0
  808. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/rewind.svg +3 -0
  809. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/robot.svg +3 -0
  810. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/rocket.svg +4 -0
  811. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/rook.svg +3 -0
  812. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/route.svg +5 -0
  813. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/rows.svg +4 -0
  814. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/rss.svg +5 -0
  815. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ruler.svg +3 -0
  816. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/s.svg +3 -0
  817. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sagittarius.svg +3 -0
  818. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/scissors.svg +4 -0
  819. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/scooter.svg +3 -0
  820. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/scorpio.svg +3 -0
  821. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/screencast.svg +5 -0
  822. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/screw.svg +5 -0
  823. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/screwdriver.svg +4 -0
  824. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/scribble.svg +4 -0
  825. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/seedling.svg +3 -0
  826. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/server.svg +4 -0
  827. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/service-bell.svg +4 -0
  828. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/share-nodes.svg +3 -0
  829. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shield-check.svg +3 -0
  830. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shield-half.svg +3 -0
  831. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shield.svg +3 -0
  832. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shift.svg +3 -0
  833. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ship.svg +4 -0
  834. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shirt.svg +3 -0
  835. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shoe.svg +4 -0
  836. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shop.svg +4 -0
  837. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shopping-bag.svg +4 -0
  838. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shopping-basket.svg +3 -0
  839. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shopping-cart.svg +3 -0
  840. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/shuffle.svg +4 -0
  841. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sidebar-left.svg +4 -0
  842. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sidebar-right.svg +4 -0
  843. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/signal-fair.svg +4 -0
  844. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/signal-good.svg +5 -0
  845. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/signal-slash.svg +6 -0
  846. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/signal-weak.svg +3 -0
  847. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/signal.svg +6 -0
  848. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/signpost.svg +4 -0
  849. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sink.svg +4 -0
  850. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/skip-backward.svg +3 -0
  851. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/skip-forward.svg +3 -0
  852. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/skull.svg +3 -0
  853. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sliders.svg +4 -0
  854. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/smartwatch.svg +3 -0
  855. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/snow.svg +3 -0
  856. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/soccer.svg +8 -0
  857. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/soda.svg +4 -0
  858. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sort.svg +4 -0
  859. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/spade.svg +3 -0
  860. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sparkles.svg +7 -0
  861. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/square-checkmark.svg +3 -0
  862. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/square-divide.svg +3 -0
  863. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/square-equals.svg +3 -0
  864. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/square-minus.svg +3 -0
  865. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/square-plus.svg +3 -0
  866. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/square-user.svg +4 -0
  867. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/square-x.svg +3 -0
  868. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/square.svg +3 -0
  869. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/squares-horizontal.svg +5 -0
  870. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/squares-vertical.svg +5 -0
  871. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/star-half.svg +3 -0
  872. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/star.svg +3 -0
  873. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sticky-note.svg +4 -0
  874. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/stop.svg +3 -0
  875. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/stopwatch.svg +3 -0
  876. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/strikethrough.svg +4 -0
  877. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/subtract.svg +3 -0
  878. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/suitcase.svg +5 -0
  879. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sun-cloud.svg +8 -0
  880. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sun-fog.svg +11 -0
  881. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sun.svg +11 -0
  882. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sunglasses.svg +3 -0
  883. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/swatches.svg +5 -0
  884. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/sword.svg +3 -0
  885. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/swords-crossed.svg +5 -0
  886. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/t.svg +3 -0
  887. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/table.svg +7 -0
  888. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/tag.svg +3 -0
  889. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/target-arrow.svg +5 -0
  890. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/target.svg +4 -0
  891. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/taurus.svg +3 -0
  892. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/temperature-high.svg +7 -0
  893. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/temperature-low.svg +7 -0
  894. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/temperature-medium.svg +7 -0
  895. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/tennis-ball.svg +5 -0
  896. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/terminal.svg +4 -0
  897. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/text.svg +3 -0
  898. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/thumbs-down.svg +4 -0
  899. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/thumbs-up.svg +4 -0
  900. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/thumbtack.svg +4 -0
  901. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ticket.svg +3 -0
  902. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/toggle-circle-left.svg +3 -0
  903. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/toggle-circle-right.svg +3 -0
  904. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/toolbox.svg +4 -0
  905. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/traffic-cone.svg +5 -0
  906. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/traffic-light.svg +3 -0
  907. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/train.svg +3 -0
  908. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/trash.svg +4 -0
  909. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/tree-evergreen.svg +3 -0
  910. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/tree.svg +3 -0
  911. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/triangle-exclamation.svg +3 -0
  912. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/triangle.svg +3 -0
  913. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/trophy.svg +3 -0
  914. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/truck.svg +3 -0
  915. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/tv-retro.svg +3 -0
  916. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/tv.svg +4 -0
  917. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/u.svg +3 -0
  918. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/ufo.svg +4 -0
  919. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/umbrella.svg +3 -0
  920. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/underline.svg +4 -0
  921. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/unite.svg +3 -0
  922. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/user.svg +4 -0
  923. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/users.svg +6 -0
  924. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/utensils.svg +4 -0
  925. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/v.svg +3 -0
  926. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/vector-circle.svg +3 -0
  927. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/vector-curve.svg +3 -0
  928. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/vector-line.svg +3 -0
  929. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/vector-square.svg +3 -0
  930. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/video-camera-slash.svg +4 -0
  931. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/video-camera.svg +4 -0
  932. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/video.svg +3 -0
  933. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/virgo.svg +3 -0
  934. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/volume-high.svg +5 -0
  935. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/volume-low.svg +4 -0
  936. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/volume-none.svg +3 -0
  937. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/volume-slash.svg +4 -0
  938. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/volume-x.svg +4 -0
  939. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/vr.svg +3 -0
  940. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/w.svg +3 -0
  941. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wallet.svg +3 -0
  942. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wand-with-sparkles.svg +6 -0
  943. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/watch.svg +3 -0
  944. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/water.svg +4 -0
  945. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/waveform.svg +6 -0
  946. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wheelchair.svg +4 -0
  947. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wifi-low.svg +3 -0
  948. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wifi-medium.svg +4 -0
  949. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wifi-slash.svg +4 -0
  950. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wifi.svg +5 -0
  951. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wind.svg +4 -0
  952. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/window.svg +5 -0
  953. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wine-glass.svg +3 -0
  954. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/wrench.svg +3 -0
  955. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/x-1.svg +3 -0
  956. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/x.svg +3 -0
  957. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/y.svg +3 -0
  958. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/yen.svg +3 -0
  959. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/z.svg +3 -0
  960. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/zoom-in.svg +3 -0
  961. ppt_master-0.1.0/skills/ppt-master/templates/icons/chunk-filled/zoom-out.svg +3 -0
  962. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/address-book.svg +1 -0
  963. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/air-traffic-control.svg +1 -0
  964. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/airplane-in-flight.svg +1 -0
  965. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/airplane-landing.svg +1 -0
  966. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/airplane-takeoff.svg +1 -0
  967. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/airplane-tilt.svg +1 -0
  968. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/airplane.svg +1 -0
  969. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/airplay.svg +1 -0
  970. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/alarm.svg +1 -0
  971. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/alien.svg +1 -0
  972. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-bottom-simple.svg +1 -0
  973. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-bottom.svg +1 -0
  974. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-center-horizontal-simple.svg +1 -0
  975. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-center-horizontal.svg +1 -0
  976. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-center-vertical-simple.svg +1 -0
  977. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-center-vertical.svg +1 -0
  978. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-left-simple.svg +1 -0
  979. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-left.svg +1 -0
  980. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-right-simple.svg +1 -0
  981. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-right.svg +1 -0
  982. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-top-simple.svg +1 -0
  983. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/align-top.svg +1 -0
  984. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/amazon-logo.svg +1 -0
  985. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/anchor-simple.svg +1 -0
  986. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/anchor.svg +1 -0
  987. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/android-logo.svg +1 -0
  988. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/angular-logo.svg +1 -0
  989. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/aperture.svg +1 -0
  990. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/app-store-logo.svg +1 -0
  991. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/app-window.svg +1 -0
  992. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/apple-logo.svg +1 -0
  993. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/apple-podcasts-logo.svg +1 -0
  994. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/archive-box.svg +1 -0
  995. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/archive-tray.svg +1 -0
  996. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/archive.svg +1 -0
  997. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/armchair.svg +1 -0
  998. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-arc-left.svg +1 -0
  999. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-arc-right.svg +1 -0
  1000. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-double-up-left.svg +1 -0
  1001. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-double-up-right.svg +1 -0
  1002. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-down-left.svg +1 -0
  1003. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-down-right.svg +1 -0
  1004. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-left-down.svg +1 -0
  1005. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-left-up.svg +1 -0
  1006. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-right-down.svg +1 -0
  1007. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-right-up.svg +1 -0
  1008. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-up-left.svg +1 -0
  1009. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-bend-up-right.svg +1 -0
  1010. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-down-left.svg +1 -0
  1011. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-down-right.svg +1 -0
  1012. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-down.svg +1 -0
  1013. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-left.svg +1 -0
  1014. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-right.svg +1 -0
  1015. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-up-left.svg +1 -0
  1016. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-up-right.svg +1 -0
  1017. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-circle-up.svg +1 -0
  1018. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-clockwise.svg +1 -0
  1019. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-counter-clockwise.svg +1 -0
  1020. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-down-left.svg +1 -0
  1021. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-down-right.svg +1 -0
  1022. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-down.svg +1 -0
  1023. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-down-left.svg +1 -0
  1024. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-down-right.svg +1 -0
  1025. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-left-down.svg +1 -0
  1026. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-left-up.svg +1 -0
  1027. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-left.svg +1 -0
  1028. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-right-down.svg +1 -0
  1029. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-right-up.svg +1 -0
  1030. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-right.svg +1 -0
  1031. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-up-left.svg +1 -0
  1032. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-elbow-up-right.svg +1 -0
  1033. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-down.svg +1 -0
  1034. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-left.svg +1 -0
  1035. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-line-down.svg +1 -0
  1036. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-line-left.svg +1 -0
  1037. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-line-right.svg +1 -0
  1038. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-line-up.svg +1 -0
  1039. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-lines-down.svg +1 -0
  1040. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-lines-left.svg +1 -0
  1041. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-lines-right.svg +1 -0
  1042. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-lines-up.svg +1 -0
  1043. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-right.svg +1 -0
  1044. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-fat-up.svg +1 -0
  1045. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-left.svg +1 -0
  1046. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-down-left.svg +1 -0
  1047. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-down-right.svg +1 -0
  1048. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-down.svg +1 -0
  1049. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-left.svg +1 -0
  1050. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-right.svg +1 -0
  1051. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-up-left.svg +1 -0
  1052. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-up-right.svg +1 -0
  1053. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-line-up.svg +1 -0
  1054. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-right.svg +1 -0
  1055. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-down-left.svg +1 -0
  1056. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-down-right.svg +1 -0
  1057. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-down.svg +1 -0
  1058. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-in.svg +1 -0
  1059. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-left.svg +1 -0
  1060. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-out.svg +1 -0
  1061. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-right.svg +1 -0
  1062. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-up-left.svg +1 -0
  1063. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-up-right.svg +1 -0
  1064. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-square-up.svg +1 -0
  1065. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-down-left.svg +1 -0
  1066. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-down-right.svg +1 -0
  1067. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-left-down.svg +1 -0
  1068. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-left-up.svg +1 -0
  1069. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-right-down.svg +1 -0
  1070. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-right-up.svg +1 -0
  1071. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-up-left.svg +1 -0
  1072. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-u-up-right.svg +1 -0
  1073. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-up-left.svg +1 -0
  1074. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-up-right.svg +1 -0
  1075. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrow-up.svg +1 -0
  1076. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-clockwise.svg +1 -0
  1077. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-counter-clockwise.svg +1 -0
  1078. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-down-up.svg +1 -0
  1079. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-horizontal.svg +1 -0
  1080. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-in-cardinal.svg +1 -0
  1081. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-in-line-horizontal.svg +1 -0
  1082. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-in-line-vertical.svg +1 -0
  1083. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-in-simple.svg +1 -0
  1084. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-in.svg +1 -0
  1085. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-left-right.svg +1 -0
  1086. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-merge.svg +1 -0
  1087. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-out-cardinal.svg +1 -0
  1088. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-out-line-horizontal.svg +1 -0
  1089. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-out-line-vertical.svg +1 -0
  1090. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-out-simple.svg +1 -0
  1091. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-out.svg +1 -0
  1092. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-split.svg +1 -0
  1093. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/arrows-vertical.svg +1 -0
  1094. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/article-medium.svg +1 -0
  1095. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/article-ny-times.svg +1 -0
  1096. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/article.svg +1 -0
  1097. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/asterisk-simple.svg +1 -0
  1098. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/asterisk.svg +1 -0
  1099. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/at.svg +1 -0
  1100. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/atom.svg +1 -0
  1101. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/baby.svg +1 -0
  1102. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/backpack.svg +1 -0
  1103. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/backspace.svg +1 -0
  1104. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bag-simple.svg +1 -0
  1105. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bag.svg +1 -0
  1106. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/balloon.svg +1 -0
  1107. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bandaids.svg +1 -0
  1108. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bank.svg +1 -0
  1109. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/barbell.svg +1 -0
  1110. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/barcode.svg +1 -0
  1111. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/barricade.svg +1 -0
  1112. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/baseball-cap.svg +1 -0
  1113. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/baseball.svg +1 -0
  1114. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/basket.svg +1 -0
  1115. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/basketball.svg +1 -0
  1116. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bathtub.svg +1 -0
  1117. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-charging-vertical.svg +1 -0
  1118. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-charging.svg +1 -0
  1119. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-empty.svg +1 -0
  1120. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-full.svg +1 -0
  1121. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-high.svg +1 -0
  1122. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-low.svg +1 -0
  1123. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-medium.svg +1 -0
  1124. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-plus-vertical.svg +1 -0
  1125. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-plus.svg +1 -0
  1126. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-vertical-empty.svg +1 -0
  1127. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-vertical-full.svg +1 -0
  1128. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-vertical-high.svg +1 -0
  1129. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-vertical-low.svg +1 -0
  1130. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-vertical-medium.svg +1 -0
  1131. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-warning-vertical.svg +1 -0
  1132. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/battery-warning.svg +1 -0
  1133. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bed.svg +1 -0
  1134. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/beer-bottle.svg +1 -0
  1135. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/beer-stein.svg +1 -0
  1136. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/behance-logo.svg +1 -0
  1137. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bell-ringing.svg +1 -0
  1138. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bell-simple-ringing.svg +1 -0
  1139. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bell-simple-slash.svg +1 -0
  1140. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bell-simple-z.svg +1 -0
  1141. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bell-simple.svg +1 -0
  1142. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bell-slash.svg +1 -0
  1143. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bell-z.svg +1 -0
  1144. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bell.svg +1 -0
  1145. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bezier-curve.svg +1 -0
  1146. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bicycle.svg +1 -0
  1147. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/binoculars.svg +1 -0
  1148. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bird.svg +1 -0
  1149. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bluetooth-connected.svg +1 -0
  1150. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bluetooth-slash.svg +1 -0
  1151. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bluetooth-x.svg +1 -0
  1152. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bluetooth.svg +1 -0
  1153. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/boat.svg +1 -0
  1154. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bone.svg +1 -0
  1155. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/book-bookmark.svg +1 -0
  1156. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/book-open-text.svg +1 -0
  1157. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/book-open.svg +1 -0
  1158. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/book.svg +1 -0
  1159. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bookmark-simple.svg +1 -0
  1160. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bookmark.svg +1 -0
  1161. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bookmarks-simple.svg +1 -0
  1162. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bookmarks.svg +1 -0
  1163. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/books.svg +1 -0
  1164. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/boot.svg +1 -0
  1165. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bounding-box.svg +1 -0
  1166. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bowl-food.svg +1 -0
  1167. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/brackets-angle.svg +1 -0
  1168. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/brackets-curly.svg +1 -0
  1169. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/brackets-round.svg +1 -0
  1170. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/brackets-square.svg +1 -0
  1171. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/brain.svg +1 -0
  1172. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/brandy.svg +1 -0
  1173. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bridge.svg +1 -0
  1174. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/briefcase-metal.svg +1 -0
  1175. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/briefcase.svg +1 -0
  1176. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/broadcast.svg +1 -0
  1177. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/broom.svg +1 -0
  1178. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/browser.svg +1 -0
  1179. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/browsers.svg +1 -0
  1180. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bug-beetle.svg +1 -0
  1181. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bug-droid.svg +1 -0
  1182. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bug.svg +1 -0
  1183. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/buildings.svg +1 -0
  1184. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/bus.svg +1 -0
  1185. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/butterfly.svg +1 -0
  1186. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cactus.svg +1 -0
  1187. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cake.svg +1 -0
  1188. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/calculator.svg +1 -0
  1189. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/calendar-blank.svg +1 -0
  1190. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/calendar-check.svg +1 -0
  1191. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/calendar-plus.svg +1 -0
  1192. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/calendar-x.svg +1 -0
  1193. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/calendar.svg +1 -0
  1194. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/call-bell.svg +1 -0
  1195. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/camera-plus.svg +1 -0
  1196. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/camera-rotate.svg +1 -0
  1197. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/camera-slash.svg +1 -0
  1198. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/camera.svg +1 -0
  1199. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/campfire.svg +1 -0
  1200. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/car-profile.svg +1 -0
  1201. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/car-simple.svg +1 -0
  1202. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/car.svg +1 -0
  1203. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cardholder.svg +1 -0
  1204. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cards.svg +1 -0
  1205. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-double-down.svg +1 -0
  1206. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-double-left.svg +1 -0
  1207. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-double-right.svg +1 -0
  1208. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-double-up.svg +1 -0
  1209. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-down.svg +1 -0
  1210. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-left.svg +1 -0
  1211. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-right.svg +1 -0
  1212. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-up-down.svg +1 -0
  1213. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-circle-up.svg +1 -0
  1214. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-double-down.svg +1 -0
  1215. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-double-left.svg +1 -0
  1216. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-double-right.svg +1 -0
  1217. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-double-up.svg +1 -0
  1218. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-down.svg +1 -0
  1219. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-left.svg +1 -0
  1220. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-right.svg +1 -0
  1221. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-up-down.svg +1 -0
  1222. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/caret-up.svg +1 -0
  1223. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/carrot.svg +1 -0
  1224. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cassette-tape.svg +1 -0
  1225. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/castle-turret.svg +1 -0
  1226. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cat.svg +1 -0
  1227. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-full.svg +1 -0
  1228. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-high.svg +1 -0
  1229. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-low.svg +1 -0
  1230. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-medium.svg +1 -0
  1231. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-none.svg +1 -0
  1232. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-slash.svg +1 -0
  1233. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cell-signal-x.svg +1 -0
  1234. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/certificate.svg +1 -0
  1235. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chair.svg +1 -0
  1236. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chalkboard-simple.svg +1 -0
  1237. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chalkboard-teacher.svg +1 -0
  1238. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chalkboard.svg +1 -0
  1239. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/champagne.svg +1 -0
  1240. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/charging-station.svg +1 -0
  1241. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-bar-horizontal.svg +1 -0
  1242. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-bar.svg +1 -0
  1243. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-donut.svg +1 -0
  1244. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-line-down.svg +1 -0
  1245. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-line-up.svg +1 -0
  1246. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-line.svg +1 -0
  1247. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-pie-slice.svg +1 -0
  1248. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-pie.svg +1 -0
  1249. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-polar.svg +1 -0
  1250. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chart-scatter.svg +1 -0
  1251. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-centered-dots.svg +1 -0
  1252. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-centered-text.svg +1 -0
  1253. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-centered.svg +1 -0
  1254. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-circle-dots.svg +1 -0
  1255. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-circle-text.svg +1 -0
  1256. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-circle.svg +1 -0
  1257. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-dots.svg +1 -0
  1258. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-teardrop-dots.svg +1 -0
  1259. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-teardrop-text.svg +1 -0
  1260. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-teardrop.svg +1 -0
  1261. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat-text.svg +1 -0
  1262. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chat.svg +1 -0
  1263. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chats-circle.svg +1 -0
  1264. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chats-teardrop.svg +1 -0
  1265. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/chats.svg +1 -0
  1266. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/check-circle.svg +1 -0
  1267. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/check-fat.svg +1 -0
  1268. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/check-square-offset.svg +1 -0
  1269. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/check-square.svg +1 -0
  1270. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/check.svg +1 -0
  1271. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/checks.svg +1 -0
  1272. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/church.svg +1 -0
  1273. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/circle-dashed.svg +1 -0
  1274. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/circle-half-tilt.svg +1 -0
  1275. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/circle-half.svg +1 -0
  1276. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/circle-notch.svg +1 -0
  1277. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/circle.svg +1 -0
  1278. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/circles-four.svg +1 -0
  1279. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/circles-three-plus.svg +1 -0
  1280. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/circles-three.svg +1 -0
  1281. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/circuitry.svg +1 -0
  1282. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/clipboard-text.svg +1 -0
  1283. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/clipboard.svg +1 -0
  1284. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/clock-afternoon.svg +1 -0
  1285. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/clock-clockwise.svg +1 -0
  1286. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/clock-countdown.svg +1 -0
  1287. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/clock-counter-clockwise.svg +1 -0
  1288. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/clock.svg +1 -0
  1289. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/closed-captioning.svg +1 -0
  1290. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-arrow-down.svg +1 -0
  1291. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-arrow-up.svg +1 -0
  1292. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-check.svg +1 -0
  1293. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-fog.svg +1 -0
  1294. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-lightning.svg +1 -0
  1295. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-moon.svg +1 -0
  1296. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-rain.svg +1 -0
  1297. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-slash.svg +1 -0
  1298. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-snow.svg +1 -0
  1299. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-sun.svg +1 -0
  1300. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-warning.svg +1 -0
  1301. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud-x.svg +1 -0
  1302. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cloud.svg +1 -0
  1303. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/club.svg +1 -0
  1304. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/coat-hanger.svg +1 -0
  1305. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/coda-logo.svg +1 -0
  1306. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/code-block.svg +1 -0
  1307. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/code-simple.svg +1 -0
  1308. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/code.svg +1 -0
  1309. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/codepen-logo.svg +1 -0
  1310. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/codesandbox-logo.svg +1 -0
  1311. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/coffee.svg +1 -0
  1312. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/coin-vertical.svg +1 -0
  1313. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/coin.svg +1 -0
  1314. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/coins.svg +1 -0
  1315. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/columns.svg +1 -0
  1316. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/command.svg +1 -0
  1317. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/compass-tool.svg +1 -0
  1318. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/compass.svg +1 -0
  1319. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/computer-tower.svg +1 -0
  1320. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/confetti.svg +1 -0
  1321. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/contactless-payment.svg +1 -0
  1322. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/control.svg +1 -0
  1323. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cookie.svg +1 -0
  1324. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cooking-pot.svg +1 -0
  1325. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/copy-simple.svg +1 -0
  1326. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/copy.svg +1 -0
  1327. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/copyleft.svg +1 -0
  1328. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/copyright.svg +1 -0
  1329. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/corners-in.svg +1 -0
  1330. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/corners-out.svg +1 -0
  1331. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/couch.svg +1 -0
  1332. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cpu.svg +1 -0
  1333. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/credit-card.svg +1 -0
  1334. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/crop.svg +1 -0
  1335. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cross.svg +1 -0
  1336. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/crosshair-simple.svg +1 -0
  1337. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/crosshair.svg +1 -0
  1338. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/crown-simple.svg +1 -0
  1339. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/crown.svg +1 -0
  1340. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cube-focus.svg +1 -0
  1341. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cube-transparent.svg +1 -0
  1342. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cube.svg +1 -0
  1343. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-btc.svg +1 -0
  1344. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-circle-dollar.svg +1 -0
  1345. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-cny.svg +1 -0
  1346. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-dollar-simple.svg +1 -0
  1347. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-dollar.svg +1 -0
  1348. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-eth.svg +1 -0
  1349. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-eur.svg +1 -0
  1350. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-gbp.svg +1 -0
  1351. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-inr.svg +1 -0
  1352. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-jpy.svg +1 -0
  1353. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-krw.svg +1 -0
  1354. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-kzt.svg +1 -0
  1355. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-ngn.svg +1 -0
  1356. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/currency-rub.svg +1 -0
  1357. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cursor-click.svg +1 -0
  1358. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cursor-text.svg +1 -0
  1359. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cursor.svg +1 -0
  1360. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/cylinder.svg +1 -0
  1361. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/database.svg +1 -0
  1362. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/desktop-tower.svg +1 -0
  1363. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/desktop.svg +1 -0
  1364. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/detective.svg +1 -0
  1365. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dev-to-logo.svg +1 -0
  1366. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/device-mobile-camera.svg +1 -0
  1367. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/device-mobile-speaker.svg +1 -0
  1368. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/device-mobile.svg +1 -0
  1369. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/device-tablet-camera.svg +1 -0
  1370. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/device-tablet-speaker.svg +1 -0
  1371. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/device-tablet.svg +1 -0
  1372. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/devices.svg +1 -0
  1373. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/diamond.svg +1 -0
  1374. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/diamonds-four.svg +1 -0
  1375. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dice-five.svg +1 -0
  1376. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dice-four.svg +1 -0
  1377. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dice-one.svg +1 -0
  1378. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dice-six.svg +1 -0
  1379. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dice-three.svg +1 -0
  1380. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dice-two.svg +1 -0
  1381. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/disc.svg +1 -0
  1382. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/discord-logo.svg +1 -0
  1383. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/divide.svg +1 -0
  1384. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dna.svg +1 -0
  1385. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dog.svg +1 -0
  1386. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/door-open.svg +1 -0
  1387. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/door.svg +1 -0
  1388. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dot-outline.svg +1 -0
  1389. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dot.svg +1 -0
  1390. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dots-nine.svg +1 -0
  1391. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dots-six-vertical.svg +1 -0
  1392. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dots-six.svg +1 -0
  1393. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dots-three-circle-vertical.svg +1 -0
  1394. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dots-three-circle.svg +1 -0
  1395. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dots-three-outline-vertical.svg +1 -0
  1396. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dots-three-outline.svg +1 -0
  1397. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dots-three-vertical.svg +1 -0
  1398. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dots-three.svg +1 -0
  1399. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/download-simple.svg +1 -0
  1400. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/download.svg +1 -0
  1401. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dress.svg +1 -0
  1402. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dribbble-logo.svg +1 -0
  1403. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/drop-half-bottom.svg +1 -0
  1404. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/drop-half.svg +1 -0
  1405. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/drop.svg +1 -0
  1406. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/dropbox-logo.svg +1 -0
  1407. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/ear-slash.svg +1 -0
  1408. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/ear.svg +1 -0
  1409. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/egg-crack.svg +1 -0
  1410. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/egg.svg +1 -0
  1411. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/eject-simple.svg +1 -0
  1412. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/eject.svg +1 -0
  1413. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/elevator.svg +1 -0
  1414. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/engine.svg +1 -0
  1415. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/envelope-open.svg +1 -0
  1416. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/envelope-simple-open.svg +1 -0
  1417. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/envelope-simple.svg +1 -0
  1418. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/envelope.svg +1 -0
  1419. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/equalizer.svg +1 -0
  1420. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/equals.svg +1 -0
  1421. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/eraser.svg +1 -0
  1422. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/escalator-down.svg +1 -0
  1423. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/escalator-up.svg +1 -0
  1424. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/exam.svg +1 -0
  1425. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/exclude-square.svg +1 -0
  1426. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/exclude.svg +1 -0
  1427. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/export.svg +1 -0
  1428. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/eye-closed.svg +1 -0
  1429. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/eye-slash.svg +1 -0
  1430. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/eye.svg +1 -0
  1431. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/eyedropper-sample.svg +1 -0
  1432. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/eyedropper.svg +1 -0
  1433. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/eyeglasses.svg +1 -0
  1434. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/face-mask.svg +1 -0
  1435. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/facebook-logo.svg +1 -0
  1436. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/factory.svg +1 -0
  1437. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/faders-horizontal.svg +1 -0
  1438. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/faders.svg +1 -0
  1439. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fan.svg +1 -0
  1440. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fast-forward-circle.svg +1 -0
  1441. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fast-forward.svg +1 -0
  1442. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/feather.svg +1 -0
  1443. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/figma-logo.svg +1 -0
  1444. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-archive.svg +1 -0
  1445. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-arrow-down.svg +1 -0
  1446. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-arrow-up.svg +1 -0
  1447. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-audio.svg +1 -0
  1448. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-cloud.svg +1 -0
  1449. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-code.svg +1 -0
  1450. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-css.svg +1 -0
  1451. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-csv.svg +1 -0
  1452. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-dashed.svg +1 -0
  1453. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-doc.svg +1 -0
  1454. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-html.svg +1 -0
  1455. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-image.svg +1 -0
  1456. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-jpg.svg +1 -0
  1457. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-js.svg +1 -0
  1458. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-jsx.svg +1 -0
  1459. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-lock.svg +1 -0
  1460. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-magnifying-glass.svg +1 -0
  1461. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-minus.svg +1 -0
  1462. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-pdf.svg +1 -0
  1463. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-plus.svg +1 -0
  1464. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-png.svg +1 -0
  1465. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-ppt.svg +1 -0
  1466. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-rs.svg +1 -0
  1467. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-sql.svg +1 -0
  1468. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-svg.svg +1 -0
  1469. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-text.svg +1 -0
  1470. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-ts.svg +1 -0
  1471. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-tsx.svg +1 -0
  1472. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-video.svg +1 -0
  1473. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-vue.svg +1 -0
  1474. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-x.svg +1 -0
  1475. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-xls.svg +1 -0
  1476. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file-zip.svg +1 -0
  1477. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/file.svg +1 -0
  1478. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/files.svg +1 -0
  1479. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/film-reel.svg +1 -0
  1480. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/film-script.svg +1 -0
  1481. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/film-slate.svg +1 -0
  1482. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/film-strip.svg +1 -0
  1483. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fingerprint-simple.svg +1 -0
  1484. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fingerprint.svg +1 -0
  1485. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/finn-the-human.svg +1 -0
  1486. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fire-extinguisher.svg +1 -0
  1487. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fire-simple.svg +1 -0
  1488. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fire.svg +1 -0
  1489. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/first-aid-kit.svg +1 -0
  1490. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/first-aid.svg +1 -0
  1491. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fish-simple.svg +1 -0
  1492. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fish.svg +1 -0
  1493. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flag-banner.svg +1 -0
  1494. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flag-checkered.svg +1 -0
  1495. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flag-pennant.svg +1 -0
  1496. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flag.svg +1 -0
  1497. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flame.svg +1 -0
  1498. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flashlight.svg +1 -0
  1499. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flask.svg +1 -0
  1500. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/floppy-disk-back.svg +1 -0
  1501. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/floppy-disk.svg +1 -0
  1502. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flow-arrow.svg +1 -0
  1503. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flower-lotus.svg +1 -0
  1504. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flower-tulip.svg +1 -0
  1505. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flower.svg +1 -0
  1506. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/flying-saucer.svg +1 -0
  1507. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-dashed.svg +1 -0
  1508. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-lock.svg +1 -0
  1509. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-minus.svg +1 -0
  1510. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-notch-minus.svg +1 -0
  1511. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-notch-open.svg +1 -0
  1512. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-notch-plus.svg +1 -0
  1513. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-notch.svg +1 -0
  1514. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-open.svg +1 -0
  1515. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-plus.svg +1 -0
  1516. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-simple-dashed.svg +1 -0
  1517. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-simple-lock.svg +1 -0
  1518. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-simple-minus.svg +1 -0
  1519. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-simple-plus.svg +1 -0
  1520. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-simple-star.svg +1 -0
  1521. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-simple-user.svg +1 -0
  1522. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-simple.svg +1 -0
  1523. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-star.svg +1 -0
  1524. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder-user.svg +1 -0
  1525. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folder.svg +1 -0
  1526. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/folders.svg +1 -0
  1527. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/football.svg +1 -0
  1528. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/footprints.svg +1 -0
  1529. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/fork-knife.svg +1 -0
  1530. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/frame-corners.svg +1 -0
  1531. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/framer-logo.svg +1 -0
  1532. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/function.svg +1 -0
  1533. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/funnel-simple.svg +1 -0
  1534. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/funnel.svg +1 -0
  1535. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/game-controller.svg +1 -0
  1536. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/garage.svg +1 -0
  1537. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gas-can.svg +1 -0
  1538. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gas-pump.svg +1 -0
  1539. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gauge.svg +1 -0
  1540. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gavel.svg +1 -0
  1541. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gear-fine.svg +1 -0
  1542. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gear-six.svg +1 -0
  1543. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gear.svg +1 -0
  1544. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gender-female.svg +1 -0
  1545. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gender-intersex.svg +1 -0
  1546. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gender-male.svg +1 -0
  1547. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gender-neuter.svg +1 -0
  1548. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gender-nonbinary.svg +1 -0
  1549. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gender-transgender.svg +1 -0
  1550. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/ghost.svg +1 -0
  1551. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gif.svg +1 -0
  1552. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gift.svg +1 -0
  1553. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/git-branch.svg +1 -0
  1554. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/git-commit.svg +1 -0
  1555. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/git-diff.svg +1 -0
  1556. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/git-fork.svg +1 -0
  1557. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/git-merge.svg +1 -0
  1558. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/git-pull-request.svg +1 -0
  1559. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/github-logo.svg +1 -0
  1560. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gitlab-logo-simple.svg +1 -0
  1561. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gitlab-logo.svg +1 -0
  1562. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/globe-hemisphere-east.svg +1 -0
  1563. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/globe-hemisphere-west.svg +1 -0
  1564. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/globe-simple.svg +1 -0
  1565. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/globe-stand.svg +1 -0
  1566. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/globe.svg +1 -0
  1567. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/goggles.svg +1 -0
  1568. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/goodreads-logo.svg +1 -0
  1569. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/google-cardboard-logo.svg +1 -0
  1570. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/google-chrome-logo.svg +1 -0
  1571. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/google-drive-logo.svg +1 -0
  1572. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/google-logo.svg +1 -0
  1573. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/google-photos-logo.svg +1 -0
  1574. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/google-play-logo.svg +1 -0
  1575. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/google-podcasts-logo.svg +1 -0
  1576. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/gradient.svg +1 -0
  1577. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/graduation-cap.svg +1 -0
  1578. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/grains-slash.svg +1 -0
  1579. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/grains.svg +1 -0
  1580. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/graph.svg +1 -0
  1581. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/grid-four.svg +1 -0
  1582. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/grid-nine.svg +1 -0
  1583. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/guitar.svg +1 -0
  1584. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hamburger.svg +1 -0
  1585. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hammer.svg +1 -0
  1586. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-coins.svg +1 -0
  1587. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-eye.svg +1 -0
  1588. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-fist.svg +1 -0
  1589. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-grabbing.svg +1 -0
  1590. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-heart.svg +1 -0
  1591. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-palm.svg +1 -0
  1592. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-pointing.svg +1 -0
  1593. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-soap.svg +1 -0
  1594. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-swipe-left.svg +1 -0
  1595. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-swipe-right.svg +1 -0
  1596. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-tap.svg +1 -0
  1597. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand-waving.svg +1 -0
  1598. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hand.svg +1 -0
  1599. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/handbag-simple.svg +1 -0
  1600. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/handbag.svg +1 -0
  1601. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hands-clapping.svg +1 -0
  1602. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hands-praying.svg +1 -0
  1603. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/handshake.svg +1 -0
  1604. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hard-drive.svg +1 -0
  1605. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hard-drives.svg +1 -0
  1606. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hash-straight.svg +1 -0
  1607. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hash.svg +1 -0
  1608. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/headlights.svg +1 -0
  1609. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/headphones.svg +1 -0
  1610. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/headset.svg +1 -0
  1611. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/heart-break.svg +1 -0
  1612. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/heart-half.svg +1 -0
  1613. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/heart-straight-break.svg +1 -0
  1614. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/heart-straight.svg +1 -0
  1615. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/heart.svg +1 -0
  1616. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/heartbeat.svg +1 -0
  1617. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hexagon.svg +1 -0
  1618. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/high-heel.svg +1 -0
  1619. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/highlighter-circle.svg +1 -0
  1620. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hoodie.svg +1 -0
  1621. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/horse.svg +1 -0
  1622. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hourglass-high.svg +1 -0
  1623. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hourglass-low.svg +1 -0
  1624. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hourglass-medium.svg +1 -0
  1625. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hourglass-simple-high.svg +1 -0
  1626. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hourglass-simple-low.svg +1 -0
  1627. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hourglass-simple-medium.svg +1 -0
  1628. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hourglass-simple.svg +1 -0
  1629. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/hourglass.svg +1 -0
  1630. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/house-line.svg +1 -0
  1631. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/house-simple.svg +1 -0
  1632. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/house.svg +1 -0
  1633. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/ice-cream.svg +1 -0
  1634. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/identification-badge.svg +1 -0
  1635. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/identification-card.svg +1 -0
  1636. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/image-square.svg +1 -0
  1637. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/image.svg +1 -0
  1638. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/images-square.svg +1 -0
  1639. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/images.svg +1 -0
  1640. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/infinity.svg +1 -0
  1641. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/info.svg +1 -0
  1642. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/instagram-logo.svg +1 -0
  1643. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/intersect-square.svg +1 -0
  1644. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/intersect-three.svg +1 -0
  1645. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/intersect.svg +1 -0
  1646. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/jeep.svg +1 -0
  1647. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/kanban.svg +1 -0
  1648. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/key-return.svg +1 -0
  1649. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/key.svg +1 -0
  1650. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/keyboard.svg +1 -0
  1651. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/keyhole.svg +1 -0
  1652. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/knife.svg +1 -0
  1653. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/ladder-simple.svg +1 -0
  1654. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/ladder.svg +1 -0
  1655. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lamp.svg +1 -0
  1656. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/laptop.svg +1 -0
  1657. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/layout.svg +1 -0
  1658. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/leaf.svg +1 -0
  1659. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lifebuoy.svg +1 -0
  1660. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lightbulb-filament.svg +1 -0
  1661. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lightbulb.svg +1 -0
  1662. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lighthouse.svg +1 -0
  1663. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lightning-a.svg +1 -0
  1664. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lightning-slash.svg +1 -0
  1665. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lightning.svg +1 -0
  1666. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/line-segment.svg +1 -0
  1667. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/line-segments.svg +1 -0
  1668. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/link-break.svg +1 -0
  1669. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/link-simple-break.svg +1 -0
  1670. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/link-simple-horizontal-break.svg +1 -0
  1671. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/link-simple-horizontal.svg +1 -0
  1672. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/link-simple.svg +1 -0
  1673. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/link.svg +1 -0
  1674. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/linkedin-logo.svg +1 -0
  1675. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/linux-logo.svg +1 -0
  1676. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/list-bullets.svg +1 -0
  1677. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/list-checks.svg +1 -0
  1678. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/list-dashes.svg +1 -0
  1679. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/list-magnifying-glass.svg +1 -0
  1680. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/list-numbers.svg +1 -0
  1681. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/list-plus.svg +1 -0
  1682. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/list.svg +1 -0
  1683. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lock-key-open.svg +1 -0
  1684. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lock-key.svg +1 -0
  1685. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lock-laminated-open.svg +1 -0
  1686. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lock-laminated.svg +1 -0
  1687. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lock-open.svg +1 -0
  1688. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lock-simple-open.svg +1 -0
  1689. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lock-simple.svg +1 -0
  1690. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lock.svg +1 -0
  1691. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/lockers.svg +1 -0
  1692. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/magic-wand.svg +1 -0
  1693. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/magnet-straight.svg +1 -0
  1694. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/magnet.svg +1 -0
  1695. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/magnifying-glass-minus.svg +1 -0
  1696. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/magnifying-glass-plus.svg +1 -0
  1697. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/magnifying-glass.svg +1 -0
  1698. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/map-pin-line.svg +1 -0
  1699. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/map-pin.svg +1 -0
  1700. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/map-trifold.svg +1 -0
  1701. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/marker-circle.svg +1 -0
  1702. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/martini.svg +1 -0
  1703. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/mask-happy.svg +1 -0
  1704. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/mask-sad.svg +1 -0
  1705. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/math-operations.svg +1 -0
  1706. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/medal-military.svg +1 -0
  1707. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/medal.svg +1 -0
  1708. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/medium-logo.svg +1 -0
  1709. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/megaphone-simple.svg +1 -0
  1710. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/megaphone.svg +1 -0
  1711. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/messenger-logo.svg +1 -0
  1712. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/meta-logo.svg +1 -0
  1713. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/metronome.svg +1 -0
  1714. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/microphone-slash.svg +1 -0
  1715. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/microphone-stage.svg +1 -0
  1716. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/microphone.svg +1 -0
  1717. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/microsoft-excel-logo.svg +1 -0
  1718. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/microsoft-outlook-logo.svg +1 -0
  1719. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/microsoft-powerpoint-logo.svg +1 -0
  1720. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/microsoft-teams-logo.svg +1 -0
  1721. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/microsoft-word-logo.svg +1 -0
  1722. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/minus-circle.svg +1 -0
  1723. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/minus-square.svg +1 -0
  1724. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/minus.svg +1 -0
  1725. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/money.svg +1 -0
  1726. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/monitor-play.svg +1 -0
  1727. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/monitor.svg +1 -0
  1728. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/moon-stars.svg +1 -0
  1729. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/moon.svg +1 -0
  1730. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/moped-front.svg +1 -0
  1731. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/moped.svg +1 -0
  1732. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/mosque.svg +1 -0
  1733. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/motorcycle.svg +1 -0
  1734. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/mountains.svg +1 -0
  1735. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/mouse-simple.svg +1 -0
  1736. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/mouse.svg +1 -0
  1737. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/music-note-simple.svg +1 -0
  1738. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/music-note.svg +1 -0
  1739. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/music-notes-plus.svg +1 -0
  1740. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/music-notes-simple.svg +1 -0
  1741. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/music-notes.svg +1 -0
  1742. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/navigation-arrow.svg +1 -0
  1743. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/needle.svg +1 -0
  1744. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/newspaper-clipping.svg +1 -0
  1745. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/newspaper.svg +1 -0
  1746. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/notches.svg +1 -0
  1747. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/note-blank.svg +1 -0
  1748. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/note-pencil.svg +1 -0
  1749. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/note.svg +1 -0
  1750. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/notebook.svg +1 -0
  1751. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/notepad.svg +1 -0
  1752. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/notification.svg +1 -0
  1753. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/notion-logo.svg +1 -0
  1754. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-eight.svg +1 -0
  1755. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-five.svg +1 -0
  1756. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-four.svg +1 -0
  1757. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-nine.svg +1 -0
  1758. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-one.svg +1 -0
  1759. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-seven.svg +1 -0
  1760. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-six.svg +1 -0
  1761. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-three.svg +1 -0
  1762. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-two.svg +1 -0
  1763. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-circle-zero.svg +1 -0
  1764. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-eight.svg +1 -0
  1765. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-five.svg +1 -0
  1766. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-four.svg +1 -0
  1767. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-nine.svg +1 -0
  1768. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-one.svg +1 -0
  1769. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-seven.svg +1 -0
  1770. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-six.svg +1 -0
  1771. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-eight.svg +1 -0
  1772. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-five.svg +1 -0
  1773. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-four.svg +1 -0
  1774. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-nine.svg +1 -0
  1775. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-one.svg +1 -0
  1776. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-seven.svg +1 -0
  1777. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-six.svg +1 -0
  1778. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-three.svg +1 -0
  1779. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-two.svg +1 -0
  1780. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-square-zero.svg +1 -0
  1781. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-three.svg +1 -0
  1782. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-two.svg +1 -0
  1783. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/number-zero.svg +1 -0
  1784. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/nut.svg +1 -0
  1785. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/ny-times-logo.svg +1 -0
  1786. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/octagon.svg +1 -0
  1787. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/office-chair.svg +1 -0
  1788. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/option.svg +1 -0
  1789. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/orange-slice.svg +1 -0
  1790. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/package.svg +1 -0
  1791. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paint-brush-broad.svg +1 -0
  1792. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paint-brush-household.svg +1 -0
  1793. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paint-brush.svg +1 -0
  1794. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paint-bucket.svg +1 -0
  1795. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paint-roller.svg +1 -0
  1796. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/palette.svg +1 -0
  1797. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pants.svg +1 -0
  1798. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paper-plane-right.svg +1 -0
  1799. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paper-plane-tilt.svg +1 -0
  1800. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paper-plane.svg +1 -0
  1801. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paperclip-horizontal.svg +1 -0
  1802. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paperclip.svg +1 -0
  1803. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/parachute.svg +1 -0
  1804. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paragraph.svg +1 -0
  1805. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/parallelogram.svg +1 -0
  1806. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/park.svg +1 -0
  1807. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/password.svg +1 -0
  1808. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/path.svg +1 -0
  1809. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/patreon-logo.svg +1 -0
  1810. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pause-circle.svg +1 -0
  1811. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pause.svg +1 -0
  1812. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paw-print.svg +1 -0
  1813. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/paypal-logo.svg +1 -0
  1814. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/peace.svg +1 -0
  1815. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pen-nib-straight.svg +1 -0
  1816. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pen-nib.svg +1 -0
  1817. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pen.svg +1 -0
  1818. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pencil-circle.svg +1 -0
  1819. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pencil-line.svg +1 -0
  1820. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pencil-simple-line.svg +1 -0
  1821. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pencil-simple-slash.svg +1 -0
  1822. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pencil-simple.svg +1 -0
  1823. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pencil-slash.svg +1 -0
  1824. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pencil.svg +1 -0
  1825. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pentagram.svg +1 -0
  1826. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pepper.svg +1 -0
  1827. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/percent.svg +1 -0
  1828. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/person-arms-spread.svg +1 -0
  1829. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/person-simple-bike.svg +1 -0
  1830. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/person-simple-run.svg +1 -0
  1831. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/person-simple-throw.svg +1 -0
  1832. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/person-simple-walk.svg +1 -0
  1833. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/person-simple.svg +1 -0
  1834. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/person.svg +1 -0
  1835. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/perspective.svg +1 -0
  1836. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/phone-call.svg +1 -0
  1837. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/phone-disconnect.svg +1 -0
  1838. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/phone-incoming.svg +1 -0
  1839. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/phone-outgoing.svg +1 -0
  1840. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/phone-plus.svg +1 -0
  1841. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/phone-slash.svg +1 -0
  1842. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/phone-x.svg +1 -0
  1843. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/phone.svg +1 -0
  1844. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/phosphor-logo.svg +1 -0
  1845. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pi.svg +1 -0
  1846. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/piano-keys.svg +1 -0
  1847. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/picture-in-picture.svg +1 -0
  1848. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/piggy-bank.svg +1 -0
  1849. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pill.svg +1 -0
  1850. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pinterest-logo.svg +1 -0
  1851. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pinwheel.svg +1 -0
  1852. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pizza.svg +1 -0
  1853. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/placeholder.svg +1 -0
  1854. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/planet.svg +1 -0
  1855. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/plant.svg +1 -0
  1856. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/play-circle.svg +1 -0
  1857. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/play-pause.svg +1 -0
  1858. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/play.svg +1 -0
  1859. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/playlist.svg +1 -0
  1860. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/plug-charging.svg +1 -0
  1861. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/plug.svg +1 -0
  1862. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/plugs-connected.svg +1 -0
  1863. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/plugs.svg +1 -0
  1864. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/plus-circle.svg +1 -0
  1865. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/plus-minus.svg +1 -0
  1866. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/plus-square.svg +1 -0
  1867. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/plus.svg +1 -0
  1868. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/poker-chip.svg +1 -0
  1869. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/police-car.svg +1 -0
  1870. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/polygon.svg +1 -0
  1871. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/popcorn.svg +1 -0
  1872. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/potted-plant.svg +1 -0
  1873. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/power.svg +1 -0
  1874. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/prescription.svg +1 -0
  1875. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/presentation-chart.svg +1 -0
  1876. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/presentation.svg +1 -0
  1877. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/printer.svg +1 -0
  1878. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/prohibit-inset.svg +1 -0
  1879. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/prohibit.svg +1 -0
  1880. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/projector-screen-chart.svg +1 -0
  1881. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/projector-screen.svg +1 -0
  1882. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/pulse.svg +1 -0
  1883. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/push-pin-simple-slash.svg +1 -0
  1884. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/push-pin-simple.svg +1 -0
  1885. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/push-pin-slash.svg +1 -0
  1886. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/push-pin.svg +1 -0
  1887. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/puzzle-piece.svg +1 -0
  1888. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/qr-code.svg +1 -0
  1889. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/question.svg +1 -0
  1890. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/queue.svg +1 -0
  1891. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/quotes.svg +1 -0
  1892. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/radical.svg +1 -0
  1893. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/radio-button.svg +1 -0
  1894. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/radio.svg +1 -0
  1895. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/radioactive.svg +1 -0
  1896. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rainbow-cloud.svg +1 -0
  1897. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rainbow.svg +1 -0
  1898. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/read-cv-logo.svg +1 -0
  1899. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/receipt-x.svg +1 -0
  1900. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/receipt.svg +1 -0
  1901. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/record.svg +1 -0
  1902. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rectangle.svg +1 -0
  1903. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/recycle.svg +1 -0
  1904. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/reddit-logo.svg +1 -0
  1905. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/repeat-once.svg +1 -0
  1906. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/repeat.svg +1 -0
  1907. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rewind-circle.svg +1 -0
  1908. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rewind.svg +1 -0
  1909. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/road-horizon.svg +1 -0
  1910. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/robot.svg +1 -0
  1911. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rocket-launch.svg +1 -0
  1912. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rocket.svg +1 -0
  1913. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rows.svg +1 -0
  1914. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rss-simple.svg +1 -0
  1915. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rss.svg +1 -0
  1916. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/rug.svg +1 -0
  1917. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/ruler.svg +1 -0
  1918. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/scales.svg +1 -0
  1919. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/scan.svg +1 -0
  1920. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/scissors.svg +1 -0
  1921. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/scooter.svg +1 -0
  1922. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/screencast.svg +1 -0
  1923. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/scribble-loop.svg +1 -0
  1924. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/scroll.svg +1 -0
  1925. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/seal-check.svg +1 -0
  1926. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/seal-question.svg +1 -0
  1927. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/seal-warning.svg +1 -0
  1928. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/seal.svg +1 -0
  1929. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/selection-all.svg +1 -0
  1930. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/selection-background.svg +1 -0
  1931. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/selection-foreground.svg +1 -0
  1932. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/selection-inverse.svg +1 -0
  1933. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/selection-plus.svg +1 -0
  1934. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/selection-slash.svg +1 -0
  1935. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/selection.svg +1 -0
  1936. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shapes.svg +1 -0
  1937. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/share-fat.svg +1 -0
  1938. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/share-network.svg +1 -0
  1939. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/share.svg +1 -0
  1940. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shield-check.svg +1 -0
  1941. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shield-checkered.svg +1 -0
  1942. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shield-chevron.svg +1 -0
  1943. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shield-plus.svg +1 -0
  1944. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shield-slash.svg +1 -0
  1945. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shield-star.svg +1 -0
  1946. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shield-warning.svg +1 -0
  1947. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shield.svg +1 -0
  1948. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shirt-folded.svg +1 -0
  1949. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shooting-star.svg +1 -0
  1950. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shopping-bag-open.svg +1 -0
  1951. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shopping-bag.svg +1 -0
  1952. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shopping-cart-simple.svg +1 -0
  1953. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shopping-cart.svg +1 -0
  1954. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shower.svg +1 -0
  1955. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shrimp.svg +1 -0
  1956. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shuffle-angular.svg +1 -0
  1957. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shuffle-simple.svg +1 -0
  1958. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/shuffle.svg +1 -0
  1959. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sidebar-simple.svg +1 -0
  1960. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sidebar.svg +1 -0
  1961. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sigma.svg +1 -0
  1962. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sign-in.svg +1 -0
  1963. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sign-out.svg +1 -0
  1964. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/signature.svg +1 -0
  1965. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/signpost.svg +1 -0
  1966. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sim-card.svg +1 -0
  1967. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/siren.svg +1 -0
  1968. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sketch-logo.svg +1 -0
  1969. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/skip-back-circle.svg +1 -0
  1970. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/skip-back.svg +1 -0
  1971. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/skip-forward-circle.svg +1 -0
  1972. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/skip-forward.svg +1 -0
  1973. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/skull.svg +1 -0
  1974. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/slack-logo.svg +1 -0
  1975. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sliders-horizontal.svg +1 -0
  1976. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sliders.svg +1 -0
  1977. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/slideshow.svg +1 -0
  1978. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/smiley-angry.svg +1 -0
  1979. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/smiley-blank.svg +1 -0
  1980. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/smiley-meh.svg +1 -0
  1981. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/smiley-nervous.svg +1 -0
  1982. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/smiley-sad.svg +1 -0
  1983. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/smiley-sticker.svg +1 -0
  1984. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/smiley-wink.svg +1 -0
  1985. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/smiley-x-eyes.svg +1 -0
  1986. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/smiley.svg +1 -0
  1987. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/snapchat-logo.svg +1 -0
  1988. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sneaker-move.svg +1 -0
  1989. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sneaker.svg +1 -0
  1990. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/snowflake.svg +1 -0
  1991. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/soccer-ball.svg +1 -0
  1992. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sort-ascending.svg +1 -0
  1993. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sort-descending.svg +1 -0
  1994. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/soundcloud-logo.svg +1 -0
  1995. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/spade.svg +1 -0
  1996. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sparkle.svg +1 -0
  1997. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-hifi.svg +1 -0
  1998. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-high.svg +1 -0
  1999. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-low.svg +1 -0
  2000. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-none.svg +1 -0
  2001. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-simple-high.svg +1 -0
  2002. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-simple-low.svg +1 -0
  2003. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-simple-none.svg +1 -0
  2004. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-simple-slash.svg +1 -0
  2005. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-simple-x.svg +1 -0
  2006. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-slash.svg +1 -0
  2007. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/speaker-x.svg +1 -0
  2008. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/spinner-gap.svg +1 -0
  2009. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/spinner.svg +1 -0
  2010. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/spiral.svg +1 -0
  2011. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/split-horizontal.svg +1 -0
  2012. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/split-vertical.svg +1 -0
  2013. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/spotify-logo.svg +1 -0
  2014. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/square-half-bottom.svg +1 -0
  2015. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/square-half.svg +1 -0
  2016. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/square-logo.svg +1 -0
  2017. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/square-split-horizontal.svg +1 -0
  2018. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/square-split-vertical.svg +1 -0
  2019. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/square.svg +1 -0
  2020. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/squares-four.svg +1 -0
  2021. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stack-overflow-logo.svg +1 -0
  2022. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stack-simple.svg +1 -0
  2023. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stack.svg +1 -0
  2024. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stairs.svg +1 -0
  2025. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stamp.svg +1 -0
  2026. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/star-and-crescent.svg +1 -0
  2027. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/star-four.svg +1 -0
  2028. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/star-half.svg +1 -0
  2029. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/star-of-david.svg +1 -0
  2030. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/star.svg +1 -0
  2031. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/steering-wheel.svg +1 -0
  2032. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/steps.svg +1 -0
  2033. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stethoscope.svg +1 -0
  2034. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sticker.svg +1 -0
  2035. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stool.svg +1 -0
  2036. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stop-circle.svg +1 -0
  2037. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stop.svg +1 -0
  2038. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/storefront.svg +1 -0
  2039. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/strategy.svg +1 -0
  2040. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/stripe-logo.svg +1 -0
  2041. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/student.svg +1 -0
  2042. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/subtitles.svg +1 -0
  2043. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/subtract-square.svg +1 -0
  2044. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/subtract.svg +1 -0
  2045. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/suitcase-rolling.svg +1 -0
  2046. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/suitcase-simple.svg +1 -0
  2047. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/suitcase.svg +1 -0
  2048. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sun-dim.svg +1 -0
  2049. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sun-horizon.svg +1 -0
  2050. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sun.svg +1 -0
  2051. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sunglasses.svg +1 -0
  2052. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/swap.svg +1 -0
  2053. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/swatches.svg +1 -0
  2054. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/swimming-pool.svg +1 -0
  2055. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/sword.svg +1 -0
  2056. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/synagogue.svg +1 -0
  2057. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/syringe.svg +1 -0
  2058. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/t-shirt.svg +1 -0
  2059. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/table.svg +1 -0
  2060. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tabs.svg +1 -0
  2061. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tag-chevron.svg +1 -0
  2062. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tag-simple.svg +1 -0
  2063. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tag.svg +1 -0
  2064. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/target.svg +1 -0
  2065. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/taxi.svg +1 -0
  2066. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/telegram-logo.svg +1 -0
  2067. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/television-simple.svg +1 -0
  2068. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/television.svg +1 -0
  2069. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tennis-ball.svg +1 -0
  2070. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tent.svg +1 -0
  2071. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/terminal-window.svg +1 -0
  2072. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/terminal.svg +1 -0
  2073. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/test-tube.svg +1 -0
  2074. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-a-underline.svg +1 -0
  2075. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-aa.svg +1 -0
  2076. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-align-center.svg +1 -0
  2077. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-align-justify.svg +1 -0
  2078. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-align-left.svg +1 -0
  2079. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-align-right.svg +1 -0
  2080. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-b.svg +1 -0
  2081. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-columns.svg +1 -0
  2082. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-h-five.svg +1 -0
  2083. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-h-four.svg +1 -0
  2084. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-h-one.svg +1 -0
  2085. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-h-six.svg +1 -0
  2086. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-h-three.svg +1 -0
  2087. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-h-two.svg +1 -0
  2088. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-h.svg +1 -0
  2089. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-indent.svg +1 -0
  2090. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-italic.svg +1 -0
  2091. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-outdent.svg +1 -0
  2092. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-strikethrough.svg +1 -0
  2093. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-t.svg +1 -0
  2094. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/text-underline.svg +1 -0
  2095. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/textbox.svg +1 -0
  2096. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/thermometer-cold.svg +1 -0
  2097. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/thermometer-hot.svg +1 -0
  2098. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/thermometer-simple.svg +1 -0
  2099. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/thermometer.svg +1 -0
  2100. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/thumbs-down.svg +1 -0
  2101. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/thumbs-up.svg +1 -0
  2102. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/ticket.svg +1 -0
  2103. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tidal-logo.svg +1 -0
  2104. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tiktok-logo.svg +1 -0
  2105. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/timer.svg +1 -0
  2106. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tipi.svg +1 -0
  2107. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/toggle-left.svg +1 -0
  2108. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/toggle-right.svg +1 -0
  2109. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/toilet-paper.svg +1 -0
  2110. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/toilet.svg +1 -0
  2111. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/toolbox.svg +1 -0
  2112. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tooth.svg +1 -0
  2113. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tote-simple.svg +1 -0
  2114. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tote.svg +1 -0
  2115. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/trademark-registered.svg +1 -0
  2116. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/trademark.svg +1 -0
  2117. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/traffic-cone.svg +1 -0
  2118. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/traffic-sign.svg +1 -0
  2119. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/traffic-signal.svg +1 -0
  2120. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/train-regional.svg +1 -0
  2121. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/train-simple.svg +1 -0
  2122. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/train.svg +1 -0
  2123. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tram.svg +1 -0
  2124. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/translate.svg +1 -0
  2125. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/trash-simple.svg +1 -0
  2126. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/trash.svg +1 -0
  2127. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tray.svg +1 -0
  2128. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tree-evergreen.svg +1 -0
  2129. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tree-palm.svg +1 -0
  2130. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tree-structure.svg +1 -0
  2131. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/tree.svg +1 -0
  2132. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/trend-down.svg +1 -0
  2133. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/trend-up.svg +1 -0
  2134. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/triangle.svg +1 -0
  2135. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/trophy.svg +1 -0
  2136. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/truck.svg +1 -0
  2137. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/twitch-logo.svg +1 -0
  2138. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/twitter-logo.svg +1 -0
  2139. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/umbrella-simple.svg +1 -0
  2140. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/umbrella.svg +1 -0
  2141. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/unite-square.svg +1 -0
  2142. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/unite.svg +1 -0
  2143. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/upload-simple.svg +1 -0
  2144. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/upload.svg +1 -0
  2145. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/usb.svg +1 -0
  2146. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-circle-gear.svg +1 -0
  2147. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-circle-minus.svg +1 -0
  2148. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-circle-plus.svg +1 -0
  2149. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-circle.svg +1 -0
  2150. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-focus.svg +1 -0
  2151. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-gear.svg +1 -0
  2152. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-list.svg +1 -0
  2153. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-minus.svg +1 -0
  2154. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-plus.svg +1 -0
  2155. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-rectangle.svg +1 -0
  2156. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-square.svg +1 -0
  2157. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user-switch.svg +1 -0
  2158. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/user.svg +1 -0
  2159. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/users-four.svg +1 -0
  2160. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/users-three.svg +1 -0
  2161. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/users.svg +1 -0
  2162. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/van.svg +1 -0
  2163. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/vault.svg +1 -0
  2164. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/vibrate.svg +1 -0
  2165. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/video-camera-slash.svg +1 -0
  2166. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/video-camera.svg +1 -0
  2167. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/video.svg +1 -0
  2168. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/vignette.svg +1 -0
  2169. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/vinyl-record.svg +1 -0
  2170. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/virtual-reality.svg +1 -0
  2171. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/virus.svg +1 -0
  2172. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/voicemail.svg +1 -0
  2173. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/volleyball.svg +1 -0
  2174. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wall.svg +1 -0
  2175. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wallet.svg +1 -0
  2176. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/warehouse.svg +1 -0
  2177. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/warning-circle.svg +1 -0
  2178. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/warning-diamond.svg +1 -0
  2179. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/warning-octagon.svg +1 -0
  2180. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/warning.svg +1 -0
  2181. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/watch.svg +1 -0
  2182. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wave-sawtooth.svg +1 -0
  2183. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wave-sine.svg +1 -0
  2184. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wave-square.svg +1 -0
  2185. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wave-triangle.svg +1 -0
  2186. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/waveform.svg +1 -0
  2187. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/waves.svg +1 -0
  2188. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/webcam-slash.svg +1 -0
  2189. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/webcam.svg +1 -0
  2190. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/webhooks-logo.svg +1 -0
  2191. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wechat-logo.svg +1 -0
  2192. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/whatsapp-logo.svg +1 -0
  2193. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wheelchair-motion.svg +1 -0
  2194. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wheelchair.svg +1 -0
  2195. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wifi-high.svg +1 -0
  2196. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wifi-low.svg +1 -0
  2197. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wifi-medium.svg +1 -0
  2198. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wifi-none.svg +1 -0
  2199. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wifi-slash.svg +1 -0
  2200. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wifi-x.svg +1 -0
  2201. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wind.svg +1 -0
  2202. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/windows-logo.svg +1 -0
  2203. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wine.svg +1 -0
  2204. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/wrench.svg +1 -0
  2205. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/x-circle.svg +1 -0
  2206. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/x-square.svg +1 -0
  2207. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/x.svg +1 -0
  2208. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/yin-yang.svg +1 -0
  2209. ppt_master-0.1.0/skills/ppt-master/templates/icons/phosphor-duotone/youtube-logo.svg +1 -0
  2210. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/1001tracklists.svg +1 -0
  2211. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/1and1.svg +1 -0
  2212. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/1dot1dot1dot1.svg +1 -0
  2213. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/1panel.svg +1 -0
  2214. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/1password.svg +1 -0
  2215. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/2fas.svg +1 -0
  2216. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/2k.svg +1 -0
  2217. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/30secondsofcode.svg +1 -0
  2218. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/365datascience.svg +1 -0
  2219. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/3m.svg +1 -0
  2220. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/42.svg +1 -0
  2221. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/4chan.svg +1 -0
  2222. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/4d.svg +1 -0
  2223. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/500px.svg +1 -0
  2224. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/7zip.svg +1 -0
  2225. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/99designs.svg +1 -0
  2226. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/9gag.svg +1 -0
  2227. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/abb.svg +1 -0
  2228. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/abbott.svg +1 -0
  2229. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/abbrobotstudio.svg +1 -0
  2230. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/abbvie.svg +1 -0
  2231. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/abdownloadmanager.svg +1 -0
  2232. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aboutdotme.svg +1 -0
  2233. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/abstract.svg +1 -0
  2234. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/abusedotch.svg +1 -0
  2235. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/academia.svg +1 -0
  2236. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/accenture.svg +1 -0
  2237. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/accusoft.svg +1 -0
  2238. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/accuweather.svg +1 -0
  2239. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/acer.svg +1 -0
  2240. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/acm.svg +1 -0
  2241. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/acode.svg +1 -0
  2242. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/actigraph.svg +1 -0
  2243. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/activeloop.svg +1 -0
  2244. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/activision.svg +1 -0
  2245. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/activitypub.svg +1 -0
  2246. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/actix.svg +1 -0
  2247. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/actualbudget.svg +1 -0
  2248. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/acura.svg +1 -0
  2249. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ada.svg +1 -0
  2250. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adafruit.svg +1 -0
  2251. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adaway.svg +1 -0
  2252. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adblock.svg +1 -0
  2253. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adblockplus.svg +1 -0
  2254. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/addydotio.svg +1 -0
  2255. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adguard.svg +1 -0
  2256. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adidas.svg +1 -0
  2257. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adminer.svg +1 -0
  2258. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobe.svg +1 -0
  2259. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobeacrobatreader.svg +1 -0
  2260. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobeaftereffects.svg +1 -0
  2261. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobeaudition.svg +1 -0
  2262. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobecreativecloud.svg +1 -0
  2263. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobedreamweaver.svg +1 -0
  2264. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobefonts.svg +1 -0
  2265. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobeillustrator.svg +1 -0
  2266. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobeindesign.svg +1 -0
  2267. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobelightroom.svg +1 -0
  2268. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobelightroomclassic.svg +1 -0
  2269. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobephotoshop.svg +1 -0
  2270. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobepremierepro.svg +1 -0
  2271. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adobexd.svg +1 -0
  2272. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adonisjs.svg +1 -0
  2273. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adp.svg +1 -0
  2274. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adroll.svg +1 -0
  2275. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adventofcode.svg +1 -0
  2276. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/adyen.svg +1 -0
  2277. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aegisauthenticator.svg +1 -0
  2278. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aerlingus.svg +1 -0
  2279. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aeroflot.svg +1 -0
  2280. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aeromexico.svg +1 -0
  2281. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aerospike.svg +1 -0
  2282. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aew.svg +1 -0
  2283. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/afdian.svg +1 -0
  2284. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/affine.svg +1 -0
  2285. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/affinity.svg +1 -0
  2286. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/affinitydesigner.svg +1 -0
  2287. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/affinityphoto.svg +1 -0
  2288. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/affinitypublisher.svg +1 -0
  2289. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aframe.svg +1 -0
  2290. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/afterpay.svg +1 -0
  2291. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aftership.svg +1 -0
  2292. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/agora.svg +1 -0
  2293. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aib.svg +1 -0
  2294. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aidungeon.svg +1 -0
  2295. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aiohttp.svg +1 -0
  2296. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aiqfome.svg +1 -0
  2297. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airasia.svg +1 -0
  2298. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airbnb.svg +1 -0
  2299. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airbrake.svg +1 -0
  2300. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airbus.svg +1 -0
  2301. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airbyte.svg +1 -0
  2302. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aircall.svg +1 -0
  2303. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aircanada.svg +1 -0
  2304. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airchina.svg +1 -0
  2305. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airfrance.svg +1 -0
  2306. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airindia.svg +1 -0
  2307. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airplayaudio.svg +1 -0
  2308. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airplayvideo.svg +1 -0
  2309. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airserbia.svg +1 -0
  2310. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airtable.svg +1 -0
  2311. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airtel.svg +1 -0
  2312. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/airtransat.svg +1 -0
  2313. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ajv.svg +1 -0
  2314. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/akamai.svg +1 -0
  2315. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/akasaair.svg +1 -0
  2316. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/akaunting.svg +1 -0
  2317. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/akiflow.svg +1 -0
  2318. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alacritty.svg +1 -0
  2319. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alamy.svg +1 -0
  2320. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/albertheijn.svg +1 -0
  2321. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alby.svg +1 -0
  2322. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alchemy.svg +1 -0
  2323. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aldinord.svg +1 -0
  2324. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aldisud.svg +1 -0
  2325. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alfaromeo.svg +1 -0
  2326. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alfred.svg +1 -0
  2327. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/algolia.svg +1 -0
  2328. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/algorand.svg +1 -0
  2329. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alibabacloud.svg +1 -0
  2330. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alibabadotcom.svg +1 -0
  2331. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alienware.svg +1 -0
  2332. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aliexpress.svg +1 -0
  2333. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alipay.svg +1 -0
  2334. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alist.svg +1 -0
  2335. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/allegro.svg +1 -0
  2336. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alliedmodders.svg +1 -0
  2337. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/allocine.svg +1 -0
  2338. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alltrails.svg +1 -0
  2339. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/almalinux.svg +1 -0
  2340. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alpinedotjs.svg +1 -0
  2341. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alpinelinux.svg +1 -0
  2342. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alternativeto.svg +1 -0
  2343. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alteryx.svg +1 -0
  2344. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/altiumdesigner.svg +1 -0
  2345. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alwaysdata.svg +1 -0
  2346. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/alx.svg +1 -0
  2347. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazon.svg +1 -0
  2348. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonalexa.svg +1 -0
  2349. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonapigateway.svg +1 -0
  2350. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazoncloudwatch.svg +1 -0
  2351. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazoncognito.svg +1 -0
  2352. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazondocumentdb.svg +1 -0
  2353. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazondynamodb.svg +1 -0
  2354. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonec2.svg +1 -0
  2355. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonecs.svg +1 -0
  2356. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazoneks.svg +1 -0
  2357. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonelasticache.svg +1 -0
  2358. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonfiretv.svg +1 -0
  2359. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazongames.svg +1 -0
  2360. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazoniam.svg +1 -0
  2361. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonlumberyard.svg +1 -0
  2362. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonluna.svg +1 -0
  2363. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonmusic.svg +1 -0
  2364. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonpay.svg +1 -0
  2365. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonprime.svg +1 -0
  2366. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonrds.svg +1 -0
  2367. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonredshift.svg +1 -0
  2368. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonroute53.svg +1 -0
  2369. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazons3.svg +1 -0
  2370. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonsimpleemailservice.svg +1 -0
  2371. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonsqs.svg +1 -0
  2372. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amazonwebservices.svg +1 -0
  2373. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amd.svg +1 -0
  2374. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ameba.svg +1 -0
  2375. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/americanairlines.svg +1 -0
  2376. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/americanexpress.svg +1 -0
  2377. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amg.svg +1 -0
  2378. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amp.svg +1 -0
  2379. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/amul.svg +1 -0
  2380. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ana.svg +1 -0
  2381. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/anaconda.svg +1 -0
  2382. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/analogue.svg +1 -0
  2383. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/andela.svg +1 -0
  2384. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/android.svg +1 -0
  2385. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/androidauto.svg +1 -0
  2386. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/androidstudio.svg +1 -0
  2387. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/angular.svg +1 -0
  2388. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/anichart.svg +1 -0
  2389. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/anilist.svg +1 -0
  2390. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/animalplanet.svg +1 -0
  2391. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/animedotjs.svg +1 -0
  2392. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ankermake.svg +1 -0
  2393. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/anki.svg +1 -0
  2394. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ansible.svg +1 -0
  2395. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/answer.svg +1 -0
  2396. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ansys.svg +1 -0
  2397. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/anta.svg +1 -0
  2398. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/antdesign.svg +1 -0
  2399. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/antena3.svg +1 -0
  2400. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/antennapod.svg +1 -0
  2401. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/anthropic.svg +1 -0
  2402. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/antv.svg +1 -0
  2403. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/anycubic.svg +1 -0
  2404. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/anydesk.svg +1 -0
  2405. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/anytype.svg +1 -0
  2406. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aol.svg +1 -0
  2407. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apache.svg +1 -0
  2408. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apacheairflow.svg +1 -0
  2409. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apacheant.svg +1 -0
  2410. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apacheavro.svg +1 -0
  2411. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachecassandra.svg +1 -0
  2412. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachecloudstack.svg +1 -0
  2413. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachecordova.svg +1 -0
  2414. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachecouchdb.svg +1 -0
  2415. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachedolphinscheduler.svg +1 -0
  2416. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachedoris.svg +1 -0
  2417. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachedruid.svg +1 -0
  2418. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apacheecharts.svg +1 -0
  2419. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apacheflink.svg +1 -0
  2420. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachefreemarker.svg +1 -0
  2421. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachegroovy.svg +1 -0
  2422. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apacheguacamole.svg +1 -0
  2423. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachehadoop.svg +1 -0
  2424. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachehbase.svg +1 -0
  2425. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachehive.svg +1 -0
  2426. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachejmeter.svg +1 -0
  2427. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachekafka.svg +1 -0
  2428. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachekylin.svg +1 -0
  2429. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachelucene.svg +1 -0
  2430. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachemaven.svg +1 -0
  2431. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachenetbeanside.svg +1 -0
  2432. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachenifi.svg +1 -0
  2433. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apacheopenoffice.svg +1 -0
  2434. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apacheparquet.svg +1 -0
  2435. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachepdfbox.svg +1 -0
  2436. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachepulsar.svg +1 -0
  2437. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apacherocketmq.svg +1 -0
  2438. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachesolr.svg +1 -0
  2439. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachespark.svg +1 -0
  2440. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachestorm.svg +1 -0
  2441. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachesuperset.svg +1 -0
  2442. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apachetomcat.svg +1 -0
  2443. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aparat.svg +1 -0
  2444. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apifox.svg +1 -0
  2445. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apmterminals.svg +1 -0
  2446. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apollographql.svg +1 -0
  2447. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apostrophe.svg +1 -0
  2448. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appgallery.svg +1 -0
  2449. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appian.svg +1 -0
  2450. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appimage.svg +1 -0
  2451. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appium.svg +1 -0
  2452. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/apple.svg +1 -0
  2453. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/applearcade.svg +1 -0
  2454. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/applemusic.svg +1 -0
  2455. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/applenews.svg +1 -0
  2456. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/applepay.svg +1 -0
  2457. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/applepodcasts.svg +1 -0
  2458. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appletv.svg +1 -0
  2459. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appmanager.svg +1 -0
  2460. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appsignal.svg +1 -0
  2461. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appsmith.svg +1 -0
  2462. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appstore.svg +1 -0
  2463. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appveyor.svg +1 -0
  2464. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/appwrite.svg +1 -0
  2465. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aqua.svg +1 -0
  2466. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aral.svg +1 -0
  2467. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/arangodb.svg +1 -0
  2468. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/arc.svg +1 -0
  2469. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/arcgis.svg +1 -0
  2470. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/archicad.svg +1 -0
  2471. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/archiveofourown.svg +1 -0
  2472. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/archlinux.svg +1 -0
  2473. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ardour.svg +1 -0
  2474. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/arduino.svg +1 -0
  2475. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/argo.svg +1 -0
  2476. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/argos.svg +1 -0
  2477. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ariakit.svg +1 -0
  2478. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/arkecosystem.svg +1 -0
  2479. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/arlo.svg +1 -0
  2480. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/arm.svg +1 -0
  2481. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/armkeil.svg +1 -0
  2482. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/arstechnica.svg +1 -0
  2483. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/artifacthub.svg +1 -0
  2484. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/artixlinux.svg +1 -0
  2485. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/artstation.svg +1 -0
  2486. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/arxiv.svg +1 -0
  2487. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/asahilinux.svg +1 -0
  2488. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/asana.svg +1 -0
  2489. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/asciidoctor.svg +1 -0
  2490. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/asciinema.svg +1 -0
  2491. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/asda.svg +1 -0
  2492. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aseprite.svg +1 -0
  2493. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/askfm.svg +1 -0
  2494. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/assemblyscript.svg +1 -0
  2495. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/asterisk.svg +1 -0
  2496. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/astonmartin.svg +1 -0
  2497. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/astra.svg +1 -0
  2498. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/astral.svg +1 -0
  2499. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/astro.svg +1 -0
  2500. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/asus.svg +1 -0
  2501. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/atandt.svg +1 -0
  2502. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/atari.svg +1 -0
  2503. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/atlasos.svg +1 -0
  2504. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/atlassian.svg +1 -0
  2505. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/auchan.svg +1 -0
  2506. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/audacity.svg +1 -0
  2507. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/audi.svg +1 -0
  2508. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/audible.svg +1 -0
  2509. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/audiobookshelf.svg +1 -0
  2510. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/audioboom.svg +1 -0
  2511. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/audiomack.svg +1 -0
  2512. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/audiotechnica.svg +1 -0
  2513. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/aurelia.svg +1 -0
  2514. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autentique.svg +1 -0
  2515. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/auth0.svg +1 -0
  2516. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/authelia.svg +1 -0
  2517. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/authentik.svg +1 -0
  2518. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/authy.svg +1 -0
  2519. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autocad.svg +1 -0
  2520. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autocannon.svg +1 -0
  2521. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autodesk.svg +1 -0
  2522. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autodeskmaya.svg +1 -0
  2523. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autodeskrevit.svg +1 -0
  2524. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autohotkey.svg +1 -0
  2525. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autoit.svg +1 -0
  2526. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/automattic.svg +1 -0
  2527. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autoprefixer.svg +1 -0
  2528. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/autozone.svg +1 -0
  2529. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/avajs.svg +1 -0
  2530. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/avaloniaui.svg +1 -0
  2531. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/avast.svg +1 -0
  2532. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/avianca.svg +1 -0
  2533. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/avira.svg +1 -0
  2534. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/avm.svg +1 -0
  2535. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/awesomelists.svg +1 -0
  2536. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/awesomewm.svg +1 -0
  2537. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/awsamplify.svg +1 -0
  2538. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/awselasticloadbalancing.svg +1 -0
  2539. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/awsfargate.svg +1 -0
  2540. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/awslambda.svg +1 -0
  2541. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/awsorganizations.svg +1 -0
  2542. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/awssecretsmanager.svg +1 -0
  2543. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/awwwards.svg +1 -0
  2544. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/axios.svg +1 -0
  2545. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/axisbank.svg +1 -0
  2546. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/azureartifacts.svg +1 -0
  2547. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/azuredataexplorer.svg +1 -0
  2548. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/azuredevops.svg +1 -0
  2549. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/azurefunctions.svg +1 -0
  2550. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/azurepipelines.svg +1 -0
  2551. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/b4x.svg +1 -0
  2552. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/babel.svg +1 -0
  2553. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/babelio.svg +1 -0
  2554. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/babylondotjs.svg +1 -0
  2555. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/backblaze.svg +1 -0
  2556. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/backbone.svg +1 -0
  2557. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/backbonedotjs.svg +1 -0
  2558. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/backendless.svg +1 -0
  2559. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/backstage.svg +1 -0
  2560. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/backstage_casting.svg +1 -0
  2561. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/badoo.svg +1 -0
  2562. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/baidu.svg +1 -0
  2563. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bakalari.svg +1 -0
  2564. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bamboo.svg +1 -0
  2565. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bambulab.svg +1 -0
  2566. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bandcamp.svg +1 -0
  2567. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bandlab.svg +1 -0
  2568. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bandrautomation.svg +1 -0
  2569. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bandsintown.svg +1 -0
  2570. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bankofamerica.svg +1 -0
  2571. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/barclays.svg +1 -0
  2572. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/baremetrics.svg +1 -0
  2573. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/barmenia.svg +1 -0
  2574. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/basecamp.svg +1 -0
  2575. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/baserow.svg +1 -0
  2576. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/baseui.svg +1 -0
  2577. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/basicattentiontoken.svg +1 -0
  2578. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bastyon.svg +1 -0
  2579. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bat.svg +1 -0
  2580. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bata.svg +1 -0
  2581. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/battledotnet.svg +1 -0
  2582. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bazel.svg +1 -0
  2583. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/beatport.svg +1 -0
  2584. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/beats.svg +1 -0
  2585. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/beatsbydre.svg +1 -0
  2586. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/beatstars.svg +1 -0
  2587. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/beekeeperstudio.svg +1 -0
  2588. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/behance.svg +1 -0
  2589. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/beijingsubway.svg +1 -0
  2590. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bem.svg +1 -0
  2591. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bentley.svg +1 -0
  2592. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bento.svg +1 -0
  2593. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bentobox.svg +1 -0
  2594. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bentoml.svg +1 -0
  2595. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bereal.svg +1 -0
  2596. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/betfair.svg +1 -0
  2597. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/betterauth.svg +1 -0
  2598. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/betterdiscord.svg +1 -0
  2599. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/betterstack.svg +1 -0
  2600. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bevy.svg +1 -0
  2601. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bigbasket.svg +1 -0
  2602. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bigbluebutton.svg +1 -0
  2603. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bigcartel.svg +1 -0
  2604. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bigcommerce.svg +1 -0
  2605. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bilibili.svg +1 -0
  2606. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/billboard.svg +1 -0
  2607. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bim.svg +1 -0
  2608. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/binance.svg +1 -0
  2609. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bioconductor.svg +1 -0
  2610. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/biolink.svg +1 -0
  2611. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/biome.svg +1 -0
  2612. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bisecthosting.svg +1 -0
  2613. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bit.svg +1 -0
  2614. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitbucket.svg +1 -0
  2615. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitcoin.svg +1 -0
  2616. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitcoincash.svg +1 -0
  2617. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitcoinsv.svg +1 -0
  2618. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitcomet.svg +1 -0
  2619. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitdefender.svg +1 -0
  2620. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitly.svg +1 -0
  2621. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitrise.svg +1 -0
  2622. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitsy.svg +1 -0
  2623. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bittorrent.svg +1 -0
  2624. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitwarden.svg +1 -0
  2625. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bitwig.svg +1 -0
  2626. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/black.svg +1 -0
  2627. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blackberry.svg +1 -0
  2628. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blackmagicdesign.svg +1 -0
  2629. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blazemeter.svg +1 -0
  2630. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blazor.svg +1 -0
  2631. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blender.svg +1 -0
  2632. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blibli.svg +1 -0
  2633. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blockbench.svg +1 -0
  2634. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blockchaindotcom.svg +1 -0
  2635. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blogger.svg +1 -0
  2636. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bloglovin.svg +1 -0
  2637. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/blueprint.svg +1 -0
  2638. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bluesky.svg +1 -0
  2639. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bluesound.svg +1 -0
  2640. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bluetooth.svg +1 -0
  2641. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bmcsoftware.svg +1 -0
  2642. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bmw.svg +1 -0
  2643. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bnbchain.svg +1 -0
  2644. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/boardgamegeek.svg +1 -0
  2645. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/boat.svg +1 -0
  2646. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/boehringeringelheim.svg +1 -0
  2647. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/boeing.svg +1 -0
  2648. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bohemiainteractive.svg +1 -0
  2649. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bombardier.svg +1 -0
  2650. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bookalope.svg +1 -0
  2651. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bookbub.svg +1 -0
  2652. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bookingdotcom.svg +1 -0
  2653. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bookmeter.svg +1 -0
  2654. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bookmyshow.svg +1 -0
  2655. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bookstack.svg +1 -0
  2656. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/boost.svg +1 -0
  2657. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/boosty.svg +1 -0
  2658. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/boots.svg +1 -0
  2659. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bootstrap.svg +1 -0
  2660. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/borgbackup.svg +1 -0
  2661. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bosch.svg +1 -0
  2662. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bose.svg +1 -0
  2663. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/botblecms.svg +1 -0
  2664. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/boulanger.svg +1 -0
  2665. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bower.svg +1 -0
  2666. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/box.svg +1 -0
  2667. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/boxysvg.svg +1 -0
  2668. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/braintree.svg +1 -0
  2669. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/braintrust.svg +1 -0
  2670. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/brandfetch.svg +1 -0
  2671. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/brandfolder.svg +1 -0
  2672. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/brave.svg +1 -0
  2673. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/breaker.svg +1 -0
  2674. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/brenntag.svg +1 -0
  2675. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/brevo.svg +1 -0
  2676. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/brex.svg +1 -0
  2677. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bricks.svg +1 -0
  2678. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/britishairways.svg +1 -0
  2679. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/broadcom.svg +1 -0
  2680. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bruno.svg +1 -0
  2681. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bsd.svg +1 -0
  2682. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bspwm.svg +1 -0
  2683. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bt.svg +1 -0
  2684. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/buddy.svg +1 -0
  2685. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/budibase.svg +1 -0
  2686. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/buefy.svg +1 -0
  2687. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/buffer.svg +1 -0
  2688. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bugatti.svg +1 -0
  2689. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bugcrowd.svg +1 -0
  2690. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bugsnag.svg +1 -0
  2691. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/buhl.svg +1 -0
  2692. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/buildkite.svg +1 -0
  2693. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/builtbybit.svg +1 -0
  2694. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bukalapak.svg +1 -0
  2695. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bulma.svg +1 -0
  2696. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bun.svg +1 -0
  2697. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bungie.svg +1 -0
  2698. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bunnydotnet.svg +1 -0
  2699. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bunq.svg +1 -0
  2700. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/burgerking.svg +1 -0
  2701. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/burpsuite.svg +1 -0
  2702. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/burton.svg +1 -0
  2703. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/buymeacoffee.svg +1 -0
  2704. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/buysellads.svg +1 -0
  2705. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/buzzfeed.svg +1 -0
  2706. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bvg.svg +1 -0
  2707. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/byjus.svg +1 -0
  2708. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/bytedance.svg +1 -0
  2709. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/c.svg +1 -0
  2710. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cachet.svg +1 -0
  2711. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cachyos.svg +1 -0
  2712. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/caddy.svg +1 -0
  2713. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cadillac.svg +1 -0
  2714. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cafepress.svg +1 -0
  2715. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/caffeine.svg +1 -0
  2716. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cairographics.svg +1 -0
  2717. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cairometro.svg +1 -0
  2718. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/caixabank.svg +1 -0
  2719. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cakephp.svg +1 -0
  2720. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/caldotcom.svg +1 -0
  2721. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/calendly.svg +1 -0
  2722. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/calibreweb.svg +1 -0
  2723. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/campaignmonitor.svg +1 -0
  2724. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/camunda.svg +1 -0
  2725. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/canonical.svg +1 -0
  2726. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/canva.svg +1 -0
  2727. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/canvas.svg +1 -0
  2728. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/capacitor.svg +1 -0
  2729. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/caprover.svg +1 -0
  2730. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cardano.svg +1 -0
  2731. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cardmarket.svg +1 -0
  2732. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/carlsberggroup.svg +1 -0
  2733. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/carrd.svg +1 -0
  2734. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/carrefour.svg +1 -0
  2735. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/carthrottle.svg +1 -0
  2736. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/carto.svg +1 -0
  2737. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cashapp.svg +1 -0
  2738. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/castbox.svg +1 -0
  2739. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/castorama.svg +1 -0
  2740. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/castro.svg +1 -0
  2741. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/caterpillar.svg +1 -0
  2742. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cbc.svg +1 -0
  2743. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cbs.svg +1 -0
  2744. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ccc.svg +1 -0
  2745. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ccleaner.svg +1 -0
  2746. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cdprojekt.svg +1 -0
  2747. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ce.svg +1 -0
  2748. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/celery.svg +1 -0
  2749. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/celestron.svg +1 -0
  2750. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/centos.svg +1 -0
  2751. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ceph.svg +1 -0
  2752. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cesium.svg +1 -0
  2753. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chai.svg +1 -0
  2754. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chainguard.svg +1 -0
  2755. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chainlink.svg +1 -0
  2756. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chakraui.svg +1 -0
  2757. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/changedetection.svg +1 -0
  2758. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/channel4.svg +1 -0
  2759. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/charles.svg +1 -0
  2760. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chartdotjs.svg +1 -0
  2761. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chartmogul.svg +1 -0
  2762. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chase.svg +1 -0
  2763. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chatbot.svg +1 -0
  2764. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chatwoot.svg +1 -0
  2765. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/checkio.svg +1 -0
  2766. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/checkmarx.svg +1 -0
  2767. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/checkmk.svg +1 -0
  2768. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chedraui.svg +1 -0
  2769. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cheerio.svg +1 -0
  2770. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chef.svg +1 -0
  2771. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chemex.svg +1 -0
  2772. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chessdotcom.svg +1 -0
  2773. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chevrolet.svg +1 -0
  2774. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chianetwork.svg +1 -0
  2775. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chinaeasternairlines.svg +1 -0
  2776. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chinarailway.svg +1 -0
  2777. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chinasouthernairlines.svg +1 -0
  2778. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chocolatey.svg +1 -0
  2779. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chromatic.svg +1 -0
  2780. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chromecast.svg +1 -0
  2781. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chromewebstore.svg +1 -0
  2782. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chrysler.svg +1 -0
  2783. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/chupachups.svg +1 -0
  2784. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cilium.svg +1 -0
  2785. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cinema4d.svg +1 -0
  2786. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cinnamon.svg +1 -0
  2787. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/circle.svg +1 -0
  2788. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/circleci.svg +1 -0
  2789. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/circuitverse.svg +1 -0
  2790. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cirrusci.svg +1 -0
  2791. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cisco.svg +1 -0
  2792. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/citrix.svg +1 -0
  2793. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/citroen.svg +1 -0
  2794. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/civicrm.svg +1 -0
  2795. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/civo.svg +1 -0
  2796. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ckeditor4.svg +1 -0
  2797. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clarifai.svg +1 -0
  2798. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/claris.svg +1 -0
  2799. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clarivate.svg +1 -0
  2800. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/claude.svg +1 -0
  2801. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clerk.svg +1 -0
  2802. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clevercloud.svg +1 -0
  2803. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clickhouse.svg +1 -0
  2804. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clickup.svg +1 -0
  2805. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cline.svg +1 -0
  2806. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clion.svg +1 -0
  2807. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cliqz.svg +1 -0
  2808. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clockify.svg +1 -0
  2809. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clojure.svg +1 -0
  2810. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloud66.svg +1 -0
  2811. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudbees.svg +1 -0
  2812. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudcannon.svg +1 -0
  2813. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudera.svg +1 -0
  2814. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudflare.svg +1 -0
  2815. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudflarepages.svg +1 -0
  2816. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudflareworkers.svg +1 -0
  2817. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudfoundry.svg +1 -0
  2818. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudinary.svg +1 -0
  2819. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudnativebuild.svg +1 -0
  2820. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudron.svg +1 -0
  2821. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudsmith.svg +1 -0
  2822. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cloudways.svg +1 -0
  2823. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clubforce.svg +1 -0
  2824. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clubhouse.svg +1 -0
  2825. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/clyp.svg +1 -0
  2826. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cmake.svg +1 -0
  2827. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cncf.svg +1 -0
  2828. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cnes.svg +1 -0
  2829. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cnet.svg +1 -0
  2830. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cnn.svg +1 -0
  2831. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cobalt.svg +1 -0
  2832. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cocacola.svg +1 -0
  2833. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cockpit.svg +1 -0
  2834. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cockroachlabs.svg +1 -0
  2835. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cocoapods.svg +1 -0
  2836. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cocos.svg +1 -0
  2837. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coda.svg +1 -0
  2838. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codacy.svg +1 -0
  2839. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codeberg.svg +1 -0
  2840. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codeblocks.svg +1 -0
  2841. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codecademy.svg +1 -0
  2842. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codeceptjs.svg +1 -0
  2843. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codechef.svg +1 -0
  2844. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codeclimate.svg +1 -0
  2845. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codecov.svg +1 -0
  2846. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codecrafters.svg +1 -0
  2847. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codefactor.svg +1 -0
  2848. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codeforces.svg +1 -0
  2849. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codefresh.svg +1 -0
  2850. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codeigniter.svg +1 -0
  2851. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codeium.svg +1 -0
  2852. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codemagic.svg +1 -0
  2853. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codementor.svg +1 -0
  2854. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codemirror.svg +1 -0
  2855. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codenewbie.svg +1 -0
  2856. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codepen.svg +1 -0
  2857. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codeproject.svg +1 -0
  2858. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coder.svg +1 -0
  2859. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coderabbit.svg +1 -0
  2860. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codersrank.svg +1 -0
  2861. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coderwall.svg +1 -0
  2862. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codesandbox.svg +1 -0
  2863. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codeship.svg +1 -0
  2864. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codesignal.svg +1 -0
  2865. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codestream.svg +1 -0
  2866. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codewars.svg +1 -0
  2867. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codingame.svg +1 -0
  2868. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codingninjas.svg +1 -0
  2869. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/codio.svg +1 -0
  2870. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coffeescript.svg +1 -0
  2871. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coggle.svg +1 -0
  2872. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cognizant.svg +1 -0
  2873. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coil.svg +1 -0
  2874. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coinbase.svg +1 -0
  2875. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coinmarketcap.svg +1 -0
  2876. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/collaboraonline.svg +1 -0
  2877. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/comicfury.svg +1 -0
  2878. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/comma.svg +1 -0
  2879. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/commerzbank.svg +1 -0
  2880. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/commitlint.svg +1 -0
  2881. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/commodore.svg +1 -0
  2882. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/commonlisp.svg +1 -0
  2883. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/commonworkflowlanguage.svg +1 -0
  2884. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/compilerexplorer.svg +1 -0
  2885. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/composer.svg +1 -0
  2886. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/comptia.svg +1 -0
  2887. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/comsol.svg +1 -0
  2888. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/conan.svg +1 -0
  2889. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/concourse.svg +1 -0
  2890. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/condaforge.svg +1 -0
  2891. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/conekta.svg +1 -0
  2892. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/confluence.svg +1 -0
  2893. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/construct3.svg +1 -0
  2894. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/consul.svg +1 -0
  2895. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/contabo.svg +1 -0
  2896. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/contactlesspayment.svg +1 -0
  2897. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/containerd.svg +1 -0
  2898. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/contao.svg +1 -0
  2899. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/contensis.svg +1 -0
  2900. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/contentful.svg +1 -0
  2901. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/contentstack.svg +1 -0
  2902. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/continente.svg +1 -0
  2903. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/contributorcovenant.svg +1 -0
  2904. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/conventionalcommits.svg +1 -0
  2905. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/convertio.svg +1 -0
  2906. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/convex.svg +1 -0
  2907. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cookiecutter.svg +1 -0
  2908. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coolermaster.svg +1 -0
  2909. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coolify.svg +1 -0
  2910. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coop.svg +1 -0
  2911. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/copaairlines.svg +1 -0
  2912. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coppel.svg +1 -0
  2913. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cora.svg +1 -0
  2914. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coreboot.svg +1 -0
  2915. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coreldraw.svg +1 -0
  2916. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coronaengine.svg +1 -0
  2917. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coronarenderer.svg +1 -0
  2918. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/corsair.svg +1 -0
  2919. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/couchbase.svg +1 -0
  2920. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/counterstrike.svg +1 -0
  2921. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/countingworkspro.svg +1 -0
  2922. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coursera.svg +1 -0
  2923. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coveralls.svg +1 -0
  2924. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/coze.svg +1 -0
  2925. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cpanel.svg +1 -0
  2926. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cplusplus.svg +1 -0
  2927. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cplusplusbuilder.svg +1 -0
  2928. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/craftcms.svg +1 -0
  2929. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/craftsman.svg +1 -0
  2930. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cratedb.svg +1 -0
  2931. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/crayon.svg +1 -0
  2932. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/creality.svg +1 -0
  2933. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/createreactapp.svg +1 -0
  2934. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/creativecommons.svg +1 -0
  2935. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/creativetechnology.svg +1 -0
  2936. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/credly.svg +1 -0
  2937. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/crehana.svg +1 -0
  2938. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/crewai.svg +1 -0
  2939. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/crewunited.svg +1 -0
  2940. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/criticalrole.svg +1 -0
  2941. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/crowdin.svg +1 -0
  2942. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/crowdsource.svg +1 -0
  2943. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/crunchbase.svg +1 -0
  2944. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/crunchyroll.svg +1 -0
  2945. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cryengine.svg +1 -0
  2946. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cryptomator.svg +1 -0
  2947. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cryptpad.svg +1 -0
  2948. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/crystal.svg +1 -0
  2949. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/csdn.svg +1 -0
  2950. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/csharp.svg +1 -0
  2951. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/css.svg +1 -0
  2952. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/css3.svg +1 -0
  2953. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cssdesignawards.svg +1 -0
  2954. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cssmodules.svg +1 -0
  2955. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/csswizardry.svg +1 -0
  2956. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cts.svg +1 -0
  2957. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cucumber.svg +1 -0
  2958. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cultura.svg +1 -0
  2959. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/curl.svg +1 -0
  2960. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/curseforge.svg +1 -0
  2961. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cursor.svg +1 -0
  2962. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/customink.svg +1 -0
  2963. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cyberdefenders.svg +1 -0
  2964. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cycling74.svg +1 -0
  2965. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cypress.svg +1 -0
  2966. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/cytoscapedotjs.svg +1 -0
  2967. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/d.svg +1 -0
  2968. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/d3.svg +1 -0
  2969. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/d3dotjs.svg +1 -0
  2970. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dacia.svg +1 -0
  2971. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/daf.svg +1 -0
  2972. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dailydotdev.svg +1 -0
  2973. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dailymotion.svg +1 -0
  2974. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/daimler.svg +1 -0
  2975. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/daisyui.svg +1 -0
  2976. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dapr.svg +1 -0
  2977. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/darkreader.svg +1 -0
  2978. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dart.svg +1 -0
  2979. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/darty.svg +1 -0
  2980. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/daserste.svg +1 -0
  2981. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dash.svg +1 -0
  2982. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dash0.svg +1 -0
  2983. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dashlane.svg +1 -0
  2984. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dask.svg +1 -0
  2985. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dassaultsystemes.svg +1 -0
  2986. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/databricks.svg +1 -0
  2987. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/datacamp.svg +1 -0
  2988. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/datadog.svg +1 -0
  2989. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/datadotai.svg +1 -0
  2990. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/datagrip.svg +1 -0
  2991. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dataiku.svg +1 -0
  2992. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/datastax.svg +1 -0
  2993. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dataverse.svg +1 -0
  2994. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/datefns.svg +1 -0
  2995. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/datev.svg +1 -0
  2996. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/datocms.svg +1 -0
  2997. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/datto.svg +1 -0
  2998. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/davinciresolve.svg +1 -0
  2999. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dazhongdianping.svg +1 -0
  3000. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dazn.svg +1 -0
  3001. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dbeaver.svg +1 -0
  3002. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dblp.svg +1 -0
  3003. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dbt.svg +1 -0
  3004. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dcentertainment.svg +1 -0
  3005. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/debian.svg +1 -0
  3006. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/debridlink.svg +1 -0
  3007. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/decapcms.svg +1 -0
  3008. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/decentraland.svg +1 -0
  3009. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dedge.svg +1 -0
  3010. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deepcool.svg +1 -0
  3011. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deepgram.svg +1 -0
  3012. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deepin.svg +1 -0
  3013. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deepl.svg +1 -0
  3014. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deepmind.svg +1 -0
  3015. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deepnote.svg +1 -0
  3016. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deepseek.svg +1 -0
  3017. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deezer.svg +1 -0
  3018. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/delicious.svg +1 -0
  3019. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deliveroo.svg +1 -0
  3020. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dell.svg +1 -0
  3021. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/delonghi.svg +1 -0
  3022. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/delphi.svg +1 -0
  3023. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/delta.svg +1 -0
  3024. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deluge.svg +1 -0
  3025. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deno.svg +1 -0
  3026. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/denodeploy.svg +1 -0
  3027. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/denon.svg +1 -0
  3028. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dependabot.svg +1 -0
  3029. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dependencycheck.svg +1 -0
  3030. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/depositphotos.svg +1 -0
  3031. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/derspiegel.svg +1 -0
  3032. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/designernews.svg +1 -0
  3033. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deutschebahn.svg +1 -0
  3034. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deutschebank.svg +1 -0
  3035. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deutschepost.svg +1 -0
  3036. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deutschetelekom.svg +1 -0
  3037. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deutschewelle.svg +1 -0
  3038. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/devbox.svg +1 -0
  3039. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/devdotto.svg +1 -0
  3040. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/developmentcontainers.svg +1 -0
  3041. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/devexpress.svg +1 -0
  3042. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/deviantart.svg +1 -0
  3043. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/devpost.svg +1 -0
  3044. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/devrant.svg +1 -0
  3045. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/devuan.svg +1 -0
  3046. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dgraph.svg +1 -0
  3047. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dhl.svg +1 -0
  3048. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/diagramsdotnet.svg +1 -0
  3049. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dialogflow.svg +1 -0
  3050. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/diaspora.svg +1 -0
  3051. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dicebear.svg +1 -0
  3052. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dictionarydotcom.svg +1 -0
  3053. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dify.svg +1 -0
  3054. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/digg.svg +1 -0
  3055. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/digikeyelectronics.svg +1 -0
  3056. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/digitalocean.svg +1 -0
  3057. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dinersclub.svg +1 -0
  3058. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dior.svg +1 -0
  3059. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/directus.svg +1 -0
  3060. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/discogs.svg +1 -0
  3061. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/discord.svg +1 -0
  3062. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/discorddotjs.svg +1 -0
  3063. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/discourse.svg +1 -0
  3064. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/discover.svg +1 -0
  3065. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/disqus.svg +1 -0
  3066. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/disroot.svg +1 -0
  3067. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/distrobox.svg +1 -0
  3068. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/distrokid.svg +1 -0
  3069. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/django.svg +1 -0
  3070. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dji.svg +1 -0
  3071. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dlib.svg +1 -0
  3072. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dlna.svg +1 -0
  3073. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dlthub.svg +1 -0
  3074. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dm.svg +1 -0
  3075. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dmm.svg +1 -0
  3076. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/docker.svg +1 -0
  3077. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/docsdotrs.svg +1 -0
  3078. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/docsify.svg +1 -0
  3079. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/doctrine.svg +1 -0
  3080. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/docusaurus.svg +1 -0
  3081. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/docusign.svg +1 -0
  3082. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dodopayments.svg +1 -0
  3083. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dogecoin.svg +1 -0
  3084. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/doi.svg +1 -0
  3085. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dolby.svg +1 -0
  3086. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dolibarr.svg +1 -0
  3087. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dolphin.svg +1 -0
  3088. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/doordash.svg +1 -0
  3089. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dota2.svg +1 -0
  3090. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dotenv.svg +1 -0
  3091. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dotnet.svg +1 -0
  3092. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/douban.svg +1 -0
  3093. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/doubanread.svg +1 -0
  3094. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dovecot.svg +1 -0
  3095. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dovetail.svg +1 -0
  3096. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/downdetector.svg +1 -0
  3097. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/doxygen.svg +1 -0
  3098. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dpd.svg +1 -0
  3099. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dragonframe.svg +1 -0
  3100. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/draugiemdotlv.svg +1 -0
  3101. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dreamstime.svg +1 -0
  3102. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dribbble.svg +1 -0
  3103. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/drizzle.svg +1 -0
  3104. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/drone.svg +1 -0
  3105. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/drooble.svg +1 -0
  3106. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dropbox.svg +1 -0
  3107. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/drupal.svg +1 -0
  3108. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dsautomobiles.svg +1 -0
  3109. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dts.svg +1 -0
  3110. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dtube.svg +1 -0
  3111. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ducati.svg +1 -0
  3112. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/duckdb.svg +1 -0
  3113. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/duckduckgo.svg +1 -0
  3114. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dungeonsanddragons.svg +1 -0
  3115. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dunked.svg +1 -0
  3116. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dunzo.svg +1 -0
  3117. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/duolingo.svg +1 -0
  3118. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/duplicati.svg +1 -0
  3119. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dvc.svg +1 -0
  3120. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dwavesystems.svg +1 -0
  3121. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dwm.svg +1 -0
  3122. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dynamics365.svg +1 -0
  3123. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/dynatrace.svg +1 -0
  3124. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/e.svg +1 -0
  3125. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/e3.svg +1 -0
  3126. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ea.svg +1 -0
  3127. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eac.svg +1 -0
  3128. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eagle.svg +1 -0
  3129. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/easyeda.svg +1 -0
  3130. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/easyjet.svg +1 -0
  3131. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ebay.svg +1 -0
  3132. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ebox.svg +1 -0
  3133. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eclipseadoptium.svg +1 -0
  3134. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eclipseche.svg +1 -0
  3135. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eclipseide.svg +1 -0
  3136. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eclipsejetty.svg +1 -0
  3137. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eclipsemosquitto.svg +1 -0
  3138. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eclipsevertdotx.svg +1 -0
  3139. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ecosia.svg +1 -0
  3140. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ecovacs.svg +1 -0
  3141. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/edeka.svg +1 -0
  3142. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/edgeimpulse.svg +1 -0
  3143. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/editorconfig.svg +1 -0
  3144. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/edotleclerc.svg +1 -0
  3145. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/educative.svg +1 -0
  3146. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/edx.svg +1 -0
  3147. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/effect.svg +1 -0
  3148. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/egghead.svg +1 -0
  3149. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/egnyte.svg +1 -0
  3150. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eight.svg +1 -0
  3151. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eightsleep.svg +1 -0
  3152. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ejs.svg +1 -0
  3153. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elastic.svg +1 -0
  3154. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elasticcloud.svg +1 -0
  3155. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elasticsearch.svg +1 -0
  3156. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elasticstack.svg +1 -0
  3157. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elavon.svg +1 -0
  3158. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/electron.svg +1 -0
  3159. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/electronbuilder.svg +1 -0
  3160. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/electronfiddle.svg +1 -0
  3161. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elegoo.svg +1 -0
  3162. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/element.svg +1 -0
  3163. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elementary.svg +1 -0
  3164. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elementor.svg +1 -0
  3165. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elevenlabs.svg +1 -0
  3166. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eleventy.svg +1 -0
  3167. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elgato.svg +1 -0
  3168. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elixir.svg +1 -0
  3169. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eljueves.svg +1 -0
  3170. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elk.svg +1 -0
  3171. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ello.svg +1 -0
  3172. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elm.svg +1 -0
  3173. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/elsevier.svg +1 -0
  3174. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/embarcadero.svg +1 -0
  3175. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/embark.svg +1 -0
  3176. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/emberdotjs.svg +1 -0
  3177. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/emby.svg +1 -0
  3178. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/emirates.svg +1 -0
  3179. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/emlakjet.svg +1 -0
  3180. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/empirekred.svg +1 -0
  3181. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/endeavouros.svg +1 -0
  3182. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/engadget.svg +1 -0
  3183. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/enpass.svg +1 -0
  3184. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ens.svg +1 -0
  3185. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ente.svg +1 -0
  3186. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/enterprisedb.svg +1 -0
  3187. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/envato.svg +1 -0
  3188. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/envoyproxy.svg +1 -0
  3189. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/epel.svg +1 -0
  3190. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/epicgames.svg +1 -0
  3191. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/epson.svg +1 -0
  3192. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/equinixmetal.svg +1 -0
  3193. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eraser.svg +1 -0
  3194. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ericsson.svg +1 -0
  3195. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/erlang.svg +1 -0
  3196. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/erpnext.svg +1 -0
  3197. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/esbuild.svg +1 -0
  3198. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/esea.svg +1 -0
  3199. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eslgaming.svg +1 -0
  3200. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eslint.svg +1 -0
  3201. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/esotericsoftware.svg +1 -0
  3202. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/esphome.svg +1 -0
  3203. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/espressif.svg +1 -0
  3204. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/esri.svg +1 -0
  3205. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/etcd.svg +1 -0
  3206. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ethereum.svg +1 -0
  3207. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ethers.svg +1 -0
  3208. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ethiopianairlines.svg +1 -0
  3209. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/etihadairways.svg +1 -0
  3210. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/etsy.svg +1 -0
  3211. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/europeanunion.svg +1 -0
  3212. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eventbrite.svg +1 -0
  3213. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eventstore.svg +1 -0
  3214. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/evernote.svg +1 -0
  3215. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/everydotorg.svg +1 -0
  3216. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/excalidraw.svg +1 -0
  3217. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/exercism.svg +1 -0
  3218. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/exordo.svg +1 -0
  3219. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/exoscale.svg +1 -0
  3220. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/expedia.svg +1 -0
  3221. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/expensify.svg +1 -0
  3222. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/expertsexchange.svg +1 -0
  3223. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/expo.svg +1 -0
  3224. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/express.svg +1 -0
  3225. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/expressdotcom.svg +1 -0
  3226. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/expressvpn.svg +1 -0
  3227. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/eyeem.svg +1 -0
  3228. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/f1.svg +1 -0
  3229. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/f5.svg +1 -0
  3230. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/facebook.svg +1 -0
  3231. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/facebookgaming.svg +1 -0
  3232. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/facebooklive.svg +1 -0
  3233. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/faceit.svg +1 -0
  3234. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/facepunch.svg +1 -0
  3235. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fairphone.svg +1 -0
  3236. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/faker.svg +1 -0
  3237. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/falco.svg +1 -0
  3238. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/falcon.svg +1 -0
  3239. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fampay.svg +1 -0
  3240. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fandango.svg +1 -0
  3241. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fandom.svg +1 -0
  3242. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fanfou.svg +1 -0
  3243. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fantom.svg +1 -0
  3244. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/farcaster.svg +1 -0
  3245. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fareharbor.svg +1 -0
  3246. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/farfetch.svg +1 -0
  3247. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fastapi.svg +1 -0
  3248. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fastify.svg +1 -0
  3249. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fastlane.svg +1 -0
  3250. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fastly.svg +1 -0
  3251. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fathom.svg +1 -0
  3252. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fauna.svg +1 -0
  3253. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/favro.svg +1 -0
  3254. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fcc.svg +1 -0
  3255. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fdroid.svg +1 -0
  3256. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/feathub.svg +1 -0
  3257. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fedex.svg +1 -0
  3258. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fedora.svg +1 -0
  3259. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/feedly.svg +1 -0
  3260. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ferrari.svg +1 -0
  3261. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ferrarinv.svg +1 -0
  3262. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ferretdb.svg +1 -0
  3263. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ffmpeg.svg +1 -0
  3264. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fi.svg +1 -0
  3265. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fiat.svg +1 -0
  3266. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fidoalliance.svg +1 -0
  3267. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fifa.svg +1 -0
  3268. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fig.svg +1 -0
  3269. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/figma.svg +1 -0
  3270. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/figshare.svg +1 -0
  3271. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fila.svg +1 -0
  3272. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/filament.svg +1 -0
  3273. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/filedotio.svg +1 -0
  3274. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/filen.svg +1 -0
  3275. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/files.svg +1 -0
  3276. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/filezilla.svg +1 -0
  3277. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fillout.svg +1 -0
  3278. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fineco.svg +1 -0
  3279. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fing.svg +1 -0
  3280. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/firebase.svg +1 -0
  3281. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/firefish.svg +1 -0
  3282. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fireflyiii.svg +1 -0
  3283. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/firefox.svg +1 -0
  3284. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/firefoxbrowser.svg +1 -0
  3285. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fireship.svg +1 -0
  3286. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/firewalla.svg +1 -0
  3287. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/first.svg +1 -0
  3288. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fishaudio.svg +1 -0
  3289. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fishshell.svg +1 -0
  3290. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fitbit.svg +1 -0
  3291. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fivem.svg +1 -0
  3292. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fiverr.svg +1 -0
  3293. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fizz.svg +1 -0
  3294. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flashforge.svg +1 -0
  3295. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flask.svg +1 -0
  3296. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flat.svg +1 -0
  3297. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flathub.svg +1 -0
  3298. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flatpak.svg +1 -0
  3299. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flickr.svg +1 -0
  3300. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flightaware.svg +1 -0
  3301. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flipboard.svg +1 -0
  3302. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flipkart.svg +1 -0
  3303. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/floatplane.svg +1 -0
  3304. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flood.svg +1 -0
  3305. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/floorp.svg +1 -0
  3306. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flower.svg +1 -0
  3307. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fluentbit.svg +1 -0
  3308. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fluentd.svg +1 -0
  3309. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fluke.svg +1 -0
  3310. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flutter.svg +1 -0
  3311. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flux.svg +1 -0
  3312. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fluxer.svg +1 -0
  3313. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fluxus.svg +1 -0
  3314. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flydotio.svg +1 -0
  3315. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/flyway.svg +1 -0
  3316. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fmod.svg +1 -0
  3317. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fnac.svg +1 -0
  3318. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/folium.svg +1 -0
  3319. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/folo.svg +1 -0
  3320. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fonoma.svg +1 -0
  3321. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fontawesome.svg +1 -0
  3322. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fontbase.svg +1 -0
  3323. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fontforge.svg +1 -0
  3324. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/foobar2000.svg +1 -0
  3325. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/foodpanda.svg +1 -0
  3326. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ford.svg +1 -0
  3327. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/forgejo.svg +1 -0
  3328. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/formbricks.svg +1 -0
  3329. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/formik.svg +1 -0
  3330. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/formspree.svg +1 -0
  3331. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/formstack.svg +1 -0
  3332. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fortinet.svg +1 -0
  3333. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fortnite.svg +1 -0
  3334. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fortran.svg +1 -0
  3335. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fossa.svg +1 -0
  3336. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fossilscm.svg +1 -0
  3337. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/foundryvirtualtabletop.svg +1 -0
  3338. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/foursquare.svg +1 -0
  3339. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/foursquarecityguide.svg +1 -0
  3340. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fox.svg +1 -0
  3341. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/foxtel.svg +1 -0
  3342. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fozzy.svg +1 -0
  3343. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/framer.svg +1 -0
  3344. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/framework.svg +1 -0
  3345. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/framework7.svg +1 -0
  3346. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/franprix.svg +1 -0
  3347. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/frappe.svg +1 -0
  3348. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fraunhofergesellschaft.svg +1 -0
  3349. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freebsd.svg +1 -0
  3350. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freecad.svg +1 -0
  3351. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freecodecamp.svg +1 -0
  3352. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freedesktopdotorg.svg +1 -0
  3353. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freelancer.svg +1 -0
  3354. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freelancermap.svg +1 -0
  3355. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freenas.svg +1 -0
  3356. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freenet.svg +1 -0
  3357. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freepik.svg +1 -0
  3358. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freetube.svg +1 -0
  3359. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fresh.svg +1 -0
  3360. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/freshrss.svg +1 -0
  3361. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/frigate.svg +1 -0
  3362. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fritz.svg +1 -0
  3363. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/frontendmentor.svg +1 -0
  3364. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/frontify.svg +1 -0
  3365. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fsecure.svg +1 -0
  3366. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fsharp.svg +1 -0
  3367. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fubo.svg +1 -0
  3368. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fueler.svg +1 -0
  3369. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fugacloud.svg +1 -0
  3370. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fujifilm.svg +1 -0
  3371. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fujitsu.svg +1 -0
  3372. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/funimation.svg +1 -0
  3373. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/furaffinity.svg +1 -0
  3374. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/furrynetwork.svg +1 -0
  3375. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fusionauth.svg +1 -0
  3376. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/futurelearn.svg +1 -0
  3377. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/fyle.svg +1 -0
  3378. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/g2.svg +1 -0
  3379. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/g2a.svg +1 -0
  3380. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/g2g.svg +1 -0
  3381. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/galaxus.svg +1 -0
  3382. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gameandwatch.svg +1 -0
  3383. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gamebanana.svg +1 -0
  3384. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gamedeveloper.svg +1 -0
  3385. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gamejolt.svg +1 -0
  3386. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gameloft.svg +1 -0
  3387. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gamemaker.svg +1 -0
  3388. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gamescience.svg +1 -0
  3389. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gandi.svg +1 -0
  3390. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/garmin.svg +1 -0
  3391. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/garudalinux.svg +1 -0
  3392. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gatling.svg +1 -0
  3393. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gatsby.svg +1 -0
  3394. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gcore.svg +1 -0
  3395. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gdal.svg +1 -0
  3396. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/geant.svg +1 -0
  3397. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/geeksforgeeks.svg +1 -0
  3398. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/generalelectric.svg +1 -0
  3399. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/generalmotors.svg +1 -0
  3400. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/genius.svg +1 -0
  3401. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gentoo.svg +1 -0
  3402. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/geocaching.svg +1 -0
  3403. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/geode.svg +1 -0
  3404. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/geopandas.svg +1 -0
  3405. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gerrit.svg +1 -0
  3406. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/getx.svg +1 -0
  3407. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ghost.svg +1 -0
  3408. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ghostery.svg +1 -0
  3409. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ghostfolio.svg +1 -0
  3410. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ghostty.svg +1 -0
  3411. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gimp.svg +1 -0
  3412. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gin.svg +1 -0
  3413. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/giphy.svg +1 -0
  3414. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/git.svg +1 -0
  3415. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitbook.svg +1 -0
  3416. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitcode.svg +1 -0
  3417. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitconnected.svg +1 -0
  3418. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitea.svg +1 -0
  3419. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitee.svg +1 -0
  3420. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitextensions.svg +1 -0
  3421. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitforwindows.svg +1 -0
  3422. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/github.svg +1 -0
  3423. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/githubactions.svg +1 -0
  3424. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/githubcopilot.svg +1 -0
  3425. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/githubpages.svg +1 -0
  3426. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/githubsponsors.svg +1 -0
  3427. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitignoredotio.svg +1 -0
  3428. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitkraken.svg +1 -0
  3429. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitlab.svg +1 -0
  3430. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitlfs.svg +1 -0
  3431. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitpod.svg +1 -0
  3432. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gitter.svg +1 -0
  3433. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/glance.svg +1 -0
  3434. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/glassdoor.svg +1 -0
  3435. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gldotinet.svg +1 -0
  3436. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gleam.svg +1 -0
  3437. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/glide.svg +1 -0
  3438. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/glitch.svg +1 -0
  3439. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/globus.svg +1 -0
  3440. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/glovo.svg +1 -0
  3441. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gltf.svg +1 -0
  3442. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gmail.svg +1 -0
  3443. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gmx.svg +1 -0
  3444. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gnome.svg +1 -0
  3445. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gnometerminal.svg +1 -0
  3446. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gnu.svg +1 -0
  3447. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gnubash.svg +1 -0
  3448. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gnuemacs.svg +1 -0
  3449. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gnuicecat.svg +1 -0
  3450. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gnuprivacyguard.svg +1 -0
  3451. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gnusocial.svg +1 -0
  3452. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/go.svg +1 -0
  3453. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gocd.svg +1 -0
  3454. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/godaddy.svg +1 -0
  3455. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/godotengine.svg +1 -0
  3456. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gofundme.svg +1 -0
  3457. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gogdotcom.svg +1 -0
  3458. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gojek.svg +1 -0
  3459. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/goland.svg +1 -0
  3460. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/goldenline.svg +1 -0
  3461. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/goldmansachs.svg +1 -0
  3462. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/goodreads.svg +1 -0
  3463. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/google.svg +1 -0
  3464. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleadmob.svg +1 -0
  3465. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleads.svg +1 -0
  3466. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleadsense.svg +1 -0
  3467. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleanalytics.svg +1 -0
  3468. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleappsscript.svg +1 -0
  3469. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleassistant.svg +1 -0
  3470. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleauthenticator.svg +1 -0
  3471. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlebigquery.svg +1 -0
  3472. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlebigtable.svg +1 -0
  3473. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecalendar.svg +1 -0
  3474. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecampaignmanager360.svg +1 -0
  3475. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecardboard.svg +1 -0
  3476. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecast.svg +1 -0
  3477. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlechat.svg +1 -0
  3478. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlechrome.svg +1 -0
  3479. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlechronicle.svg +1 -0
  3480. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleclassroom.svg +1 -0
  3481. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecloud.svg +1 -0
  3482. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecloudcomposer.svg +1 -0
  3483. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecloudspanner.svg +1 -0
  3484. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecloudstorage.svg +1 -0
  3485. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecolab.svg +1 -0
  3486. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlecontaineroptimizedos.svg +1 -0
  3487. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googledataflow.svg +1 -0
  3488. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googledataproc.svg +1 -0
  3489. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googledatastudio.svg +1 -0
  3490. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googledisplayandvideo360.svg +1 -0
  3491. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googledocs.svg +1 -0
  3492. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googledomains.svg +1 -0
  3493. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googledrive.svg +1 -0
  3494. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleearth.svg +1 -0
  3495. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleearthengine.svg +1 -0
  3496. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlefit.svg +1 -0
  3497. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlefonts.svg +1 -0
  3498. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleforms.svg +1 -0
  3499. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlegemini.svg +1 -0
  3500. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlehangouts.svg +1 -0
  3501. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlehome.svg +1 -0
  3502. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlejules.svg +1 -0
  3503. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlekeep.svg +1 -0
  3504. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlelens.svg +1 -0
  3505. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlemaps.svg +1 -0
  3506. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlemarketingplatform.svg +1 -0
  3507. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlemeet.svg +1 -0
  3508. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlemessages.svg +1 -0
  3509. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlemybusiness.svg +1 -0
  3510. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlenearby.svg +1 -0
  3511. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlenews.svg +1 -0
  3512. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleoptimize.svg +1 -0
  3513. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlepay.svg +1 -0
  3514. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlephotos.svg +1 -0
  3515. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleplay.svg +1 -0
  3516. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlepodcasts.svg +1 -0
  3517. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlepubsub.svg +1 -0
  3518. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlescholar.svg +1 -0
  3519. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlesearchconsole.svg +1 -0
  3520. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlesheets.svg +1 -0
  3521. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googleslides.svg +1 -0
  3522. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlestreetview.svg +1 -0
  3523. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googlesummerofcode.svg +1 -0
  3524. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googletagmanager.svg +1 -0
  3525. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googletasks.svg +1 -0
  3526. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googletranslate.svg +1 -0
  3527. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/googletv.svg +1 -0
  3528. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gotomeeting.svg +1 -0
  3529. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gplv3.svg +1 -0
  3530. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/grab.svg +1 -0
  3531. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gradio.svg +1 -0
  3532. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gradle.svg +1 -0
  3533. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gradleplaypublisher.svg +1 -0
  3534. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/grafana.svg +1 -0
  3535. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/grammarly.svg +1 -0
  3536. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/grandfrais.svg +1 -0
  3537. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/grapheneos.svg +1 -0
  3538. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/graphite.svg +1 -0
  3539. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/graphite_editor.svg +1 -0
  3540. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/graphql.svg +1 -0
  3541. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/grav.svg +1 -0
  3542. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gravatar.svg +1 -0
  3543. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/graylog.svg +1 -0
  3544. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/greasyfork.svg +1 -0
  3545. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/greatlearning.svg +1 -0
  3546. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/greenhouse.svg +1 -0
  3547. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/greensock.svg +1 -0
  3548. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/greptimedb.svg +1 -0
  3549. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/griddotai.svg +1 -0
  3550. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gridsome.svg +1 -0
  3551. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/grocy.svg +1 -0
  3552. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/groupme.svg +1 -0
  3553. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/groupon.svg +1 -0
  3554. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/grubhub.svg +1 -0
  3555. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/grunt.svg +1 -0
  3556. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gsap.svg +1 -0
  3557. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gsk.svg +1 -0
  3558. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gsma.svg +1 -0
  3559. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gsmarenadotcom.svg +1 -0
  3560. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gstreamer.svg +1 -0
  3561. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gtk.svg +1 -0
  3562. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/guangzhoumetro.svg +1 -0
  3563. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/guilded.svg +1 -0
  3564. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/guitarpro.svg +1 -0
  3565. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gulp.svg +1 -0
  3566. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gumroad.svg +1 -0
  3567. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gumtree.svg +1 -0
  3568. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gunicorn.svg +1 -0
  3569. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gurobi.svg +1 -0
  3570. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gusto.svg +1 -0
  3571. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/gutenberg.svg +1 -0
  3572. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/h2database.svg +1 -0
  3573. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/h3.svg +1 -0
  3574. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/habr.svg +1 -0
  3575. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hackaday.svg +1 -0
  3576. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hackclub.svg +1 -0
  3577. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hackerearth.svg +1 -0
  3578. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hackernoon.svg +1 -0
  3579. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hackerone.svg +1 -0
  3580. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hackerrank.svg +1 -0
  3581. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hackmd.svg +1 -0
  3582. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hackster.svg +1 -0
  3583. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hackthebox.svg +1 -0
  3584. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hal.svg +1 -0
  3585. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/handlebarsdotjs.svg +1 -0
  3586. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/handm.svg +1 -0
  3587. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/handshake.svg +1 -0
  3588. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/handshake_protocol.svg +1 -0
  3589. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/happycow.svg +1 -0
  3590. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/harbor.svg +1 -0
  3591. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/harmonyos.svg +1 -0
  3592. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hashcat.svg +1 -0
  3593. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hashicorp.svg +1 -0
  3594. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hashnode.svg +1 -0
  3595. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/haskell.svg +1 -0
  3596. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hasura.svg +1 -0
  3597. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hatenabookmark.svg +1 -0
  3598. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/haveibeenpwned.svg +1 -0
  3599. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/havells.svg +1 -0
  3600. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/haxe.svg +1 -0
  3601. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/haystack.svg +1 -0
  3602. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hbo.svg +1 -0
  3603. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hbomax.svg +1 -0
  3604. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hcl.svg +1 -0
  3605. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hdfcbank.svg +1 -0
  3606. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/headlessui.svg +1 -0
  3607. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/headphonezone.svg +1 -0
  3608. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/headspace.svg +1 -0
  3609. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hearth.svg +1 -0
  3610. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hearthisdotat.svg +1 -0
  3611. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hedera.svg +1 -0
  3612. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hedgedoc.svg +1 -0
  3613. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/helium.svg +1 -0
  3614. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/helix.svg +1 -0
  3615. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hellofresh.svg +1 -0
  3616. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hellyhansen.svg +1 -0
  3617. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/helm.svg +1 -0
  3618. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/helpdesk.svg +1 -0
  3619. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/helpscout.svg +1 -0
  3620. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hepsiemlak.svg +1 -0
  3621. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/here.svg +1 -0
  3622. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hermes.svg +1 -0
  3623. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/heroicgameslauncher.svg +1 -0
  3624. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/heroku.svg +1 -0
  3625. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/heroui.svg +1 -0
  3626. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hetzner.svg +1 -0
  3627. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hevy.svg +1 -0
  3628. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hexlet.svg +1 -0
  3629. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hexo.svg +1 -0
  3630. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hey.svg +1 -0
  3631. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hibernate.svg +1 -0
  3632. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hibob.svg +1 -0
  3633. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hilton.svg +1 -0
  3634. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hiltonhotelsandresorts.svg +1 -0
  3635. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hitachi.svg +1 -0
  3636. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hive.svg +1 -0
  3637. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hive_blockchain.svg +1 -0
  3638. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hivemq.svg +1 -0
  3639. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/homarr.svg +1 -0
  3640. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/homeadvisor.svg +1 -0
  3641. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/homeassistant.svg +1 -0
  3642. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/homeassistantcommunitystore.svg +1 -0
  3643. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/homebrew.svg +1 -0
  3644. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/homebridge.svg +1 -0
  3645. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/homepage.svg +1 -0
  3646. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/homify.svg +1 -0
  3647. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/honda.svg +1 -0
  3648. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/honey.svg +1 -0
  3649. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/honeybadger.svg +1 -0
  3650. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/honeygain.svg +1 -0
  3651. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hono.svg +1 -0
  3652. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/honor.svg +1 -0
  3653. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hootsuite.svg +1 -0
  3654. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hoppscotch.svg +1 -0
  3655. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hostinger.svg +1 -0
  3656. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hotelsdotcom.svg +1 -0
  3657. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hotjar.svg +1 -0
  3658. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hotwire.svg +1 -0
  3659. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/houdini.svg +1 -0
  3660. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/houzz.svg +1 -0
  3661. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hp.svg +1 -0
  3662. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hsbc.svg +1 -0
  3663. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/htc.svg +1 -0
  3664. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/htcvive.svg +1 -0
  3665. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/html5.svg +1 -0
  3666. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/htmlacademy.svg +1 -0
  3667. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/htmx.svg +1 -0
  3668. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/htop.svg +1 -0
  3669. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/httpie.svg +1 -0
  3670. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/huawei.svg +1 -0
  3671. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hubspot.svg +1 -0
  3672. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/huggingface.svg +1 -0
  3673. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hugo.svg +1 -0
  3674. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/humblebundle.svg +1 -0
  3675. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/humhub.svg +1 -0
  3676. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hungryjacks.svg +1 -0
  3677. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/husqvarna.svg +1 -0
  3678. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hyper.svg +1 -0
  3679. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hyperskill.svg +1 -0
  3680. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hyperx.svg +1 -0
  3681. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hypothesis.svg +1 -0
  3682. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hyprland.svg +1 -0
  3683. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/hyundai.svg +1 -0
  3684. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/i18next.svg +1 -0
  3685. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/i3.svg +1 -0
  3686. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iata.svg +1 -0
  3687. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ibeacon.svg +1 -0
  3688. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iberia.svg +1 -0
  3689. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ibm.svg +1 -0
  3690. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ibmcloud.svg +1 -0
  3691. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ibmwatson.svg +1 -0
  3692. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iced.svg +1 -0
  3693. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iceland.svg +1 -0
  3694. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/icicibank.svg +1 -0
  3695. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/icinga.svg +1 -0
  3696. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/icloud.svg +1 -0
  3697. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/icomoon.svg +1 -0
  3698. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/icon.svg +1 -0
  3699. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iconfinder.svg +1 -0
  3700. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iconify.svg +1 -0
  3701. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iconjar.svg +1 -0
  3702. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/icons8.svg +1 -0
  3703. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/icq.svg +1 -0
  3704. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ieee.svg +1 -0
  3705. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ifixit.svg +1 -0
  3706. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ifood.svg +1 -0
  3707. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ifttt.svg +1 -0
  3708. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/igdb.svg +1 -0
  3709. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ign.svg +1 -0
  3710. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iheartradio.svg +1 -0
  3711. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ikea.svg +1 -0
  3712. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iledefrancemobilites.svg +1 -0
  3713. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ilovepdf.svg +1 -0
  3714. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/imagedotsc.svg +1 -0
  3715. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/imagej.svg +1 -0
  3716. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/imagetoolbox.svg +1 -0
  3717. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/imdb.svg +1 -0
  3718. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/imessage.svg +1 -0
  3719. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/imgur.svg +1 -0
  3720. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/immer.svg +1 -0
  3721. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/immersivetranslate.svg +1 -0
  3722. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/immich.svg +1 -0
  3723. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/imou.svg +1 -0
  3724. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/improvmx.svg +1 -0
  3725. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/indeed.svg +1 -0
  3726. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/indiansuperleague.svg +1 -0
  3727. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/indiehackers.svg +1 -0
  3728. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/indieweb.svg +1 -0
  3729. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/indigo.svg +1 -0
  3730. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/inductiveautomation.svg +1 -0
  3731. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/inertia.svg +1 -0
  3732. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/infiniti.svg +1 -0
  3733. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/infinityfree.svg +1 -0
  3734. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/influxdb.svg +1 -0
  3735. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/infomaniak.svg +1 -0
  3736. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/infoq.svg +1 -0
  3737. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/informatica.svg +1 -0
  3738. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/infosys.svg +1 -0
  3739. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/infracost.svg +1 -0
  3740. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/infuse.svg +1 -0
  3741. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ingress.svg +1 -0
  3742. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/inkdrop.svg +1 -0
  3743. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/inkscape.svg +1 -0
  3744. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/inoreader.svg +1 -0
  3745. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/inquirer.svg +1 -0
  3746. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/insomnia.svg +1 -0
  3747. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/inspire.svg +1 -0
  3748. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/insta360.svg +1 -0
  3749. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/instacart.svg +1 -0
  3750. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/instagram.svg +1 -0
  3751. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/instapaper.svg +1 -0
  3752. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/instatus.svg +1 -0
  3753. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/instructables.svg +1 -0
  3754. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/instructure.svg +1 -0
  3755. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/intel.svg +1 -0
  3756. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/intellijidea.svg +1 -0
  3757. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/interactiondesignfoundation.svg +1 -0
  3758. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/interactjs.svg +1 -0
  3759. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/interbase.svg +1 -0
  3760. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/intercom.svg +1 -0
  3761. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/intermarche.svg +1 -0
  3762. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/internetarchive.svg +1 -0
  3763. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/internetcomputer.svg +1 -0
  3764. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/internetexplorer.svg +1 -0
  3765. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/intigriti.svg +1 -0
  3766. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/intuit.svg +1 -0
  3767. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/invidious.svg +1 -0
  3768. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/invision.svg +1 -0
  3769. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/invoiceninja.svg +1 -0
  3770. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iobroker.svg +1 -0
  3771. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ionic.svg +1 -0
  3772. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ionos.svg +1 -0
  3773. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ios.svg +1 -0
  3774. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iota.svg +1 -0
  3775. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ipfs.svg +1 -0
  3776. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iris.svg +1 -0
  3777. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/irobot.svg +1 -0
  3778. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/isc2.svg +1 -0
  3779. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/isro.svg +1 -0
  3780. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/issuu.svg +1 -0
  3781. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/istio.svg +1 -0
  3782. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/itchdotio.svg +1 -0
  3783. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iterm2.svg +1 -0
  3784. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/itunes.svg +1 -0
  3785. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/itvx.svg +1 -0
  3786. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/iveco.svg +1 -0
  3787. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jabber.svg +1 -0
  3788. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jaeger.svg +1 -0
  3789. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jaguar.svg +1 -0
  3790. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jamboard.svg +1 -0
  3791. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jameson.svg +1 -0
  3792. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jamstack.svg +1 -0
  3793. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/japanairlines.svg +1 -0
  3794. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jasmine.svg +1 -0
  3795. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/javascript.svg +1 -0
  3796. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jbl.svg +1 -0
  3797. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jcb.svg +1 -0
  3798. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jdoodle.svg +1 -0
  3799. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jeep.svg +1 -0
  3800. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jekyll.svg +1 -0
  3801. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jellyfin.svg +1 -0
  3802. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jenkins.svg +1 -0
  3803. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jest.svg +1 -0
  3804. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jet.svg +1 -0
  3805. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jetblue.svg +1 -0
  3806. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jetbrains.svg +1 -0
  3807. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jetpackcompose.svg +1 -0
  3808. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jfrog.svg +1 -0
  3809. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jfrogpipelines.svg +1 -0
  3810. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jhipster.svg +1 -0
  3811. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jinja.svg +1 -0
  3812. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jio.svg +1 -0
  3813. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jira.svg +1 -0
  3814. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jirasoftware.svg +1 -0
  3815. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jitpack.svg +1 -0
  3816. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jitsi.svg +1 -0
  3817. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/johndeere.svg +1 -0
  3818. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/joomla.svg +1 -0
  3819. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/joplin.svg +1 -0
  3820. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jordan.svg +1 -0
  3821. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jouav.svg +1 -0
  3822. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jovian.svg +1 -0
  3823. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jpeg.svg +1 -0
  3824. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jquery.svg +1 -0
  3825. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jrgroup.svg +1 -0
  3826. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jsdelivr.svg +1 -0
  3827. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jsfiddle.svg +1 -0
  3828. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/json.svg +1 -0
  3829. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jsonwebtokens.svg +1 -0
  3830. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jsr.svg +1 -0
  3831. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jss.svg +1 -0
  3832. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/juce.svg +1 -0
  3833. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/juejin.svg +1 -0
  3834. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/juke.svg +1 -0
  3835. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/julia.svg +1 -0
  3836. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/junipernetworks.svg +1 -0
  3837. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/junit5.svg +1 -0
  3838. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/jupyter.svg +1 -0
  3839. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/just.svg +1 -0
  3840. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/justeat.svg +1 -0
  3841. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/justgiving.svg +1 -0
  3842. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/k3s.svg +1 -0
  3843. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/k6.svg +1 -0
  3844. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kaggle.svg +1 -0
  3845. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kagi.svg +1 -0
  3846. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kahoot.svg +1 -0
  3847. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kaios.svg +1 -0
  3848. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kakao.svg +1 -0
  3849. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kakaotalk.svg +1 -0
  3850. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kalilinux.svg +1 -0
  3851. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kamailio.svg +1 -0
  3852. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kando.svg +1 -0
  3853. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kaniko.svg +1 -0
  3854. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/karakeep.svg +1 -0
  3855. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/karlsruherverkehrsverbund.svg +1 -0
  3856. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kasasmart.svg +1 -0
  3857. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kashflow.svg +1 -0
  3858. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kaspersky.svg +1 -0
  3859. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/katacoda.svg +1 -0
  3860. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/katana.svg +1 -0
  3861. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kaufland.svg +1 -0
  3862. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kde.svg +1 -0
  3863. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kdeneon.svg +1 -0
  3864. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kdenlive.svg +1 -0
  3865. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kdeplasma.svg +1 -0
  3866. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kedro.svg +1 -0
  3867. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keenetic.svg +1 -0
  3868. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keepachangelog.svg +1 -0
  3869. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keepassxc.svg +1 -0
  3870. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keeper.svg +1 -0
  3871. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keeweb.svg +1 -0
  3872. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kenmei.svg +1 -0
  3873. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kentico.svg +1 -0
  3874. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keploy.svg +1 -0
  3875. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keras.svg +1 -0
  3876. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keybase.svg +1 -0
  3877. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keycdn.svg +1 -0
  3878. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keycloak.svg +1 -0
  3879. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/keystone.svg +1 -0
  3880. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kfc.svg +1 -0
  3881. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/khanacademy.svg +1 -0
  3882. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/khronosgroup.svg +1 -0
  3883. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kia.svg +1 -0
  3884. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kibana.svg +1 -0
  3885. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kicad.svg +1 -0
  3886. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kick.svg +1 -0
  3887. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kickstarter.svg +1 -0
  3888. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kik.svg +1 -0
  3889. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kingstontechnology.svg +1 -0
  3890. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kinopoisk.svg +1 -0
  3891. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kinsta.svg +1 -0
  3892. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kirby.svg +1 -0
  3893. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kit.svg +1 -0
  3894. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kitsu.svg +1 -0
  3895. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kiwix.svg +1 -0
  3896. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/klarna.svg +1 -0
  3897. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kleinanzeigen.svg +1 -0
  3898. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/klm.svg +1 -0
  3899. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/klook.svg +1 -0
  3900. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/knative.svg +1 -0
  3901. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/knexdotjs.svg +1 -0
  3902. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/knime.svg +1 -0
  3903. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/knip.svg +1 -0
  3904. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/knowledgebase.svg +1 -0
  3905. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/known.svg +1 -0
  3906. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/koa.svg +1 -0
  3907. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/koc.svg +1 -0
  3908. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kodak.svg +1 -0
  3909. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kodi.svg +1 -0
  3910. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kodular.svg +1 -0
  3911. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/koenigsegg.svg +1 -0
  3912. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kofax.svg +1 -0
  3913. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kofi.svg +1 -0
  3914. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/komoot.svg +1 -0
  3915. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/konami.svg +1 -0
  3916. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kong.svg +1 -0
  3917. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kongregate.svg +1 -0
  3918. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/konva.svg +1 -0
  3919. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/koreader.svg +1 -0
  3920. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kotlin.svg +1 -0
  3921. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/koyeb.svg +1 -0
  3922. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kred.svg +1 -0
  3923. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/krita.svg +1 -0
  3924. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ktm.svg +1 -0
  3925. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ktor.svg +1 -0
  3926. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kuaishou.svg +1 -0
  3927. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kubernetes.svg +1 -0
  3928. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kubespray.svg +1 -0
  3929. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kubuntu.svg +1 -0
  3930. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kucoin.svg +1 -0
  3931. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kueski.svg +1 -0
  3932. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kuma.svg +1 -0
  3933. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kununu.svg +1 -0
  3934. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kuula.svg +1 -0
  3935. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kx.svg +1 -0
  3936. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/kyocera.svg +1 -0
  3937. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/labex.svg +1 -0
  3938. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/labview.svg +1 -0
  3939. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lada.svg +1 -0
  3940. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lamborghini.svg +1 -0
  3941. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/landrover.svg +1 -0
  3942. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/langchain.svg +1 -0
  3943. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/langflow.svg +1 -0
  3944. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/langgraph.svg +1 -0
  3945. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/languagetool.svg +1 -0
  3946. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lapce.svg +1 -0
  3947. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/laragon.svg +1 -0
  3948. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/laravel.svg +1 -0
  3949. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/laravelhorizon.svg +1 -0
  3950. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/laravelnova.svg +1 -0
  3951. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lastdotfm.svg +1 -0
  3952. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lastpass.svg +1 -0
  3953. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/latex.svg +1 -0
  3954. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/launchpad.svg +1 -0
  3955. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lazarus.svg +1 -0
  3956. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lazyvim.svg +1 -0
  3957. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lbry.svg +1 -0
  3958. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/leaderprice.svg +1 -0
  3959. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/leaflet.svg +1 -0
  3960. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/leagueoflegends.svg +1 -0
  3961. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/leanpub.svg +1 -0
  3962. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/leetcode.svg +1 -0
  3963. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lefthook.svg +1 -0
  3964. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/legacygames.svg +1 -0
  3965. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/leica.svg +1 -0
  3966. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lemmy.svg +1 -0
  3967. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lemonsqueezy.svg +1 -0
  3968. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lenovo.svg +1 -0
  3969. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lens.svg +1 -0
  3970. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/leptos.svg +1 -0
  3971. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lequipe.svg +1 -0
  3972. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lerna.svg +1 -0
  3973. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/leroymerlin.svg +1 -0
  3974. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/leslibraires.svg +1 -0
  3975. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/less.svg +1 -0
  3976. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/letsencrypt.svg +1 -0
  3977. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/letterboxd.svg +1 -0
  3978. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/levelsdotfyi.svg +1 -0
  3979. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lg.svg +1 -0
  3980. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/liberadotchat.svg +1 -0
  3981. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/liberapay.svg +1 -0
  3982. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/librariesdotio.svg +1 -0
  3983. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/librarything.svg +1 -0
  3984. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libreoffice.svg +1 -0
  3985. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libreofficebase.svg +1 -0
  3986. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libreofficecalc.svg +1 -0
  3987. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libreofficedraw.svg +1 -0
  3988. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libreofficeimpress.svg +1 -0
  3989. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libreofficemath.svg +1 -0
  3990. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libreofficewriter.svg +1 -0
  3991. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libretranslate.svg +1 -0
  3992. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libretube.svg +1 -0
  3993. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/librewolf.svg +1 -0
  3994. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/libuv.svg +1 -0
  3995. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lichess.svg +1 -0
  3996. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lidl.svg +1 -0
  3997. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lifx.svg +1 -0
  3998. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lightburn.svg +1 -0
  3999. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lighthouse.svg +1 -0
  4000. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lightning.svg +1 -0
  4001. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/limesurvey.svg +1 -0
  4002. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/line.svg +1 -0
  4003. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lineageos.svg +1 -0
  4004. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linear.svg +1 -0
  4005. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lining.svg +1 -0
  4006. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linkedin.svg +1 -0
  4007. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linkerd.svg +1 -0
  4008. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linkfire.svg +1 -0
  4009. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linksys.svg +1 -0
  4010. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linktree.svg +1 -0
  4011. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linkvertise.svg +1 -0
  4012. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linphone.svg +1 -0
  4013. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lintcode.svg +1 -0
  4014. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linux.svg +1 -0
  4015. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linuxcontainers.svg +1 -0
  4016. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linuxfoundation.svg +1 -0
  4017. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linuxmint.svg +1 -0
  4018. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linuxprofessionalinstitute.svg +1 -0
  4019. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/linuxserver.svg +1 -0
  4020. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lionair.svg +1 -0
  4021. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/liquibase.svg +1 -0
  4022. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/listenhub.svg +1 -0
  4023. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/listmonk.svg +1 -0
  4024. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lit.svg +1 -0
  4025. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/litecoin.svg +1 -0
  4026. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/literal.svg +1 -0
  4027. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/litiengine.svg +1 -0
  4028. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/livechat.svg +1 -0
  4029. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/livejournal.svg +1 -0
  4030. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/livekit.svg +1 -0
  4031. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/livewire.svg +1 -0
  4032. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/llvm.svg +1 -0
  4033. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lmms.svg +1 -0
  4034. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lobsters.svg +1 -0
  4035. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/local.svg +1 -0
  4036. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/localsend.svg +1 -0
  4037. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/localxpose.svg +1 -0
  4038. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/locust.svg +1 -0
  4039. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lodash.svg +1 -0
  4040. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/logitech.svg +1 -0
  4041. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/logitechg.svg +1 -0
  4042. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/logmein.svg +1 -0
  4043. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/logseq.svg +1 -0
  4044. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/logstash.svg +1 -0
  4045. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/longhorn.svg +1 -0
  4046. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/looker.svg +1 -0
  4047. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/loom.svg +1 -0
  4048. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/loop.svg +1 -0
  4049. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/loopback.svg +1 -0
  4050. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/loops.svg +1 -0
  4051. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lootcrate.svg +1 -0
  4052. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lospec.svg +1 -0
  4053. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lotpolishairlines.svg +1 -0
  4054. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lottiefiles.svg +1 -0
  4055. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ltspice.svg +1 -0
  4056. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lua.svg +1 -0
  4057. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/luanti.svg +1 -0
  4058. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/luau.svg +1 -0
  4059. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lubuntu.svg +1 -0
  4060. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lucia.svg +1 -0
  4061. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lucid.svg +1 -0
  4062. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lucide.svg +1 -0
  4063. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ludwig.svg +1 -0
  4064. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lufthansa.svg +1 -0
  4065. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lumen.svg +1 -0
  4066. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lunacy.svg +1 -0
  4067. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/luogu.svg +1 -0
  4068. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lutris.svg +1 -0
  4069. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lvgl.svg +1 -0
  4070. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lydia.svg +1 -0
  4071. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/lyft.svg +1 -0
  4072. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/maas.svg +1 -0
  4073. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/macos.svg +1 -0
  4074. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/macpaw.svg +1 -0
  4075. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/macports.svg +1 -0
  4076. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/macys.svg +1 -0
  4077. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/magasinsu.svg +1 -0
  4078. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/magento.svg +1 -0
  4079. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/magic.svg +1 -0
  4080. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/magisk.svg +1 -0
  4081. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mahindra.svg +1 -0
  4082. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mailbox.svg +1 -0
  4083. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mailchimp.svg +1 -0
  4084. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/maildotcom.svg +1 -0
  4085. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/maildotru.svg +1 -0
  4086. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mailgun.svg +1 -0
  4087. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mailtrap.svg +1 -0
  4088. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mainwp.svg +1 -0
  4089. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/majorleaguehacking.svg +1 -0
  4090. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/make.svg +1 -0
  4091. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/makerbot.svg +1 -0
  4092. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/malt.svg +1 -0
  4093. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/malwarebytes.svg +1 -0
  4094. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mambaui.svg +1 -0
  4095. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mamp.svg +1 -0
  4096. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/man.svg +1 -0
  4097. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/manageiq.svg +1 -0
  4098. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mangacollec.svg +1 -0
  4099. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mangaupdates.svg +1 -0
  4100. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/manjaro.svg +1 -0
  4101. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mantine.svg +1 -0
  4102. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mapbox.svg +1 -0
  4103. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mapillary.svg +1 -0
  4104. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/maplibre.svg +1 -0
  4105. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/maptiler.svg +1 -0
  4106. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mariadb.svg +1 -0
  4107. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mariadbfoundation.svg +1 -0
  4108. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/markdown.svg +1 -0
  4109. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/marketo.svg +1 -0
  4110. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/marko.svg +1 -0
  4111. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/marriott.svg +1 -0
  4112. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/marvelapp.svg +1 -0
  4113. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/maserati.svg +1 -0
  4114. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mastercard.svg +1 -0
  4115. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mastercomfig.svg +1 -0
  4116. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mastodon.svg +1 -0
  4117. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/materialdesign.svg +1 -0
  4118. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/materialdesignicons.svg +1 -0
  4119. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/materialformkdocs.svg +1 -0
  4120. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/matillion.svg +1 -0
  4121. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/matomo.svg +1 -0
  4122. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/matrix.svg +1 -0
  4123. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/matterdotjs.svg +1 -0
  4124. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mattermost.svg +1 -0
  4125. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/matternet.svg +1 -0
  4126. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mautic.svg +1 -0
  4127. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/max.svg +1 -0
  4128. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/maxplanckgesellschaft.svg +1 -0
  4129. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/maytag.svg +1 -0
  4130. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mazda.svg +1 -0
  4131. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/maze.svg +1 -0
  4132. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mcafee.svg +1 -0
  4133. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mcdonalds.svg +1 -0
  4134. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mclaren.svg +1 -0
  4135. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mdblist.svg +1 -0
  4136. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mdbook.svg +1 -0
  4137. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mdnwebdocs.svg +1 -0
  4138. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mdx.svg +1 -0
  4139. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mealie.svg +1 -0
  4140. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mediafire.svg +1 -0
  4141. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mediamarkt.svg +1 -0
  4142. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mediapipe.svg +1 -0
  4143. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mediatek.svg +1 -0
  4144. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/medibangpaint.svg +1 -0
  4145. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/medium.svg +1 -0
  4146. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/medusa.svg +1 -0
  4147. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/meetup.svg +1 -0
  4148. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mega.svg +1 -0
  4149. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/meilisearch.svg +1 -0
  4150. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/meituan.svg +1 -0
  4151. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/meizu.svg +1 -0
  4152. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mendeley.svg +1 -0
  4153. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mentorcruise.svg +1 -0
  4154. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mercadopago.svg +1 -0
  4155. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mercedes.svg +1 -0
  4156. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/merck.svg +1 -0
  4157. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mercurial.svg +1 -0
  4158. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mermaid.svg +1 -0
  4159. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/messenger.svg +1 -0
  4160. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/meta.svg +1 -0
  4161. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/metabase.svg +1 -0
  4162. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/metacritic.svg +1 -0
  4163. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/metafilter.svg +1 -0
  4164. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/metager.svg +1 -0
  4165. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/metasploit.svg +1 -0
  4166. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/meteor.svg +1 -0
  4167. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/metro.svg +1 -0
  4168. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/metrodelaciudaddemexico.svg +1 -0
  4169. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/metrodemadrid.svg +1 -0
  4170. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/metrodeparis.svg +1 -0
  4171. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mewe.svg +1 -0
  4172. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mezmo.svg +1 -0
  4173. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mg.svg +1 -0
  4174. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microbit.svg +1 -0
  4175. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microdotblog.svg +1 -0
  4176. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microeditor.svg +1 -0
  4177. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microgenetics.svg +1 -0
  4178. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/micropython.svg +1 -0
  4179. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoft.svg +1 -0
  4180. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftacademic.svg +1 -0
  4181. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftaccess.svg +1 -0
  4182. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftazure.svg +1 -0
  4183. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftbing.svg +1 -0
  4184. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftedge.svg +1 -0
  4185. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftexcel.svg +1 -0
  4186. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftexchange.svg +1 -0
  4187. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftonedrive.svg +1 -0
  4188. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftonenote.svg +1 -0
  4189. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftoutlook.svg +1 -0
  4190. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftpowerpoint.svg +1 -0
  4191. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftsharepoint.svg +1 -0
  4192. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftsqlserver.svg +1 -0
  4193. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftstore.svg +1 -0
  4194. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftteams.svg +1 -0
  4195. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsofttranslator.svg +1 -0
  4196. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftvisio.svg +1 -0
  4197. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microsoftword.svg +1 -0
  4198. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microstation.svg +1 -0
  4199. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/microstrategy.svg +1 -0
  4200. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/midi.svg +1 -0
  4201. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/migadu.svg +1 -0
  4202. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mihon.svg +1 -0
  4203. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mihoyo.svg +1 -0
  4204. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mikrotik.svg +1 -0
  4205. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/milanote.svg +1 -0
  4206. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/milvus.svg +1 -0
  4207. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/minds.svg +1 -0
  4208. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/minecraft.svg +1 -0
  4209. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/minetest.svg +1 -0
  4210. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mingww64.svg +1 -0
  4211. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mini.svg +1 -0
  4212. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/minimax.svg +1 -0
  4213. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/minio.svg +1 -0
  4214. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mintlify.svg +1 -0
  4215. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/minutemailer.svg +1 -0
  4216. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/miraheze.svg +1 -0
  4217. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/miro.svg +1 -0
  4218. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/misskey.svg +1 -0
  4219. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mistralai.svg +1 -0
  4220. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mitsubishi.svg +1 -0
  4221. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mix.svg +1 -0
  4222. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mixcloud.svg +1 -0
  4223. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mixpanel.svg +1 -0
  4224. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mlb.svg +1 -0
  4225. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mlflow.svg +1 -0
  4226. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mobx.svg +1 -0
  4227. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mobxstatetree.svg +1 -0
  4228. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mocha.svg +1 -0
  4229. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mockserviceworker.svg +1 -0
  4230. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/modal.svg +1 -0
  4231. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/modelcontextprotocol.svg +1 -0
  4232. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/modelscope.svg +1 -0
  4233. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/modin.svg +1 -0
  4234. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/modrinth.svg +1 -0
  4235. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/modx.svg +1 -0
  4236. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mojangstudios.svg +1 -0
  4237. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mojeek.svg +1 -0
  4238. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/moleculer.svg +1 -0
  4239. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/momenteo.svg +1 -0
  4240. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/monero.svg +1 -0
  4241. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/moneygram.svg +1 -0
  4242. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mongodb.svg +1 -0
  4243. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mongoose.svg +1 -0
  4244. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mongoosedotws.svg +1 -0
  4245. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/monica.svg +1 -0
  4246. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/monkeytie.svg +1 -0
  4247. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/monkeytype.svg +1 -0
  4248. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/monogame.svg +1 -0
  4249. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/monoprix.svg +1 -0
  4250. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/monster.svg +1 -0
  4251. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/monzo.svg +1 -0
  4252. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/moo.svg +1 -0
  4253. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/moodle.svg +1 -0
  4254. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/moonrepo.svg +1 -0
  4255. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/moonshotai.svg +1 -0
  4256. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/moq.svg +1 -0
  4257. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/moqups.svg +1 -0
  4258. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/morrisons.svg +1 -0
  4259. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/moscowmetro.svg +1 -0
  4260. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/motorola.svg +1 -0
  4261. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/movistar.svg +1 -0
  4262. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mozilla.svg +1 -0
  4263. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mpv.svg +1 -0
  4264. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mqtt.svg +1 -0
  4265. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/msi.svg +1 -0
  4266. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/msibusiness.svg +1 -0
  4267. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mta.svg +1 -0
  4268. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mtr.svg +1 -0
  4269. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mubi.svg +1 -0
  4270. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mui.svg +1 -0
  4271. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mulesoft.svg +1 -0
  4272. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/muller.svg +1 -0
  4273. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mullvad.svg +1 -0
  4274. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/multisim.svg +1 -0
  4275. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mumble.svg +1 -0
  4276. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/muo.svg +1 -0
  4277. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mural.svg +1 -0
  4278. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/musescore.svg +1 -0
  4279. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/musicbrainz.svg +1 -0
  4280. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mxlinux.svg +1 -0
  4281. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/myanimelist.svg +1 -0
  4282. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/myget.svg +1 -0
  4283. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/myob.svg +1 -0
  4284. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/myshows.svg +1 -0
  4285. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/myspace.svg +1 -0
  4286. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/mysql.svg +1 -0
  4287. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/n26.svg +1 -0
  4288. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/n8n.svg +1 -0
  4289. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/namebase.svg +1 -0
  4290. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/namecheap.svg +1 -0
  4291. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/namemc.svg +1 -0
  4292. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/namesilo.svg +1 -0
  4293. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/namuwiki.svg +1 -0
  4294. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nano.svg +1 -0
  4295. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nanostores.svg +1 -0
  4296. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/napster.svg +1 -0
  4297. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nasa.svg +1 -0
  4298. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nationalgrid.svg +1 -0
  4299. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nationalrail.svg +1 -0
  4300. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nativescript.svg +1 -0
  4301. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/natsdotio.svg +1 -0
  4302. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/naver.svg +1 -0
  4303. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nba.svg +1 -0
  4304. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nbb.svg +1 -0
  4305. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nbc.svg +1 -0
  4306. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ndi.svg +1 -0
  4307. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ndr.svg +1 -0
  4308. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/near.svg +1 -0
  4309. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nebula.svg +1 -0
  4310. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nec.svg +1 -0
  4311. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nederlandsespoorwegen.svg +1 -0
  4312. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/neo4j.svg +1 -0
  4313. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/neon.svg +1 -0
  4314. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/neovim.svg +1 -0
  4315. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/neptune.svg +1 -0
  4316. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nestjs.svg +1 -0
  4317. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/netapp.svg +1 -0
  4318. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/netbsd.svg +1 -0
  4319. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/netcup.svg +1 -0
  4320. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/netdata.svg +1 -0
  4321. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/neteasecloudmusic.svg +1 -0
  4322. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/netflix.svg +1 -0
  4323. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/netgear.svg +1 -0
  4324. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/netim.svg +1 -0
  4325. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/netlify.svg +1 -0
  4326. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nette.svg +1 -0
  4327. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/netto.svg +1 -0
  4328. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/neutralinojs.svg +1 -0
  4329. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/newbalance.svg +1 -0
  4330. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/newegg.svg +1 -0
  4331. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/newgrounds.svg +1 -0
  4332. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/newjapanprowrestling.svg +1 -0
  4333. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/newpipe.svg +1 -0
  4334. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/newrelic.svg +1 -0
  4335. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/newyorktimes.svg +1 -0
  4336. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nexon.svg +1 -0
  4337. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nextbike.svg +1 -0
  4338. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nextbilliondotai.svg +1 -0
  4339. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nextcloud.svg +1 -0
  4340. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nextdns.svg +1 -0
  4341. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nextdoor.svg +1 -0
  4342. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nextdotjs.svg +1 -0
  4343. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nextflow.svg +1 -0
  4344. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nextra.svg +1 -0
  4345. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nextui.svg +1 -0
  4346. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nexusmods.svg +1 -0
  4347. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nfc.svg +1 -0
  4348. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nfcore.svg +1 -0
  4349. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nginx.svg +1 -0
  4350. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nginxproxymanager.svg +1 -0
  4351. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ngrok.svg +1 -0
  4352. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ngrx.svg +1 -0
  4353. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nhl.svg +1 -0
  4354. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nhost.svg +1 -0
  4355. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nicehash.svg +1 -0
  4356. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/niconico.svg +1 -0
  4357. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nike.svg +1 -0
  4358. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nikon.svg +1 -0
  4359. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nim.svg +1 -0
  4360. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nintendo.svg +1 -0
  4361. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nintendo3ds.svg +1 -0
  4362. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nintendogamecube.svg +1 -0
  4363. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nintendoswitch.svg +1 -0
  4364. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/niri.svg +1 -0
  4365. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nissan.svg +1 -0
  4366. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nixos.svg +1 -0
  4367. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nobaralinux.svg +1 -0
  4368. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nodebb.svg +1 -0
  4369. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nodedotjs.svg +1 -0
  4370. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nodegui.svg +1 -0
  4371. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nodemon.svg +1 -0
  4372. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nodered.svg +1 -0
  4373. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nokia.svg +1 -0
  4374. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nomad.svg +1 -0
  4375. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/norco.svg +1 -0
  4376. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nordicsemiconductor.svg +1 -0
  4377. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nordvpn.svg +1 -0
  4378. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/normalizedotcss.svg +1 -0
  4379. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/norton.svg +1 -0
  4380. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/norwegian.svg +1 -0
  4381. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/note.svg +1 -0
  4382. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/notebooklm.svg +1 -0
  4383. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/notepadplusplus.svg +1 -0
  4384. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/notion.svg +1 -0
  4385. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/notist.svg +1 -0
  4386. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nounproject.svg +1 -0
  4387. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/novu.svg +1 -0
  4388. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/now.svg +1 -0
  4389. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/npm.svg +1 -0
  4390. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nrwl.svg +1 -0
  4391. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nsis.svg +1 -0
  4392. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ntfy.svg +1 -0
  4393. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nubank.svg +1 -0
  4394. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nucleo.svg +1 -0
  4395. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nuget.svg +1 -0
  4396. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nuke.svg +1 -0
  4397. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/numba.svg +1 -0
  4398. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/numpy.svg +1 -0
  4399. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nunjucks.svg +1 -0
  4400. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nushell.svg +1 -0
  4401. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nutanix.svg +1 -0
  4402. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nuxt.svg +1 -0
  4403. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nuxtdotjs.svg +1 -0
  4404. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nvidia.svg +1 -0
  4405. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nvm.svg +1 -0
  4406. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nx.svg +1 -0
  4407. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nxp.svg +1 -0
  4408. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/nzxt.svg +1 -0
  4409. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/o2.svg +1 -0
  4410. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/obb.svg +1 -0
  4411. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/observable.svg +1 -0
  4412. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/obsidian.svg +1 -0
  4413. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/obsstudio.svg +1 -0
  4414. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/obtainium.svg +1 -0
  4415. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ocaml.svg +1 -0
  4416. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oclc.svg +1 -0
  4417. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oclif.svg +1 -0
  4418. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/octanerender.svg +1 -0
  4419. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/octave.svg +1 -0
  4420. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/octobercms.svg +1 -0
  4421. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/octoprint.svg +1 -0
  4422. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/octopusdeploy.svg +1 -0
  4423. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oculus.svg +1 -0
  4424. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/odido.svg +1 -0
  4425. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/odin.svg +1 -0
  4426. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/odnoklassniki.svg +1 -0
  4427. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/odoo.svg +1 -0
  4428. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/odysee.svg +1 -0
  4429. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ohdear.svg +1 -0
  4430. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/okcupid.svg +1 -0
  4431. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/okta.svg +1 -0
  4432. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/okx.svg +1 -0
  4433. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ollama.svg +1 -0
  4434. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/omadacloud.svg +1 -0
  4435. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/omarchy.svg +1 -0
  4436. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oneplus.svg +1 -0
  4437. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/onestream.svg +1 -0
  4438. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/onlyfans.svg +1 -0
  4439. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/onlyoffice.svg +1 -0
  4440. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/onnx.svg +1 -0
  4441. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/onstar.svg +1 -0
  4442. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opel.svg +1 -0
  4443. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/open3d.svg +1 -0
  4444. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openaccess.svg +1 -0
  4445. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openai.svg +1 -0
  4446. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openaigym.svg +1 -0
  4447. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openapiinitiative.svg +1 -0
  4448. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openbadges.svg +1 -0
  4449. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openbao.svg +1 -0
  4450. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openbsd.svg +1 -0
  4451. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openbugbounty.svg +1 -0
  4452. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opencage.svg +1 -0
  4453. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opencollective.svg +1 -0
  4454. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opencontainersinitiative.svg +1 -0
  4455. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opencritic.svg +1 -0
  4456. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opencv.svg +1 -0
  4457. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openfaas.svg +1 -0
  4458. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opengl.svg +1 -0
  4459. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openhab.svg +1 -0
  4460. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openid.svg +1 -0
  4461. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openjdk.svg +1 -0
  4462. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openjsfoundation.svg +1 -0
  4463. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openlayers.svg +1 -0
  4464. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openmediavault.svg +1 -0
  4465. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openmined.svg +1 -0
  4466. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opennebula.svg +1 -0
  4467. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openproject.svg +1 -0
  4468. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openrouter.svg +1 -0
  4469. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openscad.svg +1 -0
  4470. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opensea.svg +1 -0
  4471. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opensearch.svg +1 -0
  4472. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opensourcehardware.svg +1 -0
  4473. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opensourceinitiative.svg +1 -0
  4474. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openssl.svg +1 -0
  4475. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openstack.svg +1 -0
  4476. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openstreetmap.svg +1 -0
  4477. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opensuse.svg +1 -0
  4478. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opentelemetry.svg +1 -0
  4479. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opentext.svg +1 -0
  4480. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opentofu.svg +1 -0
  4481. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openverse.svg +1 -0
  4482. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openvpn.svg +1 -0
  4483. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openwrt.svg +1 -0
  4484. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openzeppelin.svg +1 -0
  4485. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/openzfs.svg +1 -0
  4486. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opera.svg +1 -0
  4487. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/operagx.svg +1 -0
  4488. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opnsense.svg +1 -0
  4489. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oppo.svg +1 -0
  4490. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opsgenie.svg +1 -0
  4491. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/opslevel.svg +1 -0
  4492. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/optimism.svg +1 -0
  4493. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/optuna.svg +1 -0
  4494. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oracle.svg +1 -0
  4495. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/orange.svg +1 -0
  4496. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/orchardcore.svg +1 -0
  4497. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/orcid.svg +1 -0
  4498. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oreilly.svg +1 -0
  4499. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/org.svg +1 -0
  4500. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/organicmaps.svg +1 -0
  4501. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/origin.svg +1 -0
  4502. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ory.svg +1 -0
  4503. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/osano.svg +1 -0
  4504. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/osf.svg +1 -0
  4505. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/osgeo.svg +1 -0
  4506. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oshkosh.svg +1 -0
  4507. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/osmand.svg +1 -0
  4508. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/osmc.svg +1 -0
  4509. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/osu.svg +1 -0
  4510. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/otto.svg +1 -0
  4511. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/outline.svg +1 -0
  4512. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/overcast.svg +1 -0
  4513. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/overleaf.svg +1 -0
  4514. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ovh.svg +1 -0
  4515. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/owasp.svg +1 -0
  4516. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/owncloud.svg +1 -0
  4517. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oxc.svg +1 -0
  4518. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oxygen.svg +1 -0
  4519. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/oyo.svg +1 -0
  4520. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/p5dotjs.svg +1 -0
  4521. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/packagist.svg +1 -0
  4522. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/packer.svg +1 -0
  4523. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/packt.svg +1 -0
  4524. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paddle.svg +1 -0
  4525. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paddlepaddle.svg +1 -0
  4526. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paddypower.svg +1 -0
  4527. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/padlet.svg +1 -0
  4528. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pagekit.svg +1 -0
  4529. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pagerduty.svg +1 -0
  4530. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pagespeedinsights.svg +1 -0
  4531. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pagseguro.svg +1 -0
  4532. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/palantir.svg +1 -0
  4533. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paloaltonetworks.svg +1 -0
  4534. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paloaltosoftware.svg +1 -0
  4535. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/panasonic.svg +1 -0
  4536. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pandas.svg +1 -0
  4537. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pandoc.svg +1 -0
  4538. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pandora.svg +1 -0
  4539. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pangolin.svg +1 -0
  4540. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pantheon.svg +1 -0
  4541. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paperlessngx.svg +1 -0
  4542. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paperspace.svg +1 -0
  4543. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paperswithcode.svg +1 -0
  4544. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paradoxinteractive.svg +1 -0
  4545. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paramountplus.svg +1 -0
  4546. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paritysubstrate.svg +1 -0
  4547. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/parrotsecurity.svg +1 -0
  4548. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/parsedotly.svg +1 -0
  4549. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/passbolt.svg +1 -0
  4550. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/passport.svg +1 -0
  4551. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pastebin.svg +1 -0
  4552. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/patreon.svg +1 -0
  4553. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/payback.svg +1 -0
  4554. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paychex.svg +1 -0
  4555. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/payhip.svg +1 -0
  4556. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/payloadcms.svg +1 -0
  4557. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/payoneer.svg +1 -0
  4558. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paypal.svg +1 -0
  4559. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paysafe.svg +1 -0
  4560. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/paytm.svg +1 -0
  4561. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pcgamingwiki.svg +1 -0
  4562. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pdm.svg +1 -0
  4563. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pdq.svg +1 -0
  4564. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/peakdesign.svg +1 -0
  4565. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pearson.svg +1 -0
  4566. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/peerlist.svg +1 -0
  4567. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/peertube.svg +1 -0
  4568. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pegasusairlines.svg +1 -0
  4569. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pelican.svg +1 -0
  4570. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/peloton.svg +1 -0
  4571. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/penny.svg +1 -0
  4572. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/penpot.svg +1 -0
  4573. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/percy.svg +1 -0
  4574. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/perforce.svg +1 -0
  4575. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/perl.svg +1 -0
  4576. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/perplexity.svg +1 -0
  4577. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/persistent.svg +1 -0
  4578. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/personio.svg +1 -0
  4579. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/petsathome.svg +1 -0
  4580. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/peugeot.svg +1 -0
  4581. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pexels.svg +1 -0
  4582. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pfsense.svg +1 -0
  4583. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/phabricator.svg +1 -0
  4584. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/philipshue.svg +1 -0
  4585. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/phoenixframework.svg +1 -0
  4586. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/phonepe.svg +1 -0
  4587. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/phosphoricons.svg +1 -0
  4588. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/photobucket.svg +1 -0
  4589. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/photocrowd.svg +1 -0
  4590. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/photon.svg +1 -0
  4591. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/photopea.svg +1 -0
  4592. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/php.svg +1 -0
  4593. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/phpbb.svg +1 -0
  4594. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/phpmyadmin.svg +1 -0
  4595. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/phpstorm.svg +1 -0
  4596. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/piaggiogroup.svg +1 -0
  4597. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/piapro.svg +1 -0
  4598. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/picardsurgeles.svg +1 -0
  4599. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/picartodottv.svg +1 -0
  4600. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/picnic.svg +1 -0
  4601. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/picpay.svg +1 -0
  4602. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/picrew.svg +1 -0
  4603. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/picsart.svg +1 -0
  4604. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/picxy.svg +1 -0
  4605. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pihole.svg +1 -0
  4606. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pimcore.svg +1 -0
  4607. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pinboard.svg +1 -0
  4608. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pinescript.svg +1 -0
  4609. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pinetwork.svg +1 -0
  4610. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pingdom.svg +1 -0
  4611. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pinia.svg +1 -0
  4612. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pino.svg +1 -0
  4613. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pinterest.svg +1 -0
  4614. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pioneerdj.svg +1 -0
  4615. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pipecat.svg +1 -0
  4616. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/piped.svg +1 -0
  4617. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pipx.svg +1 -0
  4618. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pivotaltracker.svg +1 -0
  4619. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/piwigo.svg +1 -0
  4620. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pix.svg +1 -0
  4621. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pixabay.svg +1 -0
  4622. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pixelfed.svg +1 -0
  4623. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pixiv.svg +1 -0
  4624. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pixlr.svg +1 -0
  4625. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pkgsrc.svg +1 -0
  4626. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/plane.svg +1 -0
  4627. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/planet.svg +1 -0
  4628. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/planetscale.svg +1 -0
  4629. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/plangrid.svg +1 -0
  4630. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/platformdotsh.svg +1 -0
  4631. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/platformio.svg +1 -0
  4632. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/platzi.svg +1 -0
  4633. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/plausibleanalytics.svg +1 -0
  4634. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playcanvas.svg +1 -0
  4635. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playerdotme.svg +1 -0
  4636. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playerfm.svg +1 -0
  4637. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playstation.svg +1 -0
  4638. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playstation2.svg +1 -0
  4639. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playstation3.svg +1 -0
  4640. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playstation4.svg +1 -0
  4641. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playstation5.svg +1 -0
  4642. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playstationportable.svg +1 -0
  4643. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playstationvita.svg +1 -0
  4644. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/playwright.svg +1 -0
  4645. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pleroma.svg +1 -0
  4646. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/plesk.svg +1 -0
  4647. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/plex.svg +1 -0
  4648. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/plotly.svg +1 -0
  4649. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/plume.svg +1 -0
  4650. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pluralsight.svg +1 -0
  4651. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/plurk.svg +1 -0
  4652. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pluscodes.svg +1 -0
  4653. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pm2.svg +1 -0
  4654. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pnpm.svg +1 -0
  4655. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pocket.svg +1 -0
  4656. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pocketbase.svg +1 -0
  4657. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pocketcasts.svg +1 -0
  4658. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/podcastaddict.svg +1 -0
  4659. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/podcastindex.svg +1 -0
  4660. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/podman.svg +1 -0
  4661. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/poe.svg +1 -0
  4662. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/poetry.svg +1 -0
  4663. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pointy.svg +1 -0
  4664. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pokemon.svg +1 -0
  4665. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/polars.svg +1 -0
  4666. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/polestar.svg +1 -0
  4667. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/polkadot.svg +1 -0
  4668. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/poly.svg +1 -0
  4669. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/polygon.svg +1 -0
  4670. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/polymerproject.svg +1 -0
  4671. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/polywork.svg +1 -0
  4672. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pomerium.svg +1 -0
  4673. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pond5.svg +1 -0
  4674. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/popos.svg +1 -0
  4675. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/porkbun.svg +1 -0
  4676. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/porsche.svg +1 -0
  4677. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/portableappsdotcom.svg +1 -0
  4678. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/portainer.svg +1 -0
  4679. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/portswigger.svg +1 -0
  4680. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/posit.svg +1 -0
  4681. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/postcss.svg +1 -0
  4682. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/postgresql.svg +1 -0
  4683. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/posthog.svg +1 -0
  4684. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/postiz.svg +1 -0
  4685. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/postman.svg +1 -0
  4686. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/postmates.svg +1 -0
  4687. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/powerapps.svg +1 -0
  4688. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/powerautomate.svg +1 -0
  4689. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/powerbi.svg +1 -0
  4690. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/powerfx.svg +1 -0
  4691. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/powerpages.svg +1 -0
  4692. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/powers.svg +1 -0
  4693. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/powershell.svg +1 -0
  4694. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/powervirtualagents.svg +1 -0
  4695. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prdotco.svg +1 -0
  4696. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/preact.svg +1 -0
  4697. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/precommit.svg +1 -0
  4698. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prefect.svg +1 -0
  4699. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prek.svg +1 -0
  4700. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/premid.svg +1 -0
  4701. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/premierleague.svg +1 -0
  4702. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prepbytes.svg +1 -0
  4703. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prestashop.svg +1 -0
  4704. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/presto.svg +1 -0
  4705. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prettier.svg +1 -0
  4706. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pretzel.svg +1 -0
  4707. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prevention.svg +1 -0
  4708. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prezi.svg +1 -0
  4709. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prime.svg +1 -0
  4710. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/primefaces.svg +1 -0
  4711. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/primeng.svg +1 -0
  4712. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/primereact.svg +1 -0
  4713. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/primevideo.svg +1 -0
  4714. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/primevue.svg +1 -0
  4715. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/printables.svg +1 -0
  4716. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prisma.svg +1 -0
  4717. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prismic.svg +1 -0
  4718. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/privatedivision.svg +1 -0
  4719. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/privateinternetaccess.svg +1 -0
  4720. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/probot.svg +1 -0
  4721. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/processingfoundation.svg +1 -0
  4722. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/processon.svg +1 -0
  4723. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/processwire.svg +1 -0
  4724. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/producthunt.svg +1 -0
  4725. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/progate.svg +1 -0
  4726. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/progress.svg +1 -0
  4727. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prometheus.svg +1 -0
  4728. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pronounsdotpage.svg +1 -0
  4729. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prosemirror.svg +1 -0
  4730. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/prosieben.svg +1 -0
  4731. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/proteus.svg +1 -0
  4732. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/protocolsdotio.svg +1 -0
  4733. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/protodotio.svg +1 -0
  4734. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/proton.svg +1 -0
  4735. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/protoncalendar.svg +1 -0
  4736. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/protondb.svg +1 -0
  4737. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/protondrive.svg +1 -0
  4738. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/protonmail.svg +1 -0
  4739. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/protonvpn.svg +1 -0
  4740. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/protools.svg +1 -0
  4741. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/protractor.svg +1 -0
  4742. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/proxmox.svg +1 -0
  4743. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pterodactyl.svg +1 -0
  4744. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pubg.svg +1 -0
  4745. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/publons.svg +1 -0
  4746. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pubmed.svg +1 -0
  4747. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pug.svg +1 -0
  4748. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pulumi.svg +1 -0
  4749. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/puma.svg +1 -0
  4750. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/puppet.svg +1 -0
  4751. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/puppeteer.svg +1 -0
  4752. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/purescript.svg +1 -0
  4753. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/purgecss.svg +1 -0
  4754. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/purism.svg +1 -0
  4755. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pushbullet.svg +1 -0
  4756. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pusher.svg +1 -0
  4757. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pwa.svg +1 -0
  4758. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pycharm.svg +1 -0
  4759. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pycqa.svg +1 -0
  4760. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pydantic.svg +1 -0
  4761. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pyg.svg +1 -0
  4762. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pypi.svg +1 -0
  4763. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pypy.svg +1 -0
  4764. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pyscaffold.svg +1 -0
  4765. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pysyft.svg +1 -0
  4766. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pytest.svg +1 -0
  4767. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/python.svg +1 -0
  4768. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pythonanywhere.svg +1 -0
  4769. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pytorch.svg +1 -0
  4770. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/pyup.svg +1 -0
  4771. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qantas.svg +1 -0
  4772. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qase.svg +1 -0
  4773. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qatarairways.svg +1 -0
  4774. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qbittorrent.svg +1 -0
  4775. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qdrant.svg +1 -0
  4776. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qemu.svg +1 -0
  4777. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qgis.svg +1 -0
  4778. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qi.svg +1 -0
  4779. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qiita.svg +1 -0
  4780. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qiskit.svg +1 -0
  4781. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qiwi.svg +1 -0
  4782. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qlik.svg +1 -0
  4783. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qlty.svg +1 -0
  4784. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qmk.svg +1 -0
  4785. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qnap.svg +1 -0
  4786. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qodo.svg +1 -0
  4787. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qq.svg +1 -0
  4788. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qt.svg +1 -0
  4789. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quad9.svg +1 -0
  4790. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qualcomm.svg +1 -0
  4791. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qualtrics.svg +1 -0
  4792. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qualys.svg +1 -0
  4793. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quantcast.svg +1 -0
  4794. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quantconnect.svg +1 -0
  4795. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quarkus.svg +1 -0
  4796. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quarto.svg +1 -0
  4797. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quasar.svg +1 -0
  4798. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qubesos.svg +1 -0
  4799. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quest.svg +1 -0
  4800. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quickbooks.svg +1 -0
  4801. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quicklook.svg +1 -0
  4802. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quicktime.svg +1 -0
  4803. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quicktype.svg +1 -0
  4804. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quip.svg +1 -0
  4805. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quizlet.svg +1 -0
  4806. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/quora.svg +1 -0
  4807. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qwant.svg +1 -0
  4808. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qwen.svg +1 -0
  4809. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qwik.svg +1 -0
  4810. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qwiklabs.svg +1 -0
  4811. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/qzone.svg +1 -0
  4812. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/r.svg +1 -0
  4813. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/r3.svg +1 -0
  4814. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rabbitmq.svg +1 -0
  4815. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/racket.svg +1 -0
  4816. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/radar.svg +1 -0
  4817. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/radarr.svg +1 -0
  4818. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/radiofrance.svg +1 -0
  4819. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/radiopublic.svg +1 -0
  4820. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/radixui.svg +1 -0
  4821. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/radstudio.svg +1 -0
  4822. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/railway.svg +1 -0
  4823. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rainmeter.svg +1 -0
  4824. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rainyun.svg +1 -0
  4825. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rakuten.svg +1 -0
  4826. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rakutenkobo.svg +1 -0
  4827. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ram.svg +1 -0
  4828. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rancher.svg +1 -0
  4829. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rapid.svg +1 -0
  4830. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rarible.svg +1 -0
  4831. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rasa.svg +1 -0
  4832. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/raspberrypi.svg +1 -0
  4833. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ratatui.svg +1 -0
  4834. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ravelry.svg +1 -0
  4835. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ray.svg +1 -0
  4836. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/raycast.svg +1 -0
  4837. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/raylib.svg +1 -0
  4838. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/razer.svg +1 -0
  4839. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/razorpay.svg +1 -0
  4840. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rclone.svg +1 -0
  4841. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/react.svg +1 -0
  4842. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reactbootstrap.svg +1 -0
  4843. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reacthookform.svg +1 -0
  4844. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reactiveresume.svg +1 -0
  4845. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reactivex.svg +1 -0
  4846. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reactos.svg +1 -0
  4847. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reactquery.svg +1 -0
  4848. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reactrouter.svg +1 -0
  4849. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reacttable.svg +1 -0
  4850. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/readdotcv.svg +1 -0
  4851. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/readme.svg +1 -0
  4852. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/readthedocs.svg +1 -0
  4853. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/realm.svg +1 -0
  4854. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reason.svg +1 -0
  4855. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reasonstudios.svg +1 -0
  4856. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/recoil.svg +1 -0
  4857. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/red.svg +1 -0
  4858. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redash.svg +1 -0
  4859. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redbubble.svg +1 -0
  4860. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redbull.svg +1 -0
  4861. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redcandlegames.svg +1 -0
  4862. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reddit.svg +1 -0
  4863. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redhat.svg +1 -0
  4864. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redhatopenshift.svg +1 -0
  4865. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redis.svg +1 -0
  4866. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redmine.svg +1 -0
  4867. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redox.svg +1 -0
  4868. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redragon.svg +1 -0
  4869. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redsys.svg +1 -0
  4870. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redux.svg +1 -0
  4871. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reduxsaga.svg +1 -0
  4872. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/redwoodjs.svg +1 -0
  4873. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reebok.svg +1 -0
  4874. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/refine.svg +1 -0
  4875. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/refinedgithub.svg +1 -0
  4876. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reflex.svg +1 -0
  4877. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rekaui.svg +1 -0
  4878. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/relay.svg +1 -0
  4879. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/relianceindustrieslimited.svg +1 -0
  4880. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/remark.svg +1 -0
  4881. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/remedyentertainment.svg +1 -0
  4882. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/remix.svg +1 -0
  4883. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/removedotbg.svg +1 -0
  4884. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/renault.svg +1 -0
  4885. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/render.svg +1 -0
  4886. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/renovate.svg +1 -0
  4887. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/renovatebot.svg +1 -0
  4888. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/renpy.svg +1 -0
  4889. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/renren.svg +1 -0
  4890. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/replicate.svg +1 -0
  4891. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/replit.svg +1 -0
  4892. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/republicofgamers.svg +1 -0
  4893. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rescript.svg +1 -0
  4894. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rescuetime.svg +1 -0
  4895. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/researchgate.svg +1 -0
  4896. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/resend.svg +1 -0
  4897. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/resharper.svg +1 -0
  4898. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/resurrectionremixos.svg +1 -0
  4899. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/retool.svg +1 -0
  4900. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/retroachievements.svg +1 -0
  4901. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/retroarch.svg +1 -0
  4902. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/retropie.svg +1 -0
  4903. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/revanced.svg +1 -0
  4904. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/revealdotjs.svg +1 -0
  4905. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/revenuecat.svg +1 -0
  4906. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/reverbnation.svg +1 -0
  4907. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/revoltdotchat.svg +1 -0
  4908. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/revolut.svg +1 -0
  4909. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/revue.svg +1 -0
  4910. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rewe.svg +1 -0
  4911. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rezgo.svg +1 -0
  4912. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rhinoceros.svg +1 -0
  4913. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rich.svg +1 -0
  4914. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rider.svg +1 -0
  4915. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rimacautomobili.svg +1 -0
  4916. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rime.svg +1 -0
  4917. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ring.svg +1 -0
  4918. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/riotgames.svg +1 -0
  4919. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ripple.svg +1 -0
  4920. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/riscv.svg +1 -0
  4921. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/riseup.svg +1 -0
  4922. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ritzcarlton.svg +1 -0
  4923. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rive.svg +1 -0
  4924. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/roadmapdotsh.svg +1 -0
  4925. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/roamresearch.svg +1 -0
  4926. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/robinhood.svg +1 -0
  4927. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/roblox.svg +1 -0
  4928. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/robloxstudio.svg +1 -0
  4929. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/roboflow.svg +1 -0
  4930. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/robotframework.svg +1 -0
  4931. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rocket.svg +1 -0
  4932. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rocketdotchat.svg +1 -0
  4933. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rocksdb.svg +1 -0
  4934. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rockstargames.svg +1 -0
  4935. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rockwellautomation.svg +1 -0
  4936. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rockylinux.svg +1 -0
  4937. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/roku.svg +1 -0
  4938. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/roll20.svg +1 -0
  4939. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rollbar.svg +1 -0
  4940. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rolldown.svg +1 -0
  4941. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rollsroyce.svg +1 -0
  4942. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rollupdotjs.svg +1 -0
  4943. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rook.svg +1 -0
  4944. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/roon.svg +1 -0
  4945. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/root.svg +1 -0
  4946. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rootme.svg +1 -0
  4947. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/roots.svg +1 -0
  4948. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rootsbedrock.svg +1 -0
  4949. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rootssage.svg +1 -0
  4950. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ros.svg +1 -0
  4951. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rossmann.svg +1 -0
  4952. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rotaryinternational.svg +1 -0
  4953. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rottentomatoes.svg +1 -0
  4954. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/roundcube.svg +1 -0
  4955. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rsocket.svg +1 -0
  4956. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rss.svg +1 -0
  4957. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rstudioide.svg +1 -0
  4958. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rte.svg +1 -0
  4959. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rtl.svg +1 -0
  4960. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rtlzwei.svg +1 -0
  4961. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rtm.svg +1 -0
  4962. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rubocop.svg +1 -0
  4963. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ruby.svg +1 -0
  4964. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rubygems.svg +1 -0
  4965. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rubymine.svg +1 -0
  4966. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rubyonrails.svg +1 -0
  4967. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rubysinatra.svg +1 -0
  4968. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ruff.svg +1 -0
  4969. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rumahweb.svg +1 -0
  4970. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rumble.svg +1 -0
  4971. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rundeck.svg +1 -0
  4972. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/runkeeper.svg +1 -0
  4973. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/runkit.svg +1 -0
  4974. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/runrundotit.svg +1 -0
  4975. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rust.svg +1 -0
  4976. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rustdesk.svg +1 -0
  4977. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rustfs.svg +1 -0
  4978. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rxdb.svg +1 -0
  4979. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ryanair.svg +1 -0
  4980. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/rye.svg +1 -0
  4981. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/s7airlines.svg +1 -0
  4982. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sabanci.svg +1 -0
  4983. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/safari.svg +1 -0
  4984. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sage.svg +1 -0
  4985. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sagemath.svg +1 -0
  4986. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sahibinden.svg +1 -0
  4987. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sailfishos.svg +1 -0
  4988. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sailsdotjs.svg +1 -0
  4989. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/salesforce.svg +1 -0
  4990. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/salla.svg +1 -0
  4991. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/saltproject.svg +1 -0
  4992. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/samsclub.svg +1 -0
  4993. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/samsung.svg +1 -0
  4994. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/samsungpay.svg +1 -0
  4995. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sandisk.svg +1 -0
  4996. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sanfranciscomunicipalrailway.svg +1 -0
  4997. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sanic.svg +1 -0
  4998. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sanity.svg +1 -0
  4999. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/saopaulometro.svg +1 -0
  5000. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sap.svg +1 -0
  5001. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sartorius.svg +1 -0
  5002. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sass.svg +1 -0
  5003. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sat1.svg +1 -0
  5004. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/satellite.svg +1 -0
  5005. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/saturn.svg +1 -0
  5006. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/saucelabs.svg +1 -0
  5007. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/saudia.svg +1 -0
  5008. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scala.svg +1 -0
  5009. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scalar.svg +1 -0
  5010. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scaleway.svg +1 -0
  5011. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scan.svg +1 -0
  5012. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scania.svg +1 -0
  5013. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/schneiderelectric.svg +1 -0
  5014. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scikitlearn.svg +1 -0
  5015. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scilab.svg +1 -0
  5016. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scipy.svg +1 -0
  5017. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scopus.svg +1 -0
  5018. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scpfoundation.svg +1 -0
  5019. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scrapbox.svg +1 -0
  5020. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scrapy.svg +1 -0
  5021. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scratch.svg +1 -0
  5022. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/screencastify.svg +1 -0
  5023. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scribd.svg +1 -0
  5024. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scrimba.svg +1 -0
  5025. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scrollreveal.svg +1 -0
  5026. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scrumalliance.svg +1 -0
  5027. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scrutinizerci.svg +1 -0
  5028. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/scylladb.svg +1 -0
  5029. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/seafile.svg +1 -0
  5030. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/seagate.svg +1 -0
  5031. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/searxng.svg +1 -0
  5032. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/seat.svg +1 -0
  5033. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/seatgeek.svg +1 -0
  5034. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/securityscorecard.svg +1 -0
  5035. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sefaria.svg +1 -0
  5036. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sega.svg +1 -0
  5037. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/selenium.svg +1 -0
  5038. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sellfy.svg +1 -0
  5039. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/semanticrelease.svg +1 -0
  5040. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/semanticscholar.svg +1 -0
  5041. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/semanticui.svg +1 -0
  5042. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/semanticuireact.svg +1 -0
  5043. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/semanticweb.svg +1 -0
  5044. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/semaphoreci.svg +1 -0
  5045. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/semrush.svg +1 -0
  5046. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/semver.svg +1 -0
  5047. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sencha.svg +1 -0
  5048. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sennheiser.svg +1 -0
  5049. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sensu.svg +1 -0
  5050. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sentry.svg +1 -0
  5051. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sepa.svg +1 -0
  5052. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sequelize.svg +1 -0
  5053. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/servbay.svg +1 -0
  5054. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/serverfault.svg +1 -0
  5055. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/serverless.svg +1 -0
  5056. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/session.svg +1 -0
  5057. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sessionize.svg +1 -0
  5058. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/setapp.svg +1 -0
  5059. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/setuptools.svg +1 -0
  5060. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sfml.svg +1 -0
  5061. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shadcnui.svg +1 -0
  5062. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shadow.svg +1 -0
  5063. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shanghaimetro.svg +1 -0
  5064. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sharex.svg +1 -0
  5065. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sharp.svg +1 -0
  5066. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shazam.svg +1 -0
  5067. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shell.svg +1 -0
  5068. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shelly.svg +1 -0
  5069. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shenzhenmetro.svg +1 -0
  5070. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shieldsdotio.svg +1 -0
  5071. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shikimori.svg +1 -0
  5072. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shopee.svg +1 -0
  5073. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shopify.svg +1 -0
  5074. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shopware.svg +1 -0
  5075. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shortcut.svg +1 -0
  5076. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/showpad.svg +1 -0
  5077. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/showtime.svg +1 -0
  5078. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/showwcase.svg +1 -0
  5079. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/shutterstock.svg +1 -0
  5080. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sidekiq.svg +1 -0
  5081. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sidequest.svg +1 -0
  5082. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/siemens.svg +1 -0
  5083. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sifive.svg +1 -0
  5084. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/signal.svg +1 -0
  5085. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/silverairways.svg +1 -0
  5086. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/similarweb.svg +1 -0
  5087. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/simkl.svg +1 -0
  5088. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/simpleanalytics.svg +1 -0
  5089. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/simpleicons.svg +1 -0
  5090. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/simplelocalize.svg +1 -0
  5091. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/simplelogin.svg +1 -0
  5092. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/simplenote.svg +1 -0
  5093. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/simplex.svg +1 -0
  5094. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sinaweibo.svg +1 -0
  5095. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/singaporeairlines.svg +1 -0
  5096. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/singlestore.svg +1 -0
  5097. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sitecore.svg +1 -0
  5098. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sitepoint.svg +1 -0
  5099. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/siyuan.svg +1 -0
  5100. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/skaffold.svg +1 -0
  5101. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/skeleton.svg +1 -0
  5102. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sketch.svg +1 -0
  5103. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sketchfab.svg +1 -0
  5104. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sketchup.svg +1 -0
  5105. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/skillshare.svg +1 -0
  5106. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/skoda.svg +1 -0
  5107. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sky.svg +1 -0
  5108. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/skypack.svg +1 -0
  5109. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/skype.svg +1 -0
  5110. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/skypeforbusiness.svg +1 -0
  5111. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/skyrock.svg +1 -0
  5112. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/slack.svg +1 -0
  5113. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/slackware.svg +1 -0
  5114. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/slashdot.svg +1 -0
  5115. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/slickpic.svg +1 -0
  5116. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/slides.svg +1 -0
  5117. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/slideshare.svg +1 -0
  5118. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/slint.svg +1 -0
  5119. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/smart.svg +1 -0
  5120. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/smartthings.svg +1 -0
  5121. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/smashdotgg.svg +1 -0
  5122. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/smashingmagazine.svg +1 -0
  5123. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/smoothcomp.svg +1 -0
  5124. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/smrt.svg +1 -0
  5125. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/smugmug.svg +1 -0
  5126. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/snapchat.svg +1 -0
  5127. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/snapcraft.svg +1 -0
  5128. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/snapdragon.svg +1 -0
  5129. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sncf.svg +1 -0
  5130. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/snort.svg +1 -0
  5131. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/snowflake.svg +1 -0
  5132. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/snowpack.svg +1 -0
  5133. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/snyk.svg +1 -0
  5134. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/socialblade.svg +1 -0
  5135. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/society6.svg +1 -0
  5136. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/socket.svg +1 -0
  5137. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/socketdotio.svg +1 -0
  5138. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/softcatala.svg +1 -0
  5139. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/softpedia.svg +1 -0
  5140. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sogou.svg +1 -0
  5141. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/solana.svg +1 -0
  5142. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/solid.svg +1 -0
  5143. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/solidity.svg +1 -0
  5144. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sololearn.svg +1 -0
  5145. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/solus.svg +1 -0
  5146. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/solveddotac.svg +1 -0
  5147. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonar.svg +1 -0
  5148. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonarcloud.svg +1 -0
  5149. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonarlint.svg +1 -0
  5150. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonarqube.svg +1 -0
  5151. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonarqubecloud.svg +1 -0
  5152. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonarqubeforide.svg +1 -0
  5153. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonarqubeserver.svg +1 -0
  5154. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonarr.svg +1 -0
  5155. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonatype.svg +1 -0
  5156. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/songkick.svg +1 -0
  5157. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/songoda.svg +1 -0
  5158. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonicwall.svg +1 -0
  5159. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sonos.svg +1 -0
  5160. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sony.svg +1 -0
  5161. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/soriana.svg +1 -0
  5162. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/soundcharts.svg +1 -0
  5163. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/soundcloud.svg +1 -0
  5164. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sourceengine.svg +1 -0
  5165. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sourceforge.svg +1 -0
  5166. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sourcehut.svg +1 -0
  5167. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sourcetree.svg +1 -0
  5168. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/southwestairlines.svg +1 -0
  5169. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spacemacs.svg +1 -0
  5170. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spaceship.svg +1 -0
  5171. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spacex.svg +1 -0
  5172. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spacy.svg +1 -0
  5173. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sparkar.svg +1 -0
  5174. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sparkasse.svg +1 -0
  5175. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sparkfun.svg +1 -0
  5176. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sparkpost.svg +1 -0
  5177. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spdx.svg +1 -0
  5178. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/speakerdeck.svg +1 -0
  5179. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spectrum.svg +1 -0
  5180. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/speedtest.svg +1 -0
  5181. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/speedypage.svg +1 -0
  5182. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sphinx.svg +1 -0
  5183. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spidermonkey.svg +1 -0
  5184. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spigotmc.svg +1 -0
  5185. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spine.svg +1 -0
  5186. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spinnaker.svg +1 -0
  5187. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spinrilla.svg +1 -0
  5188. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/splunk.svg +1 -0
  5189. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spoj.svg +1 -0
  5190. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spond.svg +1 -0
  5191. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spotify.svg +1 -0
  5192. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spotlight.svg +1 -0
  5193. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spreadshirt.svg +1 -0
  5194. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spreaker.svg +1 -0
  5195. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spring.svg +1 -0
  5196. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spring_creators.svg +1 -0
  5197. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/springboot.svg +1 -0
  5198. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/springsecurity.svg +1 -0
  5199. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/spyderide.svg +1 -0
  5200. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sqlalchemy.svg +1 -0
  5201. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sqlite.svg +1 -0
  5202. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/square.svg +1 -0
  5203. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/squareenix.svg +1 -0
  5204. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/squarespace.svg +1 -0
  5205. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/srgssr.svg +1 -0
  5206. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ssrn.svg +1 -0
  5207. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sst.svg +1 -0
  5208. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stackbit.svg +1 -0
  5209. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stackblitz.svg +1 -0
  5210. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stackedit.svg +1 -0
  5211. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stackexchange.svg +1 -0
  5212. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stackhawk.svg +1 -0
  5213. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stackoverflow.svg +1 -0
  5214. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stackpath.svg +1 -0
  5215. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stackshare.svg +1 -0
  5216. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stadia.svg +1 -0
  5217. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/staffbase.svg +1 -0
  5218. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stagetimer.svg +1 -0
  5219. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/standardjs.svg +1 -0
  5220. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/standardresume.svg +1 -0
  5221. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/starbucks.svg +1 -0
  5222. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stardock.svg +1 -0
  5223. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/starlingbank.svg +1 -0
  5224. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/starship.svg +1 -0
  5225. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/startdotgg.svg +1 -0
  5226. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/startpage.svg +1 -0
  5227. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/startrek.svg +1 -0
  5228. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/starz.svg +1 -0
  5229. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/statamic.svg +1 -0
  5230. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/statista.svg +1 -0
  5231. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/statuspage.svg +1 -0
  5232. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/statuspal.svg +1 -0
  5233. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/steam.svg +1 -0
  5234. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/steamdb.svg +1 -0
  5235. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/steamdeck.svg +1 -0
  5236. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/steamworks.svg +1 -0
  5237. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/steelseries.svg +1 -0
  5238. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/steem.svg +1 -0
  5239. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/steemit.svg +1 -0
  5240. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/steinberg.svg +1 -0
  5241. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stellar.svg +1 -0
  5242. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stencil.svg +1 -0
  5243. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stencyl.svg +1 -0
  5244. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stimulus.svg +1 -0
  5245. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stitcher.svg +1 -0
  5246. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stmicroelectronics.svg +1 -0
  5247. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stockx.svg +1 -0
  5248. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stopstalk.svg +1 -0
  5249. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/storyblok.svg +1 -0
  5250. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/storybook.svg +1 -0
  5251. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/strapi.svg +1 -0
  5252. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/strava.svg +1 -0
  5253. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/streamlabs.svg +1 -0
  5254. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/streamlit.svg +1 -0
  5255. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/streamrunners.svg +1 -0
  5256. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stremio.svg +1 -0
  5257. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stripe.svg +1 -0
  5258. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/strongswan.svg +1 -0
  5259. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stryker.svg +1 -0
  5260. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stubhub.svg +1 -0
  5261. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/studio3t.svg +1 -0
  5262. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/studyverse.svg +1 -0
  5263. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/styledcomponents.svg +1 -0
  5264. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stylelint.svg +1 -0
  5265. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/styleshare.svg +1 -0
  5266. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/stylus.svg +1 -0
  5267. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/subaru.svg +1 -0
  5268. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sublimetext.svg +1 -0
  5269. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/substack.svg +1 -0
  5270. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/subtitleedit.svg +1 -0
  5271. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/subversion.svg +1 -0
  5272. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/suckless.svg +1 -0
  5273. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sui.svg +1 -0
  5274. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/suitest.svg +1 -0
  5275. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sumologic.svg +1 -0
  5276. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/suno.svg +1 -0
  5277. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sunrise.svg +1 -0
  5278. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/supabase.svg +1 -0
  5279. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/supercell.svg +1 -0
  5280. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/supercrease.svg +1 -0
  5281. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/supermicro.svg +1 -0
  5282. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/superuser.svg +1 -0
  5283. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/surfshark.svg +1 -0
  5284. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/surrealdb.svg +1 -0
  5285. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/surveymonkey.svg +1 -0
  5286. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/suse.svg +1 -0
  5287. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/suzuki.svg +1 -0
  5288. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/svelte.svg +1 -0
  5289. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/svg.svg +1 -0
  5290. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/svgdotjs.svg +1 -0
  5291. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/svgo.svg +1 -0
  5292. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/svgtrace.svg +1 -0
  5293. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/swagger.svg +1 -0
  5294. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/swarm.svg +1 -0
  5295. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sway.svg +1 -0
  5296. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/swc.svg +1 -0
  5297. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/swift.svg +1 -0
  5298. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/swiggy.svg +1 -0
  5299. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/swiper.svg +1 -0
  5300. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/swisscows.svg +1 -0
  5301. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/swr.svg +1 -0
  5302. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/symantec.svg +1 -0
  5303. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/symbolab.svg +1 -0
  5304. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/symfony.svg +1 -0
  5305. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/symphony.svg +1 -0
  5306. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/sympy.svg +1 -0
  5307. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/syncthing.svg +1 -0
  5308. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/synology.svg +1 -0
  5309. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/system76.svg +1 -0
  5310. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tabelog.svg +1 -0
  5311. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tableau.svg +1 -0
  5312. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tablecheck.svg +1 -0
  5313. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tacobell.svg +1 -0
  5314. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tado.svg +1 -0
  5315. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/taichigraphics.svg +1 -0
  5316. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/taichilang.svg +1 -0
  5317. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tails.svg +1 -0
  5318. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tailscale.svg +1 -0
  5319. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tailwindcss.svg +1 -0
  5320. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/taipy.svg +1 -0
  5321. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/taketwointeractivesoftware.svg +1 -0
  5322. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/talend.svg +1 -0
  5323. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/talenthouse.svg +1 -0
  5324. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/talos.svg +1 -0
  5325. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tamiya.svg +1 -0
  5326. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tampermonkey.svg +1 -0
  5327. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tanstack.svg +1 -0
  5328. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/taobao.svg +1 -0
  5329. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tapas.svg +1 -0
  5330. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/target.svg +1 -0
  5331. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tarom.svg +1 -0
  5332. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tarteaucitron.svg +1 -0
  5333. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/task.svg +1 -0
  5334. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tasmota.svg +1 -0
  5335. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tata.svg +1 -0
  5336. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tauri.svg +1 -0
  5337. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/taxbuzz.svg +1 -0
  5338. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tcs.svg +1 -0
  5339. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/teal.svg +1 -0
  5340. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/teamcity.svg +1 -0
  5341. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/teamspeak.svg +1 -0
  5342. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/teamviewer.svg +1 -0
  5343. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/techcrunch.svg +1 -0
  5344. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ted.svg +1 -0
  5345. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/teepublic.svg +1 -0
  5346. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/teespring.svg +1 -0
  5347. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tekton.svg +1 -0
  5348. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tele5.svg +1 -0
  5349. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/telefonica.svg +1 -0
  5350. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/telegram.svg +1 -0
  5351. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/telegraph.svg +1 -0
  5352. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/telenor.svg +1 -0
  5353. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/telequebec.svg +1 -0
  5354. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/temporal.svg +1 -0
  5355. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tencentqq.svg +1 -0
  5356. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tensorflow.svg +1 -0
  5357. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/teradata.svg +1 -0
  5358. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/teratail.svg +1 -0
  5359. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/termius.svg +1 -0
  5360. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/terraform.svg +1 -0
  5361. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tesco.svg +1 -0
  5362. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tesla.svg +1 -0
  5363. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/testcafe.svg +1 -0
  5364. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/testin.svg +1 -0
  5365. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/testinglibrary.svg +1 -0
  5366. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/testrail.svg +1 -0
  5367. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tether.svg +1 -0
  5368. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/textpattern.svg +1 -0
  5369. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/textual.svg +1 -0
  5370. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tga.svg +1 -0
  5371. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thangs.svg +1 -0
  5372. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thanos.svg +1 -0
  5373. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thealgorithms.svg +1 -0
  5374. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/theboringcompany.svg +1 -0
  5375. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/theconversation.svg +1 -0
  5376. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thefinals.svg +1 -0
  5377. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/theguardian.svg +1 -0
  5378. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/theirishtimes.svg +1 -0
  5379. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/themighty.svg +1 -0
  5380. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/themodelsresource.svg +1 -0
  5381. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/themoviedatabase.svg +1 -0
  5382. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thenorthface.svg +1 -0
  5383. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/theodinproject.svg +1 -0
  5384. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/theplanetarysociety.svg +1 -0
  5385. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/theregister.svg +1 -0
  5386. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thesoundsresource.svg +1 -0
  5387. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thespritersresource.svg +1 -0
  5388. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thestorygraph.svg +1 -0
  5389. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thewashingtonpost.svg +1 -0
  5390. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/theweatherchannel.svg +1 -0
  5391. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thingiverse.svg +1 -0
  5392. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/things.svg +1 -0
  5393. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thinkpad.svg +1 -0
  5394. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thirdweb.svg +1 -0
  5395. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/threadless.svg +1 -0
  5396. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/threads.svg +1 -0
  5397. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/threedotjs.svg +1 -0
  5398. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/threema.svg +1 -0
  5399. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thumbtack.svg +1 -0
  5400. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thunderbird.svg +1 -0
  5401. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thunderstore.svg +1 -0
  5402. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thurgauerkantonalbank.svg +1 -0
  5403. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/thymeleaf.svg +1 -0
  5404. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ticketmaster.svg +1 -0
  5405. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ticktick.svg +1 -0
  5406. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tidal.svg +1 -0
  5407. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tidb.svg +1 -0
  5408. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tiddlywiki.svg +1 -0
  5409. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tide.svg +1 -0
  5410. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tidyverse.svg +1 -0
  5411. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tietoevry.svg +1 -0
  5412. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tiktok.svg +1 -0
  5413. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tildapublishing.svg +1 -0
  5414. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tile.svg +1 -0
  5415. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/timescale.svg +1 -0
  5416. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tina.svg +1 -0
  5417. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tinder.svg +1 -0
  5418. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tindie.svg +1 -0
  5419. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tinkercad.svg +1 -0
  5420. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tinygrad.svg +1 -0
  5421. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tinyletter.svg +1 -0
  5422. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tistory.svg +1 -0
  5423. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tldraw.svg +1 -0
  5424. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tmobile.svg +1 -0
  5425. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tmux.svg +1 -0
  5426. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/todoist.svg +1 -0
  5427. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/toggl.svg +1 -0
  5428. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/toggltrack.svg +1 -0
  5429. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tokio.svg +1 -0
  5430. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tokyometro.svg +1 -0
  5431. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/toll.svg +1 -0
  5432. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/toml.svg +1 -0
  5433. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tomorrowland.svg +1 -0
  5434. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tomtom.svg +1 -0
  5435. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ton.svg +1 -0
  5436. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/topcoder.svg +1 -0
  5437. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/topdotgg.svg +1 -0
  5438. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/toptal.svg +1 -0
  5439. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/torbrowser.svg +1 -0
  5440. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/torizon.svg +1 -0
  5441. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/torproject.svg +1 -0
  5442. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/toshiba.svg +1 -0
  5443. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/totvs.svg +1 -0
  5444. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tourbox.svg +1 -0
  5445. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tower.svg +1 -0
  5446. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/toyota.svg +1 -0
  5447. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tplink.svg +1 -0
  5448. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tqdm.svg +1 -0
  5449. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/traccar.svg +1 -0
  5450. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tradingview.svg +1 -0
  5451. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/traefikmesh.svg +1 -0
  5452. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/traefikproxy.svg +1 -0
  5453. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trailforks.svg +1 -0
  5454. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trainerroad.svg +1 -0
  5455. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trakt.svg +1 -0
  5456. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/transifex.svg +1 -0
  5457. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/transmission.svg +1 -0
  5458. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/transportforireland.svg +1 -0
  5459. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/transportforlondon.svg +1 -0
  5460. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/travisci.svg +1 -0
  5461. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/treehouse.svg +1 -0
  5462. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trello.svg +1 -0
  5463. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trendmicro.svg +1 -0
  5464. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tresorit.svg +1 -0
  5465. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/treyarch.svg +1 -0
  5466. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trezor.svg +1 -0
  5467. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tricentis.svg +1 -0
  5468. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trilium.svg +1 -0
  5469. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/triller.svg +1 -0
  5470. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trillertv.svg +1 -0
  5471. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trimble.svg +1 -0
  5472. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trino.svg +1 -0
  5473. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tripadvisor.svg +1 -0
  5474. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tripdotcom.svg +1 -0
  5475. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trivago.svg +1 -0
  5476. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trivy.svg +1 -0
  5477. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trmnl.svg +1 -0
  5478. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trove.svg +1 -0
  5479. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trpc.svg +1 -0
  5480. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/truenas.svg +1 -0
  5481. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trueup.svg +1 -0
  5482. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trulia.svg +1 -0
  5483. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trustedshops.svg +1 -0
  5484. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/trustpilot.svg +1 -0
  5485. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tryhackme.svg +1 -0
  5486. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tryitonline.svg +1 -0
  5487. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tsnode.svg +1 -0
  5488. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tubi.svg +1 -0
  5489. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tui.svg +1 -0
  5490. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tumblr.svg +1 -0
  5491. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tunein.svg +1 -0
  5492. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/turbo.svg +1 -0
  5493. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/turborepo.svg +1 -0
  5494. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/turbosquid.svg +1 -0
  5495. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/turkishairlines.svg +1 -0
  5496. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/turso.svg +1 -0
  5497. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tuta.svg +1 -0
  5498. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tutanota.svg +1 -0
  5499. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tuxedocomputers.svg +1 -0
  5500. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tv4play.svg +1 -0
  5501. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/tvtime.svg +1 -0
  5502. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/twenty.svg +1 -0
  5503. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/twilio.svg +1 -0
  5504. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/twinkly.svg +1 -0
  5505. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/twinmotion.svg +1 -0
  5506. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/twitch.svg +1 -0
  5507. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ty.svg +1 -0
  5508. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/typeform.svg +1 -0
  5509. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/typeorm.svg +1 -0
  5510. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/typer.svg +1 -0
  5511. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/typescript.svg +1 -0
  5512. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/typo3.svg +1 -0
  5513. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/typst.svg +1 -0
  5514. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uber.svg +1 -0
  5515. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ubereats.svg +1 -0
  5516. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ubiquiti.svg +1 -0
  5517. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ubisoft.svg +1 -0
  5518. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ublockorigin.svg +1 -0
  5519. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ubuntu.svg +1 -0
  5520. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ubuntumate.svg +1 -0
  5521. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/udacity.svg +1 -0
  5522. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/udemy.svg +1 -0
  5523. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/udotsdotnews.svg +1 -0
  5524. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ufc.svg +1 -0
  5525. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uikit.svg +1 -0
  5526. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uipath.svg +1 -0
  5527. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ukca.svg +1 -0
  5528. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ultralytics.svg +1 -0
  5529. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ulule.svg +1 -0
  5530. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/umami.svg +1 -0
  5531. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/umbraco.svg +1 -0
  5532. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/umbrel.svg +1 -0
  5533. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uml.svg +1 -0
  5534. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unacademy.svg +1 -0
  5535. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/underarmour.svg +1 -0
  5536. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/underscoredotjs.svg +1 -0
  5537. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/undertale.svg +1 -0
  5538. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unicode.svg +1 -0
  5539. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unilever.svg +1 -0
  5540. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uniqlo.svg +1 -0
  5541. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uniqlo_ja.svg +1 -0
  5542. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unitedairlines.svg +1 -0
  5543. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unitednations.svg +1 -0
  5544. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unity.svg +1 -0
  5545. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unjs.svg +1 -0
  5546. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unlicense.svg +1 -0
  5547. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unocss.svg +1 -0
  5548. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unpkg.svg +1 -0
  5549. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unraid.svg +1 -0
  5550. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unrealengine.svg +1 -0
  5551. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unsplash.svg +1 -0
  5552. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/unstop.svg +1 -0
  5553. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/untappd.svg +1 -0
  5554. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/upcloud.svg +1 -0
  5555. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uphold.svg +1 -0
  5556. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uplabs.svg +1 -0
  5557. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/upptime.svg +1 -0
  5558. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ups.svg +1 -0
  5559. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/upstash.svg +1 -0
  5560. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uptimekuma.svg +1 -0
  5561. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uptobox.svg +1 -0
  5562. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/upwork.svg +1 -0
  5563. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uservoice.svg +1 -0
  5564. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/usps.svg +1 -0
  5565. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/utorrent.svg +1 -0
  5566. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/uv.svg +1 -0
  5567. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/v.svg +1 -0
  5568. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/v0.svg +1 -0
  5569. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/v2ex.svg +1 -0
  5570. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/v8.svg +1 -0
  5571. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vaadin.svg +1 -0
  5572. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vagrant.svg +1 -0
  5573. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vala.svg +1 -0
  5574. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/valorant.svg +1 -0
  5575. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/valve.svg +1 -0
  5576. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vanillaextract.svg +1 -0
  5577. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vapor.svg +1 -0
  5578. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vault.svg +1 -0
  5579. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vaultwarden.svg +1 -0
  5580. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vauxhall.svg +1 -0
  5581. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vbulletin.svg +1 -0
  5582. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vectary.svg +1 -0
  5583. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vectorlogozone.svg +1 -0
  5584. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vectorworks.svg +1 -0
  5585. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/veeam.svg +1 -0
  5586. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/veed.svg +1 -0
  5587. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/veepee.svg +1 -0
  5588. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vega.svg +1 -0
  5589. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vegas.svg +1 -0
  5590. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/velocity.svg +1 -0
  5591. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/velog.svg +1 -0
  5592. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vencord.svg +1 -0
  5593. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/venmo.svg +1 -0
  5594. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vercel.svg +1 -0
  5595. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/verdaccio.svg +1 -0
  5596. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/veritas.svg +1 -0
  5597. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/verizon.svg +1 -0
  5598. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vespa.svg +1 -0
  5599. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vestel.svg +1 -0
  5600. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vexxhost.svg +1 -0
  5601. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vfairs.svg +1 -0
  5602. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/viadeo.svg +1 -0
  5603. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/viaplay.svg +1 -0
  5604. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/viber.svg +1 -0
  5605. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/viblo.svg +1 -0
  5606. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/victoriametrics.svg +1 -0
  5607. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/victronenergy.svg +1 -0
  5608. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vikunja.svg +1 -0
  5609. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vim.svg +1 -0
  5610. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vimeo.svg +1 -0
  5611. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vimeolivestream.svg +1 -0
  5612. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vinted.svg +1 -0
  5613. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/virgin.svg +1 -0
  5614. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/virginatlantic.svg +1 -0
  5615. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/virginmedia.svg +1 -0
  5616. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/virtualbox.svg +1 -0
  5617. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/virustotal.svg +1 -0
  5618. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/visa.svg +1 -0
  5619. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/visualbasic.svg +1 -0
  5620. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/visualparadigm.svg +1 -0
  5621. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/visualstudio.svg +1 -0
  5622. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/visualstudioappcenter.svg +1 -0
  5623. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/visualstudiocode.svg +1 -0
  5624. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/visx.svg +1 -0
  5625. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vite.svg +1 -0
  5626. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vitepress.svg +1 -0
  5627. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vitess.svg +1 -0
  5628. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vitest.svg +1 -0
  5629. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vivaldi.svg +1 -0
  5630. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vivawallet.svg +1 -0
  5631. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vivino.svg +1 -0
  5632. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vivint.svg +1 -0
  5633. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vivo.svg +1 -0
  5634. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vk.svg +1 -0
  5635. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vlcmediaplayer.svg +1 -0
  5636. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vllm.svg +1 -0
  5637. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vmware.svg +1 -0
  5638. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vodafone.svg +1 -0
  5639. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/voelkner.svg +1 -0
  5640. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/voidlinux.svg +1 -0
  5641. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/voipdotms.svg +1 -0
  5642. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/volkswagen.svg +1 -0
  5643. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/volvo.svg +1 -0
  5644. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vonage.svg +1 -0
  5645. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vorondesign.svg +1 -0
  5646. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vowpalwabbit.svg +1 -0
  5647. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vox.svg +1 -0
  5648. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vrchat.svg +1 -0
  5649. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vsco.svg +1 -0
  5650. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vscodium.svg +1 -0
  5651. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vtex.svg +1 -0
  5652. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vuedotjs.svg +1 -0
  5653. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vuetify.svg +1 -0
  5654. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vueuse.svg +1 -0
  5655. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vulkan.svg +1 -0
  5656. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vultr.svg +1 -0
  5657. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/vyond.svg +1 -0
  5658. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/w3schools.svg +1 -0
  5659. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wacom.svg +1 -0
  5660. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wagmi.svg +1 -0
  5661. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wagtail.svg +1 -0
  5662. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wails.svg +1 -0
  5663. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wakatime.svg +1 -0
  5664. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/walkman.svg +1 -0
  5665. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wallabag.svg +1 -0
  5666. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/walletconnect.svg +1 -0
  5667. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/walmart.svg +1 -0
  5668. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wantedly.svg +1 -0
  5669. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wappalyzer.svg +1 -0
  5670. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/warnerbros.svg +1 -0
  5671. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/warp.svg +1 -0
  5672. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wasabi.svg +1 -0
  5673. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wasmcloud.svg +1 -0
  5674. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wasmer.svg +1 -0
  5675. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/watchtower.svg +1 -0
  5676. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wattpad.svg +1 -0
  5677. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wayland.svg +1 -0
  5678. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/waze.svg +1 -0
  5679. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wazirx.svg +1 -0
  5680. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wearos.svg +1 -0
  5681. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/weasyl.svg +1 -0
  5682. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/web3dotjs.svg +1 -0
  5683. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webassembly.svg +1 -0
  5684. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webauthn.svg +1 -0
  5685. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webawesome.svg +1 -0
  5686. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webcomponentsdotorg.svg +1 -0
  5687. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webdotde.svg +1 -0
  5688. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webdriverio.svg +1 -0
  5689. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webex.svg +1 -0
  5690. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webflow.svg +1 -0
  5691. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webgl.svg +1 -0
  5692. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webgpu.svg +1 -0
  5693. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/weblate.svg +1 -0
  5694. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webmin.svg +1 -0
  5695. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webmoney.svg +1 -0
  5696. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webpack.svg +1 -0
  5697. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webrtc.svg +1 -0
  5698. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webstorm.svg +1 -0
  5699. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webtoon.svg +1 -0
  5700. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/webtrees.svg +1 -0
  5701. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wechat.svg +1 -0
  5702. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wegame.svg +1 -0
  5703. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/weightsandbiases.svg +1 -0
  5704. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/welcometothejungle.svg +1 -0
  5705. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wellfound.svg +1 -0
  5706. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wellsfargo.svg +1 -0
  5707. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wemo.svg +1 -0
  5708. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/weread.svg +1 -0
  5709. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/westerndigital.svg +1 -0
  5710. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/westernunion.svg +1 -0
  5711. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wetransfer.svg +1 -0
  5712. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wezterm.svg +1 -0
  5713. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wgpu.svg +1 -0
  5714. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/what3words.svg +1 -0
  5715. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/whatsapp.svg +1 -0
  5716. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wheniwork.svg +1 -0
  5717. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wii.svg +1 -0
  5718. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wiiu.svg +1 -0
  5719. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikibooks.svg +1 -0
  5720. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikidata.svg +1 -0
  5721. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikidotgg.svg +1 -0
  5722. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikidotjs.svg +1 -0
  5723. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikimediacommons.svg +1 -0
  5724. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikimediafoundation.svg +1 -0
  5725. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikipedia.svg +1 -0
  5726. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikiquote.svg +1 -0
  5727. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikisource.svg +1 -0
  5728. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikiversity.svg +1 -0
  5729. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wikivoyage.svg +1 -0
  5730. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/winamp.svg +1 -0
  5731. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/windows.svg +1 -0
  5732. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/windows10.svg +1 -0
  5733. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/windows11.svg +1 -0
  5734. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/windows95.svg +1 -0
  5735. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/windowsterminal.svg +1 -0
  5736. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/windowsxp.svg +1 -0
  5737. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/windsurf.svg +1 -0
  5738. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wine.svg +1 -0
  5739. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wipro.svg +1 -0
  5740. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wire.svg +1 -0
  5741. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wireguard.svg +1 -0
  5742. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wireshark.svg +1 -0
  5743. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wise.svg +1 -0
  5744. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wish.svg +1 -0
  5745. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wistia.svg +1 -0
  5746. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wix.svg +1 -0
  5747. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wizzair.svg +1 -0
  5748. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wolfram.svg +1 -0
  5749. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wolframlanguage.svg +1 -0
  5750. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wolframmathematica.svg +1 -0
  5751. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wondershare.svg +1 -0
  5752. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wondersharefilmora.svg +1 -0
  5753. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/woo.svg +1 -0
  5754. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/woocommerce.svg +1 -0
  5755. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wordpress.svg +1 -0
  5756. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/workplace.svg +1 -0
  5757. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/worldhealthorganization.svg +1 -0
  5758. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wpengine.svg +1 -0
  5759. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wpexplorer.svg +1 -0
  5760. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wprocket.svg +1 -0
  5761. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/writedotas.svg +1 -0
  5762. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wwe.svg +1 -0
  5763. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wwise.svg +1 -0
  5764. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wxt.svg +1 -0
  5765. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wykop.svg +1 -0
  5766. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/wyze.svg +1 -0
  5767. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/x.svg +1 -0
  5768. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xamarin.svg +1 -0
  5769. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xaml.svg +1 -0
  5770. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xampp.svg +1 -0
  5771. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xbox.svg +1 -0
  5772. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xcode.svg +1 -0
  5773. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xdadevelopers.svg +1 -0
  5774. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xdotorg.svg +1 -0
  5775. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xendit.svg +1 -0
  5776. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xero.svg +1 -0
  5777. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xfce.svg +1 -0
  5778. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xiaohongshu.svg +1 -0
  5779. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xiaomi.svg +1 -0
  5780. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xing.svg +1 -0
  5781. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xml.svg +1 -0
  5782. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xmpp.svg +1 -0
  5783. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xo.svg +1 -0
  5784. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xrp.svg +1 -0
  5785. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xsplit.svg +1 -0
  5786. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xstate.svg +1 -0
  5787. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xubuntu.svg +1 -0
  5788. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/xyflow.svg +1 -0
  5789. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yaak.svg +1 -0
  5790. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yabai.svg +1 -0
  5791. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yale.svg +1 -0
  5792. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yamahacorporation.svg +1 -0
  5793. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yamahamotorcorporation.svg +1 -0
  5794. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yaml.svg +1 -0
  5795. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yammer.svg +1 -0
  5796. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yandexcloud.svg +1 -0
  5797. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yarn.svg +1 -0
  5798. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ycombinator.svg +1 -0
  5799. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yelp.svg +1 -0
  5800. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yeti.svg +1 -0
  5801. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yew.svg +1 -0
  5802. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yii.svg +1 -0
  5803. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yoast.svg +1 -0
  5804. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yolo.svg +1 -0
  5805. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/youhodler.svg +1 -0
  5806. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/youtube.svg +1 -0
  5807. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/youtubegaming.svg +1 -0
  5808. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/youtubekids.svg +1 -0
  5809. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/youtubemusic.svg +1 -0
  5810. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/youtubeshorts.svg +1 -0
  5811. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/youtubestudio.svg +1 -0
  5812. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/youtubetv.svg +1 -0
  5813. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yr.svg +1 -0
  5814. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yubico.svg +1 -0
  5815. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/yunohost.svg +1 -0
  5816. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zabka.svg +1 -0
  5817. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zaim.svg +1 -0
  5818. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zalando.svg +1 -0
  5819. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zalo.svg +1 -0
  5820. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zap.svg +1 -0
  5821. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zapier.svg +1 -0
  5822. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zara.svg +1 -0
  5823. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zazzle.svg +1 -0
  5824. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zcash.svg +1 -0
  5825. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zcool.svg +1 -0
  5826. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zdf.svg +1 -0
  5827. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zebpay.svg +1 -0
  5828. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zebratechnologies.svg +1 -0
  5829. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zedindustries.svg +1 -0
  5830. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zelle.svg +1 -0
  5831. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zenbrowser.svg +1 -0
  5832. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zend.svg +1 -0
  5833. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zendesk.svg +1 -0
  5834. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zenn.svg +1 -0
  5835. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zenodo.svg +1 -0
  5836. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zensar.svg +1 -0
  5837. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zerodha.svg +1 -0
  5838. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zerotier.svg +1 -0
  5839. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zerply.svg +1 -0
  5840. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zettlr.svg +1 -0
  5841. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zhihu.svg +1 -0
  5842. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zig.svg +1 -0
  5843. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zigbee.svg +1 -0
  5844. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zigbee2mqtt.svg +1 -0
  5845. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/ziggo.svg +1 -0
  5846. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zilch.svg +1 -0
  5847. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zillow.svg +1 -0
  5848. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zincsearch.svg +1 -0
  5849. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zingat.svg +1 -0
  5850. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zod.svg +1 -0
  5851. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zoho.svg +1 -0
  5852. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zoiper.svg +1 -0
  5853. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zola.svg +1 -0
  5854. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zomato.svg +1 -0
  5855. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zoom.svg +1 -0
  5856. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zorin.svg +1 -0
  5857. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zotero.svg +1 -0
  5858. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zsh.svg +1 -0
  5859. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zulip.svg +1 -0
  5860. ppt_master-0.1.0/skills/ppt-master/templates/icons/simple-icons/zyte.svg +1 -0
  5861. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/accessible.svg +13 -0
  5862. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ad-circle.svg +13 -0
  5863. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ad.svg +13 -0
  5864. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/adjustments-horizontal.svg +13 -0
  5865. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/adjustments.svg +15 -0
  5866. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/aerial-lift.svg +13 -0
  5867. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/affiliate.svg +13 -0
  5868. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/air-balloon.svg +14 -0
  5869. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alarm-minus.svg +15 -0
  5870. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alarm-plus.svg +15 -0
  5871. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alarm-snooze.svg +15 -0
  5872. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alarm.svg +15 -0
  5873. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alert-circle.svg +13 -0
  5874. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alert-hexagon.svg +13 -0
  5875. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alert-octagon.svg +13 -0
  5876. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alert-square-rounded.svg +13 -0
  5877. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alert-square.svg +13 -0
  5878. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alert-triangle.svg +13 -0
  5879. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/alien.svg +13 -0
  5880. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-bottom-center.svg +13 -0
  5881. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-bottom-left.svg +13 -0
  5882. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-bottom-right.svg +13 -0
  5883. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-center-middle.svg +13 -0
  5884. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-left-bottom.svg +13 -0
  5885. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-left-middle.svg +13 -0
  5886. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-left-top.svg +13 -0
  5887. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-right-bottom.svg +13 -0
  5888. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-right-middle.svg +13 -0
  5889. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-right-top.svg +13 -0
  5890. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-top-center.svg +13 -0
  5891. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-top-left.svg +13 -0
  5892. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/align-box-top-right.svg +13 -0
  5893. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/analyze.svg +15 -0
  5894. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/app-window.svg +13 -0
  5895. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/apple.svg +13 -0
  5896. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/apps.svg +16 -0
  5897. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/archive.svg +14 -0
  5898. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-content.svg +15 -0
  5899. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-down.svg +14 -0
  5900. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-height.svg +15 -0
  5901. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-left.svg +14 -0
  5902. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-right.svg +14 -0
  5903. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-up.svg +14 -0
  5904. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-autofit-width.svg +14 -0
  5905. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-badge-down.svg +13 -0
  5906. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-badge-left.svg +13 -0
  5907. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-badge-right.svg +13 -0
  5908. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-badge-up.svg +13 -0
  5909. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-down-line.svg +14 -0
  5910. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-down-lines.svg +15 -0
  5911. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-down.svg +13 -0
  5912. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-left-line.svg +15 -0
  5913. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-left-lines.svg +15 -0
  5914. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-left.svg +13 -0
  5915. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-right-line.svg +14 -0
  5916. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-right-lines.svg +15 -0
  5917. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-right.svg +13 -0
  5918. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-up-line.svg +14 -0
  5919. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-up-lines.svg +15 -0
  5920. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-big-up.svg +13 -0
  5921. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-down-circle.svg +13 -0
  5922. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-down-rhombus.svg +13 -0
  5923. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-down-square.svg +13 -0
  5924. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-guide.svg +13 -0
  5925. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-left-circle.svg +13 -0
  5926. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-left-rhombus.svg +13 -0
  5927. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-left-square.svg +13 -0
  5928. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-move-down.svg +13 -0
  5929. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-move-left.svg +13 -0
  5930. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-move-right.svg +13 -0
  5931. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-move-up.svg +14 -0
  5932. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-right-circle.svg +13 -0
  5933. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-right-rhombus.svg +13 -0
  5934. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-right-square.svg +13 -0
  5935. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-up-circle.svg +13 -0
  5936. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-up-rhombus.svg +13 -0
  5937. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/arrow-up-square.svg +13 -0
  5938. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/artboard.svg +21 -0
  5939. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/article.svg +13 -0
  5940. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/aspect-ratio.svg +13 -0
  5941. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/assembly.svg +13 -0
  5942. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/asset.svg +13 -0
  5943. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/atom-2.svg +19 -0
  5944. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/automatic-gearbox.svg +13 -0
  5945. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/award.svg +15 -0
  5946. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/baby-carriage.svg +13 -0
  5947. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/backspace.svg +13 -0
  5948. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-3d.svg +13 -0
  5949. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-4k.svg +13 -0
  5950. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-8k.svg +13 -0
  5951. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-ad.svg +13 -0
  5952. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-ar.svg +13 -0
  5953. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-cc.svg +13 -0
  5954. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-hd.svg +13 -0
  5955. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-sd.svg +13 -0
  5956. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-tm.svg +13 -0
  5957. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-vo.svg +13 -0
  5958. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-vr.svg +13 -0
  5959. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge-wc.svg +13 -0
  5960. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badge.svg +13 -0
  5961. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/badges.svg +14 -0
  5962. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ball-bowling.svg +13 -0
  5963. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/balloon.svg +14 -0
  5964. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ballpen.svg +13 -0
  5965. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bandage.svg +13 -0
  5966. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/barbell.svg +15 -0
  5967. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/barrier-block.svg +13 -0
  5968. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/basket.svg +13 -0
  5969. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bath.svg +13 -0
  5970. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-1.svg +13 -0
  5971. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-2.svg +13 -0
  5972. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-3.svg +13 -0
  5973. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-4.svg +13 -0
  5974. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-automotive.svg +13 -0
  5975. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-vertical-1.svg +13 -0
  5976. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-vertical-2.svg +13 -0
  5977. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-vertical-3.svg +13 -0
  5978. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-vertical-4.svg +13 -0
  5979. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery-vertical.svg +13 -0
  5980. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/battery.svg +13 -0
  5981. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bed-flat.svg +15 -0
  5982. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bed.svg +14 -0
  5983. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/beer.svg +13 -0
  5984. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bell-minus.svg +14 -0
  5985. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bell-plus.svg +14 -0
  5986. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bell-ringing-2.svg +14 -0
  5987. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bell-ringing.svg +16 -0
  5988. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bell-x.svg +14 -0
  5989. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bell-z.svg +14 -0
  5990. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bell.svg +14 -0
  5991. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bike.svg +16 -0
  5992. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/binary-tree-2.svg +13 -0
  5993. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/binary-tree.svg +13 -0
  5994. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/binoculars.svg +13 -0
  5995. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/biohazard.svg +13 -0
  5996. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/blade.svg +13 -0
  5997. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/blender.svg +13 -0
  5998. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/blob.svg +13 -0
  5999. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bolt.svg +13 -0
  6000. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bomb.svg +14 -0
  6001. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bone.svg +13 -0
  6002. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bong.svg +13 -0
  6003. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/book.svg +13 -0
  6004. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bookmark.svg +13 -0
  6005. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bookmarks.svg +14 -0
  6006. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/boom.svg +13 -0
  6007. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bottle.svg +13 -0
  6008. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bounce-left.svg +14 -0
  6009. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bounce-right.svg +14 -0
  6010. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bow.svg +13 -0
  6011. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bowl-chopsticks.svg +15 -0
  6012. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bowl-spoon.svg +14 -0
  6013. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bowl.svg +13 -0
  6014. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/box-align-bottom-left.svg +22 -0
  6015. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/box-align-bottom-right.svg +22 -0
  6016. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/box-align-bottom.svg +19 -0
  6017. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/box-align-left.svg +19 -0
  6018. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/box-align-right.svg +19 -0
  6019. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/box-align-top-left.svg +22 -0
  6020. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/box-align-top-right.svg +22 -0
  6021. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/box-align-top.svg +19 -0
  6022. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/box-multiple.svg +14 -0
  6023. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-angular.svg +13 -0
  6024. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-apple.svg +14 -0
  6025. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-bitbucket.svg +13 -0
  6026. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-discord.svg +13 -0
  6027. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-dribbble.svg +13 -0
  6028. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-facebook.svg +13 -0
  6029. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-github.svg +13 -0
  6030. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-google.svg +13 -0
  6031. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-instagram.svg +13 -0
  6032. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-kick.svg +13 -0
  6033. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-linkedin.svg +13 -0
  6034. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-messenger.svg +13 -0
  6035. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-open-source.svg +13 -0
  6036. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-opera.svg +13 -0
  6037. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-patreon.svg +13 -0
  6038. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-paypal.svg +13 -0
  6039. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-pinterest.svg +13 -0
  6040. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-sketch.svg +13 -0
  6041. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-snapchat.svg +13 -0
  6042. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-spotify.svg +13 -0
  6043. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-steam.svg +13 -0
  6044. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-stripe.svg +13 -0
  6045. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-tabler.svg +13 -0
  6046. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-tiktok.svg +13 -0
  6047. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-tinder.svg +13 -0
  6048. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-tumblr.svg +13 -0
  6049. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-twitter.svg +13 -0
  6050. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-vercel.svg +13 -0
  6051. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-vimeo.svg +13 -0
  6052. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-weibo.svg +14 -0
  6053. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-whatsapp.svg +13 -0
  6054. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-windows.svg +13 -0
  6055. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-x.svg +13 -0
  6056. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brand-youtube.svg +13 -0
  6057. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bread.svg +13 -0
  6058. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/briefcase-2.svg +13 -0
  6059. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/briefcase.svg +13 -0
  6060. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brightness-auto.svg +13 -0
  6061. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brightness-down.svg +21 -0
  6062. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brightness-up.svg +21 -0
  6063. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/brightness.svg +13 -0
  6064. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bubble-text.svg +13 -0
  6065. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bubble.svg +13 -0
  6066. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bug.svg +13 -0
  6067. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/building-bridge-2.svg +13 -0
  6068. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/building-broadcast-tower.svg +15 -0
  6069. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bulb.svg +19 -0
  6070. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/bus.svg +13 -0
  6071. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/butterfly.svg +15 -0
  6072. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cactus.svg +13 -0
  6073. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/calculator.svg +13 -0
  6074. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/calendar-event.svg +13 -0
  6075. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/calendar-month.svg +16 -0
  6076. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/calendar-week.svg +18 -0
  6077. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/calendar.svg +14 -0
  6078. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/camera.svg +13 -0
  6079. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/campfire.svg +15 -0
  6080. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/candle.svg +14 -0
  6081. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cannabis.svg +13 -0
  6082. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/capsule-horizontal.svg +13 -0
  6083. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/capsule.svg +13 -0
  6084. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/capture.svg +17 -0
  6085. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/car-4wd.svg +13 -0
  6086. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/car-crane.svg +13 -0
  6087. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/car-fan.svg +13 -0
  6088. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/car-suv.svg +13 -0
  6089. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/car.svg +13 -0
  6090. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/carambola.svg +13 -0
  6091. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/caravan.svg +13 -0
  6092. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cardboards.svg +13 -0
  6093. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cards.svg +15 -0
  6094. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/caret-down.svg +13 -0
  6095. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/caret-left-right.svg +14 -0
  6096. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/caret-left.svg +13 -0
  6097. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/caret-right.svg +13 -0
  6098. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/caret-up-down.svg +14 -0
  6099. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/caret-up.svg +13 -0
  6100. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/carousel-horizontal.svg +15 -0
  6101. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/carousel-vertical.svg +15 -0
  6102. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cash-banknote.svg +13 -0
  6103. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/category.svg +16 -0
  6104. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/charging-pile.svg +13 -0
  6105. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-area-line.svg +14 -0
  6106. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-area.svg +14 -0
  6107. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-bubble.svg +15 -0
  6108. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-candle.svg +15 -0
  6109. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-donut.svg +13 -0
  6110. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-dots-2.svg +13 -0
  6111. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-dots-3.svg +13 -0
  6112. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-dots.svg +14 -0
  6113. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-funnel.svg +13 -0
  6114. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-grid-dots.svg +13 -0
  6115. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-pie-2.svg +13 -0
  6116. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-pie-3.svg +13 -0
  6117. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-pie-4.svg +13 -0
  6118. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chart-pie.svg +14 -0
  6119. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/check.svg +13 -0
  6120. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chef-hat.svg +14 -0
  6121. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cherry.svg +13 -0
  6122. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chess-bishop.svg +15 -0
  6123. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chess-king.svg +14 -0
  6124. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chess-knight.svg +14 -0
  6125. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chess-queen.svg +14 -0
  6126. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chess-rook.svg +14 -0
  6127. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chess.svg +14 -0
  6128. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chevron-down.svg +13 -0
  6129. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/chevron-right.svg +13 -0
  6130. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/christmas-tree.svg +13 -0
  6131. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-arrow-down-left.svg +13 -0
  6132. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-arrow-down-right.svg +13 -0
  6133. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-arrow-down.svg +13 -0
  6134. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-arrow-left.svg +13 -0
  6135. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-arrow-right.svg +13 -0
  6136. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-arrow-up-left.svg +13 -0
  6137. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-arrow-up-right.svg +13 -0
  6138. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-arrow-up.svg +13 -0
  6139. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-caret-down.svg +13 -0
  6140. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-caret-left.svg +13 -0
  6141. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-caret-right.svg +13 -0
  6142. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-caret-up.svg +13 -0
  6143. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-check.svg +13 -0
  6144. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-chevron-down.svg +13 -0
  6145. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-chevron-left.svg +13 -0
  6146. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-chevron-right.svg +13 -0
  6147. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-chevron-up.svg +13 -0
  6148. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-chevrons-down.svg +13 -0
  6149. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-chevrons-left.svg +13 -0
  6150. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-chevrons-right.svg +13 -0
  6151. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-chevrons-up.svg +13 -0
  6152. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-dot.svg +13 -0
  6153. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-key.svg +13 -0
  6154. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-a.svg +13 -0
  6155. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-b.svg +13 -0
  6156. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-c.svg +13 -0
  6157. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-d.svg +13 -0
  6158. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-e.svg +13 -0
  6159. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-f.svg +13 -0
  6160. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-g.svg +13 -0
  6161. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-h.svg +13 -0
  6162. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-i.svg +13 -0
  6163. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-j.svg +13 -0
  6164. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-k.svg +13 -0
  6165. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-l.svg +13 -0
  6166. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-m.svg +13 -0
  6167. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-n.svg +13 -0
  6168. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-o.svg +13 -0
  6169. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-p.svg +13 -0
  6170. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-q.svg +13 -0
  6171. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-r.svg +13 -0
  6172. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-s.svg +13 -0
  6173. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-t.svg +13 -0
  6174. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-u.svg +13 -0
  6175. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-v.svg +13 -0
  6176. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-w.svg +13 -0
  6177. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-x.svg +13 -0
  6178. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-y.svg +13 -0
  6179. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-letter-z.svg +13 -0
  6180. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-0.svg +13 -0
  6181. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-1.svg +13 -0
  6182. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-2.svg +13 -0
  6183. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-3.svg +13 -0
  6184. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-4.svg +13 -0
  6185. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-5.svg +13 -0
  6186. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-6.svg +13 -0
  6187. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-7.svg +13 -0
  6188. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-8.svg +13 -0
  6189. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-number-9.svg +13 -0
  6190. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-percentage.svg +13 -0
  6191. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-plus.svg +13 -0
  6192. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-rectangle.svg +13 -0
  6193. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle-x.svg +13 -0
  6194. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circle.svg +13 -0
  6195. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/circles.svg +15 -0
  6196. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/click.svg +13 -0
  6197. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clipboard-check.svg +13 -0
  6198. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clipboard-data.svg +13 -0
  6199. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clipboard-list.svg +13 -0
  6200. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clipboard-plus.svg +13 -0
  6201. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clipboard-smile.svg +13 -0
  6202. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clipboard-text.svg +13 -0
  6203. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clipboard-typography.svg +13 -0
  6204. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clipboard-x.svg +13 -0
  6205. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clipboard.svg +13 -0
  6206. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-1.svg +13 -0
  6207. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-10.svg +13 -0
  6208. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-11.svg +13 -0
  6209. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-12.svg +13 -0
  6210. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-2.svg +13 -0
  6211. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-3.svg +13 -0
  6212. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-4.svg +13 -0
  6213. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-5.svg +13 -0
  6214. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-6.svg +13 -0
  6215. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-7.svg +13 -0
  6216. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-8.svg +13 -0
  6217. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock-hour-9.svg +13 -0
  6218. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clock.svg +13 -0
  6219. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cloud-computing.svg +13 -0
  6220. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cloud-data-connection.svg +13 -0
  6221. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cloud.svg +13 -0
  6222. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clover.svg +13 -0
  6223. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/clubs.svg +13 -0
  6224. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/code-circle-2.svg +13 -0
  6225. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/code-circle.svg +13 -0
  6226. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/coin-bitcoin.svg +13 -0
  6227. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/coin-euro.svg +13 -0
  6228. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/coin-monero.svg +13 -0
  6229. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/coin-pound.svg +13 -0
  6230. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/coin-rupee.svg +13 -0
  6231. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/coin-taka.svg +13 -0
  6232. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/coin-yen.svg +13 -0
  6233. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/coin-yuan.svg +13 -0
  6234. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/coin.svg +13 -0
  6235. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/columns-1.svg +13 -0
  6236. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/columns-2.svg +14 -0
  6237. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/columns-3.svg +15 -0
  6238. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/compass.svg +13 -0
  6239. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cone-2.svg +13 -0
  6240. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cone.svg +13 -0
  6241. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/confetti.svg +13 -0
  6242. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/container.svg +23 -0
  6243. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/contrast-2.svg +13 -0
  6244. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/contrast.svg +13 -0
  6245. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cookie-man.svg +13 -0
  6246. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cookie.svg +13 -0
  6247. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/copy-check.svg +13 -0
  6248. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/copy-minus.svg +13 -0
  6249. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/copy-plus.svg +13 -0
  6250. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/copy-x.svg +13 -0
  6251. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/copy.svg +14 -0
  6252. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/copyleft.svg +13 -0
  6253. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/copyright.svg +13 -0
  6254. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/credit-card.svg +13 -0
  6255. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/crop-1-1.svg +13 -0
  6256. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/crop-16-9.svg +13 -0
  6257. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/crop-3-2.svg +13 -0
  6258. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/crop-5-4.svg +13 -0
  6259. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/crop-7-5.svg +13 -0
  6260. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/crop-landscape.svg +13 -0
  6261. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/crop-portrait.svg +13 -0
  6262. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/cross.svg +13 -0
  6263. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/crown.svg +13 -0
  6264. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/current-location.svg +13 -0
  6265. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dashboard.svg +13 -0
  6266. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/database.svg +15 -0
  6267. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-cctv.svg +13 -0
  6268. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-desktop.svg +13 -0
  6269. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-floppy.svg +13 -0
  6270. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-gamepad-2.svg +13 -0
  6271. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-gamepad-3.svg +13 -0
  6272. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-gamepad.svg +13 -0
  6273. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-heart-monitor.svg +13 -0
  6274. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-imac.svg +13 -0
  6275. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-ipad.svg +13 -0
  6276. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-mobile.svg +13 -0
  6277. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-remote.svg +13 -0
  6278. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-speaker.svg +13 -0
  6279. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-tablet.svg +13 -0
  6280. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-tv-old.svg +15 -0
  6281. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-tv.svg +13 -0
  6282. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-unknown.svg +13 -0
  6283. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-usb.svg +13 -0
  6284. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-vision-pro.svg +13 -0
  6285. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/device-watch.svg +13 -0
  6286. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dialpad.svg +19 -0
  6287. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/diamond.svg +13 -0
  6288. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/diamonds.svg +13 -0
  6289. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dice-1.svg +13 -0
  6290. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dice-2.svg +13 -0
  6291. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dice-3.svg +13 -0
  6292. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dice-4.svg +13 -0
  6293. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dice-5.svg +13 -0
  6294. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dice-6.svg +13 -0
  6295. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dice.svg +13 -0
  6296. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/direction-arrows.svg +13 -0
  6297. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/direction-sign.svg +13 -0
  6298. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/directions.svg +13 -0
  6299. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/disc.svg +13 -0
  6300. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/discount.svg +13 -0
  6301. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dots-vertical.svg +15 -0
  6302. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dots.svg +15 -0
  6303. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/download.svg +13 -0
  6304. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/drop-circle.svg +13 -0
  6305. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/droplet-half-2.svg +13 -0
  6306. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/droplet-half.svg +13 -0
  6307. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/droplet.svg +13 -0
  6308. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/droplets.svg +15 -0
  6309. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dual-screen.svg +13 -0
  6310. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/dumpling.svg +13 -0
  6311. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ease-in-control-point.svg +13 -0
  6312. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ease-in-out-control-points.svg +14 -0
  6313. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ease-out-control-point.svg +14 -0
  6314. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/edit.svg +14 -0
  6315. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/egg-cracked.svg +13 -0
  6316. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/egg-fried.svg +13 -0
  6317. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/egg.svg +13 -0
  6318. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/elevator.svg +13 -0
  6319. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/engine.svg +13 -0
  6320. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/escalator-down.svg +14 -0
  6321. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/escalator-up.svg +15 -0
  6322. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/escalator.svg +13 -0
  6323. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/exchange.svg +13 -0
  6324. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/exclamation-circle.svg +13 -0
  6325. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/explicit.svg +13 -0
  6326. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/exposure.svg +13 -0
  6327. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/external-link.svg +13 -0
  6328. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/eye-table.svg +13 -0
  6329. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/eye.svg +13 -0
  6330. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/eyeglass-2.svg +13 -0
  6331. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/eyeglass.svg +13 -0
  6332. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/face-mask.svg +13 -0
  6333. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/favicon.svg +14 -0
  6334. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/feather.svg +16 -0
  6335. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/fence.svg +17 -0
  6336. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ferry.svg +13 -0
  6337. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/fidget-spinner.svg +13 -0
  6338. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-analytics.svg +14 -0
  6339. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-check.svg +13 -0
  6340. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-code-2.svg +13 -0
  6341. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-code.svg +14 -0
  6342. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-cv.svg +13 -0
  6343. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-delta.svg +13 -0
  6344. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-description.svg +14 -0
  6345. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-diff.svg +14 -0
  6346. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-digit.svg +14 -0
  6347. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-dollar.svg +14 -0
  6348. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-dots.svg +14 -0
  6349. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-download.svg +13 -0
  6350. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-euro.svg +14 -0
  6351. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-function.svg +14 -0
  6352. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-horizontal.svg +14 -0
  6353. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-info.svg +14 -0
  6354. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-invoice.svg +14 -0
  6355. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-lambda.svg +13 -0
  6356. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-minus.svg +14 -0
  6357. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-music.svg +14 -0
  6358. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-neutral.svg +14 -0
  6359. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-pencil.svg +14 -0
  6360. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-percent.svg +13 -0
  6361. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-phone.svg +13 -0
  6362. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-power.svg +14 -0
  6363. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-rss.svg +13 -0
  6364. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-sad.svg +14 -0
  6365. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-scissors.svg +14 -0
  6366. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-settings.svg +14 -0
  6367. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-signal.svg +14 -0
  6368. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-smile.svg +14 -0
  6369. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-star.svg +14 -0
  6370. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-text.svg +14 -0
  6371. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-time.svg +14 -0
  6372. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-typography.svg +14 -0
  6373. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-unknown.svg +14 -0
  6374. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-upload.svg +14 -0
  6375. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-vector.svg +14 -0
  6376. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file-x.svg +14 -0
  6377. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/file.svg +14 -0
  6378. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/files.svg +13 -0
  6379. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/filter.svg +13 -0
  6380. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/filters.svg +15 -0
  6381. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/fish-bone.svg +13 -0
  6382. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/flag-2.svg +13 -0
  6383. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/flag-3.svg +13 -0
  6384. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/flag.svg +13 -0
  6385. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/flame.svg +13 -0
  6386. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/flare.svg +13 -0
  6387. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/flask-2.svg +13 -0
  6388. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/flask.svg +13 -0
  6389. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/flower.svg +13 -0
  6390. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/folder-open.svg +13 -0
  6391. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/folder.svg +13 -0
  6392. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/folders.svg +13 -0
  6393. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/forbid-2.svg +13 -0
  6394. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/forbid.svg +13 -0
  6395. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/fountain.svg +13 -0
  6396. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/function.svg +13 -0
  6397. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/garden-cart.svg +13 -0
  6398. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/gas-station.svg +13 -0
  6399. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/gauge.svg +13 -0
  6400. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ghost-2.svg +13 -0
  6401. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ghost-3.svg +13 -0
  6402. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ghost.svg +13 -0
  6403. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/gift-card.svg +13 -0
  6404. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/gift.svg +13 -0
  6405. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/glass-full.svg +13 -0
  6406. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/glass.svg +13 -0
  6407. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/globe.svg +16 -0
  6408. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/golf.svg +14 -0
  6409. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/gps.svg +13 -0
  6410. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/graph.svg +13 -0
  6411. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/grid-pattern.svg +13 -0
  6412. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/guitar-pick.svg +13 -0
  6413. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hanger-2.svg +13 -0
  6414. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/headphones.svg +13 -0
  6415. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/headset.svg +13 -0
  6416. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/heart-broken.svg +13 -0
  6417. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/heart.svg +13 -0
  6418. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/helicopter-landing.svg +13 -0
  6419. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/helicopter.svg +13 -0
  6420. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/help-circle.svg +13 -0
  6421. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/help-hexagon.svg +13 -0
  6422. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/help-octagon.svg +13 -0
  6423. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/help-square-rounded.svg +13 -0
  6424. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/help-square.svg +13 -0
  6425. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/help-triangle.svg +13 -0
  6426. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/help.svg +13 -0
  6427. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-a.svg +13 -0
  6428. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-b.svg +13 -0
  6429. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-c.svg +13 -0
  6430. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-d.svg +13 -0
  6431. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-e.svg +13 -0
  6432. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-f.svg +13 -0
  6433. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-g.svg +13 -0
  6434. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-h.svg +13 -0
  6435. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-i.svg +13 -0
  6436. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-j.svg +13 -0
  6437. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-k.svg +13 -0
  6438. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-l.svg +13 -0
  6439. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-m.svg +13 -0
  6440. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-n.svg +13 -0
  6441. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-o.svg +13 -0
  6442. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-p.svg +13 -0
  6443. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-q.svg +13 -0
  6444. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-r.svg +13 -0
  6445. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-s.svg +13 -0
  6446. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-t.svg +13 -0
  6447. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-u.svg +13 -0
  6448. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-v.svg +13 -0
  6449. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-w.svg +13 -0
  6450. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-x.svg +13 -0
  6451. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-y.svg +13 -0
  6452. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-letter-z.svg +13 -0
  6453. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-minus.svg +13 -0
  6454. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-0.svg +13 -0
  6455. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-1.svg +13 -0
  6456. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-2.svg +13 -0
  6457. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-3.svg +13 -0
  6458. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-4.svg +13 -0
  6459. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-5.svg +13 -0
  6460. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-6.svg +13 -0
  6461. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-7.svg +13 -0
  6462. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-8.svg +13 -0
  6463. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-number-9.svg +13 -0
  6464. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon-plus.svg +13 -0
  6465. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hexagon.svg +13 -0
  6466. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/home-2.svg +13 -0
  6467. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/home.svg +13 -0
  6468. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hospital-circle.svg +13 -0
  6469. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/hourglass.svg +13 -0
  6470. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/icons.svg +17 -0
  6471. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/id.svg +13 -0
  6472. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/info-circle.svg +13 -0
  6473. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/info-hexagon.svg +13 -0
  6474. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/info-octagon.svg +13 -0
  6475. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/info-square-rounded.svg +13 -0
  6476. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/info-square.svg +13 -0
  6477. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/info-triangle.svg +13 -0
  6478. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/inner-shadow-bottom-left.svg +13 -0
  6479. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/inner-shadow-bottom-right.svg +13 -0
  6480. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/inner-shadow-bottom.svg +13 -0
  6481. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/inner-shadow-left.svg +13 -0
  6482. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/inner-shadow-right.svg +13 -0
  6483. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/inner-shadow-top-left.svg +13 -0
  6484. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/inner-shadow-top-right.svg +13 -0
  6485. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/inner-shadow-top.svg +13 -0
  6486. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ironing-1.svg +13 -0
  6487. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ironing-2.svg +13 -0
  6488. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ironing-3.svg +13 -0
  6489. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ironing-steam.svg +16 -0
  6490. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ironing.svg +13 -0
  6491. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/jetpack.svg +13 -0
  6492. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/jewish-star.svg +13 -0
  6493. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/key.svg +13 -0
  6494. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/keyboard.svg +13 -0
  6495. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/keyframe-align-center.svg +17 -0
  6496. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/keyframe-align-horizontal.svg +15 -0
  6497. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/keyframe-align-vertical.svg +15 -0
  6498. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/keyframe.svg +13 -0
  6499. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/keyframes.svg +15 -0
  6500. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/label-important.svg +13 -0
  6501. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/label.svg +13 -0
  6502. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/lasso-polygon.svg +13 -0
  6503. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/laurel-wreath-1.svg +13 -0
  6504. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/laurel-wreath-2.svg +13 -0
  6505. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/laurel-wreath-3.svg +13 -0
  6506. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/laurel-wreath.svg +13 -0
  6507. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-2.svg +16 -0
  6508. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-align-bottom.svg +14 -0
  6509. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-align-center.svg +13 -0
  6510. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-align-left.svg +14 -0
  6511. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-align-middle.svg +13 -0
  6512. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-align-right.svg +14 -0
  6513. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-align-top.svg +14 -0
  6514. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-board-split.svg +17 -0
  6515. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-board.svg +16 -0
  6516. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-bottombar-collapse.svg +13 -0
  6517. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-bottombar-expand.svg +13 -0
  6518. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-bottombar.svg +13 -0
  6519. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-cards.svg +14 -0
  6520. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-dashboard.svg +13 -0
  6521. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-distribute-horizontal.svg +15 -0
  6522. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-distribute-vertical.svg +15 -0
  6523. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-grid.svg +16 -0
  6524. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-kanban.svg +16 -0
  6525. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-list.svg +14 -0
  6526. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-navbar-collapse.svg +13 -0
  6527. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-navbar-expand.svg +13 -0
  6528. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-navbar.svg +13 -0
  6529. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-sidebar-left-collapse.svg +13 -0
  6530. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-sidebar-left-expand.svg +13 -0
  6531. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-sidebar-right-collapse.svg +13 -0
  6532. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-sidebar-right-expand.svg +13 -0
  6533. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-sidebar-right.svg +13 -0
  6534. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout-sidebar.svg +13 -0
  6535. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/layout.svg +15 -0
  6536. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/leaf.svg +13 -0
  6537. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/lego.svg +13 -0
  6538. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/lemon-2.svg +13 -0
  6539. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/library-plus.svg +14 -0
  6540. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/library.svg +14 -0
  6541. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/lifebuoy.svg +13 -0
  6542. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/link.svg +15 -0
  6543. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/list-check.svg +18 -0
  6544. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/list-details.svg +13 -0
  6545. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/list.svg +18 -0
  6546. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/live-photo.svg +13 -0
  6547. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/live-view.svg +17 -0
  6548. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/location.svg +13 -0
  6549. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/lock-square-rounded.svg +13 -0
  6550. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/lock.svg +13 -0
  6551. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/lungs.svg +13 -0
  6552. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/macro.svg +13 -0
  6553. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/magnet.svg +13 -0
  6554. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mail-opened.svg +16 -0
  6555. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mail.svg +14 -0
  6556. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/man.svg +14 -0
  6557. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/manual-gearbox.svg +13 -0
  6558. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/map-pin.svg +13 -0
  6559. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/medical-cross.svg +13 -0
  6560. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/meeple.svg +13 -0
  6561. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/melon.svg +13 -0
  6562. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/menu-2.svg +15 -0
  6563. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/message-2.svg +13 -0
  6564. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/message-chatbot.svg +13 -0
  6565. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/message-circle.svg +13 -0
  6566. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/message-report.svg +13 -0
  6567. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/message.svg +13 -0
  6568. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/messages.svg +14 -0
  6569. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/meteor.svg +13 -0
  6570. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/michelin-star.svg +13 -0
  6571. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mickey.svg +13 -0
  6572. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/microphone.svg +13 -0
  6573. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/microscope.svg +13 -0
  6574. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/microwave.svg +15 -0
  6575. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/military-rank.svg +13 -0
  6576. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/milk.svg +13 -0
  6577. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-angry.svg +13 -0
  6578. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-confuzed.svg +13 -0
  6579. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-crazy-happy.svg +13 -0
  6580. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-empty.svg +13 -0
  6581. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-happy.svg +13 -0
  6582. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-kid.svg +13 -0
  6583. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-neutral.svg +13 -0
  6584. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-sad.svg +13 -0
  6585. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-smile.svg +13 -0
  6586. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mood-wrrr.svg +13 -0
  6587. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/moon.svg +13 -0
  6588. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/motorbike.svg +13 -0
  6589. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mountain.svg +13 -0
  6590. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mouse.svg +13 -0
  6591. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mug.svg +13 -0
  6592. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/mushroom.svg +13 -0
  6593. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/navigation.svg +13 -0
  6594. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/nurse.svg +13 -0
  6595. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/octagon-minus.svg +13 -0
  6596. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/octagon-plus.svg +13 -0
  6597. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/octagon.svg +13 -0
  6598. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/oval-vertical.svg +13 -0
  6599. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/oval.svg +13 -0
  6600. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pacman.svg +13 -0
  6601. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/paint.svg +13 -0
  6602. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/palette.svg +13 -0
  6603. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/panorama-horizontal.svg +13 -0
  6604. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/panorama-vertical.svg +13 -0
  6605. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/parking-circle.svg +13 -0
  6606. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/paw.svg +17 -0
  6607. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pencil.svg +13 -0
  6608. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pennant-2.svg +13 -0
  6609. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pennant.svg +13 -0
  6610. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pentagon.svg +13 -0
  6611. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/phone-call.svg +15 -0
  6612. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/phone-calling.svg +16 -0
  6613. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/phone-check.svg +14 -0
  6614. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/phone-x.svg +14 -0
  6615. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/phone.svg +13 -0
  6616. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/photo.svg +13 -0
  6617. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/picture-in-picture-top.svg +14 -0
  6618. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/picture-in-picture.svg +14 -0
  6619. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pig.svg +13 -0
  6620. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pill.svg +13 -0
  6621. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pin.svg +13 -0
  6622. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pinned.svg +13 -0
  6623. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pizza.svg +13 -0
  6624. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/plane-arrival.svg +14 -0
  6625. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/plane-departure.svg +14 -0
  6626. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/plane-tilt.svg +13 -0
  6627. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/plane.svg +13 -0
  6628. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-1.svg +13 -0
  6629. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-10.svg +13 -0
  6630. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-2.svg +13 -0
  6631. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-3.svg +13 -0
  6632. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-4.svg +13 -0
  6633. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-5.svg +13 -0
  6634. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-6.svg +13 -0
  6635. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-7.svg +13 -0
  6636. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-8.svg +13 -0
  6637. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-9.svg +13 -0
  6638. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-a.svg +13 -0
  6639. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-j.svg +13 -0
  6640. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-k.svg +13 -0
  6641. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-q.svg +13 -0
  6642. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card-star.svg +13 -0
  6643. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/play-card.svg +13 -0
  6644. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/player-eject.svg +14 -0
  6645. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/player-pause.svg +14 -0
  6646. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/player-play.svg +13 -0
  6647. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/player-record.svg +13 -0
  6648. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/player-skip-back.svg +14 -0
  6649. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/player-skip-forward.svg +14 -0
  6650. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/player-stop.svg +13 -0
  6651. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/player-track-next.svg +14 -0
  6652. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/player-track-prev.svg +14 -0
  6653. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/playlist.svg +16 -0
  6654. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/plus.svg +13 -0
  6655. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/point.svg +13 -0
  6656. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/pointer.svg +13 -0
  6657. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/polaroid.svg +16 -0
  6658. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/poo.svg +13 -0
  6659. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/presentation-analytics.svg +13 -0
  6660. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/presentation.svg +13 -0
  6661. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/puzzle.svg +13 -0
  6662. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/quote.svg +14 -0
  6663. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/radar.svg +13 -0
  6664. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/radioactive.svg +15 -0
  6665. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/receipt-dollar.svg +13 -0
  6666. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/receipt-euro.svg +13 -0
  6667. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/receipt-pound.svg +13 -0
  6668. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/receipt-rupee.svg +13 -0
  6669. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/receipt-yen.svg +13 -0
  6670. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/receipt-yuan.svg +13 -0
  6671. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/receipt.svg +13 -0
  6672. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/rectangle-vertical.svg +13 -0
  6673. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/rectangle.svg +13 -0
  6674. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/registered.svg +13 -0
  6675. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/relation-many-to-many.svg +13 -0
  6676. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/relation-one-to-many.svg +13 -0
  6677. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/relation-one-to-one.svg +13 -0
  6678. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/replace.svg +16 -0
  6679. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/report-analytics.svg +13 -0
  6680. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/report-money.svg +13 -0
  6681. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/rollercoaster.svg +13 -0
  6682. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/rosette-discount-check.svg +13 -0
  6683. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/rosette-discount.svg +13 -0
  6684. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/rosette.svg +13 -0
  6685. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/salad.svg +13 -0
  6686. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/satellite.svg +13 -0
  6687. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/scale.svg +13 -0
  6688. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/school.svg +13 -0
  6689. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/scuba-diving-tank.svg +14 -0
  6690. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/search.svg +13 -0
  6691. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/section.svg +13 -0
  6692. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/seedling.svg +13 -0
  6693. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/send.svg +13 -0
  6694. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/settings.svg +13 -0
  6695. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/shield-check.svg +13 -0
  6696. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/shield-checkered.svg +13 -0
  6697. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/shield-half.svg +13 -0
  6698. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/shield-lock.svg +13 -0
  6699. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/shield.svg +13 -0
  6700. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/shirt.svg +13 -0
  6701. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/shopping-cart.svg +13 -0
  6702. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sign-left.svg +13 -0
  6703. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sign-right.svg +13 -0
  6704. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sitemap.svg +16 -0
  6705. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sort-ascending-2.svg +15 -0
  6706. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sort-ascending-shapes.svg +13 -0
  6707. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sort-descending-2.svg +15 -0
  6708. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sort-descending-shapes.svg +13 -0
  6709. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/soup.svg +16 -0
  6710. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/spade.svg +13 -0
  6711. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sparkles-2.svg +14 -0
  6712. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sparkles.svg +15 -0
  6713. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/speedboat.svg +13 -0
  6714. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/spider.svg +13 -0
  6715. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-arrow-down.svg +13 -0
  6716. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-arrow-left.svg +13 -0
  6717. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-arrow-right.svg +13 -0
  6718. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-arrow-up.svg +13 -0
  6719. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-asterisk.svg +13 -0
  6720. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-check.svg +13 -0
  6721. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-chevron-down.svg +13 -0
  6722. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-chevron-left.svg +13 -0
  6723. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-chevron-right.svg +13 -0
  6724. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-chevron-up.svg +13 -0
  6725. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-chevrons-down.svg +13 -0
  6726. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-chevrons-left.svg +13 -0
  6727. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-chevrons-right.svg +13 -0
  6728. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-chevrons-up.svg +13 -0
  6729. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-dot.svg +13 -0
  6730. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f0.svg +13 -0
  6731. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f1.svg +13 -0
  6732. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f2.svg +13 -0
  6733. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f3.svg +13 -0
  6734. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f4.svg +13 -0
  6735. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f5.svg +13 -0
  6736. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f6.svg +13 -0
  6737. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f7.svg +13 -0
  6738. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f8.svg +13 -0
  6739. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-f9.svg +13 -0
  6740. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-a.svg +13 -0
  6741. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-b.svg +13 -0
  6742. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-c.svg +13 -0
  6743. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-d.svg +13 -0
  6744. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-e.svg +13 -0
  6745. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-f.svg +13 -0
  6746. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-g.svg +13 -0
  6747. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-h.svg +13 -0
  6748. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-i.svg +13 -0
  6749. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-j.svg +13 -0
  6750. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-k.svg +13 -0
  6751. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-l.svg +13 -0
  6752. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-m.svg +13 -0
  6753. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-n.svg +13 -0
  6754. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-o.svg +13 -0
  6755. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-p.svg +13 -0
  6756. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-q.svg +13 -0
  6757. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-r.svg +13 -0
  6758. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-s.svg +13 -0
  6759. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-t.svg +13 -0
  6760. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-u.svg +13 -0
  6761. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-v.svg +13 -0
  6762. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-w.svg +13 -0
  6763. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-x.svg +13 -0
  6764. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-y.svg +13 -0
  6765. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-letter-z.svg +13 -0
  6766. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-minus.svg +13 -0
  6767. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-0.svg +13 -0
  6768. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-1.svg +13 -0
  6769. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-2.svg +13 -0
  6770. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-3.svg +13 -0
  6771. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-4.svg +13 -0
  6772. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-5.svg +13 -0
  6773. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-6.svg +13 -0
  6774. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-7.svg +13 -0
  6775. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-8.svg +13 -0
  6776. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-number-9.svg +13 -0
  6777. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rotated.svg +13 -0
  6778. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-arrow-down.svg +13 -0
  6779. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-arrow-left.svg +13 -0
  6780. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-arrow-right.svg +13 -0
  6781. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-arrow-up.svg +13 -0
  6782. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-check.svg +13 -0
  6783. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevron-down.svg +13 -0
  6784. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevron-left.svg +13 -0
  6785. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevron-right.svg +13 -0
  6786. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevron-up.svg +13 -0
  6787. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevrons-down.svg +13 -0
  6788. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevrons-left.svg +13 -0
  6789. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevrons-right.svg +13 -0
  6790. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-chevrons-up.svg +13 -0
  6791. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-a.svg +13 -0
  6792. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-b.svg +13 -0
  6793. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-c.svg +13 -0
  6794. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-d.svg +13 -0
  6795. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-e.svg +13 -0
  6796. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-f.svg +13 -0
  6797. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-g.svg +13 -0
  6798. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-h.svg +13 -0
  6799. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-i.svg +13 -0
  6800. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-j.svg +13 -0
  6801. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-k.svg +13 -0
  6802. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-l.svg +13 -0
  6803. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-m.svg +13 -0
  6804. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-n.svg +13 -0
  6805. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-o.svg +13 -0
  6806. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-p.svg +13 -0
  6807. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-q.svg +13 -0
  6808. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-r.svg +13 -0
  6809. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-s.svg +13 -0
  6810. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-t.svg +13 -0
  6811. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-u.svg +13 -0
  6812. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-v.svg +13 -0
  6813. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-w.svg +13 -0
  6814. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-x.svg +13 -0
  6815. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-y.svg +13 -0
  6816. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-letter-z.svg +13 -0
  6817. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-minus.svg +13 -0
  6818. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-0.svg +13 -0
  6819. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-1.svg +13 -0
  6820. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-2.svg +13 -0
  6821. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-3.svg +13 -0
  6822. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-4.svg +13 -0
  6823. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-5.svg +13 -0
  6824. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-6.svg +13 -0
  6825. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-7.svg +13 -0
  6826. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-8.svg +13 -0
  6827. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-number-9.svg +13 -0
  6828. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-plus.svg +13 -0
  6829. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded-x.svg +13 -0
  6830. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-rounded.svg +13 -0
  6831. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square-x.svg +13 -0
  6832. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/square.svg +13 -0
  6833. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/squares.svg +14 -0
  6834. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/stack-2.svg +13 -0
  6835. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/stack-3.svg +13 -0
  6836. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/stack.svg +13 -0
  6837. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/star-half.svg +13 -0
  6838. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/star.svg +13 -0
  6839. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/stars.svg +15 -0
  6840. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/steering-wheel.svg +13 -0
  6841. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sun-high.svg +13 -0
  6842. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sun-low.svg +13 -0
  6843. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sun.svg +21 -0
  6844. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sunglasses.svg +13 -0
  6845. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sunrise.svg +20 -0
  6846. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sunset-2.svg +21 -0
  6847. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/sunset.svg +19 -0
  6848. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/swipe-down.svg +13 -0
  6849. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/swipe-left.svg +13 -0
  6850. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/swipe-right.svg +13 -0
  6851. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/swipe-up.svg +13 -0
  6852. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/table.svg +16 -0
  6853. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/tag.svg +13 -0
  6854. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/tags.svg +14 -0
  6855. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/temperature-minus.svg +13 -0
  6856. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/temperature-plus.svg +13 -0
  6857. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/template.svg +17 -0
  6858. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/test-pipe-2.svg +13 -0
  6859. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/thumb-down.svg +14 -0
  6860. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/thumb-up.svg +14 -0
  6861. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ticket.svg +13 -0
  6862. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/tilt-shift.svg +21 -0
  6863. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/timeline-event.svg +14 -0
  6864. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/toggle-left.svg +14 -0
  6865. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/toggle-right.svg +14 -0
  6866. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/tools-kitchen-2.svg +13 -0
  6867. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/train.svg +13 -0
  6868. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/transform.svg +16 -0
  6869. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/transition-bottom.svg +13 -0
  6870. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/transition-left.svg +13 -0
  6871. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/transition-right.svg +13 -0
  6872. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/transition-top.svg +13 -0
  6873. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/trash-x.svg +14 -0
  6874. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/trash.svg +14 -0
  6875. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/triangle-inverted.svg +13 -0
  6876. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/triangle-square-circle.svg +15 -0
  6877. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/triangle.svg +13 -0
  6878. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/trolley.svg +13 -0
  6879. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/trophy.svg +13 -0
  6880. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/truck.svg +13 -0
  6881. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/ufo.svg +13 -0
  6882. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/umbrella.svg +13 -0
  6883. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/user.svg +14 -0
  6884. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/versions.svg +15 -0
  6885. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/video-minus.svg +13 -0
  6886. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/video-plus.svg +13 -0
  6887. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/video.svg +14 -0
  6888. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/windmill.svg +13 -0
  6889. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/windsock.svg +13 -0
  6890. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/woman.svg +14 -0
  6891. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/world.svg +21 -0
  6892. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/writing-sign.svg +13 -0
  6893. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/writing.svg +13 -0
  6894. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/x.svg +13 -0
  6895. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/xbox-a.svg +13 -0
  6896. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/xbox-b.svg +13 -0
  6897. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/xbox-x.svg +13 -0
  6898. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/xbox-y.svg +13 -0
  6899. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/yin-yang.svg +14 -0
  6900. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zeppelin.svg +13 -0
  6901. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-cancel.svg +13 -0
  6902. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-check.svg +13 -0
  6903. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-code.svg +13 -0
  6904. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-exclamation.svg +13 -0
  6905. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-in-area.svg +18 -0
  6906. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-in.svg +13 -0
  6907. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-money.svg +13 -0
  6908. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-out-area.svg +13 -0
  6909. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-out.svg +13 -0
  6910. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-pan.svg +17 -0
  6911. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-question.svg +13 -0
  6912. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom-scan.svg +17 -0
  6913. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-filled/zoom.svg +13 -0
  6914. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/a-b-2.svg +23 -0
  6915. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/a-b-off.svg +23 -0
  6916. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/a-b.svg +21 -0
  6917. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/abacus-off.svg +30 -0
  6918. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/abacus.svg +29 -0
  6919. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/abc.svg +22 -0
  6920. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/access-point-off.svg +23 -0
  6921. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/access-point.svg +23 -0
  6922. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/accessible-off.svg +22 -0
  6923. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/accessible.svg +21 -0
  6924. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/activity-heartbeat.svg +19 -0
  6925. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/activity.svg +19 -0
  6926. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ad-2.svg +24 -0
  6927. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ad-circle-off.svg +26 -0
  6928. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ad-circle.svg +22 -0
  6929. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ad-off.svg +24 -0
  6930. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ad.svg +22 -0
  6931. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/address-book-off.svg +25 -0
  6932. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/address-book.svg +24 -0
  6933. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-alt.svg +27 -0
  6934. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-bolt.svg +28 -0
  6935. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-cancel.svg +29 -0
  6936. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-check.svg +27 -0
  6937. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-code.svg +29 -0
  6938. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-cog.svg +34 -0
  6939. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-dollar.svg +29 -0
  6940. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-down.svg +29 -0
  6941. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-exclamation.svg +29 -0
  6942. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-heart.svg +26 -0
  6943. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-horizontal.svg +27 -0
  6944. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-minus.svg +28 -0
  6945. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-off.svg +28 -0
  6946. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-pause.svg +29 -0
  6947. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-pin.svg +29 -0
  6948. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-plus.svg +29 -0
  6949. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-question.svg +29 -0
  6950. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-search.svg +28 -0
  6951. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-share.svg +29 -0
  6952. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-spark.svg +27 -0
  6953. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-star.svg +26 -0
  6954. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-up.svg +29 -0
  6955. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments-x.svg +29 -0
  6956. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/adjustments.svg +27 -0
  6957. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/aerial-lift.svg +22 -0
  6958. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/affiliate.svg +24 -0
  6959. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ai-agent.svg +28 -0
  6960. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ai-agents.svg +27 -0
  6961. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ai-gateway.svg +23 -0
  6962. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ai.svg +21 -0
  6963. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/air-balloon.svg +21 -0
  6964. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/air-conditioning-disabled.svg +20 -0
  6965. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/air-conditioning.svg +23 -0
  6966. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/air-traffic-control.svg +23 -0
  6967. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alarm-average.svg +22 -0
  6968. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alarm-minus.svg +22 -0
  6969. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alarm-off.svg +23 -0
  6970. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alarm-plus.svg +23 -0
  6971. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alarm-smoke.svg +23 -0
  6972. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alarm-snooze.svg +22 -0
  6973. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alarm.svg +22 -0
  6974. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/album-off.svg +21 -0
  6975. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/album.svg +20 -0
  6976. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-circle-off.svg +22 -0
  6977. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-circle.svg +21 -0
  6978. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-hexagon-off.svg +23 -0
  6979. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-hexagon.svg +21 -0
  6980. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-octagon.svg +21 -0
  6981. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-small-off.svg +21 -0
  6982. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-small.svg +20 -0
  6983. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-square-rounded-off.svg +22 -0
  6984. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-square-rounded.svg +21 -0
  6985. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-square.svg +21 -0
  6986. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-triangle-off.svg +22 -0
  6987. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alert-triangle.svg +21 -0
  6988. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alien.svg +22 -0
  6989. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-bottom-center.svg +22 -0
  6990. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-bottom-left.svg +22 -0
  6991. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-bottom-right.svg +22 -0
  6992. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-center-bottom.svg +22 -0
  6993. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-center-middle.svg +22 -0
  6994. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-center-stretch.svg +22 -0
  6995. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-center-top.svg +22 -0
  6996. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-left-bottom.svg +22 -0
  6997. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-left-middle.svg +22 -0
  6998. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-left-stretch.svg +22 -0
  6999. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-left-top.svg +22 -0
  7000. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-right-bottom.svg +22 -0
  7001. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-right-middle.svg +22 -0
  7002. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-right-stretch.svg +22 -0
  7003. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-right-top.svg +22 -0
  7004. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-top-center.svg +22 -0
  7005. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-top-left.svg +22 -0
  7006. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-box-top-right.svg +22 -0
  7007. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-center.svg +21 -0
  7008. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-justified.svg +21 -0
  7009. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-left-2.svg +22 -0
  7010. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-left.svg +21 -0
  7011. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-right-2.svg +22 -0
  7012. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/align-right.svg +21 -0
  7013. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alpha.svg +19 -0
  7014. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-arabic.svg +22 -0
  7015. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-bangla.svg +22 -0
  7016. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-cyrillic.svg +20 -0
  7017. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-greek.svg +21 -0
  7018. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-hebrew.svg +21 -0
  7019. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-korean.svg +21 -0
  7020. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-latin.svg +21 -0
  7021. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-polish.svg +22 -0
  7022. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-runes.svg +21 -0
  7023. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alphabet-thai.svg +19 -0
  7024. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/alt.svg +23 -0
  7025. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ambulance.svg +22 -0
  7026. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ampersand.svg +19 -0
  7027. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/analyze-off.svg +24 -0
  7028. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/analyze.svg +23 -0
  7029. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/anchor-off.svg +24 -0
  7030. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/anchor.svg +20 -0
  7031. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/angle.svg +23 -0
  7032. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ankh.svg +20 -0
  7033. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/antenna-bars-1.svg +22 -0
  7034. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/antenna-bars-2.svg +22 -0
  7035. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/antenna-bars-3.svg +22 -0
  7036. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/antenna-bars-4.svg +22 -0
  7037. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/antenna-bars-5.svg +22 -0
  7038. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/antenna-bars-off.svg +24 -0
  7039. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/antenna-off.svg +25 -0
  7040. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/antenna.svg +24 -0
  7041. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/aperture-off.svg +25 -0
  7042. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/aperture.svg +24 -0
  7043. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/api-app-off.svg +23 -0
  7044. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/api-app.svg +22 -0
  7045. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/api-book.svg +30 -0
  7046. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/api-off.svg +23 -0
  7047. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/api.svg +22 -0
  7048. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/app-window.svg +21 -0
  7049. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/apple.svg +21 -0
  7050. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/apps-off.svg +24 -0
  7051. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/apps.svg +23 -0
  7052. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/archery-arrow.svg +21 -0
  7053. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/archive-off.svg +22 -0
  7054. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/archive.svg +21 -0
  7055. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/armchair-2-off.svg +24 -0
  7056. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/armchair-2.svg +23 -0
  7057. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/armchair-off.svg +23 -0
  7058. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/armchair.svg +22 -0
  7059. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-content.svg +23 -0
  7060. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-down.svg +21 -0
  7061. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-height.svg +23 -0
  7062. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-left.svg +21 -0
  7063. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-right.svg +21 -0
  7064. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-up.svg +21 -0
  7065. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-autofit-width.svg +23 -0
  7066. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-back-up-double.svg +21 -0
  7067. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-back-up.svg +20 -0
  7068. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-back.svg +19 -0
  7069. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-badge-down.svg +19 -0
  7070. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-badge-left.svg +19 -0
  7071. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-badge-right.svg +19 -0
  7072. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-badge-up.svg +19 -0
  7073. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-both.svg +23 -0
  7074. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-down.svg +22 -0
  7075. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-left.svg +22 -0
  7076. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-right.svg +22 -0
  7077. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-down-dashed.svg +22 -0
  7078. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-down.svg +22 -0
  7079. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-left-dashed.svg +22 -0
  7080. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-left.svg +22 -0
  7081. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-right-dashed.svg +22 -0
  7082. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-right.svg +22 -0
  7083. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-up-dashed.svg +22 -0
  7084. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-to-up.svg +22 -0
  7085. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bar-up.svg +22 -0
  7086. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bear-left-2.svg +21 -0
  7087. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bear-left.svg +20 -0
  7088. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bear-right-2.svg +21 -0
  7089. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bear-right.svg +20 -0
  7090. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-down-line.svg +20 -0
  7091. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-down-lines.svg +21 -0
  7092. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-down.svg +19 -0
  7093. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-left-line.svg +20 -0
  7094. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-left-lines.svg +21 -0
  7095. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-left.svg +19 -0
  7096. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-right-line.svg +20 -0
  7097. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-right-lines.svg +21 -0
  7098. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-right.svg +19 -0
  7099. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-up-line.svg +20 -0
  7100. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-up-lines.svg +21 -0
  7101. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-big-up.svg +19 -0
  7102. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-bounce.svg +21 -0
  7103. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-capsule.svg +20 -0
  7104. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-curve-left.svg +20 -0
  7105. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-curve-right.svg +20 -0
  7106. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-bar.svg +21 -0
  7107. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-circle.svg +21 -0
  7108. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-dashed.svg +21 -0
  7109. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-from-arc.svg +21 -0
  7110. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-left-circle.svg +21 -0
  7111. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-left.svg +20 -0
  7112. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-rhombus.svg +21 -0
  7113. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-right-circle.svg +21 -0
  7114. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-right.svg +20 -0
  7115. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-square.svg +21 -0
  7116. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-tail.svg +21 -0
  7117. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down-to-arc.svg +21 -0
  7118. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-down.svg +21 -0
  7119. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-elbow-left.svg +20 -0
  7120. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-elbow-right.svg +20 -0
  7121. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-fork.svg +22 -0
  7122. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-forward-up-double.svg +21 -0
  7123. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-forward-up.svg +20 -0
  7124. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-forward.svg +19 -0
  7125. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-guide.svg +21 -0
  7126. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-iteration.svg +21 -0
  7127. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left-bar.svg +21 -0
  7128. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left-circle.svg +21 -0
  7129. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left-dashed.svg +21 -0
  7130. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left-from-arc.svg +21 -0
  7131. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left-rhombus.svg +21 -0
  7132. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left-right.svg +22 -0
  7133. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left-square.svg +21 -0
  7134. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left-tail.svg +21 -0
  7135. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left-to-arc.svg +21 -0
  7136. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-left.svg +21 -0
  7137. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-loop-left-2.svg +20 -0
  7138. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-loop-left.svg +20 -0
  7139. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-loop-right-2.svg +20 -0
  7140. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-loop-right.svg +20 -0
  7141. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-merge-alt-left.svg +24 -0
  7142. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-merge-alt-right.svg +24 -0
  7143. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-merge-both.svg +22 -0
  7144. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-merge-left.svg +21 -0
  7145. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-merge-right.svg +21 -0
  7146. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-merge.svg +21 -0
  7147. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-move-down.svg +21 -0
  7148. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-move-left.svg +21 -0
  7149. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-move-right.svg +21 -0
  7150. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-move-up.svg +21 -0
  7151. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-down-dashed.svg +21 -0
  7152. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-down.svg +21 -0
  7153. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-left-dashed.svg +21 -0
  7154. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-left.svg +21 -0
  7155. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-right-dashed.svg +21 -0
  7156. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-right.svg +21 -0
  7157. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-up-dashed.svg +21 -0
  7158. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-narrow-up.svg +21 -0
  7159. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-ramp-left-2.svg +21 -0
  7160. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-ramp-left-3.svg +21 -0
  7161. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-ramp-left.svg +22 -0
  7162. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-ramp-right-2.svg +21 -0
  7163. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-ramp-right-3.svg +21 -0
  7164. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-ramp-right.svg +22 -0
  7165. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-right-bar.svg +21 -0
  7166. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-right-circle.svg +21 -0
  7167. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-right-dashed.svg +21 -0
  7168. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-right-from-arc.svg +21 -0
  7169. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-right-rhombus.svg +21 -0
  7170. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-right-square.svg +21 -0
  7171. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-right-tail.svg +21 -0
  7172. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-right-to-arc.svg +21 -0
  7173. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-right.svg +21 -0
  7174. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-first-left.svg +22 -0
  7175. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-first-right.svg +22 -0
  7176. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-last-left.svg +22 -0
  7177. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-last-right.svg +22 -0
  7178. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-left.svg +22 -0
  7179. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-right.svg +22 -0
  7180. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-rotary-straight.svg +22 -0
  7181. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-roundabout-left.svg +20 -0
  7182. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-roundabout-right.svg +20 -0
  7183. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-sharp-turn-left.svg +20 -0
  7184. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-sharp-turn-right.svg +20 -0
  7185. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-bar.svg +21 -0
  7186. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-circle.svg +21 -0
  7187. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-dashed.svg +21 -0
  7188. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-from-arc.svg +21 -0
  7189. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-left-circle.svg +21 -0
  7190. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-left.svg +20 -0
  7191. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-rhombus.svg +21 -0
  7192. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-right-circle.svg +21 -0
  7193. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-right.svg +20 -0
  7194. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-square.svg +21 -0
  7195. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-tail.svg +21 -0
  7196. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up-to-arc.svg +21 -0
  7197. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-up.svg +21 -0
  7198. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-wave-left-down.svg +20 -0
  7199. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-wave-left-up.svg +20 -0
  7200. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-wave-right-down.svg +20 -0
  7201. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-wave-right-up.svg +20 -0
  7202. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrow-zig-zag.svg +20 -0
  7203. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-cross.svg +23 -0
  7204. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-diagonal-2.svg +22 -0
  7205. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-diagonal-minimize-2.svg +22 -0
  7206. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-diagonal-minimize.svg +22 -0
  7207. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-diagonal.svg +22 -0
  7208. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-diff.svg +24 -0
  7209. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-double-ne-sw.svg +22 -0
  7210. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-double-nw-se.svg +22 -0
  7211. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-double-se-nw.svg +22 -0
  7212. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-double-sw-ne.svg +22 -0
  7213. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-down-up.svg +22 -0
  7214. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-down.svg +22 -0
  7215. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-exchange-2.svg +20 -0
  7216. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-exchange.svg +20 -0
  7217. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-horizontal.svg +21 -0
  7218. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-join-2.svg +21 -0
  7219. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-join.svg +21 -0
  7220. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-left-down.svg +21 -0
  7221. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-left-right.svg +22 -0
  7222. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-left.svg +22 -0
  7223. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-maximize.svg +26 -0
  7224. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-minimize.svg +26 -0
  7225. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-move-horizontal.svg +22 -0
  7226. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-move-vertical.svg +22 -0
  7227. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-move.svg +26 -0
  7228. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-random.svg +26 -0
  7229. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-right-down.svg +21 -0
  7230. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-right-left.svg +22 -0
  7231. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-right.svg +22 -0
  7232. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-shuffle-2.svg +22 -0
  7233. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-shuffle.svg +22 -0
  7234. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-sort.svg +20 -0
  7235. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-split-2.svg +22 -0
  7236. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-split.svg +22 -0
  7237. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-transfer-down.svg +24 -0
  7238. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-transfer-up-down.svg +26 -0
  7239. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-transfer-up.svg +24 -0
  7240. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-up-down.svg +22 -0
  7241. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-up-left.svg +21 -0
  7242. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-up-right.svg +21 -0
  7243. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-up.svg +22 -0
  7244. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/arrows-vertical.svg +21 -0
  7245. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/artboard-off.svg +29 -0
  7246. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/artboard.svg +27 -0
  7247. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/article-off.svg +23 -0
  7248. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/article.svg +22 -0
  7249. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/aspect-ratio-off.svg +22 -0
  7250. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/aspect-ratio.svg +21 -0
  7251. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/assembly-off.svg +21 -0
  7252. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/assembly.svg +20 -0
  7253. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/asset.svg +24 -0
  7254. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/asterisk-simple.svg +23 -0
  7255. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/asterisk.svg +24 -0
  7256. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/at-off.svg +21 -0
  7257. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/at.svg +20 -0
  7258. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/atom-2.svg +25 -0
  7259. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/atom-off.svg +22 -0
  7260. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/atom.svg +21 -0
  7261. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/augmented-reality-2.svg +23 -0
  7262. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/augmented-reality-off.svg +26 -0
  7263. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/augmented-reality.svg +25 -0
  7264. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/auth-2fa.svg +23 -0
  7265. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/automatic-gearbox.svg +23 -0
  7266. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/automation.svg +21 -0
  7267. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/avocado.svg +20 -0
  7268. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/award-off.svg +22 -0
  7269. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/award.svg +21 -0
  7270. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/axe.svg +20 -0
  7271. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/axis-x.svg +23 -0
  7272. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/axis-y.svg +23 -0
  7273. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/baby-bottle.svg +21 -0
  7274. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/baby-carriage.svg +24 -0
  7275. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/background.svg +23 -0
  7276. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/backhoe.svg +26 -0
  7277. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/backpack-off.svg +22 -0
  7278. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/backpack.svg +22 -0
  7279. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/backslash.svg +19 -0
  7280. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/backspace.svg +20 -0
  7281. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-2k.svg +23 -0
  7282. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-3d.svg +21 -0
  7283. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-3k.svg +23 -0
  7284. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-4k.svg +24 -0
  7285. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-5k.svg +23 -0
  7286. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-8k.svg +23 -0
  7287. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-ad-off.svg +23 -0
  7288. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-ad.svg +22 -0
  7289. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-ar.svg +22 -0
  7290. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-cc.svg +21 -0
  7291. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-hd.svg +23 -0
  7292. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-off.svg +20 -0
  7293. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-sd.svg +21 -0
  7294. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-tm.svg +22 -0
  7295. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-vo.svg +21 -0
  7296. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-vr.svg +21 -0
  7297. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge-wc.svg +21 -0
  7298. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badge.svg +19 -0
  7299. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badges-off.svg +21 -0
  7300. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/badges.svg +20 -0
  7301. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/baguette.svg +22 -0
  7302. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ball-american-football-off.svg +24 -0
  7303. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ball-american-football.svg +24 -0
  7304. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ball-baseball.svg +27 -0
  7305. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ball-basketball.svg +23 -0
  7306. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ball-bowling.svg +22 -0
  7307. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ball-football-off.svg +26 -0
  7308. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ball-football.svg +21 -0
  7309. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ball-tennis.svg +21 -0
  7310. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ball-volleyball.svg +25 -0
  7311. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/balloon-off.svg +22 -0
  7312. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/balloon.svg +21 -0
  7313. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ballpen-off.svg +23 -0
  7314. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ballpen.svg +21 -0
  7315. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ban.svg +20 -0
  7316. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bandage-off.svg +22 -0
  7317. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bandage.svg +23 -0
  7318. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/barbell-off.svg +26 -0
  7319. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/barbell.svg +25 -0
  7320. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/barcode-off.svg +27 -0
  7321. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/barcode.svg +26 -0
  7322. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/barrel-off.svg +24 -0
  7323. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/barrel.svg +23 -0
  7324. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/barrier-block-off.svg +31 -0
  7325. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/barrier-block.svg +28 -0
  7326. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/baseline-density-large.svg +20 -0
  7327. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/baseline-density-medium.svg +21 -0
  7328. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/baseline-density-small.svg +22 -0
  7329. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/baseline.svg +21 -0
  7330. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-bolt.svg +23 -0
  7331. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-cancel.svg +24 -0
  7332. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-check.svg +23 -0
  7333. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-code.svg +24 -0
  7334. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-cog.svg +29 -0
  7335. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-discount.svg +25 -0
  7336. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-dollar.svg +24 -0
  7337. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-down.svg +24 -0
  7338. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-exclamation.svg +24 -0
  7339. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-heart.svg +23 -0
  7340. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-minus.svg +23 -0
  7341. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-off.svg +23 -0
  7342. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-pause.svg +24 -0
  7343. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-pin.svg +24 -0
  7344. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-plus.svg +24 -0
  7345. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-question.svg +24 -0
  7346. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-search.svg +24 -0
  7347. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-share.svg +24 -0
  7348. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-star.svg +23 -0
  7349. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-up.svg +24 -0
  7350. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket-x.svg +24 -0
  7351. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/basket.svg +22 -0
  7352. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bat.svg +20 -0
  7353. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bath-off.svg +23 -0
  7354. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bath.svg +22 -0
  7355. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-1.svg +20 -0
  7356. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-2.svg +21 -0
  7357. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-3.svg +22 -0
  7358. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-4.svg +23 -0
  7359. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-automotive.svg +24 -0
  7360. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-charging-2.svg +23 -0
  7361. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-charging.svg +21 -0
  7362. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-eco.svg +21 -0
  7363. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-exclamation.svg +21 -0
  7364. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-off.svg +20 -0
  7365. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-spark.svg +20 -0
  7366. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical-1.svg +20 -0
  7367. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical-2.svg +21 -0
  7368. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical-3.svg +22 -0
  7369. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical-4.svg +23 -0
  7370. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical-charging-2.svg +23 -0
  7371. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical-charging.svg +20 -0
  7372. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical-eco.svg +21 -0
  7373. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical-exclamation.svg +21 -0
  7374. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical-off.svg +20 -0
  7375. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery-vertical.svg +19 -0
  7376. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/battery.svg +19 -0
  7377. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/beach-off.svg +25 -0
  7378. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/beach.svg +23 -0
  7379. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bed-flat.svg +21 -0
  7380. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bed-off.svg +23 -0
  7381. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bed.svg +22 -0
  7382. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/beer-off.svg +21 -0
  7383. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/beer.svg +20 -0
  7384. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-bolt.svg +21 -0
  7385. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-cancel.svg +22 -0
  7386. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-check.svg +21 -0
  7387. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-code.svg +22 -0
  7388. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-cog.svg +27 -0
  7389. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-dollar.svg +22 -0
  7390. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-down.svg +22 -0
  7391. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-exclamation.svg +22 -0
  7392. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-heart.svg +21 -0
  7393. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-minus.svg +21 -0
  7394. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-off.svg +21 -0
  7395. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-pause.svg +22 -0
  7396. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-pin.svg +22 -0
  7397. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-plus.svg +22 -0
  7398. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-question.svg +22 -0
  7399. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-ringing-2.svg +20 -0
  7400. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-ringing.svg +22 -0
  7401. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-school.svg +23 -0
  7402. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-search.svg +22 -0
  7403. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-share.svg +22 -0
  7404. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-star.svg +21 -0
  7405. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-up.svg +22 -0
  7406. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-x.svg +22 -0
  7407. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell-z.svg +21 -0
  7408. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bell.svg +20 -0
  7409. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/beta.svg +19 -0
  7410. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bible.svg +22 -0
  7411. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bike-off.svg +23 -0
  7412. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bike.svg +22 -0
  7413. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/binary-off.svg +25 -0
  7414. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/binary-tree-2.svg +25 -0
  7415. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/binary-tree.svg +27 -0
  7416. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/binary.svg +22 -0
  7417. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/binoculars.svg +25 -0
  7418. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/biohazard-off.svg +26 -0
  7419. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/biohazard.svg +20 -0
  7420. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/blade.svg +24 -0
  7421. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bleach-chlorine.svg +21 -0
  7422. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bleach-no-chlorine.svg +21 -0
  7423. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bleach-off.svg +20 -0
  7424. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bleach.svg +19 -0
  7425. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/blend-mode.svg +20 -0
  7426. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/blender.svg +23 -0
  7427. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/blind.svg +23 -0
  7428. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/blob.svg +19 -0
  7429. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/blockquote.svg +24 -0
  7430. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/blocks.svg +20 -0
  7431. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bluetooth-connected.svg +21 -0
  7432. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bluetooth-off.svg +20 -0
  7433. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bluetooth-x.svg +21 -0
  7434. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bluetooth.svg +19 -0
  7435. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/blur-off.svg +26 -0
  7436. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/blur.svg +25 -0
  7437. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bmp.svg +21 -0
  7438. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/body-scan.svg +26 -0
  7439. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bold-off.svg +21 -0
  7440. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bold.svg +20 -0
  7441. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bolt-off.svg +20 -0
  7442. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bolt.svg +19 -0
  7443. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bomb.svg +21 -0
  7444. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bone-off.svg +20 -0
  7445. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bone.svg +19 -0
  7446. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bong-off.svg +22 -0
  7447. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bong.svg +21 -0
  7448. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/book-2.svg +21 -0
  7449. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/book-download.svg +22 -0
  7450. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/book-off.svg +24 -0
  7451. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/book-upload.svg +22 -0
  7452. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/book.svg +23 -0
  7453. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bookmark-ai.svg +22 -0
  7454. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bookmark-edit.svg +20 -0
  7455. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bookmark-minus.svg +20 -0
  7456. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bookmark-off.svg +20 -0
  7457. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bookmark-plus.svg +21 -0
  7458. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bookmark-question.svg +21 -0
  7459. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bookmark.svg +19 -0
  7460. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bookmarks-off.svg +21 -0
  7461. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bookmarks.svg +20 -0
  7462. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/books-off.svg +29 -0
  7463. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/books.svg +25 -0
  7464. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/boom.svg +19 -0
  7465. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-all.svg +21 -0
  7466. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-bottom-plus.svg +32 -0
  7467. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-bottom.svg +35 -0
  7468. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-corner-ios.svg +19 -0
  7469. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-corner-pill.svg +19 -0
  7470. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-corner-rounded.svg +19 -0
  7471. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-corner-square.svg +19 -0
  7472. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-corners.svg +22 -0
  7473. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-horizontal.svg +35 -0
  7474. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-inner.svg +32 -0
  7475. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-left-plus.svg +32 -0
  7476. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-left.svg +35 -0
  7477. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-none.svg +39 -0
  7478. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-outer.svg +24 -0
  7479. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-radius.svg +30 -0
  7480. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-right-plus.svg +32 -0
  7481. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-right.svg +35 -0
  7482. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-sides.svg +22 -0
  7483. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-style-2.svg +27 -0
  7484. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-style.svg +26 -0
  7485. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-top-plus.svg +32 -0
  7486. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-top.svg +35 -0
  7487. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/border-vertical.svg +35 -0
  7488. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bot-id.svg +26 -0
  7489. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bottle-off.svg +22 -0
  7490. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bottle.svg +21 -0
  7491. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bounce-left.svg +20 -0
  7492. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bounce-right.svg +20 -0
  7493. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bow.svg +22 -0
  7494. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bowl-chopsticks.svg +21 -0
  7495. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bowl-spoon.svg +21 -0
  7496. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bowl.svg +19 -0
  7497. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bowling.svg +24 -0
  7498. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-align-bottom-left.svg +28 -0
  7499. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-align-bottom-right.svg +28 -0
  7500. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-align-bottom.svg +25 -0
  7501. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-align-left.svg +25 -0
  7502. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-align-right.svg +25 -0
  7503. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-align-top-left.svg +28 -0
  7504. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-align-top-right.svg +28 -0
  7505. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-align-top.svg +25 -0
  7506. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-margin.svg +35 -0
  7507. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-model-2-off.svg +21 -0
  7508. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-model-2.svg +20 -0
  7509. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-model-off.svg +25 -0
  7510. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-model.svg +24 -0
  7511. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-0.svg +21 -0
  7512. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-1.svg +21 -0
  7513. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-2.svg +21 -0
  7514. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-3.svg +22 -0
  7515. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-4.svg +21 -0
  7516. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-5.svg +21 -0
  7517. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-6.svg +22 -0
  7518. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-7.svg +21 -0
  7519. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-8.svg +22 -0
  7520. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple-9.svg +22 -0
  7521. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-multiple.svg +20 -0
  7522. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-off.svg +23 -0
  7523. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box-padding.svg +27 -0
  7524. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/box.svg +22 -0
  7525. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/braces-off.svg +21 -0
  7526. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/braces.svg +20 -0
  7527. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brackets-angle-off.svg +23 -0
  7528. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brackets-angle.svg +20 -0
  7529. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brackets-contain-end.svg +22 -0
  7530. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brackets-contain-start.svg +22 -0
  7531. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brackets-contain.svg +23 -0
  7532. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brackets-off.svg +21 -0
  7533. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brackets.svg +20 -0
  7534. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/braille.svg +24 -0
  7535. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brain.svg +24 -0
  7536. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-4chan.svg +23 -0
  7537. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-abstract.svg +21 -0
  7538. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-adobe-after-effect.svg +21 -0
  7539. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-adobe-illustrator.svg +22 -0
  7540. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-adobe-indesign.svg +22 -0
  7541. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-adobe-photoshop.svg +21 -0
  7542. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-adobe-premiere.svg +21 -0
  7543. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-adobe-xd.svg +22 -0
  7544. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-adobe.svg +19 -0
  7545. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-adonis-js.svg +20 -0
  7546. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-airbnb.svg +19 -0
  7547. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-airtable.svg +21 -0
  7548. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-algolia.svg +19 -0
  7549. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-alipay.svg +22 -0
  7550. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-alpine-js.svg +20 -0
  7551. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-amazon.svg +20 -0
  7552. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-amd.svg +20 -0
  7553. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-amie.svg +20 -0
  7554. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-amigo.svg +20 -0
  7555. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-among-us.svg +21 -0
  7556. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-android.svg +25 -0
  7557. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-angular.svg +21 -0
  7558. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-ansible.svg +20 -0
  7559. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-ao3.svg +21 -0
  7560. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-appgallery.svg +20 -0
  7561. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-apple-arcade.svg +22 -0
  7562. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-apple-news.svg +21 -0
  7563. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-apple-podcast.svg +21 -0
  7564. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-apple.svg +20 -0
  7565. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-appstore.svg +22 -0
  7566. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-arc.svg +22 -0
  7567. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-asana.svg +21 -0
  7568. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-astro.svg +20 -0
  7569. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-auth0.svg +20 -0
  7570. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-aws.svg +24 -0
  7571. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-azure.svg +20 -0
  7572. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-backbone.svg +20 -0
  7573. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-badoo.svg +20 -0
  7574. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-baidu.svg +23 -0
  7575. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bandcamp.svg +19 -0
  7576. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bandlab.svg +20 -0
  7577. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-beats.svg +21 -0
  7578. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bebo.svg +19 -0
  7579. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-behance.svg +22 -0
  7580. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bilibili.svg +23 -0
  7581. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-binance.svg +23 -0
  7582. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bing.svg +19 -0
  7583. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bitbucket.svg +20 -0
  7584. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-blackberry.svg +25 -0
  7585. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-blender.svg +23 -0
  7586. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-blogger.svg +21 -0
  7587. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bluesky.svg +19 -0
  7588. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-booking.svg +21 -0
  7589. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bootstrap.svg +21 -0
  7590. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bulma.svg +19 -0
  7591. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bumble.svg +22 -0
  7592. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-bunpo.svg +19 -0
  7593. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-c-sharp.svg +23 -0
  7594. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cake.svg +19 -0
  7595. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cakephp.svg +23 -0
  7596. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-campaignmonitor.svg +19 -0
  7597. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-carbon.svg +20 -0
  7598. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cashapp.svg +19 -0
  7599. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-chrome.svg +23 -0
  7600. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cinema-4d.svg +23 -0
  7601. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-citymapper.svg +22 -0
  7602. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cloudflare.svg +21 -0
  7603. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-codecov.svg +19 -0
  7604. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-codepen.svg +24 -0
  7605. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-codesandbox.svg +25 -0
  7606. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cohost.svg +21 -0
  7607. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-coinbase.svg +19 -0
  7608. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-comedy-central.svg +20 -0
  7609. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-coreos.svg +21 -0
  7610. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-couchdb.svg +23 -0
  7611. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-couchsurfing.svg +20 -0
  7612. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cpp.svg +23 -0
  7613. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-craft.svg +21 -0
  7614. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-crunchbase.svg +22 -0
  7615. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-css3.svg +20 -0
  7616. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-ctemplar.svg +22 -0
  7617. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cucumber.svg +26 -0
  7618. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cupra.svg +20 -0
  7619. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-cypress.svg +21 -0
  7620. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-d3.svg +23 -0
  7621. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-databricks.svg +19 -0
  7622. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-days-counter.svg +21 -0
  7623. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-dcos.svg +19 -0
  7624. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-debian.svg +20 -0
  7625. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-deezer.svg +28 -0
  7626. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-deliveroo.svg +21 -0
  7627. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-deno.svg +21 -0
  7628. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-denodo.svg +25 -0
  7629. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-deviantart.svg +19 -0
  7630. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-digg.svg +25 -0
  7631. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-dingtalk.svg +20 -0
  7632. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-discord.svg +22 -0
  7633. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-disney.svg +20 -0
  7634. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-disqus.svg +20 -0
  7635. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-django.svg +22 -0
  7636. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-docker.svg +27 -0
  7637. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-doctrine.svg +22 -0
  7638. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-dolby-digital.svg +20 -0
  7639. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-douban.svg +23 -0
  7640. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-dribbble.svg +22 -0
  7641. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-dropbox.svg +20 -0
  7642. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-drops.svg +20 -0
  7643. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-drupal.svg +20 -0
  7644. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-edge.svg +22 -0
  7645. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-elastic.svg +24 -0
  7646. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-electronic-arts.svg +23 -0
  7647. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-ember.svg +19 -0
  7648. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-envato.svg +20 -0
  7649. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-etsy.svg +21 -0
  7650. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-evernote.svg +21 -0
  7651. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-facebook.svg +19 -0
  7652. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-feedly.svg +22 -0
  7653. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-figma.svg +21 -0
  7654. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-filezilla.svg +21 -0
  7655. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-finder.svg +23 -0
  7656. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-firebase.svg +21 -0
  7657. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-firefox.svg +20 -0
  7658. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-fiverr.svg +19 -0
  7659. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-flickr.svg +20 -0
  7660. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-flightradar24.svg +22 -0
  7661. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-flipboard.svg +19 -0
  7662. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-flutter.svg +20 -0
  7663. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-fortnite.svg +19 -0
  7664. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-foursquare.svg +20 -0
  7665. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-framer-motion.svg +20 -0
  7666. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-framer.svg +19 -0
  7667. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-funimation.svg +20 -0
  7668. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-gatsby.svg +20 -0
  7669. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-git.svg +25 -0
  7670. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-github-copilot.svg +25 -0
  7671. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-github.svg +19 -0
  7672. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-gitlab.svg +19 -0
  7673. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-gmail.svg +22 -0
  7674. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-golang.svg +23 -0
  7675. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-analytics.svg +21 -0
  7676. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-big-query.svg +21 -0
  7677. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-drive.svg +21 -0
  7678. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-fit.svg +19 -0
  7679. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-home.svg +23 -0
  7680. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-maps.svg +23 -0
  7681. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-one.svg +20 -0
  7682. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-photos.svg +22 -0
  7683. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-play.svg +21 -0
  7684. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google-podcasts.svg +27 -0
  7685. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-google.svg +19 -0
  7686. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-grammarly.svg +21 -0
  7687. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-graphql.svg +26 -0
  7688. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-gravatar.svg +19 -0
  7689. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-grindr.svg +21 -0
  7690. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-guardian.svg +24 -0
  7691. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-gumroad.svg +21 -0
  7692. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-hackerrank.svg +24 -0
  7693. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-hbo.svg +24 -0
  7694. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-headlessui.svg +20 -0
  7695. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-hexo.svg +22 -0
  7696. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-hipchat.svg +20 -0
  7697. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-html5.svg +20 -0
  7698. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-inertia.svg +20 -0
  7699. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-infakt.svg +20 -0
  7700. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-instagram.svg +21 -0
  7701. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-intercom.svg +24 -0
  7702. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-itch.svg +22 -0
  7703. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-javascript.svg +21 -0
  7704. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-jira.svg +21 -0
  7705. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-juejin.svg +21 -0
  7706. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-kako-talk.svg +21 -0
  7707. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-kbin.svg +20 -0
  7708. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-kick.svg +19 -0
  7709. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-kickstarter.svg +19 -0
  7710. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-kotlin.svg +22 -0
  7711. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-laravel.svg +26 -0
  7712. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-lastfm.svg +19 -0
  7713. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-leetcode.svg +21 -0
  7714. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-letterboxd.svg +22 -0
  7715. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-line.svg +19 -0
  7716. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-linkedin.svg +23 -0
  7717. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-linktree.svg +23 -0
  7718. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-linqpad.svg +19 -0
  7719. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-livewire.svg +22 -0
  7720. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-loom.svg +22 -0
  7721. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-mailgun.svg +22 -0
  7722. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-mantine.svg +23 -0
  7723. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-mastercard.svg +21 -0
  7724. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-mastodon.svg +20 -0
  7725. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-matrix.svg +23 -0
  7726. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-mcdonalds.svg +19 -0
  7727. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-medium.svg +24 -0
  7728. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-meetup.svg +21 -0
  7729. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-mercedes.svg +22 -0
  7730. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-messenger.svg +20 -0
  7731. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-meta.svg +20 -0
  7732. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-metabrainz.svg +20 -0
  7733. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-minecraft.svg +24 -0
  7734. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-miniprogram.svg +20 -0
  7735. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-mixpanel.svg +21 -0
  7736. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-monday.svg +21 -0
  7737. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-mongodb.svg +20 -0
  7738. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-my-oppo.svg +20 -0
  7739. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-mysql.svg +20 -0
  7740. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-national-geographic.svg +19 -0
  7741. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-nem.svg +21 -0
  7742. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-netbeans.svg +25 -0
  7743. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-netease-music.svg +19 -0
  7744. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-netflix.svg +21 -0
  7745. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-nexo.svg +20 -0
  7746. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-nextcloud.svg +21 -0
  7747. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-nextjs.svg +20 -0
  7748. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-nodejs.svg +20 -0
  7749. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-nord-vpn.svg +20 -0
  7750. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-notion.svg +22 -0
  7751. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-npm.svg +25 -0
  7752. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-nuxt.svg +20 -0
  7753. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-nytimes.svg +23 -0
  7754. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-oauth.svg +20 -0
  7755. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-office.svg +19 -0
  7756. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-ok-ru.svg +23 -0
  7757. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-onedrive.svg +19 -0
  7758. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-onlyfans.svg +21 -0
  7759. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-open-source.svg +19 -0
  7760. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-openai.svg +24 -0
  7761. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-openvpn.svg +20 -0
  7762. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-opera.svg +20 -0
  7763. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-pagekit.svg +19 -0
  7764. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-parsinta.svg +21 -0
  7765. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-patreon.svg +19 -0
  7766. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-paypal.svg +19 -0
  7767. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-paypay.svg +21 -0
  7768. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-peanut.svg +19 -0
  7769. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-pepsi.svg +21 -0
  7770. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-php.svg +23 -0
  7771. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-picsart.svg +21 -0
  7772. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-pinterest.svg +21 -0
  7773. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-planetscale.svg +21 -0
  7774. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-pnpm.svg +26 -0
  7775. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-pocket.svg +20 -0
  7776. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-polymer.svg +19 -0
  7777. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-powershell.svg +21 -0
  7778. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-printables.svg +19 -0
  7779. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-prisma.svg +20 -0
  7780. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-producthunt.svg +20 -0
  7781. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-pushbullet.svg +21 -0
  7782. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-pushover.svg +20 -0
  7783. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-python.svg +23 -0
  7784. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-qq.svg +27 -0
  7785. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-radix-ui.svg +21 -0
  7786. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-react-native.svg +25 -0
  7787. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-react.svg +25 -0
  7788. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-reason.svg +23 -0
  7789. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-reddit.svg +24 -0
  7790. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-redhat.svg +20 -0
  7791. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-redux.svg +24 -0
  7792. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-revolut.svg +20 -0
  7793. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-rumble.svg +20 -0
  7794. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-rust.svg +23 -0
  7795. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-safari.svg +20 -0
  7796. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-samsungpass.svg +21 -0
  7797. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-sass.svg +20 -0
  7798. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-sentry.svg +19 -0
  7799. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-sharik.svg +19 -0
  7800. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-shazam.svg +21 -0
  7801. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-shopee.svg +21 -0
  7802. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-sketch.svg +19 -0
  7803. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-skype.svg +20 -0
  7804. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-slack.svg +22 -0
  7805. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-snapchat.svg +19 -0
  7806. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-snapseed.svg +20 -0
  7807. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-snowflake.svg +25 -0
  7808. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-socket-io.svg +21 -0
  7809. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-solidjs.svg +25 -0
  7810. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-soundcloud.svg +22 -0
  7811. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-spacehey.svg +21 -0
  7812. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-speedtest.svg +20 -0
  7813. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-spotify.svg +22 -0
  7814. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-stackoverflow.svg +23 -0
  7815. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-stackshare.svg +23 -0
  7816. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-steam.svg +20 -0
  7817. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-stocktwits.svg +20 -0
  7818. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-storj.svg +32 -0
  7819. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-storybook.svg +21 -0
  7820. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-storytel.svg +19 -0
  7821. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-strava.svg +19 -0
  7822. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-stripe.svg +19 -0
  7823. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-sublime-text.svg +22 -0
  7824. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-sugarizer.svg +20 -0
  7825. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-supabase.svg +19 -0
  7826. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-superhuman.svg +21 -0
  7827. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-supernova.svg +23 -0
  7828. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-surfshark.svg +20 -0
  7829. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-svelte.svg +20 -0
  7830. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-swift.svg +19 -0
  7831. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-symfony.svg +21 -0
  7832. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tabler.svg +21 -0
  7833. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tabnine.svg +19 -0
  7834. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tailwind.svg +19 -0
  7835. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-taobao.svg +28 -0
  7836. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-teams.svg +25 -0
  7837. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-ted.svg +23 -0
  7838. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-telegram.svg +19 -0
  7839. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-terraform.svg +20 -0
  7840. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tesla.svg +20 -0
  7841. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tether.svg +21 -0
  7842. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-thingiverse.svg +20 -0
  7843. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-threads.svg +19 -0
  7844. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-threejs.svg +22 -0
  7845. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tidal.svg +19 -0
  7846. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tiktok.svg +19 -0
  7847. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tinder.svg +19 -0
  7848. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-topbuzz.svg +19 -0
  7849. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-torchain.svg +20 -0
  7850. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-toyota.svg +21 -0
  7851. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-trello.svg +21 -0
  7852. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tripadvisor.svg +24 -0
  7853. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-tumblr.svg +19 -0
  7854. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-twilio.svg +23 -0
  7855. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-twitch.svg +21 -0
  7856. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-twitter.svg +19 -0
  7857. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-typescript.svg +22 -0
  7858. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-uber.svg +21 -0
  7859. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-ubuntu.svg +22 -0
  7860. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-unity.svg +23 -0
  7861. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-unsplash.svg +20 -0
  7862. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-upwork.svg +19 -0
  7863. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-valorant.svg +20 -0
  7864. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vercel.svg +19 -0
  7865. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vimeo.svg +19 -0
  7866. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vinted.svg +19 -0
  7867. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-visa.svg +23 -0
  7868. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-visual-studio.svg +19 -0
  7869. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vite.svg +20 -0
  7870. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vivaldi.svg +19 -0
  7871. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vk.svg +19 -0
  7872. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vlc.svg +20 -0
  7873. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-volkswagen.svg +21 -0
  7874. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vsco.svg +28 -0
  7875. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vscode.svg +21 -0
  7876. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-vue.svg +20 -0
  7877. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-walmart.svg +24 -0
  7878. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-waze.svg +24 -0
  7879. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-webflow.svg +19 -0
  7880. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-wechat.svg +24 -0
  7881. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-weibo.svg +20 -0
  7882. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-whatsapp.svg +20 -0
  7883. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-wikipedia.svg +24 -0
  7884. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-windows.svg +21 -0
  7885. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-windy.svg +20 -0
  7886. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-wish.svg +20 -0
  7887. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-wix.svg +23 -0
  7888. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-wordpress.svg +24 -0
  7889. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-x.svg +20 -0
  7890. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-xamarin.svg +21 -0
  7891. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-xbox.svg +21 -0
  7892. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-xdeep.svg +19 -0
  7893. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-xing.svg +20 -0
  7894. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-yahoo.svg +25 -0
  7895. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-yandex.svg +20 -0
  7896. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-yarn.svg +19 -0
  7897. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-yatse.svg +19 -0
  7898. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-ycombinator.svg +21 -0
  7899. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-youtube-kids.svg +20 -0
  7900. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-youtube.svg +20 -0
  7901. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-zalando.svg +19 -0
  7902. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-zapier.svg +26 -0
  7903. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-zeit.svg +19 -0
  7904. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-zhihu.svg +24 -0
  7905. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-zoom.svg +20 -0
  7906. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-zulip.svg +20 -0
  7907. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brand-zwift.svg +19 -0
  7908. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bread-off.svg +20 -0
  7909. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bread.svg +19 -0
  7910. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/briefcase-2.svg +20 -0
  7911. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/briefcase-off.svg +23 -0
  7912. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/briefcase.svg +22 -0
  7913. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brightness-2.svg +20 -0
  7914. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brightness-auto.svg +21 -0
  7915. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brightness-down.svg +27 -0
  7916. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brightness-half.svg +20 -0
  7917. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brightness-off.svg +24 -0
  7918. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brightness-up.svg +27 -0
  7919. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brightness.svg +23 -0
  7920. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/broadcast-off.svg +22 -0
  7921. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/broadcast.svg +21 -0
  7922. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/browser-check.svg +22 -0
  7923. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/browser-maximize.svg +23 -0
  7924. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/browser-minus.svg +22 -0
  7925. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/browser-off.svg +21 -0
  7926. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/browser-plus.svg +23 -0
  7927. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/browser-share.svg +23 -0
  7928. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/browser-x.svg +23 -0
  7929. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/browser.svg +21 -0
  7930. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brush-off.svg +22 -0
  7931. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/brush.svg +22 -0
  7932. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bubble-minus.svg +20 -0
  7933. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bubble-plus.svg +21 -0
  7934. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bubble-tea-2.svg +23 -0
  7935. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bubble-tea.svg +25 -0
  7936. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bubble-text.svg +21 -0
  7937. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bubble-x.svg +21 -0
  7938. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bubble.svg +19 -0
  7939. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bucket-droplet.svg +21 -0
  7940. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bucket-off.svg +21 -0
  7941. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bucket.svg +20 -0
  7942. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bug-off.svg +27 -0
  7943. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bug.svg +27 -0
  7944. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-airport.svg +26 -0
  7945. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-arch.svg +21 -0
  7946. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-bank.svg +26 -0
  7947. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-bridge-2.svg +19 -0
  7948. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-bridge.svg +23 -0
  7949. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-broadcast-tower.svg +23 -0
  7950. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-burj-al-arab.svg +24 -0
  7951. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-carousel.svg +25 -0
  7952. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-castle.svg +20 -0
  7953. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-church.svg +23 -0
  7954. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-circus.svg +24 -0
  7955. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-cog.svg +32 -0
  7956. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-community.svg +23 -0
  7957. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-cottage.svg +22 -0
  7958. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-estate.svg +25 -0
  7959. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-factory-2.svg +23 -0
  7960. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-factory.svg +22 -0
  7961. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-fortress.svg +25 -0
  7962. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-hospital.svg +23 -0
  7963. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-lighthouse.svg +22 -0
  7964. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-minus.svg +26 -0
  7965. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-monument.svg +21 -0
  7966. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-mosque.svg +27 -0
  7967. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-off.svg +27 -0
  7968. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-pavilion.svg +22 -0
  7969. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-plus.svg +27 -0
  7970. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-skyscraper.svg +25 -0
  7971. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-stadium.svg +22 -0
  7972. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-store.svg +23 -0
  7973. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-tunnel.svg +27 -0
  7974. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-warehouse.svg +21 -0
  7975. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building-wind-turbine.svg +25 -0
  7976. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/building.svg +26 -0
  7977. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/buildings.svg +29 -0
  7978. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bulb-off.svg +22 -0
  7979. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bulb.svg +21 -0
  7980. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bulldozer.svg +26 -0
  7981. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/burger.svg +21 -0
  7982. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bus-off.svg +26 -0
  7983. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bus-stop.svg +26 -0
  7984. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/bus.svg +25 -0
  7985. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/businessplan.svg +24 -0
  7986. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/butterfly.svg +21 -0
  7987. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cactus-off.svg +23 -0
  7988. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cactus.svg +22 -0
  7989. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cake-off.svg +22 -0
  7990. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cake-roll.svg +21 -0
  7991. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cake.svg +21 -0
  7992. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calculator-off.svg +26 -0
  7993. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calculator.svg +26 -0
  7994. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-bolt.svg +23 -0
  7995. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-cancel.svg +24 -0
  7996. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-check.svg +23 -0
  7997. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-clock.svg +24 -0
  7998. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-code.svg +24 -0
  7999. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-cog.svg +29 -0
  8000. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-dollar.svg +24 -0
  8001. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-dot.svg +23 -0
  8002. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-down.svg +24 -0
  8003. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-due.svg +23 -0
  8004. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-event.svg +23 -0
  8005. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-exclamation.svg +26 -0
  8006. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-heart.svg +23 -0
  8007. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-minus.svg +23 -0
  8008. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-month.svg +25 -0
  8009. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-off.svg +23 -0
  8010. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-pause.svg +24 -0
  8011. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-pin.svg +24 -0
  8012. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-plus.svg +24 -0
  8013. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-question.svg +24 -0
  8014. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-repeat.svg +25 -0
  8015. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-sad.svg +20 -0
  8016. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-search.svg +24 -0
  8017. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-share.svg +24 -0
  8018. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-smile.svg +20 -0
  8019. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-star.svg +23 -0
  8020. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-stats.svg +24 -0
  8021. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-time.svg +24 -0
  8022. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-up.svg +24 -0
  8023. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-user.svg +24 -0
  8024. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-week.svg +29 -0
  8025. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar-x.svg +24 -0
  8026. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/calendar.svg +24 -0
  8027. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-ai.svg +23 -0
  8028. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-bitcoin.svg +26 -0
  8029. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-bolt.svg +21 -0
  8030. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-cancel.svg +22 -0
  8031. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-check.svg +21 -0
  8032. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-code.svg +22 -0
  8033. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-cog.svg +27 -0
  8034. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-dollar.svg +22 -0
  8035. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-down.svg +22 -0
  8036. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-exclamation.svg +22 -0
  8037. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-heart.svg +21 -0
  8038. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-minus.svg +21 -0
  8039. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-moon.svg +21 -0
  8040. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-off.svg +21 -0
  8041. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-pause.svg +22 -0
  8042. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-pin.svg +22 -0
  8043. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-plus.svg +22 -0
  8044. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-question.svg +22 -0
  8045. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-rotate.svg +22 -0
  8046. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-search.svg +22 -0
  8047. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-selfie.svg +22 -0
  8048. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-share.svg +22 -0
  8049. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-spark.svg +21 -0
  8050. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-star.svg +21 -0
  8051. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-up.svg +22 -0
  8052. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera-x.svg +22 -0
  8053. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camera.svg +20 -0
  8054. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/camper.svg +25 -0
  8055. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/campfire.svg +21 -0
  8056. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/canary.svg +21 -0
  8057. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cancel.svg +20 -0
  8058. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/candle.svg +20 -0
  8059. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/candy-off.svg +22 -0
  8060. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/candy.svg +21 -0
  8061. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cane.svg +19 -0
  8062. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cannabis.svg +20 -0
  8063. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cap-projecting.svg +21 -0
  8064. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cap-rounded.svg +21 -0
  8065. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cap-straight.svg +22 -0
  8066. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/capsule-horizontal.svg +19 -0
  8067. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/capsule.svg +19 -0
  8068. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/capture-off.svg +24 -0
  8069. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/capture.svg +23 -0
  8070. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-4wd.svg +25 -0
  8071. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-crane.svg +25 -0
  8072. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-crash.svg +24 -0
  8073. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-fan-1.svg +23 -0
  8074. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-fan-2.svg +23 -0
  8075. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-fan-3.svg +23 -0
  8076. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-fan-auto.svg +24 -0
  8077. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-fan.svg +22 -0
  8078. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-garage.svg +22 -0
  8079. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-off-road.svg +23 -0
  8080. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-off.svg +22 -0
  8081. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-suspension.svg +24 -0
  8082. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-suv.svg +25 -0
  8083. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car-turbine.svg +27 -0
  8084. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/car.svg +21 -0
  8085. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/carambola.svg +19 -0
  8086. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/caravan.svg +23 -0
  8087. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cardboards-off.svg +22 -0
  8088. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cardboards.svg +21 -0
  8089. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cards.svg +21 -0
  8090. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/caret-down.svg +19 -0
  8091. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/caret-left-right.svg +20 -0
  8092. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/caret-left.svg +19 -0
  8093. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/caret-right.svg +19 -0
  8094. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/caret-up-down.svg +20 -0
  8095. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/caret-up.svg +19 -0
  8096. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/carousel-horizontal.svg +21 -0
  8097. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/carousel-vertical.svg +21 -0
  8098. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/carrot-off.svg +23 -0
  8099. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/carrot.svg +23 -0
  8100. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-banknote-edit.svg +22 -0
  8101. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-banknote-heart.svg +22 -0
  8102. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-banknote-minus.svg +23 -0
  8103. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-banknote-move-back.svg +24 -0
  8104. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-banknote-move.svg +24 -0
  8105. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-banknote-off.svg +23 -0
  8106. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-banknote-plus.svg +24 -0
  8107. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-banknote.svg +22 -0
  8108. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-edit.svg +21 -0
  8109. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-heart.svg +21 -0
  8110. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-minus.svg +22 -0
  8111. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-move-back.svg +23 -0
  8112. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-move.svg +23 -0
  8113. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-off.svg +22 -0
  8114. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-plus.svg +23 -0
  8115. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash-register.svg +26 -0
  8116. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cash.svg +21 -0
  8117. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cast-off.svg +23 -0
  8118. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cast.svg +22 -0
  8119. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cat.svg +24 -0
  8120. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/category-2.svg +22 -0
  8121. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/category-minus.svg +22 -0
  8122. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/category-plus.svg +22 -0
  8123. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/category.svg +22 -0
  8124. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ce-off.svg +22 -0
  8125. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ce.svg +21 -0
  8126. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cell-signal-1.svg +19 -0
  8127. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cell-signal-2.svg +20 -0
  8128. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cell-signal-3.svg +20 -0
  8129. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cell-signal-4.svg +20 -0
  8130. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cell-signal-5.svg +22 -0
  8131. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cell-signal-off.svg +20 -0
  8132. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cell.svg +21 -0
  8133. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/certificate-2-off.svg +23 -0
  8134. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/certificate-2.svg +22 -0
  8135. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/certificate-off.svg +25 -0
  8136. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/certificate.svg +24 -0
  8137. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chair-director.svg +25 -0
  8138. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chalkboard-off.svg +21 -0
  8139. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chalkboard-teacher.svg +21 -0
  8140. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chalkboard.svg +20 -0
  8141. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/charging-pile.svg +24 -0
  8142. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-arcs-3.svg +21 -0
  8143. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-arcs.svg +21 -0
  8144. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-area-line.svg +20 -0
  8145. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-area.svg +20 -0
  8146. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-arrows-vertical.svg +25 -0
  8147. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-arrows.svg +25 -0
  8148. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-bar-off.svg +23 -0
  8149. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-bar-popular.svg +22 -0
  8150. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-bar.svg +22 -0
  8151. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-bubble.svg +21 -0
  8152. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-candle.svg +27 -0
  8153. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-circles.svg +20 -0
  8154. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-cohort.svg +20 -0
  8155. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-column.svg +30 -0
  8156. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-covariate.svg +24 -0
  8157. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-donut-2.svg +21 -0
  8158. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-donut-3.svg +22 -0
  8159. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-donut-4.svg +23 -0
  8160. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-donut.svg +20 -0
  8161. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-dots-2.svg +25 -0
  8162. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-dots-3.svg +25 -0
  8163. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-dots.svg +24 -0
  8164. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-funnel.svg +21 -0
  8165. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-grid-dots.svg +36 -0
  8166. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-histogram.svg +24 -0
  8167. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-infographic.svg +24 -0
  8168. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-line.svg +20 -0
  8169. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-pie-2.svg +20 -0
  8170. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-pie-3.svg +21 -0
  8171. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-pie-4.svg +22 -0
  8172. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-pie-off.svg +21 -0
  8173. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-pie.svg +20 -0
  8174. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-ppf.svg +20 -0
  8175. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-radar.svg +23 -0
  8176. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-sankey.svg +21 -0
  8177. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-scatter-3d.svg +27 -0
  8178. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-scatter.svg +24 -0
  8179. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chart-treemap.svg +24 -0
  8180. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/check.svg +19 -0
  8181. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/checkbox.svg +20 -0
  8182. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/checklist.svg +22 -0
  8183. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/checks.svg +20 -0
  8184. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/checkup-list.svg +23 -0
  8185. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cheese.svg +23 -0
  8186. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chef-hat-off.svg +21 -0
  8187. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chef-hat.svg +20 -0
  8188. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cherry.svg +23 -0
  8189. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chess-bishop.svg +23 -0
  8190. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chess-king.svg +22 -0
  8191. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chess-knight.svg +20 -0
  8192. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chess-queen.svg +23 -0
  8193. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chess-rook.svg +23 -0
  8194. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chess.svg +21 -0
  8195. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-compact-down.svg +19 -0
  8196. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-compact-left.svg +19 -0
  8197. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-compact-right.svg +19 -0
  8198. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-compact-up.svg +19 -0
  8199. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-down-left.svg +19 -0
  8200. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-down-right.svg +19 -0
  8201. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-down.svg +19 -0
  8202. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-left-pipe.svg +20 -0
  8203. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-left.svg +19 -0
  8204. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-right-pipe.svg +20 -0
  8205. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-right.svg +19 -0
  8206. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-up-left.svg +19 -0
  8207. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-up-right.svg +19 -0
  8208. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevron-up.svg +19 -0
  8209. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevrons-down-left.svg +20 -0
  8210. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevrons-down-right.svg +20 -0
  8211. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevrons-down.svg +20 -0
  8212. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevrons-left.svg +20 -0
  8213. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevrons-right.svg +20 -0
  8214. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevrons-up-left.svg +20 -0
  8215. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevrons-up-right.svg +20 -0
  8216. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chevrons-up.svg +20 -0
  8217. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/chisel.svg +21 -0
  8218. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/christmas-ball.svg +22 -0
  8219. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/christmas-tree-off.svg +21 -0
  8220. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/christmas-tree.svg +20 -0
  8221. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-arrow-down-left.svg +21 -0
  8222. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-arrow-down-right.svg +21 -0
  8223. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-arrow-down.svg +22 -0
  8224. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-arrow-left.svg +22 -0
  8225. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-arrow-right.svg +22 -0
  8226. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-arrow-up-left.svg +21 -0
  8227. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-arrow-up-right.svg +21 -0
  8228. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-arrow-up.svg +22 -0
  8229. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-asterisk.svg +22 -0
  8230. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-caret-down.svg +20 -0
  8231. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-caret-left.svg +20 -0
  8232. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-caret-right.svg +20 -0
  8233. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-caret-up.svg +20 -0
  8234. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-check.svg +20 -0
  8235. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-chevron-down.svg +20 -0
  8236. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-chevron-left.svg +20 -0
  8237. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-chevron-right.svg +20 -0
  8238. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-chevron-up.svg +20 -0
  8239. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-chevrons-down.svg +21 -0
  8240. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-chevrons-left.svg +21 -0
  8241. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-chevrons-right.svg +21 -0
  8242. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-chevrons-up.svg +21 -0
  8243. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-check.svg +27 -0
  8244. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-a.svg +28 -0
  8245. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-b.svg +27 -0
  8246. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-c.svg +27 -0
  8247. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-d.svg +27 -0
  8248. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-e.svg +28 -0
  8249. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-f.svg +28 -0
  8250. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-g.svg +27 -0
  8251. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-h.svg +28 -0
  8252. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-i.svg +27 -0
  8253. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-j.svg +27 -0
  8254. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-k.svg +29 -0
  8255. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-l.svg +27 -0
  8256. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-m.svg +27 -0
  8257. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-n.svg +27 -0
  8258. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-o.svg +27 -0
  8259. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-p.svg +27 -0
  8260. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-q.svg +28 -0
  8261. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-r.svg +27 -0
  8262. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-s.svg +27 -0
  8263. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-t.svg +28 -0
  8264. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-u.svg +27 -0
  8265. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-v.svg +27 -0
  8266. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-w.svg +27 -0
  8267. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-x.svg +28 -0
  8268. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-y.svg +28 -0
  8269. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-letter-z.svg +27 -0
  8270. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-minus.svg +27 -0
  8271. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-0.svg +27 -0
  8272. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-1.svg +27 -0
  8273. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-2.svg +27 -0
  8274. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-3.svg +27 -0
  8275. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-4.svg +28 -0
  8276. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-5.svg +27 -0
  8277. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-6.svg +27 -0
  8278. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-7.svg +27 -0
  8279. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-8.svg +27 -0
  8280. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-number-9.svg +27 -0
  8281. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-percentage.svg +29 -0
  8282. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-plus.svg +28 -0
  8283. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed-x.svg +28 -0
  8284. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dashed.svg +26 -0
  8285. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dot.svg +20 -0
  8286. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-a.svg +32 -0
  8287. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-b.svg +31 -0
  8288. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-c.svg +31 -0
  8289. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-d.svg +31 -0
  8290. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-e.svg +32 -0
  8291. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-f.svg +32 -0
  8292. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-g.svg +31 -0
  8293. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-h.svg +32 -0
  8294. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-i.svg +31 -0
  8295. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-j.svg +31 -0
  8296. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-k.svg +33 -0
  8297. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-l.svg +31 -0
  8298. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-m.svg +31 -0
  8299. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-n.svg +31 -0
  8300. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-o.svg +31 -0
  8301. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-p.svg +31 -0
  8302. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-q.svg +32 -0
  8303. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-r.svg +31 -0
  8304. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-s.svg +31 -0
  8305. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-t.svg +32 -0
  8306. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-u.svg +31 -0
  8307. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-v.svg +31 -0
  8308. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-w.svg +31 -0
  8309. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-x.svg +32 -0
  8310. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-y.svg +32 -0
  8311. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted-letter-z.svg +31 -0
  8312. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-dotted.svg +30 -0
  8313. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-half-2.svg +23 -0
  8314. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-half-vertical.svg +20 -0
  8315. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-half.svg +20 -0
  8316. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-key.svg +22 -0
  8317. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-a.svg +21 -0
  8318. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-b.svg +20 -0
  8319. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-c.svg +20 -0
  8320. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-d.svg +20 -0
  8321. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-e.svg +21 -0
  8322. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-f.svg +21 -0
  8323. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-g.svg +20 -0
  8324. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-h.svg +21 -0
  8325. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-i.svg +20 -0
  8326. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-j.svg +20 -0
  8327. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-k.svg +22 -0
  8328. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-l.svg +20 -0
  8329. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-m.svg +20 -0
  8330. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-n.svg +20 -0
  8331. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-o.svg +20 -0
  8332. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-p.svg +20 -0
  8333. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-q.svg +21 -0
  8334. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-r.svg +20 -0
  8335. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-s.svg +20 -0
  8336. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-t.svg +21 -0
  8337. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-u.svg +20 -0
  8338. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-v.svg +20 -0
  8339. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-w.svg +20 -0
  8340. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-x.svg +21 -0
  8341. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-y.svg +21 -0
  8342. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-letter-z.svg +20 -0
  8343. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-minus-2.svg +20 -0
  8344. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-minus.svg +20 -0
  8345. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-0.svg +20 -0
  8346. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-1.svg +20 -0
  8347. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-2.svg +20 -0
  8348. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-3.svg +20 -0
  8349. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-4.svg +21 -0
  8350. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-5.svg +20 -0
  8351. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-6.svg +20 -0
  8352. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-7.svg +20 -0
  8353. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-8.svg +20 -0
  8354. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-number-9.svg +20 -0
  8355. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-off.svg +20 -0
  8356. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-open-arrow-down.svg +20 -0
  8357. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-open-arrow-left.svg +20 -0
  8358. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-open-arrow-right.svg +20 -0
  8359. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-open-arrow-up.svg +20 -0
  8360. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-percentage.svg +22 -0
  8361. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-plus-2.svg +21 -0
  8362. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-plus-minus.svg +22 -0
  8363. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-plus.svg +21 -0
  8364. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-rectangle-off.svg +21 -0
  8365. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-rectangle.svg +20 -0
  8366. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-square.svg +20 -0
  8367. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-triangle.svg +20 -0
  8368. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle-x.svg +20 -0
  8369. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circle.svg +19 -0
  8370. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circles-relation.svg +20 -0
  8371. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circles.svg +21 -0
  8372. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-ammeter.svg +23 -0
  8373. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-battery.svg +24 -0
  8374. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-bulb.svg +23 -0
  8375. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-capacitor-polarized.svg +24 -0
  8376. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-capacitor.svg +22 -0
  8377. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-cell-plus.svg +24 -0
  8378. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-cell.svg +22 -0
  8379. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-changeover.svg +25 -0
  8380. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-diode-zener.svg +22 -0
  8381. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-diode.svg +22 -0
  8382. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-ground-digital.svg +20 -0
  8383. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-ground.svg +22 -0
  8384. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-inductor.svg +19 -0
  8385. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-motor.svg +22 -0
  8386. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-pushbutton.svg +24 -0
  8387. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-resistor.svg +19 -0
  8388. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-switch-closed.svg +23 -0
  8389. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-switch-open.svg +23 -0
  8390. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/circuit-voltmeter.svg +22 -0
  8391. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clear-all.svg +21 -0
  8392. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clear-formatting.svg +22 -0
  8393. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/click.svg +24 -0
  8394. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cliff-jumping.svg +23 -0
  8395. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-check.svg +21 -0
  8396. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-copy.svg +21 -0
  8397. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-data.svg +24 -0
  8398. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-heart.svg +21 -0
  8399. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-list.svg +24 -0
  8400. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-off.svg +21 -0
  8401. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-plus.svg +22 -0
  8402. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-search.svg +22 -0
  8403. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-smile.svg +23 -0
  8404. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-text.svg +22 -0
  8405. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-typography.svg +23 -0
  8406. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard-x.svg +21 -0
  8407. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clipboard.svg +20 -0
  8408. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-12.svg +22 -0
  8409. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-2.svg +23 -0
  8410. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-24.svg +23 -0
  8411. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-bitcoin.svg +21 -0
  8412. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-bolt.svg +21 -0
  8413. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-cancel.svg +22 -0
  8414. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-check.svg +21 -0
  8415. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-code.svg +22 -0
  8416. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-cog.svg +27 -0
  8417. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-dollar.svg +22 -0
  8418. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-down.svg +22 -0
  8419. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-edit.svg +21 -0
  8420. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-exclamation.svg +22 -0
  8421. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-heart.svg +21 -0
  8422. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-1.svg +21 -0
  8423. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-10.svg +21 -0
  8424. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-11.svg +21 -0
  8425. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-12.svg +20 -0
  8426. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-2.svg +21 -0
  8427. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-3.svg +21 -0
  8428. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-4.svg +21 -0
  8429. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-5.svg +21 -0
  8430. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-6.svg +21 -0
  8431. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-7.svg +21 -0
  8432. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-8.svg +21 -0
  8433. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-hour-9.svg +21 -0
  8434. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-minus.svg +21 -0
  8435. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-off.svg +21 -0
  8436. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-pause.svg +22 -0
  8437. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-pin.svg +22 -0
  8438. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-play.svg +21 -0
  8439. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-plus.svg +22 -0
  8440. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-question.svg +22 -0
  8441. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-record.svg +21 -0
  8442. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-search.svg +22 -0
  8443. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-share.svg +22 -0
  8444. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-shield.svg +21 -0
  8445. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-star.svg +21 -0
  8446. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-stop.svg +21 -0
  8447. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-up.svg +22 -0
  8448. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock-x.svg +22 -0
  8449. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clock.svg +20 -0
  8450. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clothes-rack-off.svg +23 -0
  8451. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clothes-rack.svg +22 -0
  8452. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-bitcoin.svg +20 -0
  8453. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-bolt.svg +20 -0
  8454. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-cancel.svg +21 -0
  8455. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-check.svg +20 -0
  8456. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-code.svg +21 -0
  8457. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-cog.svg +26 -0
  8458. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-computing.svg +22 -0
  8459. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-data-connection.svg +23 -0
  8460. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-dollar.svg +21 -0
  8461. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-down.svg +21 -0
  8462. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-download.svg +21 -0
  8463. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-exclamation.svg +21 -0
  8464. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-fog.svg +20 -0
  8465. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-heart.svg +20 -0
  8466. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-lock-open.svg +21 -0
  8467. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-lock.svg +21 -0
  8468. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-minus.svg +20 -0
  8469. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-network.svg +23 -0
  8470. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-off.svg +20 -0
  8471. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-pause.svg +21 -0
  8472. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-pin.svg +21 -0
  8473. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-plus.svg +21 -0
  8474. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-question.svg +21 -0
  8475. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-rain.svg +20 -0
  8476. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-search.svg +21 -0
  8477. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-share.svg +21 -0
  8478. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-snow.svg +20 -0
  8479. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-star.svg +20 -0
  8480. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-storm.svg +20 -0
  8481. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-up.svg +21 -0
  8482. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-upload.svg +21 -0
  8483. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud-x.svg +21 -0
  8484. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cloud.svg +19 -0
  8485. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clover-2.svg +23 -0
  8486. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clover.svg +22 -0
  8487. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/clubs.svg +19 -0
  8488. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-asterisk.svg +26 -0
  8489. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-circle-2.svg +22 -0
  8490. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-circle.svg +21 -0
  8491. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-dots.svg +23 -0
  8492. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-minus.svg +21 -0
  8493. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-off.svg +22 -0
  8494. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-plus.svg +22 -0
  8495. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-variable-minus.svg +20 -0
  8496. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-variable-plus.svg +21 -0
  8497. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code-variable.svg +19 -0
  8498. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/code.svg +21 -0
  8499. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/codeblock.svg +22 -0
  8500. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coffee-off.svg +24 -0
  8501. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coffee.svg +23 -0
  8502. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coffin.svg +22 -0
  8503. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin-bitcoin.svg +24 -0
  8504. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin-euro.svg +22 -0
  8505. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin-monero.svg +20 -0
  8506. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin-off.svg +22 -0
  8507. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin-pound.svg +21 -0
  8508. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin-rupee.svg +21 -0
  8509. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin-taka.svg +21 -0
  8510. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin-yen.svg +23 -0
  8511. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin-yuan.svg +22 -0
  8512. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coin.svg +21 -0
  8513. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/coins.svg +23 -0
  8514. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/color-filter.svg +21 -0
  8515. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/color-picker-off.svg +21 -0
  8516. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/color-picker.svg +20 -0
  8517. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/color-swatch-off.svg +23 -0
  8518. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/color-swatch.svg +22 -0
  8519. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/column-insert-left.svg +21 -0
  8520. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/column-insert-right.svg +21 -0
  8521. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/column-remove.svg +21 -0
  8522. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/columns-1.svg +19 -0
  8523. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/columns-2.svg +20 -0
  8524. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/columns-3.svg +21 -0
  8525. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/columns-off.svg +27 -0
  8526. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/columns.svg +26 -0
  8527. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/comet.svg +22 -0
  8528. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/command-off.svg +20 -0
  8529. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/command.svg +19 -0
  8530. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/compass-off.svg +25 -0
  8531. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/compass.svg +24 -0
  8532. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/components-off.svg +23 -0
  8533. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/components.svg +22 -0
  8534. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cone-2.svg +19 -0
  8535. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cone-off.svg +20 -0
  8536. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cone-plus.svg +21 -0
  8537. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cone.svg +19 -0
  8538. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/confetti-off.svg +29 -0
  8539. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/confetti.svg +28 -0
  8540. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/confucius.svg +22 -0
  8541. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/congruent-to.svg +21 -0
  8542. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/connection.svg +21 -0
  8543. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/container-off.svg +30 -0
  8544. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/container.svg +29 -0
  8545. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/contract.svg +24 -0
  8546. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/contrast-2-off.svg +21 -0
  8547. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/contrast-2.svg +20 -0
  8548. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/contrast-off.svg +21 -0
  8549. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/contrast.svg +20 -0
  8550. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cooker.svg +24 -0
  8551. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cookie-man.svg +24 -0
  8552. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cookie-off.svg +23 -0
  8553. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cookie.svg +24 -0
  8554. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copy-check.svg +21 -0
  8555. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copy-minus.svg +21 -0
  8556. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copy-off.svg +21 -0
  8557. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copy-plus.svg +22 -0
  8558. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copy-x.svg +22 -0
  8559. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copy.svg +20 -0
  8560. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copyleft-off.svg +21 -0
  8561. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copyleft.svg +20 -0
  8562. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copyright-off.svg +21 -0
  8563. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/copyright.svg +20 -0
  8564. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-down-left-double.svg +20 -0
  8565. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-down-left.svg +19 -0
  8566. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-down-right-double.svg +20 -0
  8567. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-down-right.svg +19 -0
  8568. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-left-down-double.svg +20 -0
  8569. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-left-down.svg +19 -0
  8570. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-left-up-double.svg +20 -0
  8571. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-left-up.svg +19 -0
  8572. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-right-down-double.svg +20 -0
  8573. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-right-down.svg +19 -0
  8574. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-right-up-double.svg +20 -0
  8575. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-right-up.svg +19 -0
  8576. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-up-left-double.svg +20 -0
  8577. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-up-left.svg +19 -0
  8578. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-up-right-double.svg +20 -0
  8579. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/corner-up-right.svg +19 -0
  8580. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cpu-2.svg +28 -0
  8581. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cpu-off.svg +29 -0
  8582. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cpu.svg +28 -0
  8583. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crane-off.svg +26 -0
  8584. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crane.svg +22 -0
  8585. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/creative-commons-by.svg +21 -0
  8586. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/creative-commons-nc.svg +24 -0
  8587. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/creative-commons-nd.svg +21 -0
  8588. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/creative-commons-off.svg +22 -0
  8589. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/creative-commons-sa.svg +21 -0
  8590. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/creative-commons-zero.svg +21 -0
  8591. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/creative-commons.svg +21 -0
  8592. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/credit-card-hand.svg +22 -0
  8593. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/credit-card-off.svg +25 -0
  8594. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/credit-card-pay.svg +24 -0
  8595. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/credit-card-refund.svg +24 -0
  8596. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/credit-card.svg +22 -0
  8597. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/credits.svg +23 -0
  8598. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cricket.svg +21 -0
  8599. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crop-1-1.svg +19 -0
  8600. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crop-16-9.svg +19 -0
  8601. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crop-3-2.svg +19 -0
  8602. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crop-5-4.svg +19 -0
  8603. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crop-7-5.svg +19 -0
  8604. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crop-landscape.svg +19 -0
  8605. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crop-portrait.svg +19 -0
  8606. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crop.svg +20 -0
  8607. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cross-off.svg +20 -0
  8608. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cross.svg +19 -0
  8609. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crosshair.svg +24 -0
  8610. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crown-off.svg +20 -0
  8611. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crown.svg +19 -0
  8612. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crutches-off.svg +24 -0
  8613. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crutches.svg +23 -0
  8614. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/crystal-ball.svg +21 -0
  8615. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/csv.svg +21 -0
  8616. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cube-3d-sphere-off.svg +30 -0
  8617. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cube-3d-sphere.svg +30 -0
  8618. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cube-off.svg +23 -0
  8619. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cube-plus.svg +24 -0
  8620. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cube-send.svg +24 -0
  8621. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cube-spark.svg +23 -0
  8622. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cube-unfolded.svg +20 -0
  8623. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cube.svg +22 -0
  8624. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cup-off.svg +23 -0
  8625. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cup.svg +22 -0
  8626. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/curling.svg +21 -0
  8627. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/curly-loop.svg +19 -0
  8628. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-afghani.svg +21 -0
  8629. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-bahraini.svg +22 -0
  8630. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-baht.svg +23 -0
  8631. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-bitcoin.svg +25 -0
  8632. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-cent.svg +21 -0
  8633. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dinar.svg +22 -0
  8634. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dirham.svg +23 -0
  8635. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dogecoin.svg +21 -0
  8636. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dollar-australian.svg +23 -0
  8637. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dollar-brunei.svg +22 -0
  8638. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dollar-canadian.svg +22 -0
  8639. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dollar-guyanese.svg +22 -0
  8640. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dollar-off.svg +21 -0
  8641. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dollar-singapore.svg +22 -0
  8642. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dollar-zimbabwean.svg +22 -0
  8643. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dollar.svg +20 -0
  8644. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dong.svg +22 -0
  8645. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-dram.svg +21 -0
  8646. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-ethereum.svg +20 -0
  8647. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-euro-off.svg +21 -0
  8648. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-euro.svg +20 -0
  8649. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-florin.svg +20 -0
  8650. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-forint.svg +22 -0
  8651. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-frank.svg +21 -0
  8652. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-guarani.svg +20 -0
  8653. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-hryvnia.svg +21 -0
  8654. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-iranian-rial.svg +23 -0
  8655. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-kip.svg +21 -0
  8656. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-krone-czech.svg +23 -0
  8657. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-krone-danish.svg +24 -0
  8658. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-krone-swedish.svg +23 -0
  8659. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-lari.svg +22 -0
  8660. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-leu.svg +19 -0
  8661. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-lira.svg +21 -0
  8662. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-litecoin.svg +20 -0
  8663. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-lyd.svg +21 -0
  8664. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-manat.svg +20 -0
  8665. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-monero.svg +19 -0
  8666. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-naira.svg +21 -0
  8667. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-nano.svg +22 -0
  8668. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-off.svg +24 -0
  8669. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-paanga.svg +23 -0
  8670. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-peso.svg +21 -0
  8671. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-pound-off.svg +20 -0
  8672. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-pound.svg +19 -0
  8673. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-quetzal.svg +20 -0
  8674. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-real.svg +22 -0
  8675. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-renminbi.svg +22 -0
  8676. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-ripple.svg +23 -0
  8677. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-riyal.svg +21 -0
  8678. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-rubel.svg +20 -0
  8679. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-rufiyaa.svg +21 -0
  8680. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-rupee-nepalese.svg +20 -0
  8681. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-rupee.svg +20 -0
  8682. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-shekel.svg +20 -0
  8683. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-solana.svg +21 -0
  8684. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-som.svg +20 -0
  8685. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-taka.svg +21 -0
  8686. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-tenge.svg +21 -0
  8687. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-tugrik.svg +22 -0
  8688. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-won.svg +21 -0
  8689. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-xrp.svg +20 -0
  8690. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-yen-off.svg +22 -0
  8691. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-yen.svg +21 -0
  8692. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-yuan.svg +21 -0
  8693. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency-zloty.svg +21 -0
  8694. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/currency.svg +23 -0
  8695. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/current-location-off.svg +25 -0
  8696. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/current-location.svg +24 -0
  8697. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cursor-off.svg +21 -0
  8698. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cursor-text.svg +21 -0
  8699. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cut.svg +22 -0
  8700. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cylinder-off.svg +21 -0
  8701. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cylinder-plus.svg +22 -0
  8702. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/cylinder.svg +20 -0
  8703. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dashboard-off.svg +22 -0
  8704. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dashboard.svg +21 -0
  8705. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-cog.svg +29 -0
  8706. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-dollar.svg +24 -0
  8707. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-edit.svg +23 -0
  8708. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-exclamation.svg +23 -0
  8709. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-export.svg +24 -0
  8710. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-heart.svg +23 -0
  8711. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-import.svg +23 -0
  8712. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-leak.svg +21 -0
  8713. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-minus.svg +23 -0
  8714. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-off.svg +22 -0
  8715. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-plus.svg +24 -0
  8716. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-search.svg +23 -0
  8717. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-share.svg +24 -0
  8718. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-smile.svg +23 -0
  8719. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-star.svg +23 -0
  8720. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database-x.svg +24 -0
  8721. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/database.svg +21 -0
  8722. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/deaf.svg +22 -0
  8723. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/decimal.svg +21 -0
  8724. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/deer.svg +29 -0
  8725. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/delta.svg +19 -0
  8726. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dental-broken.svg +20 -0
  8727. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dental-off.svg +21 -0
  8728. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dental.svg +20 -0
  8729. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/deselect.svg +35 -0
  8730. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/desk.svg +23 -0
  8731. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/details-off.svg +22 -0
  8732. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/details.svg +20 -0
  8733. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-3d-camera.svg +21 -0
  8734. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-3d-lens.svg +22 -0
  8735. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-airpods-case.svg +21 -0
  8736. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-airpods.svg +20 -0
  8737. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-airtag.svg +22 -0
  8738. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-analytics.svg +23 -0
  8739. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-audio-tape.svg +22 -0
  8740. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-camera-phone.svg +21 -0
  8741. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-cctv-off.svg +23 -0
  8742. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-cctv.svg +22 -0
  8743. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-computer-camera-off.svg +22 -0
  8744. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-computer-camera.svg +21 -0
  8745. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-analytics.svg +26 -0
  8746. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-bolt.svg +22 -0
  8747. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-cancel.svg +23 -0
  8748. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-check.svg +22 -0
  8749. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-code.svg +23 -0
  8750. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-cog.svg +28 -0
  8751. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-dollar.svg +23 -0
  8752. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-down.svg +23 -0
  8753. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-exclamation.svg +24 -0
  8754. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-heart.svg +22 -0
  8755. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-minus.svg +22 -0
  8756. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-off.svg +23 -0
  8757. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-pause.svg +23 -0
  8758. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-pin.svg +23 -0
  8759. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-plus.svg +23 -0
  8760. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-question.svg +23 -0
  8761. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-search.svg +23 -0
  8762. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-share.svg +23 -0
  8763. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-star.svg +22 -0
  8764. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-up.svg +23 -0
  8765. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop-x.svg +23 -0
  8766. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-desktop.svg +22 -0
  8767. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-floppy.svg +21 -0
  8768. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-gamepad-2.svg +23 -0
  8769. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-gamepad-3.svg +22 -0
  8770. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-gamepad.svg +22 -0
  8771. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-heart-monitor.svg +23 -0
  8772. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-bolt.svg +23 -0
  8773. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-cancel.svg +24 -0
  8774. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-check.svg +23 -0
  8775. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-code.svg +24 -0
  8776. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-cog.svg +29 -0
  8777. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-dollar.svg +24 -0
  8778. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-down.svg +24 -0
  8779. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-exclamation.svg +25 -0
  8780. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-heart.svg +23 -0
  8781. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-minus.svg +23 -0
  8782. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-off.svg +24 -0
  8783. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-pause.svg +24 -0
  8784. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-pin.svg +24 -0
  8785. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-plus.svg +24 -0
  8786. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-question.svg +25 -0
  8787. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-search.svg +24 -0
  8788. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-share.svg +24 -0
  8789. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-star.svg +23 -0
  8790. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-up.svg +24 -0
  8791. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac-x.svg +24 -0
  8792. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-imac.svg +23 -0
  8793. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-bolt.svg +21 -0
  8794. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-cancel.svg +22 -0
  8795. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-check.svg +21 -0
  8796. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-code.svg +22 -0
  8797. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-cog.svg +27 -0
  8798. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-dollar.svg +22 -0
  8799. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-down.svg +22 -0
  8800. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-exclamation.svg +22 -0
  8801. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-heart.svg +21 -0
  8802. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-bolt.svg +21 -0
  8803. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-cancel.svg +22 -0
  8804. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-check.svg +21 -0
  8805. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-code.svg +22 -0
  8806. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-cog.svg +27 -0
  8807. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-dollar.svg +22 -0
  8808. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-down.svg +22 -0
  8809. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-exclamation.svg +22 -0
  8810. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-heart.svg +21 -0
  8811. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-minus.svg +21 -0
  8812. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-off.svg +21 -0
  8813. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-pause.svg +22 -0
  8814. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-pin.svg +22 -0
  8815. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-plus.svg +22 -0
  8816. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-question.svg +22 -0
  8817. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-search.svg +22 -0
  8818. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-share.svg +22 -0
  8819. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-star.svg +21 -0
  8820. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-up.svg +22 -0
  8821. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal-x.svg +22 -0
  8822. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-horizontal.svg +20 -0
  8823. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-minus.svg +21 -0
  8824. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-off.svg +21 -0
  8825. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-pause.svg +22 -0
  8826. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-pin.svg +22 -0
  8827. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-plus.svg +22 -0
  8828. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-question.svg +22 -0
  8829. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-search.svg +22 -0
  8830. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-share.svg +22 -0
  8831. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-star.svg +21 -0
  8832. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-up.svg +22 -0
  8833. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad-x.svg +22 -0
  8834. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-ipad.svg +20 -0
  8835. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-landline-phone.svg +27 -0
  8836. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-laptop-off.svg +21 -0
  8837. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-laptop.svg +20 -0
  8838. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-bolt.svg +22 -0
  8839. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-cancel.svg +23 -0
  8840. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-charging.svg +21 -0
  8841. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-check.svg +22 -0
  8842. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-code.svg +23 -0
  8843. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-cog.svg +28 -0
  8844. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-dollar.svg +23 -0
  8845. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-down.svg +23 -0
  8846. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-exclamation.svg +23 -0
  8847. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-heart.svg +21 -0
  8848. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-message.svg +21 -0
  8849. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-minus.svg +22 -0
  8850. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-off.svg +22 -0
  8851. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-pause.svg +23 -0
  8852. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-pin.svg +23 -0
  8853. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-plus.svg +23 -0
  8854. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-question.svg +23 -0
  8855. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-rotated.svg +21 -0
  8856. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-search.svg +23 -0
  8857. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-share.svg +23 -0
  8858. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-star.svg +21 -0
  8859. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-up.svg +23 -0
  8860. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-vibration.svg +22 -0
  8861. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile-x.svg +23 -0
  8862. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-mobile.svg +21 -0
  8863. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-nintendo-off.svg +22 -0
  8864. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-nintendo.svg +22 -0
  8865. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-projector.svg +23 -0
  8866. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-remote.svg +25 -0
  8867. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-screen.svg +22 -0
  8868. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-sd-card.svg +22 -0
  8869. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-sim-1.svg +20 -0
  8870. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-sim-2.svg +20 -0
  8871. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-sim-3.svg +20 -0
  8872. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-sim.svg +25 -0
  8873. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-speaker-off.svg +22 -0
  8874. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-speaker.svg +21 -0
  8875. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-bolt.svg +21 -0
  8876. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-cancel.svg +22 -0
  8877. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-check.svg +21 -0
  8878. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-code.svg +22 -0
  8879. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-cog.svg +27 -0
  8880. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-dollar.svg +22 -0
  8881. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-down.svg +22 -0
  8882. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-exclamation.svg +22 -0
  8883. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-heart.svg +20 -0
  8884. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-minus.svg +21 -0
  8885. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-off.svg +21 -0
  8886. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-pause.svg +22 -0
  8887. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-pin.svg +22 -0
  8888. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-plus.svg +22 -0
  8889. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-question.svg +22 -0
  8890. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-search.svg +21 -0
  8891. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-share.svg +22 -0
  8892. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-star.svg +20 -0
  8893. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-up.svg +22 -0
  8894. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet-x.svg +22 -0
  8895. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tablet.svg +20 -0
  8896. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tv-off.svg +21 -0
  8897. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tv-old.svg +23 -0
  8898. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-tv.svg +20 -0
  8899. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-unknown.svg +21 -0
  8900. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-usb.svg +20 -0
  8901. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-vision-pro.svg +19 -0
  8902. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-bolt.svg +22 -0
  8903. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-cancel.svg +23 -0
  8904. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-check.svg +22 -0
  8905. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-code.svg +23 -0
  8906. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-cog.svg +28 -0
  8907. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-dollar.svg +23 -0
  8908. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-down.svg +23 -0
  8909. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-exclamation.svg +23 -0
  8910. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-heart.svg +22 -0
  8911. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-minus.svg +22 -0
  8912. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-off.svg +22 -0
  8913. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-pause.svg +23 -0
  8914. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-pin.svg +23 -0
  8915. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-plus.svg +23 -0
  8916. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-question.svg +23 -0
  8917. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-search.svg +23 -0
  8918. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-share.svg +23 -0
  8919. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-star.svg +22 -0
  8920. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-stats-2.svg +22 -0
  8921. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-stats.svg +24 -0
  8922. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-up.svg +23 -0
  8923. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch-x.svg +23 -0
  8924. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/device-watch.svg +21 -0
  8925. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-2.svg +24 -0
  8926. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-bolt.svg +22 -0
  8927. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-cancel.svg +23 -0
  8928. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-check.svg +22 -0
  8929. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-code.svg +23 -0
  8930. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-cog.svg +28 -0
  8931. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-dollar.svg +23 -0
  8932. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-down.svg +23 -0
  8933. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-exclamation.svg +23 -0
  8934. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-heart.svg +22 -0
  8935. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-minus.svg +22 -0
  8936. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-off.svg +22 -0
  8937. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-pause.svg +23 -0
  8938. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-pc-off.svg +25 -0
  8939. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-pc.svg +24 -0
  8940. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-pin.svg +23 -0
  8941. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-plus.svg +23 -0
  8942. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-question.svg +23 -0
  8943. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-search.svg +23 -0
  8944. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-share.svg +23 -0
  8945. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-star.svg +22 -0
  8946. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-up.svg +23 -0
  8947. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices-x.svg +23 -0
  8948. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/devices.svg +21 -0
  8949. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/diabolo-off.svg +22 -0
  8950. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/diabolo-plus.svg +23 -0
  8951. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/diabolo.svg +21 -0
  8952. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dialpad-off.svg +26 -0
  8953. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dialpad.svg +25 -0
  8954. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/diamond-off.svg +21 -0
  8955. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/diamond.svg +20 -0
  8956. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/diamonds.svg +19 -0
  8957. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/diaper.svg +23 -0
  8958. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dice-1.svg +20 -0
  8959. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dice-2.svg +21 -0
  8960. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dice-3.svg +22 -0
  8961. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dice-4.svg +23 -0
  8962. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dice-5.svg +24 -0
  8963. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dice-6.svg +25 -0
  8964. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dice.svg +23 -0
  8965. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dimensions.svg +25 -0
  8966. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/direction-arrows.svg +23 -0
  8967. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/direction-horizontal.svg +20 -0
  8968. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/direction-sign-off.svg +22 -0
  8969. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/direction-sign.svg +21 -0
  8970. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/direction.svg +20 -0
  8971. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/directions-off.svg +25 -0
  8972. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/directions.svg +24 -0
  8973. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/disabled-2.svg +21 -0
  8974. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/disabled-off.svg +23 -0
  8975. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/disabled.svg +22 -0
  8976. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/disc-golf.svg +27 -0
  8977. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/disc-off.svg +23 -0
  8978. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/disc.svg +22 -0
  8979. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/discount-off.svg +23 -0
  8980. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/discount.svg +22 -0
  8981. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/divide.svg +21 -0
  8982. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dna-2-off.svg +25 -0
  8983. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dna-2.svg +24 -0
  8984. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dna-off.svg +22 -0
  8985. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dna.svg +21 -0
  8986. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dog-bowl.svg +21 -0
  8987. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dog.svg +26 -0
  8988. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/door-enter.svg +22 -0
  8989. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/door-exit.svg +22 -0
  8990. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/door-off.svg +23 -0
  8991. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/door.svg +21 -0
  8992. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dots-circle-horizontal.svg +22 -0
  8993. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dots-diagonal-2.svg +21 -0
  8994. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dots-diagonal.svg +21 -0
  8995. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dots-vertical.svg +21 -0
  8996. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dots.svg +21 -0
  8997. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/download-off.svg +22 -0
  8998. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/download.svg +21 -0
  8999. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/drag-drop-2.svg +26 -0
  9000. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/drag-drop.svg +27 -0
  9001. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/drone-off.svg +28 -0
  9002. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/drone.svg +27 -0
  9003. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/drop-circle.svg +20 -0
  9004. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-bolt.svg +20 -0
  9005. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-cancel.svg +21 -0
  9006. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-check.svg +20 -0
  9007. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-code.svg +21 -0
  9008. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-cog.svg +26 -0
  9009. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-dollar.svg +21 -0
  9010. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-down.svg +21 -0
  9011. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-exclamation.svg +21 -0
  9012. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-half-2.svg +20 -0
  9013. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-half.svg +20 -0
  9014. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-heart.svg +20 -0
  9015. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-minus.svg +20 -0
  9016. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-off.svg +20 -0
  9017. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-pause.svg +21 -0
  9018. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-pin.svg +21 -0
  9019. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-plus.svg +21 -0
  9020. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-question.svg +21 -0
  9021. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-search.svg +21 -0
  9022. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-share.svg +21 -0
  9023. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-star.svg +20 -0
  9024. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-up.svg +21 -0
  9025. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet-x.svg +21 -0
  9026. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplet.svg +19 -0
  9027. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/droplets.svg +21 -0
  9028. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dual-screen.svg +20 -0
  9029. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/dumpling.svg +19 -0
  9030. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/e-passport.svg +22 -0
  9031. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ear-off.svg +21 -0
  9032. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ear-scan.svg +24 -0
  9033. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ear.svg +20 -0
  9034. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ease-in-control-point.svg +22 -0
  9035. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ease-in-out-control-points.svg +25 -0
  9036. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ease-in-out.svg +19 -0
  9037. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ease-in.svg +19 -0
  9038. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ease-out-control-point.svg +22 -0
  9039. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ease-out.svg +19 -0
  9040. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/edit-circle-off.svg +22 -0
  9041. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/edit-circle.svg +21 -0
  9042. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/edit-off.svg +22 -0
  9043. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/edit.svg +21 -0
  9044. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/egg-cracked.svg +20 -0
  9045. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/egg-fried.svg +20 -0
  9046. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/egg-off.svg +21 -0
  9047. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/egg.svg +19 -0
  9048. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eggs.svg +20 -0
  9049. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/elevator-off.svg +22 -0
  9050. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/elevator.svg +21 -0
  9051. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/emergency-bed.svg +25 -0
  9052. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/empathize-off.svg +21 -0
  9053. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/empathize.svg +20 -0
  9054. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/emphasis.svg +23 -0
  9055. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/engine-off.svg +24 -0
  9056. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/engine.svg +23 -0
  9057. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/equal-double.svg +22 -0
  9058. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/equal-not.svg +21 -0
  9059. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/equal.svg +20 -0
  9060. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eraser-off.svg +21 -0
  9061. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eraser.svg +20 -0
  9062. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/error-404-off.svg +24 -0
  9063. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/error-404.svg +23 -0
  9064. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/escalator-down.svg +21 -0
  9065. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/escalator-up.svg +21 -0
  9066. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/escalator.svg +19 -0
  9067. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exchange-off.svg +25 -0
  9068. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exchange.svg +22 -0
  9069. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exclamation-circle.svg +21 -0
  9070. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exclamation-mark-off.svg +21 -0
  9071. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exclamation-mark.svg +20 -0
  9072. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/explicit-off.svg +22 -0
  9073. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/explicit.svg +21 -0
  9074. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exposure-0.svg +19 -0
  9075. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exposure-minus-1.svg +20 -0
  9076. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exposure-minus-2.svg +20 -0
  9077. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exposure-off.svg +23 -0
  9078. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exposure-plus-1.svg +21 -0
  9079. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exposure-plus-2.svg +21 -0
  9080. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/exposure.svg +22 -0
  9081. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/external-link-off.svg +22 -0
  9082. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/external-link.svg +21 -0
  9083. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-bitcoin.svg +21 -0
  9084. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-bolt.svg +21 -0
  9085. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-cancel.svg +22 -0
  9086. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-check.svg +21 -0
  9087. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-closed.svg +23 -0
  9088. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-code.svg +22 -0
  9089. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-cog.svg +27 -0
  9090. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-discount.svg +23 -0
  9091. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-dollar.svg +22 -0
  9092. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-dotted.svg +31 -0
  9093. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-down.svg +22 -0
  9094. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-edit.svg +21 -0
  9095. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-exclamation.svg +22 -0
  9096. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-heart.svg +21 -0
  9097. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-minus.svg +21 -0
  9098. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-off.svg +21 -0
  9099. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-pause.svg +22 -0
  9100. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-pin.svg +22 -0
  9101. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-plus.svg +22 -0
  9102. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-question.svg +22 -0
  9103. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-search.svg +22 -0
  9104. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-share.svg +22 -0
  9105. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-spark.svg +21 -0
  9106. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-star.svg +21 -0
  9107. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-table.svg +27 -0
  9108. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-up.svg +22 -0
  9109. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye-x.svg +22 -0
  9110. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eye.svg +20 -0
  9111. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eyeglass-2.svg +23 -0
  9112. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eyeglass-off.svg +24 -0
  9113. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/eyeglass.svg +23 -0
  9114. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/face-id-error.svg +25 -0
  9115. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/face-id.svg +25 -0
  9116. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/face-mask-off.svg +24 -0
  9117. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/face-mask.svg +23 -0
  9118. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fall.svg +22 -0
  9119. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/favicon.svg +22 -0
  9120. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/feather-off.svg +26 -0
  9121. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/feather.svg +20 -0
  9122. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fence-off.svg +24 -0
  9123. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fence.svg +21 -0
  9124. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ferry.svg +21 -0
  9125. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fidget-spinner.svg +23 -0
  9126. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-3d.svg +23 -0
  9127. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-ai.svg +23 -0
  9128. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-alert.svg +22 -0
  9129. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-analytics.svg +23 -0
  9130. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-arrow-left.svg +22 -0
  9131. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-arrow-right.svg +22 -0
  9132. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-barcode.svg +23 -0
  9133. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-bitcoin.svg +21 -0
  9134. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-broken.svg +26 -0
  9135. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-certificate.svg +22 -0
  9136. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-chart.svg +22 -0
  9137. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-check.svg +21 -0
  9138. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-code-2.svg +22 -0
  9139. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-code.svg +22 -0
  9140. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-cv.svg +22 -0
  9141. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-database.svg +22 -0
  9142. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-delta.svg +21 -0
  9143. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-description.svg +22 -0
  9144. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-diff.svg +23 -0
  9145. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-digit.svg +22 -0
  9146. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-dislike.svg +22 -0
  9147. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-dollar.svg +22 -0
  9148. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-dots.svg +23 -0
  9149. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-download.svg +22 -0
  9150. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-euro.svg +22 -0
  9151. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-excel.svg +22 -0
  9152. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-export.svg +20 -0
  9153. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-function.svg +22 -0
  9154. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-horizontal.svg +20 -0
  9155. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-import.svg +20 -0
  9156. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-infinity.svg +22 -0
  9157. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-info.svg +22 -0
  9158. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-invoice.svg +23 -0
  9159. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-isr.svg +22 -0
  9160. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-lambda.svg +22 -0
  9161. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-like.svg +22 -0
  9162. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-minus.svg +21 -0
  9163. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-music.svg +22 -0
  9164. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-neutral.svg +20 -0
  9165. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-off.svg +20 -0
  9166. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-orientation.svg +23 -0
  9167. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-pencil.svg +21 -0
  9168. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-percent.svg +23 -0
  9169. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-phone.svg +21 -0
  9170. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-plus.svg +22 -0
  9171. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-power.svg +21 -0
  9172. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-report.svg +22 -0
  9173. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-rss.svg +23 -0
  9174. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-sad.svg +21 -0
  9175. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-scissors.svg +24 -0
  9176. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-search.svg +22 -0
  9177. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-settings.svg +27 -0
  9178. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-shredder.svg +25 -0
  9179. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-signal.svg +22 -0
  9180. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-smile.svg +21 -0
  9181. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-spark.svg +21 -0
  9182. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-spreadsheet.svg +23 -0
  9183. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-stack.svg +23 -0
  9184. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-star.svg +21 -0
  9185. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-symlink.svg +22 -0
  9186. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-text-ai.svg +26 -0
  9187. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-text-shield.svg +24 -0
  9188. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-text-spark.svg +24 -0
  9189. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-text.svg +23 -0
  9190. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-time.svg +22 -0
  9191. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-bmp.svg +23 -0
  9192. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-css.svg +23 -0
  9193. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-csv.svg +23 -0
  9194. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-doc.svg +23 -0
  9195. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-docx.svg +25 -0
  9196. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-html.svg +27 -0
  9197. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-jpg.svg +23 -0
  9198. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-js.svg +22 -0
  9199. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-jsx.svg +24 -0
  9200. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-pdf.svg +24 -0
  9201. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-php.svg +25 -0
  9202. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-png.svg +23 -0
  9203. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-ppt.svg +25 -0
  9204. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-rs.svg +23 -0
  9205. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-sql.svg +25 -0
  9206. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-svg.svg +23 -0
  9207. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-ts.svg +24 -0
  9208. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-tsx.svg +25 -0
  9209. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-txt.svg +27 -0
  9210. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-vue.svg +24 -0
  9211. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-xls.svg +24 -0
  9212. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-xml.svg +24 -0
  9213. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-type-zip.svg +23 -0
  9214. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-typography.svg +23 -0
  9215. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-unknown.svg +22 -0
  9216. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-upload.svg +22 -0
  9217. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-vector.svg +23 -0
  9218. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-word.svg +21 -0
  9219. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-x.svg +21 -0
  9220. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file-zip.svg +26 -0
  9221. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/file.svg +20 -0
  9222. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/files-off.svg +22 -0
  9223. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/files.svg +21 -0
  9224. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-bolt.svg +22 -0
  9225. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-cancel.svg +22 -0
  9226. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-check.svg +22 -0
  9227. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-code.svg +23 -0
  9228. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-cog.svg +22 -0
  9229. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-discount.svg +24 -0
  9230. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-dollar.svg +22 -0
  9231. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-down.svg +24 -0
  9232. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-edit.svg +22 -0
  9233. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-exclamation.svg +22 -0
  9234. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-minus.svg +22 -0
  9235. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-pause.svg +23 -0
  9236. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-pin.svg +22 -0
  9237. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-plus.svg +23 -0
  9238. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-question.svg +23 -0
  9239. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-search.svg +23 -0
  9240. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-share.svg +24 -0
  9241. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-spark.svg +22 -0
  9242. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-up.svg +22 -0
  9243. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2-x.svg +22 -0
  9244. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-2.svg +21 -0
  9245. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-bolt.svg +20 -0
  9246. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-cancel.svg +21 -0
  9247. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-check.svg +20 -0
  9248. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-code.svg +21 -0
  9249. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-cog.svg +26 -0
  9250. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-discount.svg +22 -0
  9251. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-dollar.svg +21 -0
  9252. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-down.svg +21 -0
  9253. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-edit.svg +20 -0
  9254. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-exclamation.svg +21 -0
  9255. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-heart.svg +20 -0
  9256. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-minus.svg +20 -0
  9257. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-off.svg +20 -0
  9258. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-pause.svg +21 -0
  9259. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-pin.svg +21 -0
  9260. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-plus.svg +21 -0
  9261. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-question.svg +21 -0
  9262. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-search.svg +21 -0
  9263. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-share.svg +21 -0
  9264. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-spark.svg +20 -0
  9265. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-star.svg +20 -0
  9266. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-up.svg +21 -0
  9267. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter-x.svg +21 -0
  9268. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filter.svg +19 -0
  9269. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/filters.svg +21 -0
  9270. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fingerprint-off.svg +24 -0
  9271. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fingerprint-scan.svg +25 -0
  9272. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fingerprint.svg +23 -0
  9273. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fire-extinguisher.svg +23 -0
  9274. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fire-hydrant-off.svg +23 -0
  9275. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fire-hydrant.svg +22 -0
  9276. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/firetruck.svg +25 -0
  9277. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/firewall-check.svg +24 -0
  9278. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/firewall-flame.svg +24 -0
  9279. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/first-aid-kit-off.svg +23 -0
  9280. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/first-aid-kit.svg +22 -0
  9281. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fish-bone.svg +24 -0
  9282. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fish-christianity.svg +19 -0
  9283. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fish-hook-off.svg +22 -0
  9284. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fish-hook.svg +21 -0
  9285. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fish-off.svg +23 -0
  9286. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fish.svg +22 -0
  9287. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-2-off.svg +20 -0
  9288. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-2.svg +19 -0
  9289. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-3.svg +19 -0
  9290. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-bitcoin.svg +21 -0
  9291. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-bolt.svg +21 -0
  9292. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-cancel.svg +22 -0
  9293. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-check.svg +21 -0
  9294. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-code.svg +22 -0
  9295. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-cog.svg +27 -0
  9296. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-discount.svg +23 -0
  9297. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-dollar.svg +22 -0
  9298. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-down.svg +22 -0
  9299. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-exclamation.svg +22 -0
  9300. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-heart.svg +21 -0
  9301. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-minus.svg +21 -0
  9302. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-off.svg +23 -0
  9303. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-pause.svg +22 -0
  9304. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-pin.svg +22 -0
  9305. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-plus.svg +22 -0
  9306. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-question.svg +22 -0
  9307. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-search.svg +22 -0
  9308. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-share.svg +22 -0
  9309. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-spark.svg +21 -0
  9310. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-star.svg +21 -0
  9311. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-up.svg +22 -0
  9312. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag-x.svg +22 -0
  9313. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flag.svg +20 -0
  9314. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flame-off.svg +20 -0
  9315. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flame.svg +19 -0
  9316. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flare.svg +19 -0
  9317. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flask-2-off.svg +22 -0
  9318. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flask-2.svg +21 -0
  9319. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flask-off.svg +22 -0
  9320. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flask.svg +21 -0
  9321. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flip-flops.svg +24 -0
  9322. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flip-horizontal.svg +21 -0
  9323. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flip-vertical.svg +21 -0
  9324. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/float-center.svg +25 -0
  9325. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/float-left.svg +23 -0
  9326. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/float-none.svg +21 -0
  9327. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/float-right.svg +23 -0
  9328. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flower-off.svg +21 -0
  9329. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/flower.svg +20 -0
  9330. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/focus-2.svg +24 -0
  9331. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/focus-auto.svg +24 -0
  9332. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/focus-centered.svg +23 -0
  9333. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/focus.svg +20 -0
  9334. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fold-down.svg +23 -0
  9335. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fold-up.svg +23 -0
  9336. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fold.svg +24 -0
  9337. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-bolt.svg +20 -0
  9338. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-cancel.svg +21 -0
  9339. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-check.svg +20 -0
  9340. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-code.svg +21 -0
  9341. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-cog.svg +26 -0
  9342. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-dollar.svg +21 -0
  9343. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-down.svg +21 -0
  9344. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-exclamation.svg +21 -0
  9345. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-heart.svg +20 -0
  9346. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-minus.svg +20 -0
  9347. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-off.svg +20 -0
  9348. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-open.svg +19 -0
  9349. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-pause.svg +21 -0
  9350. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-pin.svg +21 -0
  9351. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-plus.svg +21 -0
  9352. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-question.svg +21 -0
  9353. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-root.svg +21 -0
  9354. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-search.svg +21 -0
  9355. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-share.svg +21 -0
  9356. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-star.svg +20 -0
  9357. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-symlink.svg +21 -0
  9358. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-up.svg +21 -0
  9359. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder-x.svg +21 -0
  9360. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folder.svg +19 -0
  9361. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folders-off.svg +21 -0
  9362. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/folders.svg +20 -0
  9363. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/forbid-2.svg +21 -0
  9364. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/forbid.svg +21 -0
  9365. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/forklift.svg +26 -0
  9366. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/forms.svg +24 -0
  9367. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fountain-off.svg +24 -0
  9368. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fountain.svg +23 -0
  9369. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/frame-off.svg +23 -0
  9370. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/frame.svg +22 -0
  9371. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/free-rights.svg +24 -0
  9372. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/freeze-column.svg +23 -0
  9373. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/freeze-row-column.svg +24 -0
  9374. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/freeze-row.svg +23 -0
  9375. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fridge-off.svg +22 -0
  9376. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/fridge.svg +22 -0
  9377. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/friends-off.svg +23 -0
  9378. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/friends.svg +22 -0
  9379. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/frustum-off.svg +22 -0
  9380. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/frustum-plus.svg +23 -0
  9381. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/frustum.svg +21 -0
  9382. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/function-off.svg +22 -0
  9383. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/function.svg +21 -0
  9384. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/galaxy.svg +21 -0
  9385. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/garden-cart-off.svg +22 -0
  9386. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/garden-cart.svg +21 -0
  9387. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gas-station-off.svg +24 -0
  9388. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gas-station.svg +23 -0
  9389. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gauge-off.svg +23 -0
  9390. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gauge.svg +22 -0
  9391. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gavel.svg +23 -0
  9392. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-agender.svg +20 -0
  9393. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-androgyne.svg +22 -0
  9394. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-bigender.svg +23 -0
  9395. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-demiboy.svg +21 -0
  9396. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-demigirl.svg +21 -0
  9397. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-epicene.svg +22 -0
  9398. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-female.svg +21 -0
  9399. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-femme.svg +21 -0
  9400. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-genderfluid.svg +27 -0
  9401. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-genderless.svg +21 -0
  9402. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-genderqueer.svg +22 -0
  9403. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-hermaphrodite.svg +22 -0
  9404. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-intergender.svg +22 -0
  9405. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-male.svg +22 -0
  9406. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-neutrois.svg +20 -0
  9407. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-third.svg +21 -0
  9408. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-transgender.svg +26 -0
  9409. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gender-trasvesti.svg +21 -0
  9410. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/geometry.svg +22 -0
  9411. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ghost-2.svg +22 -0
  9412. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ghost-3.svg +21 -0
  9413. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ghost-off.svg +22 -0
  9414. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ghost.svg +22 -0
  9415. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gif.svg +22 -0
  9416. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gift-card.svg +21 -0
  9417. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gift-off.svg +23 -0
  9418. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gift.svg +22 -0
  9419. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-branch-deleted.svg +25 -0
  9420. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-branch.svg +24 -0
  9421. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-cherry-pick.svg +23 -0
  9422. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-commit.svg +21 -0
  9423. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-compare.svg +24 -0
  9424. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-fork.svg +23 -0
  9425. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-merge.svg +23 -0
  9426. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-pull-request-closed.svg +24 -0
  9427. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-pull-request-draft.svg +24 -0
  9428. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/git-pull-request.svg +24 -0
  9429. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gizmo.svg +23 -0
  9430. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/glass-champagne.svg +22 -0
  9431. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/glass-cocktail.svg +22 -0
  9432. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/glass-full.svg +22 -0
  9433. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/glass-gin.svg +22 -0
  9434. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/glass-off.svg +23 -0
  9435. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/glass.svg +22 -0
  9436. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/globe-off.svg +23 -0
  9437. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/globe.svg +22 -0
  9438. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/go-game.svg +28 -0
  9439. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/golf-off.svg +21 -0
  9440. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/golf.svg +20 -0
  9441. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gps.svg +20 -0
  9442. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gradienter.svg +21 -0
  9443. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grain.svg +26 -0
  9444. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/graph-off.svg +21 -0
  9445. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/graph.svg +20 -0
  9446. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grave-2.svg +22 -0
  9447. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grave.svg +20 -0
  9448. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grid-3x3.svg +22 -0
  9449. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grid-4x4.svg +24 -0
  9450. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grid-dots.svg +27 -0
  9451. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grid-goldenratio.svg +22 -0
  9452. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grid-pattern.svg +23 -0
  9453. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grid-scan.svg +26 -0
  9454. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grill-fork.svg +21 -0
  9455. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grill-off.svg +26 -0
  9456. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grill-spatula.svg +21 -0
  9457. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grill.svg +26 -0
  9458. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grip-horizontal.svg +24 -0
  9459. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/grip-vertical.svg +24 -0
  9460. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/growth.svg +19 -0
  9461. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/guitar-pick.svg +19 -0
  9462. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/gymnastics.svg +22 -0
  9463. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/h-1.svg +26 -0
  9464. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/h-2.svg +26 -0
  9465. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/h-3.svg +27 -0
  9466. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/h-4.svg +26 -0
  9467. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/h-5.svg +26 -0
  9468. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/h-6.svg +27 -0
  9469. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hammer-off.svg +21 -0
  9470. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hammer.svg +20 -0
  9471. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-click-off.svg +27 -0
  9472. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-click.svg +26 -0
  9473. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-finger-down.svg +22 -0
  9474. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-finger-left.svg +22 -0
  9475. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-finger-off.svg +24 -0
  9476. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-finger-right.svg +22 -0
  9477. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-finger.svg +22 -0
  9478. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-grab.svg +22 -0
  9479. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-little-finger.svg +22 -0
  9480. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-love-you.svg +22 -0
  9481. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-middle-finger.svg +22 -0
  9482. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-move.svg +24 -0
  9483. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-off.svg +20 -0
  9484. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-ring-finger.svg +22 -0
  9485. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-sanitizer.svg +23 -0
  9486. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-stop.svg +22 -0
  9487. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-three-fingers.svg +22 -0
  9488. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hand-two-fingers.svg +22 -0
  9489. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hanger-2.svg +21 -0
  9490. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hanger-off.svg +20 -0
  9491. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hanger.svg +19 -0
  9492. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hash.svg +22 -0
  9493. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/haze-moon.svg +21 -0
  9494. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/haze.svg +26 -0
  9495. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hdr.svg +23 -0
  9496. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heading-off.svg +25 -0
  9497. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heading.svg +25 -0
  9498. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/headphones-off.svg +22 -0
  9499. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/headphones.svg +21 -0
  9500. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/headset-off.svg +23 -0
  9501. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/headset.svg +22 -0
  9502. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/health-recognition.svg +23 -0
  9503. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-bitcoin.svg +20 -0
  9504. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-bolt.svg +20 -0
  9505. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-broken.svg +20 -0
  9506. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-cancel.svg +21 -0
  9507. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-check.svg +20 -0
  9508. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-code.svg +21 -0
  9509. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-cog.svg +26 -0
  9510. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-discount.svg +22 -0
  9511. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-dollar.svg +21 -0
  9512. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-down.svg +21 -0
  9513. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-exclamation.svg +21 -0
  9514. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-handshake.svg +22 -0
  9515. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-minus.svg +20 -0
  9516. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-off.svg +20 -0
  9517. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-pause.svg +21 -0
  9518. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-pin.svg +21 -0
  9519. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-plus.svg +21 -0
  9520. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-question.svg +21 -0
  9521. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-rate-monitor.svg +23 -0
  9522. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-search.svg +21 -0
  9523. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-share.svg +21 -0
  9524. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-spark.svg +20 -0
  9525. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-star.svg +20 -0
  9526. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-up.svg +21 -0
  9527. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart-x.svg +21 -0
  9528. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heart.svg +19 -0
  9529. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/heartbeat.svg +20 -0
  9530. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hearts-off.svg +21 -0
  9531. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hearts.svg +20 -0
  9532. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/helicopter-landing.svg +22 -0
  9533. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/helicopter.svg +25 -0
  9534. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/helmet-off.svg +21 -0
  9535. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/helmet.svg +20 -0
  9536. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/help-circle.svg +21 -0
  9537. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/help-hexagon.svg +21 -0
  9538. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/help-octagon.svg +21 -0
  9539. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/help-off.svg +22 -0
  9540. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/help-small.svg +20 -0
  9541. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/help-square-rounded.svg +21 -0
  9542. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/help-square.svg +21 -0
  9543. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/help-triangle.svg +21 -0
  9544. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/help.svg +21 -0
  9545. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hemisphere-off.svg +21 -0
  9546. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hemisphere-plus.svg +22 -0
  9547. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hemisphere.svg +20 -0
  9548. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-3d.svg +25 -0
  9549. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-asterisk.svg +22 -0
  9550. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-a.svg +21 -0
  9551. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-b.svg +20 -0
  9552. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-c.svg +20 -0
  9553. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-d.svg +20 -0
  9554. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-e.svg +21 -0
  9555. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-f.svg +21 -0
  9556. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-g.svg +20 -0
  9557. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-h.svg +21 -0
  9558. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-i.svg +20 -0
  9559. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-j.svg +20 -0
  9560. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-k.svg +22 -0
  9561. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-l.svg +20 -0
  9562. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-m.svg +20 -0
  9563. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-n.svg +20 -0
  9564. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-o.svg +20 -0
  9565. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-p.svg +20 -0
  9566. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-q.svg +21 -0
  9567. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-r.svg +20 -0
  9568. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-s.svg +20 -0
  9569. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-t.svg +21 -0
  9570. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-u.svg +20 -0
  9571. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-v.svg +20 -0
  9572. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-w.svg +20 -0
  9573. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-x.svg +21 -0
  9574. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-y.svg +21 -0
  9575. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-letter-z.svg +20 -0
  9576. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-minus-2.svg +20 -0
  9577. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-minus.svg +20 -0
  9578. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-0.svg +20 -0
  9579. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-1.svg +20 -0
  9580. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-2.svg +20 -0
  9581. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-3.svg +20 -0
  9582. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-4.svg +21 -0
  9583. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-5.svg +20 -0
  9584. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-6.svg +20 -0
  9585. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-7.svg +20 -0
  9586. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-8.svg +20 -0
  9587. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-number-9.svg +20 -0
  9588. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-off.svg +20 -0
  9589. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-plus-2.svg +21 -0
  9590. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon-plus.svg +21 -0
  9591. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagon.svg +19 -0
  9592. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagonal-prism-off.svg +23 -0
  9593. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagonal-prism-plus.svg +24 -0
  9594. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagonal-prism.svg +22 -0
  9595. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagonal-pyramid-off.svg +22 -0
  9596. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagonal-pyramid-plus.svg +23 -0
  9597. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagonal-pyramid.svg +21 -0
  9598. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagons-off.svg +23 -0
  9599. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hexagons.svg +21 -0
  9600. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hierarchy-2.svg +23 -0
  9601. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hierarchy-3.svg +30 -0
  9602. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hierarchy-off.svg +24 -0
  9603. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hierarchy.svg +23 -0
  9604. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/highlight-off.svg +23 -0
  9605. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/highlight.svg +22 -0
  9606. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/history-off.svg +20 -0
  9607. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/history-toggle.svg +24 -0
  9608. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/history.svg +20 -0
  9609. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-2.svg +21 -0
  9610. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-bitcoin.svg +22 -0
  9611. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-bolt.svg +21 -0
  9612. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-cancel.svg +22 -0
  9613. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-check.svg +21 -0
  9614. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-cog.svg +27 -0
  9615. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-dollar.svg +22 -0
  9616. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-dot.svg +21 -0
  9617. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-down.svg +22 -0
  9618. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-eco.svg +22 -0
  9619. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-edit.svg +21 -0
  9620. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-exclamation.svg +22 -0
  9621. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-hand.svg +21 -0
  9622. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-heart.svg +21 -0
  9623. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-infinity.svg +22 -0
  9624. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-link.svg +24 -0
  9625. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-lock.svg +23 -0
  9626. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-minus.svg +21 -0
  9627. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-move.svg +22 -0
  9628. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-off.svg +22 -0
  9629. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-plus.svg +22 -0
  9630. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-question.svg +22 -0
  9631. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-ribbon.svg +21 -0
  9632. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-search.svg +22 -0
  9633. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-share.svg +22 -0
  9634. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-shield.svg +22 -0
  9635. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-signal.svg +23 -0
  9636. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-spark.svg +22 -0
  9637. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-star.svg +21 -0
  9638. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-stats.svg +22 -0
  9639. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-up.svg +22 -0
  9640. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home-x.svg +22 -0
  9641. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/home.svg +21 -0
  9642. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/horse-toy.svg +22 -0
  9643. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/horse.svg +20 -0
  9644. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/horseshoe.svg +19 -0
  9645. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hospital-circle.svg +22 -0
  9646. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hospital.svg +22 -0
  9647. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hotel-service.svg +19 -0
  9648. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hourglass-empty.svg +20 -0
  9649. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hourglass-high.svg +21 -0
  9650. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hourglass-low.svg +21 -0
  9651. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hourglass-off.svg +21 -0
  9652. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hourglass.svg +22 -0
  9653. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hours-12.svg +22 -0
  9654. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/hours-24.svg +24 -0
  9655. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/html.svg +25 -0
  9656. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-connect-off.svg +22 -0
  9657. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-connect.svg +21 -0
  9658. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-delete-off.svg +23 -0
  9659. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-delete.svg +22 -0
  9660. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-get-off.svg +24 -0
  9661. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-get.svg +23 -0
  9662. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-head-off.svg +26 -0
  9663. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-head.svg +25 -0
  9664. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-options-off.svg +23 -0
  9665. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-options.svg +22 -0
  9666. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-patch-off.svg +24 -0
  9667. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-patch.svg +23 -0
  9668. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-post-off.svg +22 -0
  9669. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-post.svg +21 -0
  9670. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-put-off.svg +23 -0
  9671. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-put.svg +22 -0
  9672. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-que-off.svg +24 -0
  9673. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-que.svg +23 -0
  9674. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-trace-off.svg +25 -0
  9675. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/http-trace.svg +24 -0
  9676. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ice-cream-2.svg +20 -0
  9677. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ice-cream-off.svg +23 -0
  9678. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ice-cream.svg +22 -0
  9679. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ice-skating.svg +22 -0
  9680. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/iceberg.svg +20 -0
  9681. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/icons-off.svg +24 -0
  9682. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/icons.svg +23 -0
  9683. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/id-badge-2.svg +23 -0
  9684. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/id-badge-off.svg +23 -0
  9685. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/id-badge.svg +22 -0
  9686. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/id-off.svg +24 -0
  9687. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/id.svg +23 -0
  9688. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ikosaedr.svg +26 -0
  9689. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/image-generation.svg +24 -0
  9690. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/image-in-picture.svg +25 -0
  9691. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inbox-off.svg +21 -0
  9692. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inbox.svg +20 -0
  9693. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/indent-decrease.svg +22 -0
  9694. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/indent-increase.svg +22 -0
  9695. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/infinity-off.svg +20 -0
  9696. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/infinity.svg +19 -0
  9697. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/info-circle.svg +21 -0
  9698. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/info-hexagon.svg +21 -0
  9699. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/info-octagon.svg +21 -0
  9700. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/info-small.svg +20 -0
  9701. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/info-square-rounded.svg +21 -0
  9702. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/info-square.svg +21 -0
  9703. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/info-triangle.svg +21 -0
  9704. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inner-shadow-bottom-left.svg +20 -0
  9705. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inner-shadow-bottom-right.svg +20 -0
  9706. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inner-shadow-bottom.svg +20 -0
  9707. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inner-shadow-left.svg +20 -0
  9708. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inner-shadow-right.svg +20 -0
  9709. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inner-shadow-top-left.svg +20 -0
  9710. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inner-shadow-top-right.svg +20 -0
  9711. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/inner-shadow-top.svg +20 -0
  9712. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/input-ai.svg +22 -0
  9713. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/input-check.svg +20 -0
  9714. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/input-search.svg +21 -0
  9715. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/input-spark.svg +20 -0
  9716. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/input-x.svg +21 -0
  9717. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/invoice.svg +20 -0
  9718. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ironing-1.svg +20 -0
  9719. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ironing-2.svg +21 -0
  9720. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ironing-3.svg +22 -0
  9721. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ironing-off.svg +20 -0
  9722. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ironing-steam-off.svg +25 -0
  9723. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ironing-steam.svg +22 -0
  9724. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ironing.svg +19 -0
  9725. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/irregular-polyhedron-off.svg +23 -0
  9726. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/irregular-polyhedron-plus.svg +24 -0
  9727. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/irregular-polyhedron.svg +22 -0
  9728. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/italic.svg +21 -0
  9729. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/jacket.svg +23 -0
  9730. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/jetpack.svg +24 -0
  9731. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/jetski.svg +21 -0
  9732. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/jewish-star.svg +19 -0
  9733. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/join-bevel.svg +19 -0
  9734. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/join-round.svg +19 -0
  9735. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/join-straight.svg +19 -0
  9736. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/joker.svg +22 -0
  9737. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/jpg.svg +21 -0
  9738. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/json.svg +22 -0
  9739. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/jump-rope.svg +21 -0
  9740. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/karate.svg +22 -0
  9741. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/kayak.svg +24 -0
  9742. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/kerning.svg +21 -0
  9743. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/key-off.svg +22 -0
  9744. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/key.svg +20 -0
  9745. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/keyboard-hide.svg +27 -0
  9746. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/keyboard-off.svg +27 -0
  9747. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/keyboard-show.svg +27 -0
  9748. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/keyboard.svg +26 -0
  9749. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/keyframe-align-center.svg +23 -0
  9750. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/keyframe-align-horizontal.svg +21 -0
  9751. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/keyframe-align-vertical.svg +21 -0
  9752. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/keyframe.svg +19 -0
  9753. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/keyframes.svg +21 -0
  9754. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/label-important.svg +19 -0
  9755. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/label-off.svg +20 -0
  9756. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/label.svg +19 -0
  9757. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ladder-off.svg +25 -0
  9758. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ladder.svg +24 -0
  9759. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ladle.svg +20 -0
  9760. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lambda.svg +20 -0
  9761. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lamp-2.svg +23 -0
  9762. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lamp-off.svg +22 -0
  9763. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lamp.svg +21 -0
  9764. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lane.svg +20 -0
  9765. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/language-hiragana.svg +23 -0
  9766. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/language-katakana.svg +22 -0
  9767. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/language-off.svg +24 -0
  9768. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/language.svg +24 -0
  9769. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lasso-off.svg +22 -0
  9770. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lasso-polygon.svg +21 -0
  9771. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lasso.svg +21 -0
  9772. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/laurel-wreath-1.svg +27 -0
  9773. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/laurel-wreath-2.svg +27 -0
  9774. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/laurel-wreath-3.svg +27 -0
  9775. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/laurel-wreath.svg +26 -0
  9776. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layers-difference.svg +23 -0
  9777. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layers-intersect-2.svg +21 -0
  9778. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layers-intersect.svg +20 -0
  9779. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layers-linked.svg +20 -0
  9780. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layers-off.svg +21 -0
  9781. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layers-selected-bottom.svg +23 -0
  9782. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layers-selected.svg +23 -0
  9783. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layers-subtract.svg +20 -0
  9784. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layers-union.svg +19 -0
  9785. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-2.svg +22 -0
  9786. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-align-bottom.svg +20 -0
  9787. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-align-center.svg +21 -0
  9788. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-align-left.svg +20 -0
  9789. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-align-middle.svg +21 -0
  9790. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-align-right.svg +20 -0
  9791. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-align-top.svg +20 -0
  9792. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-board-split.svg +23 -0
  9793. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-board.svg +22 -0
  9794. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-bottombar-collapse.svg +21 -0
  9795. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-bottombar-expand.svg +21 -0
  9796. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-bottombar-inactive.svg +23 -0
  9797. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-bottombar.svg +20 -0
  9798. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-cards.svg +20 -0
  9799. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-collage.svg +21 -0
  9800. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-columns.svg +20 -0
  9801. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-dashboard.svg +22 -0
  9802. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-distribute-horizontal.svg +21 -0
  9803. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-distribute-vertical.svg +21 -0
  9804. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-grid-add.svg +22 -0
  9805. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-grid-remove.svg +22 -0
  9806. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-grid.svg +22 -0
  9807. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-kanban.svg +22 -0
  9808. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-list.svg +20 -0
  9809. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-navbar-collapse.svg +21 -0
  9810. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-navbar-expand.svg +21 -0
  9811. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-navbar-inactive.svg +23 -0
  9812. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-navbar.svg +20 -0
  9813. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-off.svg +22 -0
  9814. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-rows.svg +20 -0
  9815. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-inactive.svg +23 -0
  9816. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-left-collapse.svg +21 -0
  9817. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-left-expand.svg +21 -0
  9818. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-right-collapse.svg +21 -0
  9819. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-right-expand.svg +21 -0
  9820. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-right-inactive.svg +23 -0
  9821. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-sidebar-right.svg +20 -0
  9822. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout-sidebar.svg +20 -0
  9823. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/layout.svg +21 -0
  9824. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/leaf-2.svg +20 -0
  9825. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/leaf-off.svg +21 -0
  9826. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/leaf.svg +20 -0
  9827. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lego-off.svg +22 -0
  9828. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lego.svg +22 -0
  9829. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lemon-2.svg +19 -0
  9830. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lemon.svg +23 -0
  9831. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-a-small.svg +20 -0
  9832. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-a.svg +20 -0
  9833. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-b-small.svg +19 -0
  9834. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-b.svg +20 -0
  9835. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-c-small.svg +19 -0
  9836. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-c.svg +19 -0
  9837. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-case-lower.svg +22 -0
  9838. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-case-toggle.svg +22 -0
  9839. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-case-upper.svg +22 -0
  9840. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-case.svg +22 -0
  9841. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-d-small.svg +19 -0
  9842. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-d.svg +19 -0
  9843. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-e-small.svg +20 -0
  9844. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-e.svg +20 -0
  9845. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-f-small.svg +20 -0
  9846. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-f.svg +20 -0
  9847. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-g-small.svg +19 -0
  9848. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-g.svg +19 -0
  9849. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-h-small.svg +21 -0
  9850. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-h.svg +21 -0
  9851. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-i-small.svg +19 -0
  9852. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-i.svg +19 -0
  9853. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-j-small.svg +19 -0
  9854. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-j.svg +19 -0
  9855. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-k-small.svg +21 -0
  9856. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-k.svg +21 -0
  9857. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-l-small.svg +19 -0
  9858. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-l.svg +19 -0
  9859. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-m-small.svg +19 -0
  9860. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-m.svg +19 -0
  9861. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-n-small.svg +19 -0
  9862. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-n.svg +19 -0
  9863. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-o-small.svg +19 -0
  9864. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-o.svg +19 -0
  9865. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-p-small.svg +19 -0
  9866. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-p.svg +19 -0
  9867. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-q-small.svg +20 -0
  9868. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-q.svg +20 -0
  9869. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-r-small.svg +19 -0
  9870. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-r.svg +20 -0
  9871. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-s-small.svg +19 -0
  9872. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-s.svg +19 -0
  9873. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-spacing.svg +23 -0
  9874. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-t-small.svg +20 -0
  9875. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-t.svg +20 -0
  9876. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-u-small.svg +19 -0
  9877. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-u.svg +19 -0
  9878. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-v-small.svg +19 -0
  9879. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-v.svg +19 -0
  9880. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-w-small.svg +19 -0
  9881. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-w.svg +19 -0
  9882. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-x-small.svg +20 -0
  9883. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-x.svg +20 -0
  9884. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-y-small.svg +20 -0
  9885. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-y.svg +20 -0
  9886. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-z-small.svg +19 -0
  9887. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/letter-z.svg +19 -0
  9888. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/library-minus.svg +21 -0
  9889. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/library-photo.svg +23 -0
  9890. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/library-plus.svg +22 -0
  9891. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/library.svg +23 -0
  9892. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/license-off.svg +22 -0
  9893. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/license.svg +21 -0
  9894. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lifebuoy-off.svg +25 -0
  9895. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lifebuoy.svg +24 -0
  9896. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lighter.svg +20 -0
  9897. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/line-dashed.svg +21 -0
  9898. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/line-dotted.svg +23 -0
  9899. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/line-height.svg +24 -0
  9900. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/line-scan.svg +23 -0
  9901. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/line.svg +21 -0
  9902. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/link-minus.svg +22 -0
  9903. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/link-off.svg +22 -0
  9904. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/link-plus.svg +23 -0
  9905. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/link.svg +21 -0
  9906. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/list-check.svg +24 -0
  9907. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/list-details.svg +24 -0
  9908. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/list-letters.svg +24 -0
  9909. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/list-numbers.svg +23 -0
  9910. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/list-search.svg +23 -0
  9911. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/list-tree.svg +24 -0
  9912. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/list.svg +24 -0
  9913. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/live-photo-off.svg +35 -0
  9914. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/live-photo.svg +34 -0
  9915. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/live-view.svg +24 -0
  9916. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/load-balancer.svg +29 -0
  9917. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/loader-2.svg +19 -0
  9918. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/loader-3.svg +20 -0
  9919. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/loader-quarter.svg +21 -0
  9920. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/loader.svg +26 -0
  9921. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-bolt.svg +20 -0
  9922. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-broken.svg +21 -0
  9923. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-cancel.svg +21 -0
  9924. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-check.svg +20 -0
  9925. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-code.svg +21 -0
  9926. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-cog.svg +26 -0
  9927. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-discount.svg +22 -0
  9928. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-dollar.svg +21 -0
  9929. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-down.svg +21 -0
  9930. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-exclamation.svg +21 -0
  9931. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-heart.svg +20 -0
  9932. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-minus.svg +20 -0
  9933. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-off.svg +20 -0
  9934. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-pause.svg +21 -0
  9935. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-pin.svg +21 -0
  9936. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-plus.svg +21 -0
  9937. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-question.svg +21 -0
  9938. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-search.svg +21 -0
  9939. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-share.svg +21 -0
  9940. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-star.svg +20 -0
  9941. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-up.svg +21 -0
  9942. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location-x.svg +21 -0
  9943. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/location.svg +19 -0
  9944. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-access-off.svg +25 -0
  9945. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-access.svg +24 -0
  9946. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-bitcoin.svg +22 -0
  9947. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-bolt.svg +22 -0
  9948. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-cancel.svg +23 -0
  9949. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-check.svg +22 -0
  9950. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-code.svg +23 -0
  9951. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-cog.svg +28 -0
  9952. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-dollar.svg +23 -0
  9953. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-down.svg +23 -0
  9954. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-exclamation.svg +23 -0
  9955. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-heart.svg +21 -0
  9956. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-minus.svg +22 -0
  9957. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-off.svg +22 -0
  9958. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-open-2.svg +21 -0
  9959. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-open-off.svg +22 -0
  9960. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-open.svg +21 -0
  9961. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-password.svg +23 -0
  9962. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-pause.svg +23 -0
  9963. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-pin.svg +23 -0
  9964. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-plus.svg +23 -0
  9965. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-question.svg +23 -0
  9966. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-search.svg +22 -0
  9967. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-share.svg +23 -0
  9968. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-square-rounded.svg +21 -0
  9969. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-square.svg +21 -0
  9970. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-star.svg +21 -0
  9971. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-up.svg +23 -0
  9972. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock-x.svg +23 -0
  9973. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lock.svg +21 -0
  9974. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logic-and.svg +22 -0
  9975. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logic-buffer.svg +22 -0
  9976. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logic-nand.svg +23 -0
  9977. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logic-nor.svg +23 -0
  9978. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logic-not.svg +23 -0
  9979. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logic-or.svg +22 -0
  9980. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logic-xnor.svg +24 -0
  9981. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logic-xor.svg +23 -0
  9982. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/login-2.svg +21 -0
  9983. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/login.svg +21 -0
  9984. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logout-2.svg +21 -0
  9985. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logout.svg +21 -0
  9986. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/logs.svg +27 -0
  9987. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lollipop-off.svg +25 -0
  9988. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lollipop.svg +24 -0
  9989. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/luggage-off.svg +25 -0
  9990. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/luggage.svg +24 -0
  9991. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lungs-off.svg +23 -0
  9992. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/lungs.svg +22 -0
  9993. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/macro-off.svg +24 -0
  9994. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/macro.svg +23 -0
  9995. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/magnet-off.svg +22 -0
  9996. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/magnet.svg +21 -0
  9997. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/magnetic.svg +23 -0
  9998. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-ai.svg +23 -0
  9999. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-bitcoin.svg +21 -0
  10000. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-bolt.svg +21 -0
  10001. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-cancel.svg +22 -0
  10002. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-check.svg +21 -0
  10003. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-code.svg +22 -0
  10004. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-cog.svg +27 -0
  10005. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-dollar.svg +22 -0
  10006. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-down.svg +22 -0
  10007. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-exclamation.svg +22 -0
  10008. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-fast.svg +22 -0
  10009. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-forward.svg +22 -0
  10010. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-heart.svg +21 -0
  10011. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-minus.svg +21 -0
  10012. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-off.svg +21 -0
  10013. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-opened.svg +22 -0
  10014. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-pause.svg +22 -0
  10015. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-pin.svg +22 -0
  10016. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-plus.svg +22 -0
  10017. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-question.svg +22 -0
  10018. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-search.svg +22 -0
  10019. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-share.svg +22 -0
  10020. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-spark.svg +21 -0
  10021. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-star.svg +21 -0
  10022. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-up.svg +22 -0
  10023. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail-x.svg +22 -0
  10024. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mail.svg +20 -0
  10025. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mailbox-off.svg +22 -0
  10026. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mailbox.svg +21 -0
  10027. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/man.svg +24 -0
  10028. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/manual-gearbox.svg +26 -0
  10029. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-2.svg +23 -0
  10030. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-bolt.svg +22 -0
  10031. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-cancel.svg +23 -0
  10032. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-check.svg +22 -0
  10033. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-code.svg +23 -0
  10034. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-cog.svg +28 -0
  10035. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-discount.svg +24 -0
  10036. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-dollar.svg +23 -0
  10037. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-down.svg +23 -0
  10038. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-east.svg +21 -0
  10039. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-exclamation.svg +23 -0
  10040. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-heart.svg +22 -0
  10041. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-lock.svg +22 -0
  10042. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-minus.svg +22 -0
  10043. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-north.svg +20 -0
  10044. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-off.svg +22 -0
  10045. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pause.svg +23 -0
  10046. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-2.svg +23 -0
  10047. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-bolt.svg +21 -0
  10048. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-cancel.svg +22 -0
  10049. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-check.svg +21 -0
  10050. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-code.svg +22 -0
  10051. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-cog.svg +27 -0
  10052. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-dollar.svg +22 -0
  10053. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-down.svg +22 -0
  10054. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-exclamation.svg +22 -0
  10055. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-heart.svg +21 -0
  10056. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-minus.svg +21 -0
  10057. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-off.svg +21 -0
  10058. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-pause.svg +22 -0
  10059. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-pin.svg +22 -0
  10060. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-plus.svg +22 -0
  10061. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-question.svg +22 -0
  10062. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-search.svg +22 -0
  10063. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-share.svg +22 -0
  10064. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-star.svg +21 -0
  10065. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-up.svg +22 -0
  10066. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin-x.svg +22 -0
  10067. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pin.svg +20 -0
  10068. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-pins.svg +22 -0
  10069. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-plus.svg +23 -0
  10070. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-question.svg +23 -0
  10071. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-route.svg +23 -0
  10072. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-search.svg +23 -0
  10073. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-share.svg +23 -0
  10074. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-shield.svg +21 -0
  10075. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-south.svg +20 -0
  10076. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-star.svg +22 -0
  10077. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-up.svg +23 -0
  10078. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-west.svg +20 -0
  10079. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map-x.svg +23 -0
  10080. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/map.svg +21 -0
  10081. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/markdown-off.svg +23 -0
  10082. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/markdown.svg +21 -0
  10083. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/marquee-2.svg +19 -0
  10084. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/marquee-off.svg +31 -0
  10085. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/marquee.svg +19 -0
  10086. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mars.svg +22 -0
  10087. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mask-off.svg +21 -0
  10088. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mask.svg +20 -0
  10089. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/masks-theater-off.svg +25 -0
  10090. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/masks-theater.svg +26 -0
  10091. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/massage.svg +23 -0
  10092. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/matchstick.svg +21 -0
  10093. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-1-divide-2.svg +21 -0
  10094. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-1-divide-3.svg +21 -0
  10095. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-avg.svg +20 -0
  10096. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-cos.svg +21 -0
  10097. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-ctg.svg +22 -0
  10098. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-equal-greater.svg +20 -0
  10099. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-equal-lower.svg +20 -0
  10100. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-function-off.svg +23 -0
  10101. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-function-y.svg +22 -0
  10102. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-function.svg +22 -0
  10103. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-greater.svg +19 -0
  10104. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-integral-x.svg +21 -0
  10105. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-integral.svg +19 -0
  10106. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-integrals.svg +20 -0
  10107. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-lower.svg +19 -0
  10108. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-max-min.svg +22 -0
  10109. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-max.svg +21 -0
  10110. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-min.svg +21 -0
  10111. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-not.svg +19 -0
  10112. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-off.svg +23 -0
  10113. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-pi-divide-2.svg +23 -0
  10114. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-pi.svg +21 -0
  10115. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-sec.svg +22 -0
  10116. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-sin.svg +21 -0
  10117. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-symbols.svg +27 -0
  10118. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-tg.svg +21 -0
  10119. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-x-divide-2.svg +22 -0
  10120. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-x-divide-y-2.svg +23 -0
  10121. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-x-divide-y.svg +23 -0
  10122. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-x-floor-divide-y.svg +24 -0
  10123. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-x-minus-x.svg +23 -0
  10124. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-x-minus-y.svg +23 -0
  10125. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-x-plus-x.svg +24 -0
  10126. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-x-plus-y.svg +24 -0
  10127. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-xy.svg +22 -0
  10128. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-y-minus-y.svg +23 -0
  10129. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math-y-plus-y.svg +24 -0
  10130. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/math.svg +21 -0
  10131. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/matrix.svg +29 -0
  10132. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/maximize-off.svg +23 -0
  10133. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/maximize.svg +22 -0
  10134. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/meat-off.svg +25 -0
  10135. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/meat.svg +22 -0
  10136. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/medal-2.svg +22 -0
  10137. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/medal.svg +20 -0
  10138. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/medical-cross-circle.svg +22 -0
  10139. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/medical-cross-off.svg +20 -0
  10140. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/medical-cross.svg +19 -0
  10141. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/medicine-syrup.svg +22 -0
  10142. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/meeple.svg +19 -0
  10143. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/melon.svg +19 -0
  10144. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/menorah.svg +22 -0
  10145. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/menu-2.svg +21 -0
  10146. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/menu-3.svg +22 -0
  10147. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/menu-4.svg +22 -0
  10148. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/menu-deep.svg +21 -0
  10149. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/menu-order.svg +22 -0
  10150. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/menu.svg +20 -0
  10151. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mesh.svg +23 -0
  10152. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-bolt.svg +22 -0
  10153. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-cancel.svg +23 -0
  10154. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-check.svg +22 -0
  10155. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-code.svg +23 -0
  10156. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-cog.svg +28 -0
  10157. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-dollar.svg +23 -0
  10158. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-down.svg +23 -0
  10159. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-exclamation.svg +23 -0
  10160. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-heart.svg +22 -0
  10161. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-minus.svg +22 -0
  10162. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-off.svg +22 -0
  10163. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-pause.svg +23 -0
  10164. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-pin.svg +23 -0
  10165. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-plus.svg +23 -0
  10166. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-question.svg +23 -0
  10167. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-search.svg +23 -0
  10168. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-share.svg +23 -0
  10169. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-star.svg +22 -0
  10170. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-up.svg +23 -0
  10171. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2-x.svg +23 -0
  10172. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-2.svg +21 -0
  10173. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-bolt.svg +22 -0
  10174. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-cancel.svg +23 -0
  10175. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-chatbot.svg +22 -0
  10176. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-check.svg +22 -0
  10177. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-bolt.svg +20 -0
  10178. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-cancel.svg +21 -0
  10179. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-check.svg +20 -0
  10180. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-code.svg +21 -0
  10181. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-cog.svg +26 -0
  10182. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-dollar.svg +21 -0
  10183. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-down.svg +21 -0
  10184. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-exclamation.svg +21 -0
  10185. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-heart.svg +20 -0
  10186. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-minus.svg +20 -0
  10187. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-off.svg +20 -0
  10188. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-pause.svg +21 -0
  10189. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-pin.svg +21 -0
  10190. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-plus.svg +21 -0
  10191. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-question.svg +21 -0
  10192. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-search.svg +21 -0
  10193. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-share.svg +21 -0
  10194. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-star.svg +20 -0
  10195. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-up.svg +21 -0
  10196. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-user.svg +21 -0
  10197. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle-x.svg +21 -0
  10198. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-circle.svg +19 -0
  10199. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-code.svg +23 -0
  10200. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-cog.svg +28 -0
  10201. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-dollar.svg +23 -0
  10202. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-dots.svg +22 -0
  10203. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-down.svg +23 -0
  10204. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-exclamation.svg +23 -0
  10205. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-forward.svg +21 -0
  10206. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-heart.svg +22 -0
  10207. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-language.svg +21 -0
  10208. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-minus.svg +22 -0
  10209. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-off.svg +22 -0
  10210. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-pause.svg +23 -0
  10211. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-pin.svg +23 -0
  10212. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-plus.svg +23 -0
  10213. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-question.svg +23 -0
  10214. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-reply.svg +21 -0
  10215. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-report.svg +21 -0
  10216. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-search.svg +23 -0
  10217. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-share.svg +23 -0
  10218. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-star.svg +22 -0
  10219. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-up.svg +23 -0
  10220. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-user.svg +21 -0
  10221. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message-x.svg +23 -0
  10222. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/message.svg +21 -0
  10223. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/messages-off.svg +21 -0
  10224. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/messages.svg +20 -0
  10225. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/meteor-off.svg +21 -0
  10226. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/meteor.svg +20 -0
  10227. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/meter-cube.svg +22 -0
  10228. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/meter-square.svg +22 -0
  10229. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/metronome.svg +20 -0
  10230. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/michelin-bib-gourmand.svg +23 -0
  10231. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/michelin-star-green.svg +20 -0
  10232. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/michelin-star.svg +19 -0
  10233. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mickey.svg +21 -0
  10234. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/microfrontends.svg +25 -0
  10235. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/microphone-2-off.svg +21 -0
  10236. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/microphone-2.svg +20 -0
  10237. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/microphone-off.svg +23 -0
  10238. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/microphone.svg +22 -0
  10239. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/microscope-off.svg +26 -0
  10240. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/microscope.svg +25 -0
  10241. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/microwave-off.svg +25 -0
  10242. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/microwave.svg +25 -0
  10243. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/middleware.svg +27 -0
  10244. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/military-award.svg +21 -0
  10245. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/military-rank.svg +22 -0
  10246. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/milk-off.svg +22 -0
  10247. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/milk.svg +22 -0
  10248. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/milkshake.svg +22 -0
  10249. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/minimize.svg +22 -0
  10250. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/minus-vertical.svg +19 -0
  10251. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/minus.svg +19 -0
  10252. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mist-off.svg +25 -0
  10253. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mist.svg +22 -0
  10254. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mobiledata-off.svg +23 -0
  10255. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mobiledata.svg +22 -0
  10256. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moneybag-edit.svg +21 -0
  10257. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moneybag-heart.svg +21 -0
  10258. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moneybag-minus.svg +21 -0
  10259. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moneybag-move-back.svg +22 -0
  10260. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moneybag-move.svg +22 -0
  10261. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moneybag-plus.svg +22 -0
  10262. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moneybag.svg +20 -0
  10263. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/monkeybar.svg +23 -0
  10264. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-angry.svg +22 -0
  10265. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-annoyed-2.svg +22 -0
  10266. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-annoyed.svg +22 -0
  10267. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-bitcoin.svg +23 -0
  10268. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-boy.svg +24 -0
  10269. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-check.svg +23 -0
  10270. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-cog.svg +29 -0
  10271. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-confuzed.svg +22 -0
  10272. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-crazy-happy.svg +24 -0
  10273. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-cry.svg +23 -0
  10274. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-dollar.svg +24 -0
  10275. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-edit.svg +23 -0
  10276. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-empty.svg +22 -0
  10277. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-happy.svg +22 -0
  10278. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-heart.svg +23 -0
  10279. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-kid.svg +23 -0
  10280. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-look-down.svg +22 -0
  10281. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-look-left.svg +21 -0
  10282. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-look-right.svg +21 -0
  10283. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-look-up.svg +22 -0
  10284. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-minus.svg +23 -0
  10285. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-nerd.svg +25 -0
  10286. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-nervous.svg +22 -0
  10287. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-neutral.svg +21 -0
  10288. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-off.svg +23 -0
  10289. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-pin.svg +24 -0
  10290. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-plus.svg +24 -0
  10291. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-puzzled.svg +24 -0
  10292. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-sad-2.svg +22 -0
  10293. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-sad-dizzy.svg +24 -0
  10294. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-sad-squint.svg +22 -0
  10295. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-sad.svg +22 -0
  10296. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-search.svg +24 -0
  10297. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-share.svg +24 -0
  10298. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-sick.svg +22 -0
  10299. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-silence.svg +25 -0
  10300. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-sing.svg +22 -0
  10301. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-smile-beam.svg +22 -0
  10302. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-smile-dizzy.svg +24 -0
  10303. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-smile.svg +22 -0
  10304. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-spark.svg +23 -0
  10305. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-surprised.svg +22 -0
  10306. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-tongue-wink-2.svg +23 -0
  10307. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-tongue-wink.svg +24 -0
  10308. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-tongue.svg +22 -0
  10309. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-unamused.svg +22 -0
  10310. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-up.svg +24 -0
  10311. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-wink-2.svg +22 -0
  10312. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-wink.svg +22 -0
  10313. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-wrrr.svg +22 -0
  10314. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-x.svg +24 -0
  10315. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mood-xd.svg +22 -0
  10316. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moon-2.svg +20 -0
  10317. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moon-off.svg +20 -0
  10318. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moon-stars.svg +21 -0
  10319. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moon.svg +19 -0
  10320. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moped.svg +21 -0
  10321. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/motorbike.svg +22 -0
  10322. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mountain-off.svg +21 -0
  10323. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mountain.svg +20 -0
  10324. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mouse-2.svg +21 -0
  10325. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mouse-off.svg +21 -0
  10326. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mouse.svg +20 -0
  10327. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/moustache.svg +20 -0
  10328. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/movie-off.svg +26 -0
  10329. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/movie.svg +26 -0
  10330. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mug-off.svg +21 -0
  10331. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mug.svg +20 -0
  10332. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/multiplier-0-5x.svg +22 -0
  10333. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/multiplier-1-5x.svg +23 -0
  10334. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/multiplier-1x.svg +21 -0
  10335. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/multiplier-2x.svg +21 -0
  10336. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mushroom-off.svg +21 -0
  10337. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/mushroom.svg +20 -0
  10338. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-bolt.svg +22 -0
  10339. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-cancel.svg +23 -0
  10340. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-check.svg +22 -0
  10341. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-code.svg +23 -0
  10342. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-cog.svg +28 -0
  10343. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-discount.svg +24 -0
  10344. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-dollar.svg +23 -0
  10345. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-down.svg +23 -0
  10346. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-exclamation.svg +23 -0
  10347. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-heart.svg +22 -0
  10348. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-minus.svg +22 -0
  10349. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-off.svg +23 -0
  10350. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-pause.svg +23 -0
  10351. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-pin.svg +23 -0
  10352. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-plus.svg +23 -0
  10353. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-question.svg +23 -0
  10354. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-search.svg +23 -0
  10355. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-share.svg +23 -0
  10356. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-star.svg +22 -0
  10357. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-up.svg +23 -0
  10358. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music-x.svg +23 -0
  10359. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/music.svg +22 -0
  10360. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-bolt.svg +20 -0
  10361. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-cancel.svg +21 -0
  10362. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-check.svg +20 -0
  10363. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-code.svg +21 -0
  10364. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-cog.svg +26 -0
  10365. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-discount.svg +22 -0
  10366. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-dollar.svg +21 -0
  10367. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-down.svg +21 -0
  10368. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-east.svg +21 -0
  10369. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-exclamation.svg +21 -0
  10370. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-heart.svg +20 -0
  10371. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-minus.svg +20 -0
  10372. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-north.svg +20 -0
  10373. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-off.svg +20 -0
  10374. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-pause.svg +21 -0
  10375. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-pin.svg +21 -0
  10376. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-plus.svg +21 -0
  10377. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-question.svg +21 -0
  10378. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-search.svg +21 -0
  10379. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-share.svg +21 -0
  10380. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-south.svg +20 -0
  10381. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-star.svg +20 -0
  10382. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-top.svg +20 -0
  10383. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-up.svg +21 -0
  10384. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-west.svg +20 -0
  10385. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation-x.svg +21 -0
  10386. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/navigation.svg +19 -0
  10387. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/needle-thread.svg +23 -0
  10388. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/needle.svg +20 -0
  10389. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/network-off.svg +27 -0
  10390. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/network.svg +26 -0
  10391. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/new-section.svg +21 -0
  10392. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/news-off.svg +22 -0
  10393. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/news.svg +22 -0
  10394. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/nfc-off.svg +22 -0
  10395. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/nfc.svg +21 -0
  10396. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/no-copyright.svg +22 -0
  10397. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/no-creative-commons.svg +23 -0
  10398. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/no-derivatives.svg +21 -0
  10399. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/north-star.svg +22 -0
  10400. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/note-off.svg +21 -0
  10401. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/note.svg +20 -0
  10402. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/notebook-off.svg +21 -0
  10403. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/notebook.svg +21 -0
  10404. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/notes-off.svg +23 -0
  10405. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/notes.svg +22 -0
  10406. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/notification-off.svg +21 -0
  10407. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/notification.svg +20 -0
  10408. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-0-small.svg +19 -0
  10409. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-0.svg +20 -0
  10410. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-1-small.svg +19 -0
  10411. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-1.svg +19 -0
  10412. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-10-small.svg +20 -0
  10413. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-10.svg +20 -0
  10414. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-100-small.svg +21 -0
  10415. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-11-small.svg +20 -0
  10416. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-11.svg +20 -0
  10417. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-12-small.svg +20 -0
  10418. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-123.svg +21 -0
  10419. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-13-small.svg +20 -0
  10420. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-14-small.svg +21 -0
  10421. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-15-small.svg +20 -0
  10422. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-16-small.svg +20 -0
  10423. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-17-small.svg +20 -0
  10424. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-18-small.svg +20 -0
  10425. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-19-small.svg +20 -0
  10426. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-2-small.svg +19 -0
  10427. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-2.svg +19 -0
  10428. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-20-small.svg +20 -0
  10429. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-21-small.svg +20 -0
  10430. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-22-small.svg +20 -0
  10431. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-23-small.svg +20 -0
  10432. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-24-small.svg +21 -0
  10433. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-25-small.svg +20 -0
  10434. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-26-small.svg +20 -0
  10435. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-27-small.svg +20 -0
  10436. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-28-small.svg +20 -0
  10437. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-29-small.svg +20 -0
  10438. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-3-small.svg +19 -0
  10439. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-3.svg +20 -0
  10440. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-30-small.svg +20 -0
  10441. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-31-small.svg +20 -0
  10442. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-32-small.svg +20 -0
  10443. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-33-small.svg +20 -0
  10444. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-34-small.svg +21 -0
  10445. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-35-small.svg +20 -0
  10446. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-36-small.svg +20 -0
  10447. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-37-small.svg +20 -0
  10448. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-38-small.svg +20 -0
  10449. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-39-small.svg +20 -0
  10450. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-4-small.svg +20 -0
  10451. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-4.svg +19 -0
  10452. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-40-small.svg +21 -0
  10453. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-41-small.svg +21 -0
  10454. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-42-small.svg +21 -0
  10455. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-43-small.svg +21 -0
  10456. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-44-small.svg +22 -0
  10457. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-45-small.svg +21 -0
  10458. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-46-small.svg +21 -0
  10459. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-47-small.svg +21 -0
  10460. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-48-small.svg +21 -0
  10461. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-49-small.svg +21 -0
  10462. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-5-small.svg +19 -0
  10463. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-5.svg +19 -0
  10464. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-50-small.svg +20 -0
  10465. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-51-small.svg +20 -0
  10466. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-52-small.svg +20 -0
  10467. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-53-small.svg +20 -0
  10468. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-54-small.svg +21 -0
  10469. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-55-small.svg +20 -0
  10470. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-56-small.svg +20 -0
  10471. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-57-small.svg +20 -0
  10472. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-58-small.svg +20 -0
  10473. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-59-small.svg +20 -0
  10474. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-6-small.svg +19 -0
  10475. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-6.svg +20 -0
  10476. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-60-small.svg +20 -0
  10477. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-61-small.svg +20 -0
  10478. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-62-small.svg +20 -0
  10479. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-63-small.svg +20 -0
  10480. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-64-small.svg +21 -0
  10481. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-65-small.svg +20 -0
  10482. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-66-small.svg +20 -0
  10483. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-67-small.svg +20 -0
  10484. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-68-small.svg +20 -0
  10485. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-69-small.svg +20 -0
  10486. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-7-small.svg +19 -0
  10487. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-7.svg +19 -0
  10488. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-70-small.svg +20 -0
  10489. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-71-small.svg +20 -0
  10490. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-72-small.svg +20 -0
  10491. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-73-small.svg +20 -0
  10492. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-74-small.svg +21 -0
  10493. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-75-small.svg +20 -0
  10494. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-76-small.svg +20 -0
  10495. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-77-small.svg +20 -0
  10496. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-78-small.svg +20 -0
  10497. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-79-small.svg +20 -0
  10498. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-8-small.svg +19 -0
  10499. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-8.svg +20 -0
  10500. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-80-small.svg +20 -0
  10501. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-81-small.svg +20 -0
  10502. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-82-small.svg +20 -0
  10503. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-83-small.svg +20 -0
  10504. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-84-small.svg +21 -0
  10505. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-85-small.svg +20 -0
  10506. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-86-small.svg +20 -0
  10507. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-87-small.svg +20 -0
  10508. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-88-small.svg +20 -0
  10509. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-89-small.svg +20 -0
  10510. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-9-small.svg +19 -0
  10511. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-9.svg +20 -0
  10512. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-90-small.svg +20 -0
  10513. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-91-small.svg +20 -0
  10514. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-92-small.svg +20 -0
  10515. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-93-small.svg +20 -0
  10516. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-94-small.svg +21 -0
  10517. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-95-small.svg +20 -0
  10518. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-96-small.svg +20 -0
  10519. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-97-small.svg +20 -0
  10520. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-98-small.svg +20 -0
  10521. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number-99-small.svg +20 -0
  10522. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/number.svg +21 -0
  10523. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/numbers.svg +22 -0
  10524. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/nurse.svg +21 -0
  10525. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/nut.svg +20 -0
  10526. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/object-scan.svg +23 -0
  10527. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/octagon-minus-2.svg +20 -0
  10528. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/octagon-minus.svg +20 -0
  10529. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/octagon-off.svg +20 -0
  10530. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/octagon-plus-2.svg +21 -0
  10531. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/octagon-plus.svg +21 -0
  10532. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/octagon.svg +19 -0
  10533. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/octahedron-off.svg +22 -0
  10534. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/octahedron-plus.svg +23 -0
  10535. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/octahedron.svg +21 -0
  10536. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/old.svg +23 -0
  10537. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/olympic-torch.svg +21 -0
  10538. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/olympics-off.svg +24 -0
  10539. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/olympics.svg +23 -0
  10540. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/om.svg +23 -0
  10541. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/omega.svg +19 -0
  10542. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/option.svg +19 -0
  10543. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/outbound.svg +21 -0
  10544. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/outlet.svg +21 -0
  10545. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/oval-vertical.svg +19 -0
  10546. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/oval.svg +19 -0
  10547. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/overline.svg +20 -0
  10548. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/package-export.svg +24 -0
  10549. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/package-import.svg +24 -0
  10550. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/package-off.svg +24 -0
  10551. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/package.svg +23 -0
  10552. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/packages.svg +27 -0
  10553. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pacman.svg +20 -0
  10554. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/page-break.svg +22 -0
  10555. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/paint-off.svg +22 -0
  10556. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/paint.svg +21 -0
  10557. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/palette-off.svg +24 -0
  10558. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/palette.svg +22 -0
  10559. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/panorama-horizontal-off.svg +20 -0
  10560. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/panorama-horizontal.svg +19 -0
  10561. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/panorama-vertical-off.svg +20 -0
  10562. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/panorama-vertical.svg +19 -0
  10563. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/paper-bag-off.svg +23 -0
  10564. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/paper-bag.svg +22 -0
  10565. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/paperclip.svg +19 -0
  10566. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/parachute-off.svg +23 -0
  10567. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/parachute.svg +22 -0
  10568. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/parentheses-off.svg +21 -0
  10569. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/parentheses.svg +20 -0
  10570. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/parking-circle.svg +20 -0
  10571. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/parking-meter.svg +23 -0
  10572. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/parking-off.svg +21 -0
  10573. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/parking.svg +20 -0
  10574. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/password-fingerprint.svg +31 -0
  10575. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/password-mobile-phone.svg +30 -0
  10576. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/password-user.svg +29 -0
  10577. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/password.svg +27 -0
  10578. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/paw-off.svg +24 -0
  10579. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/paw.svg +23 -0
  10580. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/paywall.svg +24 -0
  10581. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pdf.svg +22 -0
  10582. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/peace.svg +22 -0
  10583. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-bolt.svg +21 -0
  10584. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-cancel.svg +22 -0
  10585. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-check.svg +21 -0
  10586. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-code.svg +22 -0
  10587. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-cog.svg +27 -0
  10588. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-discount.svg +23 -0
  10589. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-dollar.svg +22 -0
  10590. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-down.svg +22 -0
  10591. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-exclamation.svg +22 -0
  10592. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-heart.svg +21 -0
  10593. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-minus.svg +21 -0
  10594. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-off.svg +21 -0
  10595. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-pause.svg +22 -0
  10596. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-pin.svg +22 -0
  10597. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-plus.svg +22 -0
  10598. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-question.svg +22 -0
  10599. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-search.svg +22 -0
  10600. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-share.svg +22 -0
  10601. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-star.svg +21 -0
  10602. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-up.svg +22 -0
  10603. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil-x.svg +22 -0
  10604. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pencil.svg +20 -0
  10605. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pennant-2.svg +21 -0
  10606. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pennant-off.svg +22 -0
  10607. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pennant.svg +21 -0
  10608. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-minus.svg +20 -0
  10609. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-0.svg +20 -0
  10610. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-1.svg +20 -0
  10611. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-2.svg +20 -0
  10612. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-3.svg +20 -0
  10613. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-4.svg +21 -0
  10614. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-5.svg +20 -0
  10615. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-6.svg +20 -0
  10616. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-7.svg +20 -0
  10617. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-8.svg +20 -0
  10618. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-number-9.svg +20 -0
  10619. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-off.svg +20 -0
  10620. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-plus.svg +21 -0
  10621. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon-x.svg +21 -0
  10622. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagon.svg +19 -0
  10623. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pentagram.svg +20 -0
  10624. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pepper-off.svg +21 -0
  10625. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pepper.svg +20 -0
  10626. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-0.svg +19 -0
  10627. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-10.svg +20 -0
  10628. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-100.svg +19 -0
  10629. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-20.svg +20 -0
  10630. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-25.svg +20 -0
  10631. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-30.svg +20 -0
  10632. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-33.svg +20 -0
  10633. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-40.svg +20 -0
  10634. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-50.svg +20 -0
  10635. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-60.svg +20 -0
  10636. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-66.svg +20 -0
  10637. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-70.svg +20 -0
  10638. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-75.svg +20 -0
  10639. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-80.svg +20 -0
  10640. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage-90.svg +20 -0
  10641. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/percentage.svg +21 -0
  10642. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/perfume.svg +23 -0
  10643. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/perspective-off.svg +20 -0
  10644. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/perspective.svg +19 -0
  10645. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-call.svg +21 -0
  10646. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-calling.svg +22 -0
  10647. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-check.svg +20 -0
  10648. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-done.svg +20 -0
  10649. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-end.svg +21 -0
  10650. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-incoming.svg +21 -0
  10651. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-off.svg +20 -0
  10652. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-outgoing.svg +21 -0
  10653. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-pause.svg +21 -0
  10654. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-plus.svg +20 -0
  10655. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-ringing.svg +22 -0
  10656. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-spark.svg +20 -0
  10657. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone-x.svg +20 -0
  10658. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/phone.svg +19 -0
  10659. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-ai.svg +24 -0
  10660. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-bitcoin.svg +22 -0
  10661. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-bolt.svg +23 -0
  10662. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-cancel.svg +24 -0
  10663. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-check.svg +23 -0
  10664. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-circle-minus.svg +23 -0
  10665. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-circle-plus.svg +24 -0
  10666. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-circle.svg +22 -0
  10667. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-code.svg +24 -0
  10668. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-cog.svg +29 -0
  10669. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-dollar.svg +23 -0
  10670. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-down.svg +24 -0
  10671. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-edit.svg +23 -0
  10672. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-exclamation.svg +24 -0
  10673. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-heart.svg +22 -0
  10674. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-hexagon.svg +22 -0
  10675. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-minus.svg +23 -0
  10676. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-off.svg +23 -0
  10677. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-pause.svg +24 -0
  10678. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-pentagon.svg +22 -0
  10679. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-pin.svg +23 -0
  10680. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-plus.svg +24 -0
  10681. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-question.svg +23 -0
  10682. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-scan.svg +25 -0
  10683. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-search.svg +23 -0
  10684. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-sensor-2.svg +21 -0
  10685. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-sensor-3.svg +27 -0
  10686. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-sensor.svg +23 -0
  10687. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-share.svg +24 -0
  10688. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-shield.svg +22 -0
  10689. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-spark.svg +23 -0
  10690. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-square-rounded.svg +22 -0
  10691. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-star.svg +22 -0
  10692. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-up.svg +24 -0
  10693. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-video.svg +23 -0
  10694. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo-x.svg +24 -0
  10695. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/photo.svg +22 -0
  10696. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/physotherapist.svg +24 -0
  10697. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/piano.svg +23 -0
  10698. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pick.svg +20 -0
  10699. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/picnic-table.svg +19 -0
  10700. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/picture-in-picture-off.svg +22 -0
  10701. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/picture-in-picture-on.svg +22 -0
  10702. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/picture-in-picture-top.svg +20 -0
  10703. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/picture-in-picture.svg +20 -0
  10704. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pig-money.svg +21 -0
  10705. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pig-off.svg +21 -0
  10706. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pig.svg +20 -0
  10707. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pilcrow-left.svg +23 -0
  10708. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pilcrow-right.svg +23 -0
  10709. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pilcrow.svg +21 -0
  10710. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pill-off.svg +21 -0
  10711. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pill.svg +20 -0
  10712. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pillow.svg +20 -0
  10713. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pills.svg +22 -0
  10714. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pin-end.svg +22 -0
  10715. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pin-invoke.svg +22 -0
  10716. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pin.svg +21 -0
  10717. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ping-pong.svg +21 -0
  10718. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pinned-off.svg +22 -0
  10719. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pinned.svg +21 -0
  10720. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pipeline.svg +23 -0
  10721. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pizza-off.svg +22 -0
  10722. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pizza.svg +22 -0
  10723. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/placeholder.svg +21 -0
  10724. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plane-arrival.svg +20 -0
  10725. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plane-departure.svg +20 -0
  10726. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plane-inflight.svg +20 -0
  10727. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plane-off.svg +20 -0
  10728. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plane-tilt.svg +19 -0
  10729. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plane.svg +19 -0
  10730. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/planet-off.svg +20 -0
  10731. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/planet.svg +20 -0
  10732. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plant-2-off.svg +24 -0
  10733. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plant-2.svg +23 -0
  10734. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plant-off.svg +23 -0
  10735. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plant.svg +22 -0
  10736. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-basketball.svg +23 -0
  10737. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-1.svg +22 -0
  10738. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-10.svg +23 -0
  10739. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-2.svg +22 -0
  10740. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-3.svg +22 -0
  10741. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-4.svg +23 -0
  10742. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-5.svg +22 -0
  10743. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-6.svg +22 -0
  10744. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-7.svg +22 -0
  10745. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-8.svg +23 -0
  10746. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-9.svg +22 -0
  10747. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-a.svg +23 -0
  10748. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-j.svg +22 -0
  10749. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-k.svg +24 -0
  10750. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-off.svg +22 -0
  10751. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-q.svg +23 -0
  10752. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card-star.svg +22 -0
  10753. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-card.svg +22 -0
  10754. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-football.svg +23 -0
  10755. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-handball.svg +23 -0
  10756. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/play-volleyball.svg +22 -0
  10757. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/player-eject.svg +20 -0
  10758. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/player-pause.svg +20 -0
  10759. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/player-play.svg +19 -0
  10760. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/player-record.svg +19 -0
  10761. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/player-skip-back.svg +20 -0
  10762. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/player-skip-forward.svg +20 -0
  10763. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/player-stop.svg +19 -0
  10764. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/player-track-next.svg +20 -0
  10765. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/player-track-prev.svg +20 -0
  10766. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/playlist-add.svg +23 -0
  10767. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/playlist-off.svg +24 -0
  10768. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/playlist-x.svg +23 -0
  10769. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/playlist.svg +23 -0
  10770. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/playstation-circle.svg +20 -0
  10771. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/playstation-square.svg +20 -0
  10772. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/playstation-triangle.svg +20 -0
  10773. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/playstation-x.svg +21 -0
  10774. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plug-connected-x.svg +26 -0
  10775. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plug-connected.svg +24 -0
  10776. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plug-off.svg +23 -0
  10777. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plug-x.svg +24 -0
  10778. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plug.svg +22 -0
  10779. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plus-equal.svg +23 -0
  10780. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plus-minus.svg +22 -0
  10781. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/plus.svg +20 -0
  10782. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/png.svg +21 -0
  10783. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/podium-off.svg +24 -0
  10784. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/podium.svg +23 -0
  10785. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/point-off.svg +20 -0
  10786. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/point.svg +19 -0
  10787. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-bolt.svg +20 -0
  10788. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-cancel.svg +21 -0
  10789. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-check.svg +20 -0
  10790. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-code.svg +21 -0
  10791. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-cog.svg +26 -0
  10792. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-dollar.svg +21 -0
  10793. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-down.svg +21 -0
  10794. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-exclamation.svg +21 -0
  10795. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-heart.svg +20 -0
  10796. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-minus.svg +20 -0
  10797. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-off.svg +20 -0
  10798. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-pause.svg +21 -0
  10799. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-pin.svg +21 -0
  10800. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-plus.svg +21 -0
  10801. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-question.svg +21 -0
  10802. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-search.svg +21 -0
  10803. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-share.svg +21 -0
  10804. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-star.svg +20 -0
  10805. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-up.svg +21 -0
  10806. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer-x.svg +21 -0
  10807. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pointer.svg +19 -0
  10808. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pokeball-off.svg +22 -0
  10809. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pokeball.svg +22 -0
  10810. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/poker-chip.svg +28 -0
  10811. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/polaroid.svg +23 -0
  10812. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/polygon-off.svg +27 -0
  10813. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/polygon.svg +26 -0
  10814. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/poo.svg +22 -0
  10815. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pool-off.svg +25 -0
  10816. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pool.svg +24 -0
  10817. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/power.svg +20 -0
  10818. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pray.svg +20 -0
  10819. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/premium-rights.svg +22 -0
  10820. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/prescription.svg +21 -0
  10821. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/presentation-analytics.svg +25 -0
  10822. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/presentation-off.svg +24 -0
  10823. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/presentation.svg +23 -0
  10824. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/printer-off.svg +22 -0
  10825. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/printer.svg +21 -0
  10826. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/prism-light.svg +23 -0
  10827. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/prism-off.svg +22 -0
  10828. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/prism-plus.svg +23 -0
  10829. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/prism.svg +21 -0
  10830. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/prison.svg +26 -0
  10831. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/progress-alert.svg +25 -0
  10832. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/progress-bolt.svg +24 -0
  10833. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/progress-check.svg +24 -0
  10834. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/progress-down.svg +25 -0
  10835. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/progress-help.svg +25 -0
  10836. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/progress-x.svg +25 -0
  10837. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/progress.svg +23 -0
  10838. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/prompt.svg +20 -0
  10839. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/prong.svg +21 -0
  10840. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/propeller-off.svg +23 -0
  10841. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/propeller.svg +22 -0
  10842. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/protocol.svg +22 -0
  10843. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pumpkin-scary.svg +23 -0
  10844. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/puzzle-2.svg +23 -0
  10845. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/puzzle-off.svg +20 -0
  10846. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/puzzle.svg +19 -0
  10847. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pyramid-off.svg +21 -0
  10848. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pyramid-plus.svg +22 -0
  10849. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/pyramid.svg +20 -0
  10850. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/qrcode-off.svg +28 -0
  10851. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/qrcode.svg +30 -0
  10852. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/question-mark.svg +20 -0
  10853. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/queue-pop-in.svg +22 -0
  10854. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/queue-pop-out.svg +22 -0
  10855. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/quote-off.svg +21 -0
  10856. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/quote-open.svg +20 -0
  10857. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/quote.svg +20 -0
  10858. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/quotes.svg +22 -0
  10859. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radar-2.svg +22 -0
  10860. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radar-off.svg +22 -0
  10861. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radar.svg +21 -0
  10862. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radio-off.svg +23 -0
  10863. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radio.svg +23 -0
  10864. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radioactive-off.svg +22 -0
  10865. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radioactive.svg +21 -0
  10866. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radius-bottom-left.svg +19 -0
  10867. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radius-bottom-right.svg +19 -0
  10868. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radius-top-left.svg +19 -0
  10869. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/radius-top-right.svg +19 -0
  10870. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rainbow-off.svg +22 -0
  10871. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rainbow.svg +21 -0
  10872. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rating-12-plus.svg +23 -0
  10873. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rating-14-plus.svg +23 -0
  10874. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rating-16-plus.svg +24 -0
  10875. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rating-18-plus.svg +24 -0
  10876. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rating-21-plus.svg +23 -0
  10877. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/razor-electric.svg +24 -0
  10878. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/razor.svg +21 -0
  10879. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-2.svg +20 -0
  10880. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-bitcoin.svg +24 -0
  10881. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-dollar.svg +21 -0
  10882. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-euro.svg +21 -0
  10883. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-off.svg +24 -0
  10884. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-pound.svg +21 -0
  10885. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-refund.svg +20 -0
  10886. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-rupee.svg +21 -0
  10887. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-tax.svg +22 -0
  10888. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-yen.svg +23 -0
  10889. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt-yuan.svg +22 -0
  10890. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/receipt.svg +19 -0
  10891. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/recharging.svg +28 -0
  10892. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/record-mail-off.svg +22 -0
  10893. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/record-mail.svg +21 -0
  10894. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rectangle-rounded-bottom.svg +19 -0
  10895. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rectangle-rounded-top.svg +19 -0
  10896. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rectangle-vertical.svg +19 -0
  10897. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rectangle.svg +19 -0
  10898. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rectangular-prism-off.svg +23 -0
  10899. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rectangular-prism-plus.svg +24 -0
  10900. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rectangular-prism.svg +22 -0
  10901. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/recycle-off.svg +22 -0
  10902. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/recycle.svg +24 -0
  10903. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/refresh-alert.svg +22 -0
  10904. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/refresh-dot.svg +21 -0
  10905. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/refresh-off.svg +21 -0
  10906. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/refresh.svg +20 -0
  10907. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/regex-off.svg +26 -0
  10908. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/regex.svg +25 -0
  10909. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/registered.svg +21 -0
  10910. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/relation-many-to-many.svg +23 -0
  10911. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/relation-one-to-many.svg +23 -0
  10912. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/relation-one-to-one.svg +23 -0
  10913. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/reload.svg +20 -0
  10914. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/reorder.svg +23 -0
  10915. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/repeat-off.svg +21 -0
  10916. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/repeat-once.svg +21 -0
  10917. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/repeat.svg +20 -0
  10918. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/replace-off.svg +23 -0
  10919. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/replace-user.svg +24 -0
  10920. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/replace.svg +22 -0
  10921. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/report-analytics.svg +23 -0
  10922. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/report-medical.svg +22 -0
  10923. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/report-money.svg +22 -0
  10924. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/report-off.svg +21 -0
  10925. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/report-search.svg +25 -0
  10926. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/report.svg +25 -0
  10927. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/reserved-line.svg +22 -0
  10928. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/resize.svg +20 -0
  10929. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/restore.svg +21 -0
  10930. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-backward-10.svg +22 -0
  10931. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-backward-15.svg +22 -0
  10932. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-backward-20.svg +22 -0
  10933. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-backward-30.svg +22 -0
  10934. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-backward-40.svg +23 -0
  10935. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-backward-5.svg +21 -0
  10936. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-backward-50.svg +22 -0
  10937. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-backward-60.svg +22 -0
  10938. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-forward-10.svg +22 -0
  10939. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-forward-15.svg +22 -0
  10940. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-forward-20.svg +22 -0
  10941. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-forward-30.svg +22 -0
  10942. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-forward-40.svg +23 -0
  10943. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-forward-5.svg +21 -0
  10944. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-forward-50.svg +22 -0
  10945. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rewind-forward-60.svg +22 -0
  10946. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ribbon-health.svg +19 -0
  10947. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rings.svg +23 -0
  10948. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ripple-down.svg +23 -0
  10949. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ripple-off.svg +22 -0
  10950. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ripple-up.svg +23 -0
  10951. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ripple.svg +21 -0
  10952. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/road-off.svg +24 -0
  10953. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/road-sign.svg +21 -0
  10954. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/road.svg +23 -0
  10955. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/robot-face.svg +24 -0
  10956. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/robot-off.svg +26 -0
  10957. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/robot.svg +27 -0
  10958. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rocket-off.svg +22 -0
  10959. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rocket.svg +21 -0
  10960. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/roller-skating.svg +21 -0
  10961. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rollercoaster-off.svg +26 -0
  10962. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rollercoaster.svg +25 -0
  10963. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-asterisk.svg +22 -0
  10964. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-discount-check-off.svg +21 -0
  10965. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-discount-check.svg +20 -0
  10966. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-discount-off.svg +23 -0
  10967. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-discount.svg +22 -0
  10968. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-0.svg +20 -0
  10969. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-1.svg +20 -0
  10970. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-2.svg +20 -0
  10971. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-3.svg +20 -0
  10972. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-4.svg +21 -0
  10973. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-5.svg +20 -0
  10974. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-6.svg +20 -0
  10975. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-7.svg +20 -0
  10976. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-8.svg +20 -0
  10977. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette-number-9.svg +20 -0
  10978. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rosette.svg +19 -0
  10979. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rotate-2.svg +24 -0
  10980. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rotate-360.svg +20 -0
  10981. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rotate-3d.svg +23 -0
  10982. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rotate-clockwise-2.svg +24 -0
  10983. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rotate-clockwise.svg +19 -0
  10984. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rotate-dot.svg +20 -0
  10985. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rotate-rectangle.svg +20 -0
  10986. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rotate.svg +19 -0
  10987. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route-2.svg +21 -0
  10988. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route-alt-left.svg +24 -0
  10989. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route-alt-right.svg +24 -0
  10990. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route-off.svg +22 -0
  10991. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route-scan.svg +26 -0
  10992. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route-square-2.svg +21 -0
  10993. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route-square.svg +21 -0
  10994. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route-x-2.svg +23 -0
  10995. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route-x.svg +23 -0
  10996. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/route.svg +21 -0
  10997. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/router-off.svg +24 -0
  10998. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/router.svg +24 -0
  10999. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/row-insert-bottom.svg +21 -0
  11000. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/row-insert-top.svg +21 -0
  11001. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/row-remove.svg +21 -0
  11002. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rss.svg +21 -0
  11003. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rubber-stamp-off.svg +22 -0
  11004. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rubber-stamp.svg +20 -0
  11005. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ruler-2-off.svg +23 -0
  11006. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ruler-2.svg +23 -0
  11007. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ruler-3.svg +24 -0
  11008. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ruler-measure-2.svg +27 -0
  11009. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ruler-measure.svg +27 -0
  11010. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ruler-off.svg +25 -0
  11011. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ruler.svg +25 -0
  11012. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/run.svg +22 -0
  11013. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/rv-truck.svg +25 -0
  11014. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/s-turn-down.svg +21 -0
  11015. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/s-turn-left.svg +21 -0
  11016. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/s-turn-right.svg +21 -0
  11017. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/s-turn-up.svg +21 -0
  11018. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sailboat-2.svg +23 -0
  11019. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sailboat-off.svg +23 -0
  11020. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sailboat.svg +22 -0
  11021. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/salad.svg +23 -0
  11022. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/salt.svg +23 -0
  11023. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sandbox.svg +23 -0
  11024. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/satellite-off.svg +25 -0
  11025. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/satellite.svg +24 -0
  11026. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sausage.svg +21 -0
  11027. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scale-off.svg +24 -0
  11028. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scale-outline-off.svg +21 -0
  11029. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scale-outline.svg +20 -0
  11030. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scale.svg +23 -0
  11031. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scan-eye.svg +25 -0
  11032. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scan-letter-a.svg +24 -0
  11033. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scan-letter-t.svg +24 -0
  11034. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scan-position.svg +23 -0
  11035. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scan-traces.svg +25 -0
  11036. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scan.svg +23 -0
  11037. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/schema-off.svg +26 -0
  11038. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/schema.svg +25 -0
  11039. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/school-bell.svg +21 -0
  11040. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/school-off.svg +21 -0
  11041. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/school.svg +20 -0
  11042. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scissors-off.svg +22 -0
  11043. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scissors.svg +22 -0
  11044. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scooter-electric.svg +22 -0
  11045. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scooter.svg +21 -0
  11046. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scoreboard.svg +27 -0
  11047. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/screen-share-off.svg +23 -0
  11048. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/screen-share.svg +24 -0
  11049. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/screenshot.svg +27 -0
  11050. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scribble-off.svg +20 -0
  11051. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scribble.svg +19 -0
  11052. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/script-minus.svg +20 -0
  11053. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/script-plus.svg +21 -0
  11054. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/script-x.svg +20 -0
  11055. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/script.svg +19 -0
  11056. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scuba-diving-tank.svg +24 -0
  11057. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scuba-diving.svg +21 -0
  11058. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scuba-mask-off.svg +21 -0
  11059. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/scuba-mask.svg +20 -0
  11060. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sdk.svg +23 -0
  11061. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/search-off.svg +20 -0
  11062. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/search.svg +20 -0
  11063. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/section-sign.svg +21 -0
  11064. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/section.svg +29 -0
  11065. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/seedling-off.svg +22 -0
  11066. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/seedling.svg +21 -0
  11067. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/segway.svg +21 -0
  11068. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/select-all.svg +35 -0
  11069. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/select.svg +20 -0
  11070. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/selector.svg +20 -0
  11071. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/send-2.svg +20 -0
  11072. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/send-off.svg +21 -0
  11073. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/send.svg +20 -0
  11074. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/seo.svg +22 -0
  11075. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/separator-horizontal.svg +21 -0
  11076. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/separator-vertical.svg +21 -0
  11077. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/separator.svg +21 -0
  11078. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/server-2.svg +24 -0
  11079. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/server-bolt.svg +23 -0
  11080. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/server-cog.svg +29 -0
  11081. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/server-off.svg +23 -0
  11082. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/server-spark.svg +23 -0
  11083. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/server.svg +22 -0
  11084. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/serverless.svg +19 -0
  11085. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/servicemark.svg +20 -0
  11086. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-2.svg +20 -0
  11087. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-ai.svg +22 -0
  11088. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-automation.svg +20 -0
  11089. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-bolt.svg +21 -0
  11090. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-cancel.svg +22 -0
  11091. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-check.svg +21 -0
  11092. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-code.svg +22 -0
  11093. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-cog.svg +27 -0
  11094. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-dollar.svg +22 -0
  11095. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-down.svg +22 -0
  11096. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-exclamation.svg +22 -0
  11097. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-heart.svg +21 -0
  11098. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-minus.svg +21 -0
  11099. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-off.svg +21 -0
  11100. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-pause.svg +22 -0
  11101. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-pin.svg +22 -0
  11102. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-plus.svg +22 -0
  11103. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-question.svg +22 -0
  11104. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-search.svg +22 -0
  11105. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-share.svg +22 -0
  11106. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-spark.svg +21 -0
  11107. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-star.svg +21 -0
  11108. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-up.svg +22 -0
  11109. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings-x.svg +22 -0
  11110. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/settings.svg +20 -0
  11111. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shadow-off.svg +25 -0
  11112. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shadow.svg +24 -0
  11113. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shape-2.svg +23 -0
  11114. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shape-3.svg +23 -0
  11115. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shape-off.svg +27 -0
  11116. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shape.svg +26 -0
  11117. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/share-2.svg +21 -0
  11118. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/share-3.svg +19 -0
  11119. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/share-off.svg +24 -0
  11120. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/share.svg +23 -0
  11121. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shareplay.svg +20 -0
  11122. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-bolt.svg +20 -0
  11123. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-cancel.svg +21 -0
  11124. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-check.svg +20 -0
  11125. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-checkered.svg +21 -0
  11126. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-chevron.svg +20 -0
  11127. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-code.svg +21 -0
  11128. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-cog.svg +26 -0
  11129. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-dollar.svg +21 -0
  11130. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-down.svg +21 -0
  11131. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-exclamation.svg +21 -0
  11132. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-half.svg +20 -0
  11133. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-heart.svg +20 -0
  11134. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-lock.svg +21 -0
  11135. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-minus.svg +20 -0
  11136. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-off.svg +20 -0
  11137. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-pause.svg +21 -0
  11138. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-pin.svg +21 -0
  11139. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-plus.svg +21 -0
  11140. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-question.svg +21 -0
  11141. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-search.svg +21 -0
  11142. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-share.svg +21 -0
  11143. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-star.svg +20 -0
  11144. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-up.svg +21 -0
  11145. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield-x.svg +21 -0
  11146. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shield.svg +19 -0
  11147. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ship-off.svg +22 -0
  11148. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ship.svg +22 -0
  11149. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shirt-off.svg +20 -0
  11150. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shirt-sport.svg +20 -0
  11151. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shirt.svg +19 -0
  11152. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shoe-off.svg +22 -0
  11153. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shoe.svg +22 -0
  11154. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag-check.svg +21 -0
  11155. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag-discount.svg +23 -0
  11156. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag-edit.svg +21 -0
  11157. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag-exclamation.svg +22 -0
  11158. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag-heart.svg +21 -0
  11159. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag-minus.svg +21 -0
  11160. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag-plus.svg +22 -0
  11161. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag-search.svg +22 -0
  11162. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag-x.svg +22 -0
  11163. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-bag.svg +20 -0
  11164. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-bolt.svg +22 -0
  11165. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-cancel.svg +23 -0
  11166. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-check.svg +22 -0
  11167. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-code.svg +23 -0
  11168. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-cog.svg +28 -0
  11169. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-copy.svg +22 -0
  11170. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-discount.svg +24 -0
  11171. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-dollar.svg +23 -0
  11172. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-down.svg +23 -0
  11173. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-exclamation.svg +23 -0
  11174. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-heart.svg +22 -0
  11175. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-minus.svg +22 -0
  11176. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-off.svg +23 -0
  11177. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-pause.svg +23 -0
  11178. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-pin.svg +23 -0
  11179. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-plus.svg +23 -0
  11180. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-question.svg +23 -0
  11181. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-search.svg +23 -0
  11182. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-share.svg +23 -0
  11183. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-star.svg +22 -0
  11184. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-up.svg +23 -0
  11185. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart-x.svg +23 -0
  11186. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shopping-cart.svg +22 -0
  11187. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shovel-pitchforks.svg +23 -0
  11188. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shovel.svg +21 -0
  11189. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/shredder.svg +20 -0
  11190. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sign-left.svg +22 -0
  11191. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sign-right.svg +22 -0
  11192. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-2g.svg +20 -0
  11193. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-3g.svg +20 -0
  11194. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-4g-plus.svg +23 -0
  11195. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-4g.svg +21 -0
  11196. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-5g.svg +20 -0
  11197. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-6g.svg +20 -0
  11198. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-e.svg +20 -0
  11199. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-g.svg +19 -0
  11200. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-h-plus.svg +23 -0
  11201. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-h.svg +21 -0
  11202. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signal-lte.svg +23 -0
  11203. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signature-off.svg +20 -0
  11204. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/signature.svg +19 -0
  11205. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sitemap-off.svg +23 -0
  11206. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sitemap.svg +23 -0
  11207. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/skateboard-off.svg +22 -0
  11208. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/skateboard.svg +21 -0
  11209. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/skateboarding.svg +25 -0
  11210. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/skew-x.svg +19 -0
  11211. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/skew-y.svg +19 -0
  11212. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ski-jumping.svg +24 -0
  11213. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/skull.svg +23 -0
  11214. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/slash.svg +19 -0
  11215. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/slashes.svg +20 -0
  11216. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sleigh.svg +22 -0
  11217. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/slice.svg +19 -0
  11218. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/slideshow.svg +25 -0
  11219. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/smart-home-off.svg +21 -0
  11220. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/smart-home.svg +20 -0
  11221. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/smoking-no.svg +22 -0
  11222. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/smoking.svg +21 -0
  11223. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/snowboarding.svg +23 -0
  11224. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/snowflake-off.svg +31 -0
  11225. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/snowflake.svg +30 -0
  11226. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/snowman.svg +23 -0
  11227. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/soccer-field.svg +23 -0
  11228. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/social-off.svg +26 -0
  11229. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/social.svg +25 -0
  11230. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sock.svg +20 -0
  11231. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sofa-off.svg +22 -0
  11232. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sofa.svg +21 -0
  11233. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/solar-electricity.svg +22 -0
  11234. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/solar-panel-2.svg +28 -0
  11235. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/solar-panel.svg +24 -0
  11236. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-0-9.svg +21 -0
  11237. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-9-0.svg +21 -0
  11238. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-a-z.svg +22 -0
  11239. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-ascending-2.svg +22 -0
  11240. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-ascending-letters.svg +22 -0
  11241. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-ascending-numbers.svg +23 -0
  11242. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-ascending-shapes.svg +22 -0
  11243. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-ascending-small-big.svg +22 -0
  11244. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-ascending.svg +23 -0
  11245. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-descending-2.svg +22 -0
  11246. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-descending-letters.svg +22 -0
  11247. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-descending-numbers.svg +23 -0
  11248. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-descending-shapes.svg +22 -0
  11249. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-descending-small-big.svg +22 -0
  11250. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-descending.svg +23 -0
  11251. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sort-z-a.svg +22 -0
  11252. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sos.svg +21 -0
  11253. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/soup-off.svg +23 -0
  11254. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/soup.svg +22 -0
  11255. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/source-code.svg +21 -0
  11256. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/space-off.svg +20 -0
  11257. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/space.svg +19 -0
  11258. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spaces.svg +21 -0
  11259. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spacing-horizontal.svg +21 -0
  11260. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spacing-vertical.svg +21 -0
  11261. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spade.svg +19 -0
  11262. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sparkles-2.svg +20 -0
  11263. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sparkles.svg +19 -0
  11264. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/speakerphone.svg +21 -0
  11265. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/speedboat.svg +21 -0
  11266. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sphere-off.svg +21 -0
  11267. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sphere-plus.svg +22 -0
  11268. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sphere.svg +20 -0
  11269. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spider.svg +26 -0
  11270. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spiral-off.svg +20 -0
  11271. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spiral.svg +19 -0
  11272. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sport-billard.svg +21 -0
  11273. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spray.svg +27 -0
  11274. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spy-off.svg +24 -0
  11275. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/spy.svg +23 -0
  11276. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sql.svg +22 -0
  11277. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-arrow-down.svg +21 -0
  11278. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-arrow-left.svg +21 -0
  11279. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-arrow-right.svg +21 -0
  11280. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-arrow-up.svg +21 -0
  11281. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-asterisk.svg +22 -0
  11282. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-check.svg +20 -0
  11283. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-chevron-down.svg +20 -0
  11284. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-chevron-left.svg +20 -0
  11285. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-chevron-right.svg +20 -0
  11286. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-chevron-up.svg +20 -0
  11287. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-chevrons-down.svg +21 -0
  11288. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-chevrons-left.svg +21 -0
  11289. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-chevrons-right.svg +21 -0
  11290. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-chevrons-up.svg +21 -0
  11291. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-dashed.svg +19 -0
  11292. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-dot.svg +20 -0
  11293. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f0.svg +22 -0
  11294. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f1.svg +22 -0
  11295. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f2.svg +22 -0
  11296. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f3.svg +22 -0
  11297. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f4.svg +23 -0
  11298. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f5.svg +22 -0
  11299. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f6.svg +22 -0
  11300. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f7.svg +22 -0
  11301. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f8.svg +22 -0
  11302. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-f9.svg +22 -0
  11303. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-forbid-2.svg +20 -0
  11304. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-forbid.svg +20 -0
  11305. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-half.svg +24 -0
  11306. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-key.svg +22 -0
  11307. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-a.svg +21 -0
  11308. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-b.svg +20 -0
  11309. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-c.svg +20 -0
  11310. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-d.svg +20 -0
  11311. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-e.svg +21 -0
  11312. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-f.svg +21 -0
  11313. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-g.svg +20 -0
  11314. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-h.svg +21 -0
  11315. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-i.svg +20 -0
  11316. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-j.svg +20 -0
  11317. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-k.svg +22 -0
  11318. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-l.svg +20 -0
  11319. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-m.svg +20 -0
  11320. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-n.svg +20 -0
  11321. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-o.svg +20 -0
  11322. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-p.svg +20 -0
  11323. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-q.svg +21 -0
  11324. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-r.svg +20 -0
  11325. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-s.svg +20 -0
  11326. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-t.svg +21 -0
  11327. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-u.svg +20 -0
  11328. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-v.svg +20 -0
  11329. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-w.svg +20 -0
  11330. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-x.svg +21 -0
  11331. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-y.svg +21 -0
  11332. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-letter-z.svg +20 -0
  11333. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-minus-2.svg +20 -0
  11334. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-minus.svg +20 -0
  11335. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-0.svg +20 -0
  11336. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-1.svg +20 -0
  11337. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-2.svg +20 -0
  11338. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-3.svg +20 -0
  11339. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-4.svg +21 -0
  11340. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-5.svg +20 -0
  11341. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-6.svg +20 -0
  11342. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-7.svg +20 -0
  11343. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-8.svg +20 -0
  11344. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-number-9.svg +20 -0
  11345. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-off.svg +20 -0
  11346. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-percentage.svg +22 -0
  11347. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-plus-2.svg +21 -0
  11348. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-plus.svg +21 -0
  11349. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-root-2.svg +21 -0
  11350. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-root.svg +19 -0
  11351. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rotated-asterisk.svg +22 -0
  11352. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rotated-forbid-2.svg +20 -0
  11353. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rotated-forbid.svg +20 -0
  11354. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rotated-off.svg +20 -0
  11355. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rotated.svg +19 -0
  11356. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-arrow-down.svg +21 -0
  11357. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-arrow-left.svg +21 -0
  11358. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-arrow-right.svg +21 -0
  11359. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-arrow-up.svg +21 -0
  11360. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-check.svg +20 -0
  11361. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevron-down.svg +20 -0
  11362. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevron-left.svg +20 -0
  11363. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevron-right.svg +20 -0
  11364. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevron-up.svg +20 -0
  11365. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevrons-down.svg +21 -0
  11366. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevrons-left.svg +21 -0
  11367. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevrons-right.svg +21 -0
  11368. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-chevrons-up.svg +21 -0
  11369. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-a.svg +21 -0
  11370. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-b.svg +20 -0
  11371. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-c.svg +20 -0
  11372. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-d.svg +20 -0
  11373. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-e.svg +21 -0
  11374. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-f.svg +21 -0
  11375. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-g.svg +20 -0
  11376. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-h.svg +21 -0
  11377. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-i.svg +20 -0
  11378. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-j.svg +20 -0
  11379. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-k.svg +22 -0
  11380. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-l.svg +20 -0
  11381. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-m.svg +20 -0
  11382. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-n.svg +20 -0
  11383. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-o.svg +20 -0
  11384. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-p.svg +20 -0
  11385. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-q.svg +21 -0
  11386. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-r.svg +20 -0
  11387. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-s.svg +20 -0
  11388. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-t.svg +21 -0
  11389. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-u.svg +20 -0
  11390. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-v.svg +20 -0
  11391. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-w.svg +20 -0
  11392. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-x.svg +21 -0
  11393. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-y.svg +21 -0
  11394. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-letter-z.svg +20 -0
  11395. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-minus-2.svg +20 -0
  11396. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-minus.svg +20 -0
  11397. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-0.svg +20 -0
  11398. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-1.svg +20 -0
  11399. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-2.svg +20 -0
  11400. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-3.svg +20 -0
  11401. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-4.svg +21 -0
  11402. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-5.svg +20 -0
  11403. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-6.svg +20 -0
  11404. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-7.svg +20 -0
  11405. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-8.svg +20 -0
  11406. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-number-9.svg +20 -0
  11407. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-percentage.svg +22 -0
  11408. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-plus-2.svg +21 -0
  11409. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-plus.svg +21 -0
  11410. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded-x.svg +20 -0
  11411. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-rounded.svg +19 -0
  11412. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-toggle-horizontal.svg +23 -0
  11413. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-toggle.svg +23 -0
  11414. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square-x.svg +20 -0
  11415. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/square.svg +19 -0
  11416. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/squares-diagonal.svg +21 -0
  11417. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/squares-selected.svg +23 -0
  11418. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/squares.svg +20 -0
  11419. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack-2.svg +21 -0
  11420. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack-3.svg +22 -0
  11421. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack-back.svg +21 -0
  11422. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack-backward.svg +20 -0
  11423. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack-forward.svg +20 -0
  11424. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack-front.svg +21 -0
  11425. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack-middle.svg +21 -0
  11426. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack-pop.svg +22 -0
  11427. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack-push.svg +22 -0
  11428. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stack.svg +20 -0
  11429. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stairs-down.svg +21 -0
  11430. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stairs-up.svg +21 -0
  11431. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stairs.svg +19 -0
  11432. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/star-half.svg +19 -0
  11433. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/star-off.svg +20 -0
  11434. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/star.svg +19 -0
  11435. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stars-off.svg +22 -0
  11436. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stars.svg +21 -0
  11437. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/status-change.svg +22 -0
  11438. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/steam.svg +26 -0
  11439. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/steering-wheel-off.svg +24 -0
  11440. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/steering-wheel.svg +23 -0
  11441. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/step-into.svg +22 -0
  11442. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/step-out.svg +22 -0
  11443. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stereo-glasses.svg +23 -0
  11444. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stethoscope-off.svg +23 -0
  11445. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stethoscope.svg +23 -0
  11446. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sticker-2.svg +20 -0
  11447. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sticker.svg +20 -0
  11448. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stopwatch.svg +22 -0
  11449. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/storm-off.svg +23 -0
  11450. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/storm.svg +22 -0
  11451. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stretching-2.svg +22 -0
  11452. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stretching.svg +21 -0
  11453. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/strikethrough.svg +20 -0
  11454. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stroke-curved.svg +19 -0
  11455. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stroke-dynamic.svg +19 -0
  11456. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/stroke-straight.svg +19 -0
  11457. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/submarine.svg +21 -0
  11458. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/subscript.svg +20 -0
  11459. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/subtask.svg +23 -0
  11460. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/subtitles-ai.svg +23 -0
  11461. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/subtitles-edit.svg +23 -0
  11462. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/subtitles-off.svg +23 -0
  11463. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/subtitles.svg +23 -0
  11464. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sum-off.svg +20 -0
  11465. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sum.svg +19 -0
  11466. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sun-electricity.svg +25 -0
  11467. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sun-high.svg +27 -0
  11468. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sun-low.svg +27 -0
  11469. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sun-moon.svg +24 -0
  11470. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sun-off.svg +21 -0
  11471. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sun-wind.svg +27 -0
  11472. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sun.svg +20 -0
  11473. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sunglasses.svg +25 -0
  11474. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sunrise.svg +21 -0
  11475. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sunset-2.svg +27 -0
  11476. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sunset.svg +21 -0
  11477. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/superscript.svg +20 -0
  11478. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/svg.svg +21 -0
  11479. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/swimming.svg +21 -0
  11480. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/swipe-down.svg +21 -0
  11481. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/swipe-left.svg +21 -0
  11482. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/swipe-right.svg +21 -0
  11483. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/swipe-up.svg +21 -0
  11484. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/swipe.svg +20 -0
  11485. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/switch-2.svg +22 -0
  11486. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/switch-3.svg +22 -0
  11487. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/switch-horizontal.svg +22 -0
  11488. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/switch-vertical.svg +22 -0
  11489. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/switch.svg +23 -0
  11490. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sword-off.svg +21 -0
  11491. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/sword.svg +20 -0
  11492. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/swords.svg +22 -0
  11493. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-alias.svg +22 -0
  11494. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-column.svg +25 -0
  11495. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-dashed.svg +21 -0
  11496. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-down.svg +23 -0
  11497. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-export.svg +23 -0
  11498. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-heart.svg +22 -0
  11499. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-import.svg +23 -0
  11500. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-minus.svg +22 -0
  11501. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-off.svg +22 -0
  11502. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-options.svg +28 -0
  11503. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-plus.svg +23 -0
  11504. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-row.svg +25 -0
  11505. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-share.svg +23 -0
  11506. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-shortcut.svg +23 -0
  11507. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table-spark.svg +22 -0
  11508. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/table.svg +21 -0
  11509. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tag-minus.svg +21 -0
  11510. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tag-off.svg +21 -0
  11511. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tag-plus.svg +22 -0
  11512. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tag-starred.svg +21 -0
  11513. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tag.svg +20 -0
  11514. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tags-off.svg +24 -0
  11515. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tags.svg +21 -0
  11516. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tallymark-1.svg +19 -0
  11517. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tallymark-2.svg +20 -0
  11518. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tallymark-3.svg +21 -0
  11519. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tallymark-4.svg +22 -0
  11520. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tallymarks.svg +23 -0
  11521. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tank.svg +21 -0
  11522. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/target-arrow.svg +23 -0
  11523. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/target-off.svg +22 -0
  11524. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/target.svg +21 -0
  11525. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tax-euro.svg +22 -0
  11526. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tax-pound.svg +22 -0
  11527. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tax.svg +23 -0
  11528. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/teapot.svg +21 -0
  11529. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/telescope-off.svg +23 -0
  11530. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/telescope.svg +22 -0
  11531. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/temperature-celsius.svg +20 -0
  11532. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/temperature-fahrenheit.svg +21 -0
  11533. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/temperature-minus.svg +21 -0
  11534. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/temperature-off.svg +21 -0
  11535. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/temperature-plus.svg +22 -0
  11536. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/temperature-snow.svg +27 -0
  11537. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/temperature-sun.svg +26 -0
  11538. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/temperature.svg +20 -0
  11539. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/template-off.svg +24 -0
  11540. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/template.svg +23 -0
  11541. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tent-off.svg +20 -0
  11542. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tent.svg +19 -0
  11543. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/terminal-2.svg +21 -0
  11544. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/terminal.svg +20 -0
  11545. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/test-pipe-2.svg +21 -0
  11546. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/test-pipe-off.svg +23 -0
  11547. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/test-pipe.svg +22 -0
  11548. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tex.svg +24 -0
  11549. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-caption.svg +21 -0
  11550. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-color.svg +21 -0
  11551. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-decrease.svg +21 -0
  11552. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-direction-ltr.svg +23 -0
  11553. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-direction-rtl.svg +23 -0
  11554. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-grammar.svg +25 -0
  11555. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-increase.svg +22 -0
  11556. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-orientation.svg +23 -0
  11557. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-plus.svg +24 -0
  11558. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-recognition.svg +24 -0
  11559. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-resize.svg +28 -0
  11560. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-scan-2.svg +25 -0
  11561. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-size.svg +24 -0
  11562. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-spellcheck.svg +21 -0
  11563. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-wrap-column.svg +22 -0
  11564. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-wrap-disabled.svg +21 -0
  11565. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/text-wrap.svg +21 -0
  11566. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/texture.svg +25 -0
  11567. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/theater.svg +20 -0
  11568. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/thermometer.svg +23 -0
  11569. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/thumb-down-off.svg +20 -0
  11570. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/thumb-down.svg +19 -0
  11571. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/thumb-up-off.svg +20 -0
  11572. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/thumb-up.svg +19 -0
  11573. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tic-tac.svg +26 -0
  11574. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ticket-off.svg +22 -0
  11575. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ticket.svg +22 -0
  11576. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tie.svg +20 -0
  11577. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tilde.svg +19 -0
  11578. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tilt-shift-off.svg +28 -0
  11579. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tilt-shift.svg +27 -0
  11580. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/time-duration-0.svg +31 -0
  11581. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/time-duration-10.svg +30 -0
  11582. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/time-duration-15.svg +29 -0
  11583. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/time-duration-30.svg +26 -0
  11584. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/time-duration-45.svg +24 -0
  11585. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/time-duration-5.svg +30 -0
  11586. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/time-duration-60.svg +21 -0
  11587. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/time-duration-90.svg +21 -0
  11588. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/time-duration-off.svg +24 -0
  11589. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/timeline-event-exclamation.svg +24 -0
  11590. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/timeline-event-minus.svg +23 -0
  11591. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/timeline-event-plus.svg +24 -0
  11592. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/timeline-event-text.svg +24 -0
  11593. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/timeline-event-x.svg +24 -0
  11594. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/timeline-event.svg +22 -0
  11595. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/timeline.svg +23 -0
  11596. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/timezone.svg +25 -0
  11597. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tip-jar-euro.svg +22 -0
  11598. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tip-jar-pound.svg +22 -0
  11599. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tip-jar.svg +23 -0
  11600. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tir.svg +23 -0
  11601. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/toggle-left.svg +20 -0
  11602. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/toggle-right.svg +20 -0
  11603. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/toilet-paper-off.svg +24 -0
  11604. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/toilet-paper.svg +23 -0
  11605. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/toml.svg +23 -0
  11606. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tool.svg +19 -0
  11607. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tools-kitchen-2-off.svg +23 -0
  11608. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tools-kitchen-2.svg +19 -0
  11609. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tools-kitchen-3.svg +21 -0
  11610. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tools-kitchen-off.svg +24 -0
  11611. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tools-kitchen.svg +23 -0
  11612. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tools-off.svg +25 -0
  11613. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tools.svg +24 -0
  11614. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tooltip.svg +20 -0
  11615. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-bus.svg +25 -0
  11616. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-complex.svg +28 -0
  11617. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-full-hierarchy.svg +31 -0
  11618. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-full.svg +28 -0
  11619. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-ring-2.svg +24 -0
  11620. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-ring-3.svg +26 -0
  11621. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-ring.svg +26 -0
  11622. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-star-2.svg +27 -0
  11623. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-star-3.svg +31 -0
  11624. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-star-ring-2.svg +31 -0
  11625. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-star-ring-3.svg +37 -0
  11626. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-star-ring.svg +31 -0
  11627. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/topology-star.svg +27 -0
  11628. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/torii.svg +23 -0
  11629. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tornado.svg +23 -0
  11630. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tournament.svg +25 -0
  11631. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tower-off.svg +21 -0
  11632. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tower.svg +20 -0
  11633. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/track.svg +19 -0
  11634. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tractor.svg +24 -0
  11635. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trademark.svg +20 -0
  11636. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/traffic-cone-off.svg +24 -0
  11637. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/traffic-cone.svg +22 -0
  11638. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/traffic-lights-off.svg +23 -0
  11639. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/traffic-lights.svg +22 -0
  11640. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/train.svg +25 -0
  11641. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transaction-bitcoin.svg +27 -0
  11642. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transaction-dollar.svg +24 -0
  11643. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transaction-euro.svg +24 -0
  11644. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transaction-pound.svg +24 -0
  11645. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transaction-rupee.svg +24 -0
  11646. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transaction-yen.svg +26 -0
  11647. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transaction-yuan.svg +25 -0
  11648. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transfer-in.svg +21 -0
  11649. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transfer-out.svg +21 -0
  11650. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transfer-vertical.svg +20 -0
  11651. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transfer.svg +20 -0
  11652. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transform-point-bottom-left.svg +26 -0
  11653. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transform-point-bottom-right.svg +26 -0
  11654. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transform-point-top-left.svg +26 -0
  11655. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transform-point-top-right.svg +26 -0
  11656. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transform-point.svg +26 -0
  11657. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transform.svg +22 -0
  11658. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transition-bottom.svg +22 -0
  11659. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transition-left.svg +22 -0
  11660. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transition-right.svg +22 -0
  11661. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/transition-top.svg +22 -0
  11662. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trash-off.svg +25 -0
  11663. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trash-x.svg +22 -0
  11664. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trash.svg +23 -0
  11665. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/treadmill.svg +24 -0
  11666. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/tree.svg +22 -0
  11667. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trees.svg +24 -0
  11668. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trekking.svg +24 -0
  11669. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trending-down-2.svg +20 -0
  11670. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trending-down-3.svg +20 -0
  11671. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trending-down.svg +20 -0
  11672. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trending-up-2.svg +20 -0
  11673. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trending-up-3.svg +20 -0
  11674. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trending-up-down.svg +22 -0
  11675. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trending-up.svg +20 -0
  11676. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/triangle-inverted.svg +19 -0
  11677. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/triangle-minus-2.svg +20 -0
  11678. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/triangle-minus.svg +20 -0
  11679. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/triangle-off.svg +20 -0
  11680. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/triangle-plus-2.svg +21 -0
  11681. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/triangle-plus.svg +21 -0
  11682. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/triangle-square-circle.svg +21 -0
  11683. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/triangle.svg +19 -0
  11684. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/triangles.svg +20 -0
  11685. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trident.svg +20 -0
  11686. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trolley.svg +23 -0
  11687. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trophy-off.svg +25 -0
  11688. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trophy.svg +24 -0
  11689. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/trowel.svg +21 -0
  11690. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/truck-delivery.svg +22 -0
  11691. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/truck-loading.svg +22 -0
  11692. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/truck-off.svg +22 -0
  11693. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/truck-return.svg +23 -0
  11694. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/truck.svg +21 -0
  11695. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/txt.svg +24 -0
  11696. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/typeface.svg +22 -0
  11697. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/typography-off.svg +25 -0
  11698. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/typography.svg +23 -0
  11699. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/u-turn-left.svg +20 -0
  11700. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/u-turn-right.svg +20 -0
  11701. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ufo-off.svg +26 -0
  11702. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ufo.svg +25 -0
  11703. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/uhd.svg +23 -0
  11704. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/umbrella-2.svg +20 -0
  11705. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/umbrella-closed-2.svg +20 -0
  11706. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/umbrella-closed.svg +20 -0
  11707. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/umbrella-off.svg +21 -0
  11708. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/umbrella.svg +20 -0
  11709. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/underline.svg +20 -0
  11710. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/universe.svg +23 -0
  11711. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/unlink.svg +25 -0
  11712. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/upload.svg +21 -0
  11713. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/urgent.svg +21 -0
  11714. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/usb.svg +25 -0
  11715. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-bitcoin.svg +21 -0
  11716. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-bolt.svg +21 -0
  11717. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-cancel.svg +22 -0
  11718. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-check.svg +21 -0
  11719. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-circle.svg +21 -0
  11720. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-code.svg +22 -0
  11721. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-cog.svg +27 -0
  11722. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-dollar.svg +22 -0
  11723. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-down.svg +22 -0
  11724. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-edit.svg +21 -0
  11725. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-exclamation.svg +22 -0
  11726. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-heart.svg +21 -0
  11727. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-hexagon.svg +21 -0
  11728. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-key.svg +23 -0
  11729. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-minus.svg +21 -0
  11730. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-off.svg +21 -0
  11731. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-pause.svg +22 -0
  11732. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-pentagon.svg +21 -0
  11733. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-pin.svg +22 -0
  11734. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-plus.svg +22 -0
  11735. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-question.svg +22 -0
  11736. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-scan.svg +24 -0
  11737. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-screen.svg +21 -0
  11738. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-search.svg +22 -0
  11739. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-share.svg +22 -0
  11740. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-shield.svg +21 -0
  11741. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-square-rounded.svg +21 -0
  11742. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-square.svg +21 -0
  11743. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-star.svg +21 -0
  11744. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-up.svg +22 -0
  11745. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user-x.svg +22 -0
  11746. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/user.svg +20 -0
  11747. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/users-group.svg +24 -0
  11748. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/users-minus.svg +22 -0
  11749. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/users-plus.svg +23 -0
  11750. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/users.svg +22 -0
  11751. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/uv-index.svg +22 -0
  11752. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/ux-circle.svg +22 -0
  11753. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vaccine-bottle-off.svg +24 -0
  11754. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vaccine-bottle.svg +23 -0
  11755. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vaccine-off.svg +25 -0
  11756. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vaccine.svg +25 -0
  11757. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vacuum-cleaner.svg +21 -0
  11758. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/variable-minus.svg +22 -0
  11759. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/variable-off.svg +23 -0
  11760. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/variable-plus.svg +22 -0
  11761. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/variable.svg +20 -0
  11762. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vector-bezier-2.svg +25 -0
  11763. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vector-bezier-arc.svg +25 -0
  11764. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vector-bezier-circle.svg +26 -0
  11765. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vector-bezier.svg +27 -0
  11766. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vector-off.svg +27 -0
  11767. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vector-spline.svg +21 -0
  11768. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vector-triangle-off.svg +25 -0
  11769. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vector-triangle.svg +24 -0
  11770. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vector.svg +26 -0
  11771. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/venus.svg +21 -0
  11772. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/versions-off.svg +22 -0
  11773. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/versions.svg +21 -0
  11774. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/video-minus.svg +21 -0
  11775. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/video-off.svg +21 -0
  11776. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/video-plus.svg +22 -0
  11777. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/video.svg +20 -0
  11778. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/view-360-arrow.svg +20 -0
  11779. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/view-360-number.svg +22 -0
  11780. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/view-360-off.svg +22 -0
  11781. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/view-360.svg +21 -0
  11782. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/viewfinder-off.svg +25 -0
  11783. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/viewfinder.svg +24 -0
  11784. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/viewport-narrow.svg +24 -0
  11785. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/viewport-short.svg +24 -0
  11786. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/viewport-tall.svg +24 -0
  11787. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/viewport-wide.svg +24 -0
  11788. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vinyl.svg +22 -0
  11789. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vip-2.svg +25 -0
  11790. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vip-off.svg +24 -0
  11791. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vip.svg +23 -0
  11792. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/virus-off.svg +35 -0
  11793. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/virus-search.svg +35 -0
  11794. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/virus.svg +35 -0
  11795. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vocabulary-off.svg +24 -0
  11796. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vocabulary.svg +25 -0
  11797. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/volcano.svg +23 -0
  11798. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/volume-2.svg +20 -0
  11799. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/volume-3.svg +20 -0
  11800. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/volume-4.svg +19 -0
  11801. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/volume-off.svg +22 -0
  11802. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/volume.svg +21 -0
  11803. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/vs.svg +21 -0
  11804. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/walk.svg +22 -0
  11805. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wall-off.svg +27 -0
  11806. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wall.svg +27 -0
  11807. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wallet-off.svg +22 -0
  11808. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wallet.svg +20 -0
  11809. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wallpaper-off.svg +22 -0
  11810. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wallpaper.svg +21 -0
  11811. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wand-off.svg +23 -0
  11812. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wand.svg +22 -0
  11813. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-1.svg +21 -0
  11814. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-2.svg +22 -0
  11815. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-3.svg +23 -0
  11816. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-a.svg +21 -0
  11817. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-dip.svg +22 -0
  11818. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-f.svg +21 -0
  11819. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-flat.svg +20 -0
  11820. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-hang.svg +20 -0
  11821. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-off.svg +20 -0
  11822. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-p.svg +20 -0
  11823. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-shade.svg +21 -0
  11824. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry-w.svg +20 -0
  11825. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dry.svg +19 -0
  11826. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dryclean-off.svg +20 -0
  11827. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-dryclean.svg +19 -0
  11828. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-eco.svg +22 -0
  11829. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-gentle.svg +22 -0
  11830. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-hand.svg +22 -0
  11831. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-machine.svg +24 -0
  11832. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-off.svg +21 -0
  11833. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-press.svg +21 -0
  11834. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-temperature-1.svg +21 -0
  11835. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-temperature-2.svg +22 -0
  11836. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-temperature-3.svg +23 -0
  11837. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-temperature-4.svg +24 -0
  11838. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-temperature-5.svg +25 -0
  11839. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-temperature-6.svg +26 -0
  11840. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-tumble-dry.svg +20 -0
  11841. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash-tumble-off.svg +21 -0
  11842. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wash.svg +20 -0
  11843. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/waterpolo.svg +23 -0
  11844. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wave-saw-tool.svg +19 -0
  11845. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wave-sine.svg +19 -0
  11846. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wave-square.svg +19 -0
  11847. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/waves-electricity.svg +22 -0
  11848. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/webhook-off.svg +22 -0
  11849. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/webhook.svg +21 -0
  11850. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/weight.svg +20 -0
  11851. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wheat-off.svg +26 -0
  11852. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wheat.svg +22 -0
  11853. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wheel.svg +26 -0
  11854. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wheelchair-off.svg +25 -0
  11855. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wheelchair.svg +24 -0
  11856. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/whirl.svg +23 -0
  11857. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/whisk.svg +20 -0
  11858. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wifi-0.svg +19 -0
  11859. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wifi-1.svg +20 -0
  11860. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wifi-2.svg +21 -0
  11861. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wifi-off.svg +23 -0
  11862. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wifi.svg +22 -0
  11863. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wind-electricity.svg +22 -0
  11864. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wind-off.svg +23 -0
  11865. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wind.svg +21 -0
  11866. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/windmill-off.svg +23 -0
  11867. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/windmill.svg +22 -0
  11868. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/window-maximize.svg +22 -0
  11869. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/window-minimize.svg +22 -0
  11870. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/window-off.svg +22 -0
  11871. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/window.svg +21 -0
  11872. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/windsock.svg +23 -0
  11873. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wiper-wash.svg +27 -0
  11874. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wiper.svg +21 -0
  11875. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/woman.svg +24 -0
  11876. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wood.svg +22 -0
  11877. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-bolt.svg +24 -0
  11878. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-cancel.svg +25 -0
  11879. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-check.svg +24 -0
  11880. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-code.svg +25 -0
  11881. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-cog.svg +30 -0
  11882. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-dollar.svg +25 -0
  11883. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-down.svg +25 -0
  11884. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-download.svg +24 -0
  11885. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-exclamation.svg +25 -0
  11886. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-heart.svg +24 -0
  11887. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-latitude.svg +22 -0
  11888. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-longitude.svg +22 -0
  11889. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-map.svg +22 -0
  11890. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-minus.svg +24 -0
  11891. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-off.svg +24 -0
  11892. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-pause.svg +25 -0
  11893. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-pin.svg +25 -0
  11894. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-plus.svg +25 -0
  11895. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-question.svg +25 -0
  11896. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-search.svg +25 -0
  11897. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-share.svg +25 -0
  11898. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-star.svg +24 -0
  11899. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-up.svg +25 -0
  11900. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-upload.svg +24 -0
  11901. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-www.svg +27 -0
  11902. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world-x.svg +25 -0
  11903. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/world.svg +23 -0
  11904. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/wrecking-ball.svg +26 -0
  11905. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/writing-off.svg +22 -0
  11906. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/writing-sign-off.svg +22 -0
  11907. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/writing-sign.svg +21 -0
  11908. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/writing.svg +21 -0
  11909. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/x-mark.svg +19 -0
  11910. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/x-power-y.svg +22 -0
  11911. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/x.svg +20 -0
  11912. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/xbox-a.svg +21 -0
  11913. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/xbox-b.svg +22 -0
  11914. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/xbox-x.svg +21 -0
  11915. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/xbox-y.svg +21 -0
  11916. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/xd.svg +21 -0
  11917. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/xxx.svg +24 -0
  11918. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/yin-yang.svg +22 -0
  11919. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/yoga.svg +22 -0
  11920. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zeppelin-off.svg +21 -0
  11921. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zeppelin.svg +20 -0
  11922. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zero-config.svg +20 -0
  11923. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zip.svg +21 -0
  11924. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-aquarius.svg +20 -0
  11925. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-aries.svg +21 -0
  11926. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-cancer.svg +22 -0
  11927. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-capricorn.svg +21 -0
  11928. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-gemini.svg +22 -0
  11929. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-leo.svg +23 -0
  11930. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-libra.svg +20 -0
  11931. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-pisces.svg +21 -0
  11932. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-sagittarius.svg +21 -0
  11933. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-scorpio.svg +21 -0
  11934. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-taurus.svg +20 -0
  11935. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zodiac-virgo.svg +22 -0
  11936. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-cancel.svg +22 -0
  11937. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-check.svg +21 -0
  11938. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-code.svg +22 -0
  11939. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-exclamation.svg +22 -0
  11940. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-in-area.svg +27 -0
  11941. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-in.svg +22 -0
  11942. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-money.svg +22 -0
  11943. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-out-area.svg +26 -0
  11944. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-out.svg +21 -0
  11945. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-pan.svg +24 -0
  11946. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-question.svg +22 -0
  11947. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-replace.svg +23 -0
  11948. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-reset.svg +21 -0
  11949. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom-scan.svg +24 -0
  11950. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zoom.svg +20 -0
  11951. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zzz-off.svg +21 -0
  11952. ppt_master-0.1.0/skills/ppt-master/templates/icons/tabler-outline/zzz.svg +20 -0
  11953. ppt_master-0.1.0/skills/ppt-master/templates/layouts/README.md +80 -0
  11954. ppt_master-0.1.0/skills/ppt-master/templates/layouts/academic_defense/01_cover.svg +49 -0
  11955. ppt_master-0.1.0/skills/ppt-master/templates/layouts/academic_defense/02_chapter.svg +36 -0
  11956. ppt_master-0.1.0/skills/ppt-master/templates/layouts/academic_defense/02_toc.svg +63 -0
  11957. ppt_master-0.1.0/skills/ppt-master/templates/layouts/academic_defense/03_content.svg +58 -0
  11958. ppt_master-0.1.0/skills/ppt-master/templates/layouts/academic_defense/04_ending.svg +52 -0
  11959. ppt_master-0.1.0/skills/ppt-master/templates/layouts/academic_defense/design_spec.md +235 -0
  11960. ppt_master-0.1.0/skills/ppt-master/templates/layouts/ai_ops/01_cover.svg +65 -0
  11961. ppt_master-0.1.0/skills/ppt-master/templates/layouts/ai_ops/02_chapter.svg +36 -0
  11962. ppt_master-0.1.0/skills/ppt-master/templates/layouts/ai_ops/02_toc.svg +51 -0
  11963. ppt_master-0.1.0/skills/ppt-master/templates/layouts/ai_ops/03_content.svg +37 -0
  11964. ppt_master-0.1.0/skills/ppt-master/templates/layouts/ai_ops/04_ending.svg +59 -0
  11965. ppt_master-0.1.0/skills/ppt-master/templates/layouts/ai_ops/design_spec.md +324 -0
  11966. ppt_master-0.1.0/skills/ppt-master/templates/layouts/ai_ops/reference_style.svg +154 -0
  11967. ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_blue/01_cover.svg +93 -0
  11968. ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_blue/02_chapter.svg +82 -0
  11969. ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_blue/02_toc.svg +107 -0
  11970. ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_blue/03_content.svg +78 -0
  11971. ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_blue/04_ending.svg +81 -0
  11972. ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_blue/design_spec.md +202 -0
  11973. ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_red/01_cover.svg +73 -0
  11974. ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_red/02_chapter.svg +66 -0
  11975. ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_red/02_toc.svg +88 -0
  11976. ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_red/03_content.svg +66 -0
  11977. ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_red/04_ending.svg +75 -0
  11978. ppt_master-0.1.0/skills/ppt-master/templates/layouts/government_red/design_spec.md +195 -0
  11979. ppt_master-0.1.0/skills/ppt-master/templates/layouts/layouts_index.json +87 -0
  11980. ppt_master-0.1.0/skills/ppt-master/templates/layouts/medical_university/01_cover.svg +71 -0
  11981. ppt_master-0.1.0/skills/ppt-master/templates/layouts/medical_university/02_chapter.svg +50 -0
  11982. ppt_master-0.1.0/skills/ppt-master/templates/layouts/medical_university/02_toc.svg +97 -0
  11983. ppt_master-0.1.0/skills/ppt-master/templates/layouts/medical_university/03_content.svg +78 -0
  11984. ppt_master-0.1.0/skills/ppt-master/templates/layouts/medical_university/04_ending.svg +79 -0
  11985. ppt_master-0.1.0/skills/ppt-master/templates/layouts/medical_university/design_spec.md +237 -0
  11986. ppt_master-0.1.0/skills/ppt-master/templates/layouts/pixel_retro/01_cover.svg +138 -0
  11987. ppt_master-0.1.0/skills/ppt-master/templates/layouts/pixel_retro/02_chapter.svg +130 -0
  11988. ppt_master-0.1.0/skills/ppt-master/templates/layouts/pixel_retro/02_toc.svg +130 -0
  11989. ppt_master-0.1.0/skills/ppt-master/templates/layouts/pixel_retro/03_content.svg +50 -0
  11990. ppt_master-0.1.0/skills/ppt-master/templates/layouts/pixel_retro/04_ending.svg +167 -0
  11991. ppt_master-0.1.0/skills/ppt-master/templates/layouts/pixel_retro/design_spec.md +266 -0
  11992. ppt_master-0.1.0/skills/ppt-master/templates/layouts/psychology_attachment/01_cover.svg +78 -0
  11993. ppt_master-0.1.0/skills/ppt-master/templates/layouts/psychology_attachment/02_chapter.svg +82 -0
  11994. ppt_master-0.1.0/skills/ppt-master/templates/layouts/psychology_attachment/02_toc.svg +115 -0
  11995. ppt_master-0.1.0/skills/ppt-master/templates/layouts/psychology_attachment/03_content.svg +41 -0
  11996. ppt_master-0.1.0/skills/ppt-master/templates/layouts/psychology_attachment/04_ending.svg +100 -0
  11997. ppt_master-0.1.0/skills/ppt-master/templates/layouts/psychology_attachment/design_spec.md +341 -0
  11998. ppt_master-0.1.0/skills/ppt-master/templates/spec_lock_reference.md +143 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025-2026 Hugo He
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,2 @@
1
+ recursive-include skills/ppt-master/scripts *
2
+ recursive-include skills/ppt-master/templates *
@@ -0,0 +1,406 @@
1
+ Metadata-Version: 2.4
2
+ Name: ppt-master
3
+ Version: 0.1.0
4
+ Summary: AI-driven multi-format SVG content generation system
5
+ Author: elvisw
6
+ License: MIT
7
+ Project-URL: Repository, https://github.com/elvisw/ppt-master
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.12
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.12
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Requires-Dist: python-pptx>=0.6.21
16
+ Requires-Dist: edge-tts>=7.2.8
17
+ Requires-Dist: svglib>=1.5.0
18
+ Requires-Dist: reportlab>=4.0.0
19
+ Requires-Dist: PyMuPDF>=1.23.0
20
+ Requires-Dist: mammoth>=1.6.0
21
+ Requires-Dist: markdownify>=0.11.6
22
+ Requires-Dist: ebooklib>=0.18
23
+ Requires-Dist: nbconvert>=7.0.0
24
+ Requires-Dist: openpyxl>=3.1.0
25
+ Requires-Dist: Pillow>=9.0.0
26
+ Requires-Dist: numpy>=1.20.0
27
+ Requires-Dist: requests>=2.31.0
28
+ Requires-Dist: beautifulsoup4>=4.12.0
29
+ Requires-Dist: curl_cffi>=0.7.0
30
+ Requires-Dist: google-genai>=1.0.0
31
+ Requires-Dist: openai>=1.0.0
32
+ Requires-Dist: flask>=3.0.0
33
+ Dynamic: license-file
34
+
35
+ # PPT Master — AI generates natively editable PPTX from any document
36
+
37
+ [![Version](https://img.shields.io/badge/version-v2.9.0-blue.svg)](https://github.com/hugohe3/ppt-master/releases)
38
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
39
+ [![GitHub stars](https://img.shields.io/github/stars/hugohe3/ppt-master.svg)](https://github.com/hugohe3/ppt-master/stargazers)
40
+ [![AtomGit stars](https://atomgit.com/hugohe3/ppt-master/star/badge.svg)](https://atomgit.com/hugohe3/ppt-master)
41
+
42
+ English | [中文](./README_CN.md)
43
+
44
+ <p align="center">
45
+ <sub>This project is kept free and open source with the support of <a href="https://www.packyapi.com/register?aff=ppt-master">PackyCode</a>, <a href="https://apikey.fun/register?aff=PPT-MASTER">APIKEY.FUN</a> and other sponsors.</sub>
46
+ </p>
47
+
48
+ <table>
49
+ <tr>
50
+ <td width="180"><a href="https://www.packyapi.com/register?aff=ppt-master"><img src="docs/assets/sponsors/packycode.png" alt="PackyCode" width="150"></a></td>
51
+ <td>Thanks to PackyCode for sponsoring this project! PackyCode is a reliable and efficient API relay service provider, offering relay services for Claude Code, Codex, Gemini, and more. PackyCode provides special discounts for our project users: register using <a href="https://www.packyapi.com/register?aff=ppt-master">this link</a> and enter the promo code <strong>ppt-master</strong> during recharge to get 10% off.</td>
52
+ </tr>
53
+ <tr>
54
+ <td width="180"><a href="https://apikey.fun/register?aff=PPT-MASTER"><img src="docs/assets/sponsors/apikey-fun.png" alt="APIKEY.FUN" width="150"></a></td>
55
+ <td>Thanks to APIKEY.FUN for sponsoring this project! APIKEY.FUN is a professional enterprise-grade AI relay service committed to stable, efficient, and low-cost AI access for businesses and developers. The platform supports mainstream models including Claude, OpenAI, and Gemini, with prices as low as <strong>7% of official rates</strong>. Register through <a href="https://apikey.fun/register?aff=PPT-MASTER">our dedicated link</a> for an exclusive perk: <strong>up to 5% off on top-ups, permanently</strong>.</td>
56
+ </tr>
57
+ </table>
58
+
59
+ > [!IMPORTANT]
60
+ > ### This is a tool, not a wishing well
61
+ > Don't expect it to hand you a finished, perfect deck in one shot. Its real value is taking most of the tedious work off your plate; the polishing that's left is yours — a natively editable deck exists precisely so you can keep working on it, not a flat image you can't touch. The cheaper the model, the more there is to do. How good the result turns out comes down to your skill with this project and with PowerPoint.
62
+
63
+ <p align="center">
64
+ <a href="https://hugohe3.github.io/ppt-master/"><strong>Live Demo</strong></a> ·
65
+ <a href="https://www.hehugo.com/"><strong>About Hugo He</strong></a> ·
66
+ <a href="./examples/"><strong>Examples</strong></a> ·
67
+ <a href="./docs/faq.md"><strong>FAQ</strong></a> ·
68
+ <a href="./docs/roadmap.md"><strong>Roadmap</strong></a> ·
69
+ <a href="mailto:heyug3@gmail.com"><strong>Contact</strong></a>
70
+ </p>
71
+
72
+ <h3 align="center">Download the new <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_attention_is_all_you_need/exports/attention_is_all_you_need_narrated.pptx">narrated <em>Attention Is All You Need</em> deck</a> — play it in PowerPoint and every slide reads itself out loud. That's just the tip of what PPT Master can do.</h3>
73
+ <h3 align="center">Of course, you can also download any of the six example decks below — opening the raw .pptx in PowerPoint is the fastest way to see this project's real capability ceiling.</h3>
74
+
75
+ <table>
76
+ <tr>
77
+ <td align="center" width="33%">
78
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_pritzker_2026"><img src="docs/assets/screenshots/preview_pritzker_2026.png" alt="Editorial magazine — Pritzker 2026 architecture review" /></a><br/>
79
+ <sub><b>Editorial Magazine</b> — architecture photography, calm typographic grid<br/>
80
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_pritzker_2026">Flip online</a> · <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_pritzker_2026/exports/pritzker_2026.pptx">Download .pptx</a></sub>
81
+ </td>
82
+ <td align="center" width="33%">
83
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_global_ai_capital_2026"><img src="docs/assets/screenshots/preview_global_ai_capital.png" alt="Data journalism — Global AI Capital 2026" /></a><br/>
84
+ <sub><b>Data Journalism</b> — Bloomberg-style dark dashboard, chart-driven<br/>
85
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_global_ai_capital_2026">Flip online</a> · <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_global_ai_capital_2026/exports/global_ai_capital_2026.pptx">Download .pptx</a></sub>
86
+ </td>
87
+ <td align="center" width="33%">
88
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_swiss_grid_systems"><img src="docs/assets/screenshots/preview_swiss_grid.png" alt="Swiss typographic grid — Grid Systems primer" /></a><br/>
89
+ <sub><b>Swiss Grid</b> — strict modular grid, restrained type, red-accent<br/>
90
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_swiss_grid_systems">Flip online</a> · <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_swiss_grid_systems/exports/swiss_grid_systems.pptx">Download .pptx</a></sub>
91
+ </td>
92
+ </tr>
93
+ <tr>
94
+ <td align="center" width="33%">
95
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_glassmorphism_demo"><img src="docs/assets/screenshots/preview_glassmorphism_demo.png" alt="Glassmorphism SaaS — AI Agent engineering demo" /></a><br/>
96
+ <sub><b>Glassmorphism SaaS</b> — translucent layers, gradient depth, product UI<br/>
97
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_glassmorphism_demo">Flip online</a> · <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_glassmorphism_demo/exports/glassmorphism_demo.pptx">Download .pptx</a></sub>
98
+ </td>
99
+ <td align="center" width="33%">
100
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_sugar_rush_memphis"><img src="docs/assets/screenshots/preview_sugar_rush_memphis.png" alt="Memphis pop — Sugar Rush festival" /></a><br/>
101
+ <sub><b>Memphis Pop</b> — bold primaries, geometric patterns, playful energy<br/>
102
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_sugar_rush_memphis">Flip online</a> · <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_sugar_rush_memphis/exports/sugar_rush_memphis.pptx">Download .pptx</a></sub>
103
+ </td>
104
+ <td align="center" width="33%">
105
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_indie_bookstore_zine_guide"><img src="docs/assets/screenshots/preview_indie_bookstore_zine.png" alt="Risograph zine — Indie bookstore guide" /></a><br/>
106
+ <sub><b>Risograph Zine</b> — duotone print, hand-made bookstore-culture feel<br/>
107
+ <a href="https://hugohe3.github.io/ppt-master/viewer.html?project=ppt169_indie_bookstore_zine_guide">Flip online</a> · <a href="https://raw.githubusercontent.com/hugohe3/ppt-master/main/examples/ppt169_indie_bookstore_zine_guide/exports/indie_bookstore_zine_guide.pptx">Download .pptx</a></sub>
108
+ </td>
109
+ </tr>
110
+ </table>
111
+
112
+ <p align="center">
113
+ <sub>Generated with Claude Opus 4.7 + <code>gpt-image-2</code>. <a href="https://hugohe3.github.io/ppt-master/">Flip through all examples online →</a> · <a href="./examples/"><code>examples/</code> directory</a> · <a href="./docs/why-ppt-master.md">Why PPT Master?</a></sub>
114
+ </p>
115
+
116
+ ---
117
+
118
+ Drop in your source material and get back a **real PowerPoint**: directly editable, with native slide transitions and entrance animations, speaker notes you can turn into audio narration, and the option to follow your own PPT template — a complete deck you can present as-is and keep editing. How to use each capability → [Getting Started](./docs/getting-started.md).
119
+
120
+ > **⚠️ PPT Master is a harness, not a complete agent.** `harness + model = agent` — the tool owns the workflow; the model sets the ceiling. To form a genuinely high-quality agent, use **Claude with a large context window (~1M tokens) + AI image generation (`gpt-image-2`)**. Other models can run the pipeline but cannot reach the same quality ceiling. If results disappoint, upgrade the model — don't blame the harness.
121
+
122
+ > **How it works** — PPT Master is a workflow (a "skill") that works inside AI IDEs like Claude Code, Cursor, VS Code + Copilot, or Codebuddy. You chat with the AI — "make a deck from this PDF" — and it follows the workflow to produce a real editable `.pptx` on your computer. No coding on your side; the IDE is just where the conversation happens.
123
+ >
124
+ > **What you'll do**: install Python, install an AI IDE, drop in your material.
125
+
126
+ > **Why it's shaped this way** — knowing how to use Python and AI agents will matter more and more. This project is meant to show how far you can go with just those two things. There's a learning curve if you're starting cold, but it's the curve worth climbing. Making a deck is just the excuse — what I'm really pushing is Python and agents.
127
+
128
+ PPT Master is different:
129
+
130
+ - **Real PowerPoint** — if a file can't be opened and edited in PowerPoint, it shouldn't be called a PPT. Every element PPT Master outputs is directly clickable and editable
131
+ - **Transparent, predictable cost** — the tool is free and open source; the only cost is your AI model usage. As AI tools move to usage-based billing, you pay exactly what you consume — no separate PPT subscription added on top
132
+ - **Data stays local** — your files shouldn't have to be uploaded to someone else's server just to make a presentation. Apart from AI model communication, the entire pipeline runs on your machine
133
+ - **No platform lock-in** — your workflow shouldn't be held hostage by any single company. Works with Claude Code, Cursor, VS Code Copilot, and more; supports Claude, GPT, Gemini, Kimi, and other models
134
+
135
+ AI presentation tools roughly fall into four categories. PPT Master only does the last one:
136
+
137
+ | Category | Output | Editable element-by-element in PowerPoint? |
138
+ |---|---|:---:|
139
+ | Template fill-in | PPTX built from a fixed template | Partially — limited by the template |
140
+ | Image-based | One large image per slide, packed into PPTX | ❌ each slide is a picture |
141
+ | HTML presentation | Web-based deck | ❌ not a PPTX |
142
+ | **Native editable (PPT Master)** | **Real DrawingML shapes, text boxes, charts** | ✅ click any element to edit |
143
+
144
+ ---
145
+
146
+ ## The person using it matters more
147
+
148
+ The examples above were all made in a single pass — I didn't even refine them; spend some time polishing and it's a different story entirely. With the same PowerPoint, a designer can produce something stunning while most people only ever touch a few basic features — the difference isn't the tool, it's the person using it. If you can't get there yet, it's most likely that you haven't learned the workflow — start with [Getting Started](./docs/getting-started.md) and the example projects.
149
+
150
+ The best results do need Claude. Before you call it expensive, think about what it would cost to hire someone to produce a deck at the same level. The project also supports GPT, Gemini, Kimi, and other models — the results simply differ. Expecting top-tier output while paying the lowest possible cost was never reasonable to begin with.
151
+
152
+ ---
153
+
154
+ ## Built by Hugo He
155
+
156
+ I'm a finance professional (CPA · CPV · Consulting Engineer (Investment)) who regularly reviews and edits presentation decks. I wanted AI-generated slides to remain editable in PowerPoint, not flattened into images — so I built this.
157
+
158
+ 🌐 [Personal website](https://www.hehugo.com/) · 📧 [heyug3@gmail.com](mailto:heyug3@gmail.com) · 🐙 [@hugohe3](https://github.com/hugohe3)
159
+
160
+ ---
161
+
162
+ ## Quick Start
163
+
164
+ ### 1. Prerequisites
165
+
166
+ **You only need Python and uv.** uv is a Python package manager. `uv sync` installs all dependencies into an isolated virtual environment — no global pollution.
167
+
168
+ | Dependency | Required? | What it does |
169
+ |------------|:---------:|--------------|
170
+ | [Python](https://www.python.org/downloads/) 3.10+ | ✅ **Yes** | Core runtime |
171
+ | [uv](https://docs.astral.sh/uv/getting-started/installation/) | ✅ **Yes** | Python package manager — isolated environments, no global pollution |
172
+
173
+ > **TL;DR** — Install Python and uv, run `uv sync`, and you're ready to generate presentations.
174
+
175
+ <details open>
176
+ <summary><strong>Windows</strong> — see the dedicated step-by-step guide ⚠️</summary>
177
+
178
+ Windows requires a few extra steps (PATH setup, execution policy, etc.). We wrote a **step-by-step guide** specifically for Windows users:
179
+
180
+ **📖 [Windows Installation Guide](./docs/windows-installation.md)** — from zero to a working presentation in 10 minutes.
181
+
182
+ Quick version: download Python from [python.org](https://www.python.org/downloads/) → **check "Add to PATH"** during install → install [uv](https://docs.astral.sh/uv/getting-started/installation/) → `uv sync` → done.
183
+ </details>
184
+
185
+ <details>
186
+ <summary><strong>macOS / Linux</strong> — install and go</summary>
187
+
188
+ ```bash
189
+ # macOS
190
+ brew install python uv
191
+ uv sync
192
+
193
+ # Ubuntu / Debian
194
+ sudo apt install python3
195
+ curl -LsSf https://astral.sh/uv/install.sh | sh
196
+ uv sync
197
+ ```
198
+ </details>
199
+
200
+ <details>
201
+ <summary><strong>Edge-case fallback</strong> — 99% of users don't need this</summary>
202
+
203
+ **Pandoc** — only needed for legacy document formats: `.doc`, `.odt`, `.rtf`, `.tex`, `.rst`, `.org`, or `.typ`. `.docx`, `.html`, `.epub`, `.ipynb` are handled natively by Python — no pandoc required.
204
+
205
+ ```bash
206
+ # macOS
207
+ brew install pandoc
208
+
209
+ # Ubuntu / Debian
210
+ sudo apt install pandoc
211
+ ```
212
+ </details>
213
+
214
+ ### 2. Pick an Agent
215
+
216
+ PPT Master runs in **any tool with agent capability** — read/write files, execute commands, and sustain multi-turn conversation.
217
+
218
+ | Type | Examples | Notes |
219
+ |---|---|---|
220
+ | **IDE-native agent** | • VS Code architecture ([VS Code](https://code.visualstudio.com/) itself, plus forks & derivatives): [Cursor](https://cursor.sh/), Trae, Codebuddy IDE, [Windsurf](https://codeium.com/windsurf), Void, etc.<br>• Other architectures: [Zed](https://zed.dev/), etc. | Editor with a built-in agent |
221
+ | **IDE plugin / extension** | [GitHub Copilot](https://github.com/features/copilot), [Claude Code](https://claude.ai/code) (VS Code / JetBrains extension), [Cline](https://cline.bot/), [Continue](https://continue.dev/), Roo Code, etc. | Installed inside hosts like VS Code or JetBrains |
222
+ | **CLI agent** | [Claude Code](https://claude.ai/code) CLI, [Codex CLI](https://github.com/openai/codex), [Aider](https://aider.chat/), Gemini CLI, etc. | Runs in the terminal; suits scripting, remote, or server use |
223
+
224
+ > **Model recommendation**: for the best results, use **Claude Opus** with `gpt-image-2`; **Gemini 3.5 Flash** currently offers great overall value for money — notably fast and well worth a try.
225
+
226
+ **🔑 Want to use Claude / GPT / Gemini but don't have access yet?** Project sponsors **[PackyCode](https://www.packyapi.com/register?aff=ppt-master)** and **[APIKEY.FUN](https://apikey.fun/register?aff=PPT-MASTER)** can help — both offer pay-as-you-go access to Claude, GPT, Gemini and more, no subscription required. **PackyCode**: 10% off with promo code **`ppt-master`** at top-up. **APIKEY.FUN**: prices as low as **7% of official rates**; register via our link for an exclusive permanent discount of up to 5% on top-ups.
227
+
228
+ ### 3. Set Up
229
+
230
+ **Option A — Download ZIP** (no Git required): click **Code → Download ZIP** on the [GitHub page](https://github.com/hugohe3/ppt-master), then unzip.
231
+
232
+ **Option B — Git clone** (requires [Git](https://git-scm.com/downloads) installed):
233
+
234
+ ```bash
235
+ git clone https://github.com/hugohe3/ppt-master.git
236
+ cd ppt-master
237
+ ```
238
+
239
+ Then install dependencies:
240
+
241
+ ```bash
242
+ uv sync
243
+ ```
244
+
245
+ > ⚠️ **Two install options**:
246
+ >
247
+ > **Local build** (from repo root):
248
+ > ```bash
249
+ > uv build --wheel # Pre-build (~4min, one-time)
250
+ > mv dist/ppt_master-*.whl dist/ppt-master-latest-py3-none-any.whl
251
+ > uv tool install ppt-master-latest-py3-none-any.whl # Installs instantly
252
+ > ```
253
+ >
254
+ > **Direct download** (no repo needed):
255
+ > ```bash
256
+ > curl -LO https://github.com/elvisw/ppt-master/releases/latest/download/ppt-master-latest-py3-none-any.whl
257
+ > uv tool install ppt-master-latest-py3-none-any.whl
258
+ > ```
259
+
260
+ To update later (Option A / B): `uvx ppt-master update-repo`
261
+
262
+ > **Option C — Skill marketplace**: the repo ships `.claude-plugin/marketplace.json`, so it can be installed through the [Claude Code plugin marketplace](https://code.claude.com/docs/en/plugin-marketplaces) ecosystem:
263
+ >
264
+ > ```bash
265
+ > # Cross-agent CLI (Claude Code, Cursor, Codex, etc.)
266
+ > npx skills add hugohe3/ppt-master
267
+ >
268
+ > # Or inside Claude Code
269
+ > /plugin marketplace add hugohe3/ppt-master
270
+ > /plugin install ppt-master@ppt-master
271
+ > ```
272
+ >
273
+ > Both install paths above only fetch the skill files (not the full repo); you still need to `uv sync` from the installed location for the post-processing scripts to run.
274
+
275
+ ### 4. Create
276
+
277
+ **Provide source materials (recommended):** Place your PDF, DOCX, images, or other files in the `projects/` directory, then tell the AI chat panel which files to use. The quickest way to get the path: right-click the file in your file manager or IDE sidebar → **Copy Path** (or **Copy Relative Path**) and paste it directly into the chat.
278
+
279
+ ```
280
+ You: Please create a PPT from projects/q3-report/sources/report.pdf
281
+ ```
282
+
283
+ **Paste content directly:** You can also paste text content straight into the chat window and the AI will generate a PPT from it.
284
+
285
+ ```
286
+ You: Please turn the following into a PPT: [paste your content here...]
287
+ ```
288
+
289
+ Either way, the AI will first confirm the design spec:
290
+
291
+ ```
292
+ AI: Sure. Let's confirm the design spec:
293
+ [Template] B) Free design
294
+ [Format] PPT 16:9
295
+ [Pages] 8-10 pages
296
+ ...
297
+ ```
298
+
299
+ The AI handles everything — content analysis, visual design, SVG generation, and PPTX export.
300
+
301
+ > **Output:** Native-shapes `.pptx` (directly editable) saved to `exports/<name>_<timestamp>.pptx`. A copy of `svg_output/` is always snapshotted to `backup/<timestamp>/svg_output/` for re-export / archival. Pass `--svg-snapshot` to additionally emit an SVG-image preview pptx alongside the native pptx in `exports/` (see [FAQ](./docs/faq.md)). Requires Office 2016+.
302
+
303
+ > **Already have a `.pptx` you want to reuse?** Hand the AI that deck plus your material and ask it to "fill this deck with the new content" — it fills text, table, and chart data into your existing design and exports only the pages you pick, staying natively editable. See the [FAQ](./docs/faq.md) and [template-fill workflow](./skills/ppt-master/workflows/template-fill-pptx.md).
304
+
305
+ > **AI lost context?** Ask it to read `skills/ppt-master/SKILL.md`.
306
+
307
+ > **Something went wrong?** Check the **[FAQ](./docs/faq.md)** — it covers model selection, layout issues, export problems, and more. Continuously updated from real user reports.
308
+
309
+ ### 5. Image Acquisition (Optional)
310
+
311
+ Two paths for non-user images, mixable per row in the same deck:
312
+
313
+ For API-backed features, put credentials in `.env`. Clone installs can use `cp .env.example .env`; skill marketplace installs should use a persistent user config:
314
+
315
+ ```bash
316
+ mkdir -p ~/.ppt-master
317
+ cp /path/to/installed/ppt-master/.env.example ~/.ppt-master/.env
318
+ ```
319
+
320
+ PPT Master reads the current process environment first, then the first `.env` found in this order: current working directory, skill directory (e.g. `~/.agents/skills/ppt-master/.env`), clone repo root, `~/.ppt-master/.env`.
321
+
322
+ **A) AI generation** — `image_gen.py`. Set `IMAGE_BACKEND` plus the provider's `*_API_KEY` (`OPENAI_API_KEY`, `GEMINI_API_KEY`, etc.), and the pipeline calls it automatically. Run `uvx ppt-master image-gen --list-backends` for the full backend list. `gpt-image-2` is currently the best default.
323
+
324
+ **B) Web image search** — `image_search.py`. **Zero-config works**, but configure `PEXELS_API_KEY` / `PIXABAY_API_KEY` (both free) for higher-quality results. Without keys, search uses Openverse / Wikimedia Commons only; this is useful as a fallback, but image quality can be uneven because many results are ordinary user uploads. With keys, the default provider chain also appends Pexels / Pixabay, which materially improves modern stock photography, people, workplace, lifestyle, and illustration coverage. The default is quality-first: CC0, Public Domain, Pexels / Pixabay no-attribution licenses, CC BY, and CC BY-SA are considered together, and Executor adds a small inline credit whenever the selected image requires attribution. Use `--strict-no-attribution` only when a slide cannot tolerate any credit line. For high-impact covers, product shots, portraits, and branded scenes, prefer this order: user-provided high-resolution assets / AI generation > web search with Pexels / Pixabay keys > zero-config web search.
325
+
326
+ > Full reference: [`image-generator.md`](./skills/ppt-master/references/image-generator.md) (AI) · [`image-searcher.md`](./skills/ppt-master/references/image-searcher.md) (web).
327
+
328
+ ---
329
+
330
+ ## Documentation
331
+
332
+ | | Document | Description |
333
+ |---|----------|-------------|
334
+ | 📘 | [Getting Started](./docs/getting-started.md) | First deck in 3 steps, plus how to use templates, live preview, animations, narration, voice cloning (**new users start here**) |
335
+ | 🆚 | [Why PPT Master](./docs/why-ppt-master.md) | How it compares to Gamma, Copilot, and other AI tools |
336
+ | 🪟 | [Windows Installation](./docs/windows-installation.md) | Step-by-step setup guide for Windows users |
337
+ | 📖 | [SKILL.md](./skills/ppt-master/SKILL.md) | Core workflow and rules |
338
+ | 📐 | [Canvas Formats](./skills/ppt-master/references/canvas-formats.md) | PPT 16:9, Xiaohongshu, WeChat, and 10+ formats |
339
+ | 🛠️ | [Scripts & Tools](./skills/ppt-master/scripts/README.md) | All scripts and commands |
340
+ | 💼 | [Examples](./examples/README.md) | All example projects |
341
+ | 🏗️ | [Technical Design](./docs/technical-design.md) | Architecture, design philosophy, why SVG |
342
+ | ❓ | [FAQ](./docs/faq.md) | Model selection, cost, layout troubleshooting, custom templates |
343
+
344
+ ---
345
+
346
+ ## Contributing
347
+
348
+ See [CONTRIBUTING.md](./CONTRIBUTING.md) for how to get involved.
349
+
350
+ ## License
351
+
352
+ [MIT](LICENSE)
353
+
354
+ ## Acknowledgments
355
+
356
+ [SVG Repo](https://www.svgrepo.com/) · [Tabler Icons](https://github.com/tabler/tabler-icons) · [Simple Icons](https://github.com/simple-icons/simple-icons) · [Phosphor Icons](https://github.com/phosphor-icons/core) · [Robin Williams](https://en.wikipedia.org/wiki/Robin_Williams_(author)) (CRAP principles)
357
+
358
+ ## Contact & Collaboration
359
+
360
+ Looking to collaborate, integrate PPT Master into your workflow, or just have questions?
361
+
362
+ - 💬 **Questions & sharing** — [GitHub Discussions](https://github.com/hugohe3/ppt-master/discussions)
363
+ - 🐛 **Bug reports & feature requests** — [GitHub Issues](https://github.com/hugohe3/ppt-master/issues)
364
+ - 🌐 **Learn more about the author** — [www.hehugo.com](https://www.hehugo.com/)
365
+
366
+ ---
367
+
368
+ ## Star History
369
+
370
+ <a href="https://star-history.com/#hugohe3/ppt-master&Date">
371
+ <picture>
372
+ <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=hugohe3/ppt-master&type=Date&theme=dark" />
373
+ <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=hugohe3/ppt-master&type=Date" />
374
+ <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=hugohe3/ppt-master&type=Date" />
375
+ </picture>
376
+ </a>
377
+
378
+ ---
379
+
380
+ ## Sponsors & Support
381
+
382
+ PPT Master is currently built and maintained primarily by me. Every new template, bug fix, and documentation update takes ongoing resources — currently shared by the sponsors and individual supporters below.
383
+
384
+ **Corporate sponsors**
385
+
386
+ <a href="https://www.packyapi.com/register?aff=ppt-master"><img src="docs/assets/sponsors/packycode.png" alt="PackyCode" height="40" /></a>
387
+ &nbsp;
388
+ <a href="https://apikey.fun/register?aff=PPT-MASTER"><img src="docs/assets/sponsors/apikey-fun.png" alt="APIKEY.FUN" height="40" /></a>
389
+ &nbsp;
390
+ <a href="https://m.do.co/c/547f129aabe1"><img src="https://opensource.nyc3.cdn.digitaloceanspaces.com/attribution/assets/PoweredByDO/DO_Powered_by_Badge_blue.svg" alt="Powered by DigitalOcean" height="40" /></a>
391
+
392
+ **Individual support**
393
+
394
+ If PPT Master has been helpful to you, individual support of any amount helps keep the project moving and free.
395
+
396
+ <a href="https://paypal.me/hugohe3"><img src="https://img.shields.io/badge/PayPal-Sponsor-00457C?style=for-the-badge&logo=paypal&logoColor=white" alt="Sponsor via PayPal" /></a>
397
+
398
+ <img src="docs/assets/alipay-qr.jpg" alt="Alipay QR Code" width="220" />
399
+
400
+ ---
401
+
402
+ Made with ❤️ by [Hugo He](https://www.hehugo.com/) — if this project helps you, please give it a ⭐ and consider [sponsoring](#sponsors--support).
403
+
404
+ <sub>Official distribution: <a href="https://github.com/hugohe3/ppt-master">GitHub</a> (primary) · <a href="https://atomgit.com/hugohe3/ppt-master">AtomGit</a> (mirror). Redistributions on other platforms are unofficial. MIT licensed — attribution required.</sub>
405
+
406
+ [⬆ Back to Top](#ppt-master--ai-generates-natively-editable-pptx-from-any-document)