driftlessmap 1.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (210) hide show
  1. driftlessmap/__init__.py +16 -0
  2. driftlessmap/__main__.py +5 -0
  3. driftlessmap/about.py +24 -0
  4. driftlessmap/allen_downloader.py +908 -0
  5. driftlessmap/app.py +8085 -0
  6. driftlessmap/atlas_downloader.py +370 -0
  7. driftlessmap/atlas_loader.py +526 -0
  8. driftlessmap/atlas_processor.py +784 -0
  9. driftlessmap/atlas_transform.py +111 -0
  10. driftlessmap/atlas_view.py +1435 -0
  11. driftlessmap/cell_detection.py +27 -0
  12. driftlessmap/coordinate_validation.py +19 -0
  13. driftlessmap/czi_reader.py +236 -0
  14. driftlessmap/data/WHS_atlas_labels.pkl +0 -0
  15. driftlessmap/data/allen_mice_atlas_labels.pkl +0 -0
  16. driftlessmap/data/atlas_labels.pkl +0 -0
  17. driftlessmap/data/query.csv +1328 -0
  18. driftlessmap/download_utils.py +85 -0
  19. driftlessmap/herbs.png +0 -0
  20. driftlessmap/icons/backward.svg +15 -0
  21. driftlessmap/icons/dot.svg +11 -0
  22. driftlessmap/icons/down-arrow.svg +10 -0
  23. driftlessmap/icons/fast_backward.svg +14 -0
  24. driftlessmap/icons/fast_forward.svg +14 -0
  25. driftlessmap/icons/forward.svg +14 -0
  26. driftlessmap/icons/layers/add.png +0 -0
  27. driftlessmap/icons/layers/ai.png +0 -0
  28. driftlessmap/icons/layers/eye_off.png +0 -0
  29. driftlessmap/icons/layers/eye_on.png +0 -0
  30. driftlessmap/icons/layers/eye_white.png +0 -0
  31. driftlessmap/icons/layers/hi.png +0 -0
  32. driftlessmap/icons/layers/trash.png +0 -0
  33. driftlessmap/icons/object.svg +22 -0
  34. driftlessmap/icons/sidebar/add.png +0 -0
  35. driftlessmap/icons/sidebar/atlascontrol.png +0 -0
  36. driftlessmap/icons/sidebar/atlascontrol.svg +32 -0
  37. driftlessmap/icons/sidebar/bnd.svg +14 -0
  38. driftlessmap/icons/sidebar/c_section.png +0 -0
  39. driftlessmap/icons/sidebar/c_section2.png +0 -0
  40. driftlessmap/icons/sidebar/cell.svg +24 -0
  41. driftlessmap/icons/sidebar/check.svg +9 -0
  42. driftlessmap/icons/sidebar/compare.svg +18 -0
  43. driftlessmap/icons/sidebar/contour.svg +14 -0
  44. driftlessmap/icons/sidebar/h_section.png +0 -0
  45. driftlessmap/icons/sidebar/info.svg +14 -0
  46. driftlessmap/icons/sidebar/layers.png +0 -0
  47. driftlessmap/icons/sidebar/layers.svg +23 -0
  48. driftlessmap/icons/sidebar/line.svg +10 -0
  49. driftlessmap/icons/sidebar/link.svg +18 -0
  50. driftlessmap/icons/sidebar/link_off.svg +18 -0
  51. driftlessmap/icons/sidebar/merge.svg +11 -0
  52. driftlessmap/icons/sidebar/object.svg +13 -0
  53. driftlessmap/icons/sidebar/probe.png +0 -0
  54. driftlessmap/icons/sidebar/probe.svg +23 -0
  55. driftlessmap/icons/sidebar/rotation_horizontal.svg +14 -0
  56. driftlessmap/icons/sidebar/rotation_vertical.svg +14 -0
  57. driftlessmap/icons/sidebar/s_section.png +0 -0
  58. driftlessmap/icons/sidebar/tool.png +0 -0
  59. driftlessmap/icons/sidebar/tool.svg +19 -0
  60. driftlessmap/icons/sidebar/trash.png +0 -0
  61. driftlessmap/icons/sidebar/tree_checked.svg +10 -0
  62. driftlessmap/icons/sidebar/treeview.png +0 -0
  63. driftlessmap/icons/sidebar/treeview.svg +10 -0
  64. driftlessmap/icons/sidebar/treeview2.png +0 -0
  65. driftlessmap/icons/sidebar/virus.svg +24 -0
  66. driftlessmap/icons/tdown.svg +16 -0
  67. driftlessmap/icons/toolbar/accept.svg +18 -0
  68. driftlessmap/icons/toolbar/accept2.svg +24 -0
  69. driftlessmap/icons/toolbar/aim.svg +44 -0
  70. driftlessmap/icons/toolbar/aim_not.svg +28 -0
  71. driftlessmap/icons/toolbar/anchor.svg +14 -0
  72. driftlessmap/icons/toolbar/anticlockwise_rotation.svg +12 -0
  73. driftlessmap/icons/toolbar/atlas_icon.png +0 -0
  74. driftlessmap/icons/toolbar/boundary_register.svg +18 -0
  75. driftlessmap/icons/toolbar/cancel.svg +32 -0
  76. driftlessmap/icons/toolbar/cell_select.svg +22 -0
  77. driftlessmap/icons/toolbar/cell_select_not.svg +12 -0
  78. driftlessmap/icons/toolbar/check.svg +9 -0
  79. driftlessmap/icons/toolbar/clockwise_rotation.svg +11 -0
  80. driftlessmap/icons/toolbar/closed_path.svg +16 -0
  81. driftlessmap/icons/toolbar/closed_path2 copy.svg +19 -0
  82. driftlessmap/icons/toolbar/closed_path2.svg +20 -0
  83. driftlessmap/icons/toolbar/eraser.png +0 -0
  84. driftlessmap/icons/toolbar/eraser.svg +19 -0
  85. driftlessmap/icons/toolbar/eye.svg +17 -0
  86. driftlessmap/icons/toolbar/eye_closed.svg +19 -0
  87. driftlessmap/icons/toolbar/fill.svg +12 -0
  88. driftlessmap/icons/toolbar/gps.svg +15 -0
  89. driftlessmap/icons/toolbar/h_flip.png +0 -0
  90. driftlessmap/icons/toolbar/handle.png +0 -0
  91. driftlessmap/icons/toolbar/image_icon.png +0 -0
  92. driftlessmap/icons/toolbar/image_icon.svg +25 -0
  93. driftlessmap/icons/toolbar/info.svg +14 -0
  94. driftlessmap/icons/toolbar/inpart.png +0 -0
  95. driftlessmap/icons/toolbar/inpart.svg +17 -0
  96. driftlessmap/icons/toolbar/lasso.png +0 -0
  97. driftlessmap/icons/toolbar/lasso.svg +14 -0
  98. driftlessmap/icons/toolbar/left90.png +0 -0
  99. driftlessmap/icons/toolbar/line.svg +10 -0
  100. driftlessmap/icons/toolbar/line_sites.svg +11 -0
  101. driftlessmap/icons/toolbar/linear_silicon.png +0 -0
  102. driftlessmap/icons/toolbar/linear_silicon.svg +88 -0
  103. driftlessmap/icons/toolbar/list.svg +14 -0
  104. driftlessmap/icons/toolbar/location.svg +14 -0
  105. driftlessmap/icons/toolbar/magic-wand.svg +16 -0
  106. driftlessmap/icons/toolbar/magic_white.png +0 -0
  107. driftlessmap/icons/toolbar/mask.svg +10 -0
  108. driftlessmap/icons/toolbar/match.svg +20 -0
  109. driftlessmap/icons/toolbar/matchbnd.svg +18 -0
  110. driftlessmap/icons/toolbar/matching.svg +36 -0
  111. driftlessmap/icons/toolbar/merge.svg +11 -0
  112. driftlessmap/icons/toolbar/move_down.png +0 -0
  113. driftlessmap/icons/toolbar/move_left.png +0 -0
  114. driftlessmap/icons/toolbar/move_right.png +0 -0
  115. driftlessmap/icons/toolbar/move_up.png +0 -0
  116. driftlessmap/icons/toolbar/moving.png +0 -0
  117. driftlessmap/icons/toolbar/multi-probe.svg +119 -0
  118. driftlessmap/icons/toolbar/multi_pencil.svg +23 -0
  119. driftlessmap/icons/toolbar/multi_probe.png +0 -0
  120. driftlessmap/icons/toolbar/object.svg +13 -0
  121. driftlessmap/icons/toolbar/open_path.svg +22 -0
  122. driftlessmap/icons/toolbar/outpart.png +0 -0
  123. driftlessmap/icons/toolbar/outpart.svg +26 -0
  124. driftlessmap/icons/toolbar/pencil.png +0 -0
  125. driftlessmap/icons/toolbar/pencil.svg +19 -0
  126. driftlessmap/icons/toolbar/plasso.png +0 -0
  127. driftlessmap/icons/toolbar/probe.svg +19 -0
  128. driftlessmap/icons/toolbar/radar.svg +32 -0
  129. driftlessmap/icons/toolbar/rotation.svg +45 -0
  130. driftlessmap/icons/toolbar/rotation_clockwise.svg +18 -0
  131. driftlessmap/icons/toolbar/rotation_counter_clockwise.svg +18 -0
  132. driftlessmap/icons/toolbar/ruler.svg +27 -0
  133. driftlessmap/icons/toolbar/separate_sites.svg +13 -0
  134. driftlessmap/icons/toolbar/single_pencil.svg +16 -0
  135. driftlessmap/icons/toolbar/toa.svg +11 -0
  136. driftlessmap/icons/toolbar/toa_delete.svg +36 -0
  137. driftlessmap/icons/toolbar/toaa.svg +11 -0
  138. driftlessmap/icons/toolbar/toh.svg +11 -0
  139. driftlessmap/icons/toolbar/toh_delete.svg +36 -0
  140. driftlessmap/icons/toolbar/tohh.svg +11 -0
  141. driftlessmap/icons/toolbar/trans.png +0 -0
  142. driftlessmap/icons/toolbar/trans.svg +16 -0
  143. driftlessmap/icons/toolbar/triangulation.svg +10 -0
  144. driftlessmap/icons/toolbar/two_window.png +0 -0
  145. driftlessmap/icons/toolbar/unmerge.svg +16 -0
  146. driftlessmap/icons/toolbar/v_flip.png +0 -0
  147. driftlessmap/icons/toolbar/virus.svg +24 -0
  148. driftlessmap/icons/toolbar/virus_register.svg +31 -0
  149. driftlessmap/icons/toolbar/vis2d.svg +29 -0
  150. driftlessmap/icons/toolbar/window2.png +0 -0
  151. driftlessmap/icons/toolbar/window3.png +0 -0
  152. driftlessmap/icons/toolbar/window4.png +0 -0
  153. driftlessmap/icons/tree_close.svg +14 -0
  154. driftlessmap/icons/tree_open.svg +14 -0
  155. driftlessmap/icons/up-arrow.svg +10 -0
  156. driftlessmap/image_curves.py +579 -0
  157. driftlessmap/image_reader.py +186 -0
  158. driftlessmap/image_stacks.py +359 -0
  159. driftlessmap/image_view.py +646 -0
  160. driftlessmap/images_reader.py +5 -0
  161. driftlessmap/label_tree.py +278 -0
  162. driftlessmap/layer_validation.py +25 -0
  163. driftlessmap/layers_control.py +554 -0
  164. driftlessmap/main_window.ui +883 -0
  165. driftlessmap/movable_points.py +254 -0
  166. driftlessmap/obj_items.py +122 -0
  167. driftlessmap/object_control.py +1762 -0
  168. driftlessmap/persistence.py +376 -0
  169. driftlessmap/popup_message.py +16 -0
  170. driftlessmap/probe_csv.py +319 -0
  171. driftlessmap/probe_reconstruction.py +409 -0
  172. driftlessmap/probe_utiles.py +1442 -0
  173. driftlessmap/qss/atlas_view_group_box.qss +15 -0
  174. driftlessmap/qss/box_label.qss +7 -0
  175. driftlessmap/qss/channel_selector.qss +19 -0
  176. driftlessmap/qss/color_combo.qss +121 -0
  177. driftlessmap/qss/decor_label.qss +9 -0
  178. driftlessmap/qss/dialogs.qss +11 -0
  179. driftlessmap/qss/hidden_line_edit.qss +5 -0
  180. driftlessmap/qss/label_tree.qss +123 -0
  181. driftlessmap/qss/main_window.qss +243 -0
  182. driftlessmap/qss/menu_bar.qss +42 -0
  183. driftlessmap/qss/multi_handle_slider.qss +14 -0
  184. driftlessmap/qss/obj_ctrl_bottom_button.qss +29 -0
  185. driftlessmap/qss/object_text_button.qss +19 -0
  186. driftlessmap/qss/page_control.qss +36 -0
  187. driftlessmap/qss/rotation_button.qss +9 -0
  188. driftlessmap/qss/side_bar.qss +23 -0
  189. driftlessmap/qss/spinbox.qss +106 -0
  190. driftlessmap/qss/tabs.qss +211 -0
  191. driftlessmap/qss/tool_bar.qss +77 -0
  192. driftlessmap/resources.py +34 -0
  193. driftlessmap/roi_analysis.py +375 -0
  194. driftlessmap/run_driftlessmap.py +4 -0
  195. driftlessmap/slice_stacks.py +268 -0
  196. driftlessmap/slice_validation.py +20 -0
  197. driftlessmap/toolbox.py +569 -0
  198. driftlessmap/triangulation.py +517 -0
  199. driftlessmap/triangulation_points.py +108 -0
  200. driftlessmap/user_settings.py +92 -0
  201. driftlessmap/uuuuuu.py +1168 -0
  202. driftlessmap/version.py +3 -0
  203. driftlessmap/widgets_utils.py +140 -0
  204. driftlessmap/wtiles.py +715 -0
  205. driftlessmap-1.1.0.dist-info/METADATA +186 -0
  206. driftlessmap-1.1.0.dist-info/RECORD +210 -0
  207. driftlessmap-1.1.0.dist-info/WHEEL +5 -0
  208. driftlessmap-1.1.0.dist-info/entry_points.txt +2 -0
  209. driftlessmap-1.1.0.dist-info/licenses/LICENSE.txt +23 -0
  210. driftlessmap-1.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,45 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.4.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 52 52" style="enable-background:new 0 0 52 52;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;}
7
+ </style>
8
+ <path class="st0" d="M10,22.49c-0.14-0.12-0.22-0.29-0.21-0.47c0.59-7.35,7.88-13.12,16.6-13.14c4.41-0.01,8.56,1.42,11.68,4.04
9
+ c0.02,0.02,0.04,0.03,0.06,0.05c3.12,2.64,4.83,6.16,4.82,9.9c0,0.34-0.33,0.61-0.73,0.61c-0.4,0-0.72-0.27-0.72-0.61
10
+ c0.01-3.42-1.56-6.63-4.41-9.04c-0.02-0.02-0.04-0.03-0.05-0.05c-2.85-2.39-6.63-3.7-10.66-3.69c-7.96,0.02-14.61,5.29-15.15,12
11
+ c-0.03,0.33-0.37,0.59-0.77,0.57C10.28,22.65,10.12,22.59,10,22.49z"/>
12
+ <path class="st0" d="M15.74,39.53c-0.3-0.22-0.34-0.6-0.09-0.85c0.26-0.25,0.72-0.28,1.02-0.06c0.35,0.25,0.72,0.5,1.1,0.72
13
+ c0.32,0.2,0.41,0.58,0.19,0.85c-0.23,0.27-0.68,0.33-1.01,0.14C16.54,40.08,16.13,39.81,15.74,39.53
14
+ C15.74,39.53,15.74,39.53,15.74,39.53z M13.68,37.77c-0.03-0.02-0.06-0.05-0.09-0.07c-0.32-0.33-0.63-0.68-0.92-1.03
15
+ c-0.23-0.28-0.15-0.66,0.18-0.84s0.78-0.11,1.01,0.17c0.26,0.32,0.55,0.64,0.84,0.94c0.26,0.26,0.22,0.65-0.09,0.85
16
+ C14.35,37.98,13.95,37.97,13.68,37.77z M19.43,41.53c-0.24-0.18-0.33-0.47-0.19-0.72c0.16-0.3,0.59-0.43,0.96-0.29
17
+ c0.42,0.17,0.85,0.32,1.29,0.45c0.38,0.12,0.58,0.47,0.45,0.78c-0.13,0.32-0.54,0.48-0.92,0.36c-0.48-0.15-0.96-0.31-1.42-0.5
18
+ C19.54,41.6,19.48,41.57,19.43,41.53z M11.37,34.65c-0.08-0.06-0.15-0.13-0.19-0.22c-0.21-0.39-0.4-0.79-0.56-1.19
19
+ c-0.13-0.32,0.07-0.66,0.45-0.76c0.38-0.1,0.79,0.07,0.92,0.4c0.15,0.37,0.32,0.73,0.51,1.09c0.17,0.31,0,0.67-0.36,0.8
20
+ C11.88,34.85,11.58,34.8,11.37,34.65z M23.6,42.64c-0.18-0.14-0.29-0.34-0.25-0.56c0.06-0.33,0.43-0.55,0.82-0.5
21
+ c0.45,0.06,0.92,0.11,1.38,0.14c0.4,0.03,0.71,0.32,0.69,0.65c-0.02,0.33-0.36,0.59-0.76,0.56c-0.51-0.03-1.01-0.08-1.51-0.16
22
+ C23.83,42.76,23.7,42.71,23.6,42.64z M10.13,31.13c-0.13-0.09-0.22-0.22-0.25-0.38c-0.06-0.35-0.11-0.7-0.15-1.06
23
+ c-0.03-0.34,0.27-0.62,0.67-0.64c0.4-0.02,0.75,0.24,0.78,0.57c0.03,0.33,0.08,0.65,0.13,0.97c0.06,0.33-0.21,0.64-0.61,0.68
24
+ C10.5,31.31,10.29,31.25,10.13,31.13z M27.95,42.75c-0.13-0.1-0.22-0.23-0.25-0.39c-0.05-0.33,0.23-0.63,0.63-0.67
25
+ c0.46-0.04,0.92-0.1,1.37-0.17c0.39-0.06,0.78,0.15,0.87,0.48c0.09,0.33-0.16,0.65-0.55,0.72c-0.49,0.08-0.99,0.15-1.5,0.19
26
+ C28.31,42.92,28.1,42.86,27.95,42.75z M32.15,41.88c-0.08-0.06-0.15-0.14-0.2-0.23c-0.16-0.31,0.01-0.67,0.38-0.79
27
+ c0.42-0.14,0.84-0.3,1.25-0.48c0.35-0.15,0.79-0.03,0.99,0.26c0.19,0.3,0.06,0.67-0.29,0.82c-0.44,0.19-0.91,0.37-1.37,0.53
28
+ C32.64,42.08,32.35,42.03,32.15,41.88z M35.87,40.08c-0.03-0.02-0.07-0.05-0.09-0.08c-0.25-0.27-0.2-0.65,0.11-0.85
29
+ c0.36-0.24,0.71-0.49,1.04-0.75c0.29-0.23,0.75-0.22,1.03,0.03c0.28,0.25,0.27,0.63-0.01,0.86c-0.36,0.29-0.74,0.56-1.14,0.82
30
+ C36.52,40.29,36.13,40.27,35.87,40.08z M38.84,37.48c-0.28-0.21-0.34-0.56-0.12-0.82c0.27-0.31,0.52-0.63,0.75-0.96
31
+ c0.2-0.29,0.65-0.37,0.99-0.2c0.35,0.18,0.46,0.55,0.26,0.84c-0.25,0.36-0.53,0.71-0.82,1.05c-0.23,0.27-0.69,0.32-1.01,0.12
32
+ C38.88,37.51,38.86,37.49,38.84,37.48z M40.86,34.3c-0.22-0.16-0.32-0.43-0.21-0.67c0.16-0.36,0.3-0.73,0.41-1.1
33
+ c0.1-0.32,0.5-0.51,0.89-0.42c0.39,0.09,0.62,0.43,0.52,0.75c-0.13,0.41-0.28,0.81-0.45,1.2c-0.14,0.31-0.55,0.47-0.93,0.35
34
+ C41,34.39,40.93,34.35,40.86,34.3z M41.77,30.76c-0.17-0.13-0.27-0.31-0.25-0.51c0.03-0.38,0.05-0.77,0.04-1.16
35
+ c-0.01-0.34,0.31-0.61,0.72-0.6c0.4,0,0.73,0.28,0.74,0.61c0.01,0.42-0.01,0.85-0.05,1.27c-0.03,0.33-0.38,0.58-0.78,0.54
36
+ C42.03,30.9,41.89,30.85,41.77,30.76z"/>
37
+ <path class="st0" d="M41.71,23.3l-4.6-3.86c-0.28-0.24-0.28-0.62,0-0.86s0.74-0.24,1.02,0l4.6,3.86c0.28,0.24,0.28,0.62,0,0.86
38
+ C42.45,23.54,41.99,23.54,41.71,23.3z"/>
39
+ <path class="st0" d="M41.71,23.3c-0.28-0.24-0.28-0.62,0-0.86l4.11-3.45c0.28-0.24,0.74-0.24,1.02,0c0.28,0.24,0.28,0.62,0,0.86
40
+ l-4.11,3.45C42.45,23.54,41.99,23.54,41.71,23.3z"/>
41
+ <path class="st0" d="M9.82,23.88l-4.6-3.86c-0.28-0.24-0.28-0.62,0-0.86c0.28-0.24,0.74-0.24,1.02,0l4.6,3.86
42
+ c0.28,0.24,0.28,0.62,0,0.86S10.1,24.12,9.82,23.88z"/>
43
+ <path class="st0" d="M9.82,23.88c-0.28-0.24-0.28-0.62,0-0.86l4.11-3.45c0.28-0.24,0.74-0.24,1.02,0c0.28,0.24,0.28,0.62,0,0.86
44
+ l-4.11,3.45C10.56,24.12,10.1,24.12,9.82,23.88z"/>
45
+ </svg>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 98.7 98.7" style="enable-background:new 0 0 98.7 98.7;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <g>
9
+ <g>
10
+ <path class="st0" d="M80.6,43.2c-0.1,0.5-0.6,1-1.1,1.1c-0.1,0-0.3,0.1-0.4,0.1c-0.4,0-0.8-0.2-1.1-0.5L68,34
11
+ c-0.4-0.4-0.6-1-0.4-1.5c0.1-0.5,0.6-1,1.1-1.1l1.4-0.4c-3.6-4.3-9-6.9-14.6-7c-0.9,0-1.5-0.7-1.5-1.6v-6.2c0-0.4,0.2-0.8,0.5-1.1
12
+ s0.7-0.4,1.1-0.5c10,0.1,19,5.3,24.2,13.7l2.5-0.7c0.5-0.1,1.1,0,1.5,0.4c0.4,0.4,0.6,1,0.4,1.5L80.6,43.2z"/>
13
+ <path class="st0" d="M5.2,7v66c0,1,0.8,1.8,1.8,1.8h16.8l0,16.7c0,0.1,0,0.2,0,0.3c0,1,0.8,1.8,1.8,1.8c0,0,0,0,0,0h66
14
+ c1,0,1.8-0.8,1.8-1.8V50.1c0-1-0.8-1.8-1.8-1.8H50.5V7c0-1-0.8-1.8-1.8-1.8H7C6,5.2,5.2,6,5.2,7z M31.8,85.6V56.3h53.6v29.3
15
+ C85.4,85.6,31.8,85.6,31.8,85.6z M23.8,50.1v16.7H13.2V13.2h29.3v35.1H25.6C24.6,48.3,23.8,49.1,23.8,50.1z"/>
16
+ </g>
17
+ </g>
18
+ </svg>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 98.7 98.7" style="enable-background:new 0 0 98.7 98.7;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <g>
9
+ <g>
10
+ <path class="st0" d="M14.4,29.5c-0.2-0.5,0-1.1,0.4-1.5s1-0.5,1.5-0.4l2.5,0.7C24,19.9,33,14.7,43,14.6c0.4,0.1,0.8,0.2,1.1,0.5
11
+ s0.5,0.7,0.5,1.1v6.2c0,0.9-0.6,1.6-1.5,1.6c-5.6,0.1-11,2.7-14.6,7l1.4,0.4c0.5,0.1,1,0.6,1.1,1.1c0.2,0.5,0,1.1-0.4,1.5l-10,9.9
12
+ c-0.3,0.3-0.7,0.5-1.1,0.5c-0.1,0-0.3-0.1-0.4-0.1c-0.5-0.1-1-0.6-1.1-1.1L14.4,29.5z"/>
13
+ <path class="st0" d="M91.6,5.2H49.9c-1,0-1.8,0.8-1.8,1.8v41.3H7c-1,0-1.8,0.8-1.8,1.8v41.7c0,1,0.8,1.8,1.8,1.8h66l0,0
14
+ c1,0,1.8-0.8,1.8-1.8c0-0.1,0-0.2,0-0.3V74.8h16.8c1,0,1.8-0.8,1.8-1.8V7C93.4,6,92.6,5.2,91.6,5.2z M13.2,85.6V56.3h53.6v29.3
15
+ C66.8,85.6,13.2,85.6,13.2,85.6z M73,48.3H56.1V13.2h29.3v53.6H74.8V50.1C74.8,49.1,74,48.3,73,48.3z"/>
16
+ </g>
17
+ </g>
18
+ </svg>
@@ -0,0 +1,27 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 488 488" style="enable-background:new 0 0 488 488;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <g transform="translate(0 -540.36)">
9
+ <g>
10
+ <g>
11
+ <path class="st0" d="M159.5,879c-10.3-9-26.5-8.8-36,0.2c-5.2,5-7.9,11.3-7.8,18.1c0.2,6.3,2.9,12.2,7.8,16.5
12
+ c4.5,4.7,10.6,7.3,17.3,7.4c0.2,0,0.4,0,0.6,0l0,0c6.8,0,13.3-2.6,18.4-7.3c9.5-9.1,9.6-24.5,0.3-34.4
13
+ C160,879.3,159.7,879.2,159.5,879z M147.7,902.4c-1.9,1.7-4.2,2.6-6.5,2.6c-1.5-0.1-3.5-0.5-5.3-2.4c-0.2-0.2-0.4-0.4-0.6-0.6
14
+ c-2-1.6-2.5-3.7-2.5-5.1c-0.1-2.3,0.9-4.5,2.7-6.2c1.5-1.4,3.7-2.1,5.8-2.1c2.2,0,4.5,0.7,6.3,2.2
15
+ C150.7,894.3,150.7,899.6,147.7,902.4z"/>
16
+ <path class="st0" d="M460.1,682.9l-95-90.9c-3.3-3.2-8.7-3.2-12,0L48.4,883.3c-3.3,3.2-3.3,8.3,0,11.5l95,90.9
17
+ c1.6,1.6,3.8,2.4,6.1,2.4s4.4-0.9,6.1-2.4l304.6-291.3C463.5,691.3,463.5,686.1,460.1,682.9z M414.6,714.9L414.6,714.9
18
+ l-41.8-39.4c-3.3-3.2-8.8-3.1-12,0.1c-3.3,3.2-3.2,8.4,0.1,11.5l41.8,39.4L384.1,744l-19.6-18.8c-3.3-3.2-8.7-3.2-12,0
19
+ c-3.3,3.2-3.3,8.3,0,11.5l19.6,18.8l-18.2,17.4l-41.5-39.6c-3.3-3.2-8.7-3.2-12,0c-3.3,3.2-3.3,8.3,0,11.5l41.5,39.6l-18.2,17.4
20
+ L304,783.1c-3.3-3.2-8.7-3.2-12,0c-3.3,3.2-3.3,8.3,0,11.5l19.6,18.8l-18.5,17.7L252,791.1c-3.3-3.2-8.7-3.3-12-0.1
21
+ c-3.3,3.2-3.4,8.3-0.1,11.5l41.2,40L262.9,860l-20-19.1c-3.3-3.2-8.7-3.2-12,0c-3.3,3.2-3.3,8.3,0,11.5l20,19.1l-18.2,17.4
22
+ l-37.6-35.4c-3.3-3.2-8.8-3.1-12,0.1c-3.3,3.2-3.2,8.4,0.1,11.5l37.5,35.3l-70.9,67.8l-82.9-79.3l292.6-279.7l82.9,79.3
23
+ L414.6,714.9z"/>
24
+ </g>
25
+ </g>
26
+ </g>
27
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 27.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <rect y="16" class="st0" width="150.6" height="131.7"/>
9
+ <rect x="167.7" y="190.4" class="st0" width="150.6" height="131.7"/>
10
+ <rect y="373.5" class="st0" width="150.6" height="131.7"/>
11
+ <rect x="361.4" y="16" class="st0" width="150.6" height="131.7"/>
12
+ <rect x="361.4" y="373.5" class="st0" width="150.6" height="131.7"/>
13
+ </svg>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 27.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <g>
9
+ <g>
10
+ <path class="st0" d="M175.8,417.3L95,336.4L379.7,51.3l80.8,80.9L175.8,417.3L175.8,417.3z M75.5,377.3l59.5,59.6l-82.7,23.3
11
+ L75.5,377.3L75.5,377.3z M505.7,117.2L394.7,6c-8-8-22.2-8-30.2,0L49.7,321.3c-2.6,2.6-4.4,5.8-5.4,9.4L0.8,485.3
12
+ c-2,7.4,0,15.5,5.4,20.9c4.1,4.1,12.2,7,20.9,5.4l154.4-43.5c3.6-1,6.7-2.9,9.4-5.4l314.8-315.2
13
+ C514.1,139,514.1,125.5,505.7,117.2L505.7,117.2z"/>
14
+ </g>
15
+ </g>
16
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M256,142.7l-47.3,120.1h94.6L256,142.7z M324.5,316.5l46.1,117.2c5.4,13.8,21,20.5,34.8,15.1
9
+ c13.8-5.4,20.5-21,15.1-34.8L291,85.1c-12.5-31.8-57.5-31.8-70,0l-129.6,329c-5.4,13.8,1.4,29.4,15.1,34.8
10
+ c13.8,5.4,29.4-1.4,34.8-15.1l46.1-117.2L324.5,316.5L324.5,316.5z"/>
11
+ </svg>
@@ -0,0 +1,36 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
7
+ .st1{fill:#FF6465;}
8
+ .st2{opacity:0.1;enable-background:new ;}
9
+ .st3{fill:#FFFFFF;}
10
+ </style>
11
+ <path class="st0" d="M256,142.7l-47.3,120.1h94.6L256,142.7z M324.5,316.5l46.1,117.2c5.4,13.8,21,20.5,34.8,15.1s20.5-21,15.1-34.8
12
+ L291,85.1c-12.5-31.8-57.5-31.8-70,0l-129.6,329c-5.4,13.8,1.4,29.4,15.1,34.8c13.8,5.4,29.4-1.4,34.8-15.1l46.1-117.2L324.5,316.5
13
+ L324.5,316.5z"/>
14
+ <path class="st1" d="M389.1,449.9c51.3,0,92.9-41.6,92.9-92.9s-41.6-92.9-92.9-92.9s-92.9,41.6-92.9,92.9S337.8,449.9,389.1,449.9z"
15
+ />
16
+ <path class="st2" d="M321.2,357c0-47.1,35-85.9,80.4-92c-4.1-0.5-8.2-0.8-12.5-0.8c-51.3,0-92.9,41.6-92.9,92.9s41.6,92.9,92.9,92.9
17
+ c4.2,0,8.4-0.3,12.5-0.8C356.2,442.9,321.2,404.1,321.2,357z"/>
18
+ <path class="st3" d="M409.9,357l24.5-24.5c1.8-1.8,1.8-4.6,0-6.4L420,311.7c-1.8-1.8-4.6-1.8-6.4,0l-24.5,24.5l-24.5-24.5
19
+ c-1.8-1.8-4.6-1.8-6.4,0l-14.4,14.4c-1.8,1.8-1.8,4.6,0,6.4l24.5,24.5l-24.5,24.5c-1.8,1.8-1.8,4.6,0,6.4l14.4,14.4
20
+ c1.8,1.8,4.6,1.8,6.4,0l24.5-24.5l24.5,24.5c1.8,1.8,4.6,1.8,6.4,0l14.4-14.4c1.8-1.8,1.8-4.6,0-6.4L409.9,357z"/>
21
+ <path d="M438.8,329.3c0-2-0.8-4-2.3-5.4l-14.4-14.4c-1.5-1.5-3.4-2.3-5.4-2.3c-2,0-4,0.8-5.4,2.3l-22.2,22.3l-22.3-22.3
22
+ c-1.5-1.5-3.4-2.3-5.4-2.3s-4,0.8-5.4,2.3l-14.4,14.4c-3,3-3,7.9,0,10.8l22.3,22.3l-22.3,22.3c-3,3-3,7.9,0,10.8l14.4,14.4
23
+ c1.5,1.5,3.4,2.3,5.4,2.3c2,0,4-0.8,5.4-2.3l22.3-22.3l22.3,22.3c1.5,1.5,3.4,2.3,5.4,2.3c2,0,4-0.8,5.4-2.3l14.4-14.4
24
+ c1.5-1.5,2.3-3.4,2.3-5.4c0-2-0.8-4-2.3-5.4L414.3,357l22.3-22.3C438,333.3,438.8,331.4,438.8,329.3z M432.2,330.4l-24.5,24.5
25
+ c-1.2,1.2-1.2,3.2,0,4.4l24.5,24.5c0.4,0.4,0.4,0.8,0.4,1s0,0.6-0.4,1l-14.4,14.3c-0.4,0.4-0.8,0.4-1,0.4s-0.6,0-1-0.4l-24.5-24.5
26
+ c-0.6-0.6-1.4-0.9-2.2-0.9s-1.6,0.3-2.2,0.9l-24.4,24.5c-0.4,0.4-0.8,0.4-1,0.4c-0.2,0-0.6,0-1-0.4L346,385.7c-0.5-0.5-0.5-1.5,0-2
27
+ l24.5-24.5c1.2-1.2,1.2-3.2,0-4.4L346,330.4c-0.5-0.5-0.5-1.5,0-2l14.4-14.4c0.4-0.4,0.8-0.4,1-0.4c0.2,0,0.6,0,1,0.4l24.5,24.5
28
+ c1.2,1.2,3.2,1.2,4.4,0l24.5-24.5c0.4-0.4,0.8-0.4,1-0.4c0.2,0,0.6,0,1,0.4l14.4,14.4c0.4,0.4,0.4,0.8,0.4,1S432.5,330,432.2,330.4z
29
+ "/>
30
+ <path d="M452,288.6c-1.2,1.2-1.2,3.2,0,4.4c17.3,17,26.8,39.7,26.8,63.9c0,24-9.3,46.5-26.3,63.5s-39.5,26.3-63.5,26.3
31
+ c-13.3,0-26.1-2.8-38-8.4c-1.5-0.7-3.4,0-4.1,1.5c-0.7,1.5,0,3.4,1.5,4.1c12.8,6,26.4,9,40.7,9c25.6,0,49.7-10,67.9-28.1
32
+ c18.1-18.1,28.1-42.2,28.1-67.9c0-25.9-10.2-50.2-28.6-68.4C455.2,287.4,453.2,287.4,452,288.6z"/>
33
+ <path d="M336.7,437.5c0.5,0.3,1.1,0.5,1.7,0.5c1,0,2-0.5,2.6-1.4c1-1.5,0.5-3.4-0.9-4.3c-25.6-16.7-40.8-44.8-40.8-75.2
34
+ c0-24,9.3-46.5,26.3-63.5c16.9-16.9,39.5-26.3,63.5-26.3c19.6,0,38.2,6.2,53.8,17.9c1.4,1,3.3,0.8,4.4-0.6s0.8-3.3-0.6-4.4
35
+ C429.9,267.6,410,261,389.1,261c-25.6,0-49.7,10-67.9,28.1c-18.1,18.1-28.1,42.2-28.1,67.9C293.1,389.6,309.4,419.7,336.7,437.5z"/>
36
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:none;stroke:#FFFFFF;stroke-width:10;stroke-miterlimit:10;}
7
+ </style>
8
+ <path class="st0" d="M128,32c-53,0-96,43-96,96v256c0,53,43,96,96,96h256c53,0,96-43,96-96V128c0-53-43-96-96-96H128z M220.8,256
9
+ l35.2-89.4l35.2,89.4H220.8z M341.4,383.3L307,296H205l-34.4,87.3c-4,10.3-15.7,15.3-25.9,11.3c-10.3-4-15.3-15.7-11.3-25.9
10
+ L230,123.6c9.3-23.6,42.8-23.6,52.1,0l96.6,245.1c4,10.3-1,21.9-11.3,25.9C357.1,398.7,345.4,393.6,341.4,383.3z"/>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M118.4,60.2c14.6,0,26.5,11.9,26.5,26.5v142.8h222.2V86.7c0-14.6,11.9-26.5,26.5-26.5
9
+ c14.6,0,26.5,11.9,26.5,26.5v338.6c0,14.6-11.9,26.5-26.5,26.5s-26.5-11.9-26.5-26.5V282.4H144.9v142.8c0,14.6-11.9,26.5-26.5,26.5
10
+ s-26.5-11.9-26.5-26.5V86.7C92,72.1,103.9,60.2,118.4,60.2z"/>
11
+ </svg>
@@ -0,0 +1,36 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
7
+ .st1{fill:#FF6465;}
8
+ .st2{opacity:0.1;enable-background:new ;}
9
+ .st3{fill:#FFFFFF;}
10
+ </style>
11
+ <path class="st0" d="M116.4,57.9c14.6,0,26.5,11.9,26.5,26.5v142.8h222.2V84.4c0-14.6,11.9-26.5,26.5-26.5
12
+ c14.6,0,26.5,11.9,26.5,26.5V423c0,14.6-11.9,26.5-26.5,26.5c-14.6,0-26.5-11.9-26.5-26.5V280.1H142.9v142.8
13
+ c0,14.6-11.9,26.5-26.5,26.5s-26.5-11.9-26.5-26.5V84.4C90,69.8,101.9,57.9,116.4,57.9z"/>
14
+ <path class="st1" d="M389.1,449.9c51.3,0,92.9-41.6,92.9-92.9s-41.6-92.9-92.9-92.9s-92.9,41.6-92.9,92.9S337.8,449.9,389.1,449.9z"
15
+ />
16
+ <path class="st2" d="M321.2,357c0-47.1,35-85.9,80.4-92c-4.1-0.5-8.2-0.8-12.5-0.8c-51.3,0-92.9,41.6-92.9,92.9s41.6,92.9,92.9,92.9
17
+ c4.2,0,8.4-0.3,12.5-0.8C356.2,442.9,321.2,404.1,321.2,357z"/>
18
+ <path class="st3" d="M409.9,357l24.5-24.5c1.8-1.8,1.8-4.6,0-6.4L420,311.7c-1.8-1.8-4.6-1.8-6.4,0l-24.5,24.5l-24.5-24.5
19
+ c-1.8-1.8-4.6-1.8-6.4,0l-14.4,14.4c-1.8,1.8-1.8,4.6,0,6.4l24.5,24.5l-24.5,24.5c-1.8,1.8-1.8,4.6,0,6.4l14.4,14.4
20
+ c1.8,1.8,4.6,1.8,6.4,0l24.5-24.5l24.5,24.5c1.8,1.8,4.6,1.8,6.4,0l14.4-14.4c1.8-1.8,1.8-4.6,0-6.4L409.9,357z"/>
21
+ <path d="M438.8,329.3c0-2-0.8-4-2.3-5.4l-14.4-14.4c-1.5-1.5-3.4-2.3-5.4-2.3c-2,0-4,0.8-5.4,2.3l-22.2,22.3l-22.3-22.3
22
+ c-1.5-1.5-3.4-2.3-5.4-2.3s-4,0.8-5.4,2.3l-14.4,14.4c-3,3-3,7.9,0,10.8l22.3,22.3l-22.3,22.3c-3,3-3,7.9,0,10.8l14.4,14.4
23
+ c1.5,1.5,3.4,2.3,5.4,2.3c2,0,4-0.8,5.4-2.3l22.3-22.3l22.3,22.3c1.5,1.5,3.4,2.3,5.4,2.3c2,0,4-0.8,5.4-2.3l14.4-14.4
24
+ c1.5-1.5,2.3-3.4,2.3-5.4c0-2-0.8-4-2.3-5.4L414.3,357l22.3-22.3C438,333.3,438.8,331.4,438.8,329.3z M432.2,330.4l-24.5,24.5
25
+ c-1.2,1.2-1.2,3.2,0,4.4l24.5,24.5c0.4,0.4,0.4,0.8,0.4,1s0,0.6-0.4,1l-14.4,14.3c-0.4,0.4-0.8,0.4-1,0.4s-0.6,0-1-0.4l-24.5-24.5
26
+ c-0.6-0.6-1.4-0.9-2.2-0.9s-1.6,0.3-2.2,0.9l-24.4,24.5c-0.4,0.4-0.8,0.4-1,0.4c-0.2,0-0.6,0-1-0.4L346,385.7c-0.5-0.5-0.5-1.5,0-2
27
+ l24.5-24.5c1.2-1.2,1.2-3.2,0-4.4L346,330.4c-0.5-0.5-0.5-1.5,0-2l14.4-14.4c0.4-0.4,0.8-0.4,1-0.4c0.2,0,0.6,0,1,0.4l24.5,24.5
28
+ c1.2,1.2,3.2,1.2,4.4,0l24.5-24.5c0.4-0.4,0.8-0.4,1-0.4c0.2,0,0.6,0,1,0.4l14.4,14.4c0.4,0.4,0.4,0.8,0.4,1S432.5,330,432.2,330.4z
29
+ "/>
30
+ <path d="M452,288.6c-1.2,1.2-1.2,3.2,0,4.4c17.3,17,26.8,39.7,26.8,63.9c0,24-9.3,46.5-26.3,63.5s-39.5,26.3-63.5,26.3
31
+ c-13.3,0-26.1-2.8-38-8.4c-1.5-0.7-3.4,0-4.1,1.5c-0.7,1.5,0,3.4,1.5,4.1c12.8,6,26.4,9,40.7,9c25.6,0,49.7-10,67.9-28.1
32
+ c18.1-18.1,28.1-42.2,28.1-67.9c0-25.9-10.2-50.2-28.6-68.4C455.2,287.4,453.2,287.4,452,288.6z"/>
33
+ <path d="M336.7,437.5c0.5,0.3,1.1,0.5,1.7,0.5c1,0,2-0.5,2.6-1.4c1-1.5,0.5-3.4-0.9-4.3c-25.6-16.7-40.8-44.8-40.8-75.2
34
+ c0-24,9.3-46.5,26.3-63.5c16.9-16.9,39.5-26.3,63.5-26.3c19.6,0,38.2,6.2,53.8,17.9c1.4,1,3.3,0.8,4.4-0.6s0.8-3.3-0.6-4.4
35
+ C429.9,267.6,410,261,389.1,261c-25.6,0-49.7,10-67.9,28.1c-18.1,18.1-28.1,42.2-28.1,67.9C293.1,389.6,309.4,419.7,336.7,437.5z"/>
36
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:none;stroke:#FFFFFF;stroke-width:10;stroke-miterlimit:10;}
7
+ </style>
8
+ <path class="st0" d="M128,32c-53,0-96,43-96,96v256c0,53,43,96,96,96h256c53,0,96-43,96-96V128c0-53-43-96-96-96H128z M172,128
9
+ c0-11-9-20-20-20s-20,9-20,20v256c0,11,9,20,20,20s20-9,20-20V276h168v108c0,11,9,20,20,20s20-9,20-20V128c0-11-9-20-20-20
10
+ s-20,9-20,20v108H172V128z"/>
11
+ </svg>
Binary file
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_4" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;stroke:#000000;stroke-miterlimit:10;}
7
+ .st1{font-family:'ArialMT';}
8
+ .st2{font-size:195.4144px;}
9
+ </style>
10
+ <path class="st0" d="M429.1,328H130.8v-42.8c0-5.7-3-10.8-7.5-13.1c-1.6-0.8-3.3-1.2-5-1.2c-3.1,0-6.1,1.3-8.5,3.8l-58,61.8
11
+ c-2.5,2.7-4,6.5-4,10.4s1.5,7.8,4,10.4l58,61.8c3.7,3.8,8.9,4.8,13.4,2.6c4.5-2.2,7.5-7.4,7.5-13.1v-42.8h298.3
12
+ c9.2,0,16.5-8.6,16.5-19C445.6,336.5,438.3,328,429.1,328z"/>
13
+ <ellipse class="st0" cx="412.2" cy="347" rx="33.4" ry="38.3"/>
14
+ <text transform="matrix(0.9007 0 0 1 47.9229 243.792)" class="st0 st1 st2">A</text>
15
+ <text transform="matrix(0.9007 0 0 1 336.8926 243.792)" class="st0 st1 st2">H</text>
16
+ </svg>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 490 490" style="enable-background:new 0 0 490 490;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <path class="st0" d="M283.7,152.9h9.4V61.7h-91.2v91.2h9.4L104.6,337.1H39v91.2h91.2v-36.9h234.6v36.9H456v-91.2h-65.6L283.7,152.9z
9
+ M130.2,365.4V345l111.2-192.1h12.3L364.8,345v20.4H130.2z"/>
10
+ </svg>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 27.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
7
+
8
+ .st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;stroke:#FFFFFF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
9
+ </style>
10
+ <path class="st0" d="M4.7,5.2C4.8,5.1,5.2,5,5.4,4.6c0.2-0.2,0.2-0.4,0.2-0.5c0,0,0.1-0.3,0.1-0.5c0-1-0.8-1.8-1.8-1.8
11
+ S2.2,2.7,2.2,3.6c0,0.2,0,0.4,0.1,0.5c0.1,0.3,0.2,0.5,0.3,0.5c0.3,0.4,0.8,0.5,0.9,0.6c-0.1,1.7-0.2,3.9,0,6.5
12
+ c0.1,0.6,0.2,2.5,0.5,2.5c0.2,0,0.4-1.5,0.4-2.9C4.4,10,4.2,9.5,4.3,8c0-0.6,0.1-1.1,0.1-1.4C5,7.4,6.3,8.9,8.5,9.7
13
+ c0.9,0.3,1.7,0.5,2.4,0.5c0.9-0.1,1.9-0.3,1.9-0.4c0-0.1-0.9,0-1.9-0.1C8.7,9.3,7.2,8,6.7,7.6C5.7,6.8,5.1,5.9,4.7,5.2z"/>
14
+ <polygon class="st1" points="10.7,7.8 10.7,12.2 14.5,10 "/>
15
+ <polygon class="st1" points="6.2,10.6 1.9,10.5 4,14.5 "/>
16
+ </svg>
Binary file
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <g>
9
+ <g>
10
+ <path class="st0" d="M426.4,214.5c-15.5,0-28.8,9.4-34.5,22.8h-29.8c-2.6-18.5-9.9-35.5-20.6-49.7l21.1-21.1
11
+ c13.5,5.4,29.6,2.6,40.5-8.3c14.7-14.7,14.7-38.5,0-53.2s-38.5-14.7-53.2,0c-10.9,10.9-13.7,27-8.3,40.5l-21.1,21.1
12
+ c-14.2-10.8-31.2-18.1-49.7-20.6v-29.8c13.4-5.8,22.8-19.1,22.8-34.5c0-20.7-16.9-37.6-37.6-37.6s-37.6,16.9-37.6,37.6
13
+ c0,15.5,9.4,28.8,22.8,34.5V146c-18.5,2.6-35.5,9.9-49.7,20.6l-21.1-21.1c5.4-13.5,2.6-29.6-8.3-40.5l0,0
14
+ c-14.7-14.7-38.5-14.7-53.2,0c-14.7,14.7-14.7,38.5,0,53.2c10.9,10.9,27,13.7,40.5,8.3l21.1,21.1c-10.8,14.2-18.1,31.2-20.6,49.7
15
+ h-29.8c-5.8-13.4-19.1-22.8-34.5-22.8c-20.7,0-37.6,16.9-37.6,37.6c0,20.7,16.9,37.6,37.6,37.6c15.5,0,28.8-9.4,34.5-22.8h29.8
16
+ c2.6,18.5,9.9,35.5,20.6,49.7l-21.1,21.1c-13.5-5.4-29.6-2.6-40.5,8.3c-14.7,14.7-14.7,38.5,0,53.2c28.8,28.8,76.5-2.8,61.5-40.5
17
+ l21.1-21.1c14.2,10.8,31.2,18.1,49.7,20.6V388c-13.4,5.8-22.8,19.1-22.8,34.5c0,20.7,16.9,37.6,37.6,37.6s37.6-16.9,37.6-37.6
18
+ c0-15.5-9.4-28.8-22.8-34.5v-29.8c18.5-2.6,35.5-9.9,49.7-20.6l21.1,21.1c-15,37.9,32.6,69.4,61.5,40.5
19
+ c14.7-14.7,14.7-38.5,0-53.2c-10.9-10.9-27-13.7-40.5-8.3l-21.1-21.1c10.8-14.2,18.1-31.2,20.6-49.7h29.8
20
+ c5.8,13.4,19.1,22.8,34.5,22.8c20.7,0,37.6-16.9,37.6-37.6S447.1,214.5,426.4,214.5z M256,285.1c-18.3,0-33.1-14.8-33.1-33.1
21
+ S237.7,219,256,219s33.1,14.8,33.1,33.1S274.3,285.1,256,285.1z"/>
22
+ </g>
23
+ </g>
24
+ </svg>
@@ -0,0 +1,31 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:none;}
7
+ .st1{fill:#FFFFFF;}
8
+ .st2{fill-rule:evenodd;clip-rule:evenodd;fill:#699F4C;stroke:#000000;stroke-width:6;stroke-miterlimit:10;}
9
+ </style>
10
+ <line class="st0" x1="529.4" y1="207.4" x2="558.2" y2="208.2"/>
11
+ <rect id="_Transparent_Rectangle_" x="-7" y="-7" class="st0" width="519" height="519"/>
12
+ <g>
13
+ <g>
14
+ <path class="st1" d="M421.3,181.8c-15.5,0-28.8,9.4-34.5,22.8H357c-2.6-18.5-9.9-35.5-20.6-49.7l21.1-21.1
15
+ c13.5,5.4,29.6,2.6,40.5-8.3c14.7-14.7,14.7-38.5,0-53.2s-38.5-14.7-53.2,0c-10.9,10.9-13.7,27-8.3,40.5l-21.1,21.1
16
+ c-14.2-10.8-31.2-18.1-49.7-20.6V83.5c13.4-5.8,22.8-19.1,22.8-34.5c0-20.7-16.9-37.6-37.6-37.6S213.3,28.3,213.3,49
17
+ c0,15.5,9.4,28.8,22.8,34.5v29.8c-18.5,2.6-35.5,9.9-49.7,20.6l-21.1-21.1c5.4-13.5,2.6-29.6-8.3-40.5l0,0
18
+ c-14.7-14.7-38.5-14.7-53.2,0s-14.7,38.5,0,53.2c10.9,10.9,27,13.7,40.5,8.3l21.1,21.1c-10.8,14.2-18.1,31.2-20.6,49.7H115
19
+ c-5.8-13.4-19.1-22.8-34.5-22.8c-20.7,0-37.6,16.9-37.6,37.6S59.8,257,80.5,257c15.5,0,28.8-9.4,34.5-22.8h29.8
20
+ c2.6,18.5,9.9,35.5,20.6,49.7L144.3,305c-13.5-5.4-29.6-2.6-40.5,8.3c-14.7,14.7-14.7,38.5,0,53.2c28.8,28.8,76.5-2.8,61.5-40.5
21
+ l21.1-21.1c14.2,10.8,31.2,18.1,49.7,20.6v29.8c-13.4,5.8-22.8,19.1-22.8,34.5c0,20.7,16.9,37.6,37.6,37.6s37.6-16.9,37.6-37.6
22
+ c0-15.5-9.4-28.8-22.8-34.5v-29.8c18.5-2.6,35.5-9.9,49.7-20.6l21.1,21.1c-15,37.9,32.6,69.4,61.5,40.5
23
+ c14.7-14.7,14.7-38.5,0-53.2c-10.9-10.9-27-13.7-40.5-8.3l-21.1-21.1c10.8-14.2,18.1-31.2,20.6-49.7h29.8
24
+ c5.8,13.4,19.1,22.8,34.5,22.8c20.7,0,37.6-16.9,37.6-37.6S442,181.8,421.3,181.8z M250.9,252.4c-18.3,0-33.1-14.8-33.1-33.1
25
+ c0-18.3,14.8-33,33.1-33c18.3,0,33.1,14.8,33.1,33.1C284,237.7,269.2,252.4,250.9,252.4z"/>
26
+ </g>
27
+ </g>
28
+ <path class="st2" d="M463.3,173l0.5,0.7l18.1,25c13.6,19.4,9.5,46.4-9.4,61L166.1,488.5c-18,13.5-43.1,10-56.6-7.6l-0.5-0.7
29
+ L20.3,360.2c-14.2-19.5-10.1-47.1,9.5-61.6l25.5-18.7c18-13.5,43.4-9.6,56.5,8.4l0.5,1.1l33,46.5c6.2,9.2,18.9,11.5,28.1,5l0.7-0.5
30
+ l231.2-175.4c17.7-13.9,43.1-10.4,56.7,7.4L463.3,173z"/>
31
+ </svg>
@@ -0,0 +1,29 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 27.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <g>
9
+ <path class="st0" d="M115.5,284.2h77.9c7.8,0,13.7,1.6,17.7,4.8c4.1,3.2,6.1,7.5,6.1,13c0,4.9-1.6,9-4.8,12.4s-8.1,5.1-14.7,5.1
10
+ H87.9c-7.5,0-13.3-2.1-17.5-6.2s-6.3-9-6.3-14.5c0-3.6,1.3-8.3,4-14.2c2.7-5.9,5.6-10.6,8.8-13.9c13.2-13.7,25.2-25.5,35.8-35.3
11
+ c10.6-9.8,18.2-16.2,22.8-19.3c8.2-5.8,14.9-11.6,20.4-17.4c5.4-5.8,9.5-11.8,12.4-17.9c2.8-6.1,4.3-12.1,4.3-18
12
+ c0-6.4-1.5-12.1-4.5-17.1s-7.2-8.9-12.4-11.7s-10.9-4.2-17.1-4.2c-13,0-23.3,5.7-30.7,17.2c-1,1.5-2.7,5.6-5,12.2
13
+ c-2.3,6.7-5,11.8-7.9,15.4c-2.9,3.6-7.2,5.4-12.9,5.4c-5,0-9.1-1.6-12.4-4.9c-3.3-3.3-4.9-7.8-4.9-13.4c0-6.9,1.5-14,4.6-21.5
14
+ c3.1-7.5,7.7-14.2,13.8-20.3c6.1-6.1,13.9-11,23.3-14.7c9.4-3.7,20.4-5.6,33-5.6c15.2,0,28.2,2.4,38.9,7.2
15
+ c7,3.2,13.1,7.6,18.3,13.1c5.3,5.6,9.4,12,12.3,19.3c2.9,7.3,4.4,14.9,4.4,22.7c0,12.3-3.1,23.5-9.2,33.6
16
+ c-6.1,10.1-12.4,18-18.7,23.7c-6.4,5.7-17,14.7-32,26.9c-15,12.2-25.2,21.7-30.8,28.5C120.4,277.2,118,280.4,115.5,284.2z"/>
17
+ <path class="st0" d="M288.1,100.7h57.7c15,0,27.9,1.4,38.6,4.2s20.5,8,29.2,15.7c22.8,19.5,34.2,49.1,34.2,88.9
18
+ c0,13.1-1.1,25.1-3.4,35.9c-2.3,10.8-5.8,20.6-10.6,29.3c-4.8,8.7-10.9,16.5-18.3,23.3c-5.9,5.3-12.3,9.5-19.2,12.7
19
+ c-7,3.2-14.4,5.4-22.4,6.7c-8,1.3-17,1.9-27.1,1.9H289c-8.1,0-14.1-1.2-18.2-3.7c-4.1-2.4-6.7-5.9-8-10.3
20
+ c-1.2-4.4-1.9-10.2-1.9-17.2V127.9c0-9.5,2.1-16.5,6.4-20.7C271.6,102.9,278.5,100.7,288.1,100.7z M305.2,135.8v148.4h33.6
21
+ c7.4,0,13.1-0.2,17.3-0.6c4.2-0.4,8.5-1.4,13-3s8.4-3.8,11.6-6.7c14.8-12.5,22.2-34.1,22.2-64.7c0-21.6-3.3-37.7-9.8-48.5
22
+ c-6.5-10.7-14.5-17.6-24.1-20.5c-9.5-2.9-21.1-4.4-34.6-4.4L305.2,135.8L305.2,135.8z"/>
23
+ </g>
24
+ <g>
25
+ <path class="st0" d="M490.4,37.6H21.6C13,37.6,6,44.6,6,53.3v312.5c0,8.6,7,15.6,15.6,15.6h218.8v62.5h-62.5
26
+ c-8.6,0-15.6,7-15.6,15.6s7,15.6,15.6,15.6h156.2c8.6,0,15.6-7,15.6-15.6s-7-15.6-15.6-15.6h-62.5v-62.5h218.8
27
+ c8.6,0,15.6-7,15.6-15.6V53.3C506,44.6,499,37.6,490.4,37.6z M474.8,350.1H37.2V68.9h437.5V350.1z"/>
28
+ </g>
29
+ </svg>
Binary file
Binary file
Binary file
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
7
+ </style>
8
+ <desc>Created with sketchtool.</desc>
9
+ <g id="directional">
10
+ <g id="arrow-down">
11
+ <polygon id="Shape" class="st0" points="7,18 13,12 7,6 9,4 17,12 9,20 "/>
12
+ </g>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
7
+ </style>
8
+ <desc>Created with sketchtool.</desc>
9
+ <g id="directional">
10
+ <g id="arrow-down">
11
+ <polygon id="Shape" class="st0" points="6,7 12,13 18,7 20,9 12,17 4,9 "/>
12
+ </g>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 26.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 330 330" style="enable-background:new 0 0 330 330;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#FFFFFF;}
7
+ </style>
8
+ <path id="XMLID_105_" class="st0" d="M324,209.2L174,96.8c-5.3-4-12.7-4-18,0L6,209.2c-6.6,5-8,14.4-3,21c2.9,3.9,7.5,6,12,6
9
+ c3.1,0,6.3-1,9-3l141-105.8l141,105.8c6.6,5,16,3.6,21-3C332,223.6,330.6,214.2,324,209.2z"/>
10
+ </svg>