ustyle 1.3.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (634) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +23 -0
  3. data/.rbenv-gemsets +1 -0
  4. data/.ruby-version +1 -0
  5. data/CONTRIBUTING.md +68 -0
  6. data/Gemfile +4 -0
  7. data/Gruntfile.js +189 -0
  8. data/JAVASCRIPT_STANDARDS.md +88 -0
  9. data/LICENSE.txt +13 -0
  10. data/README.md +93 -0
  11. data/Rakefile +6 -0
  12. data/bower.json +54 -0
  13. data/config/.jscsrc +76 -0
  14. data/config/autoprefixer.yml +6 -0
  15. data/config/scss-lint.yml +54 -0
  16. data/dist/ustyle-content.css +1 -0
  17. data/dist/ustyle-icons.css +1 -0
  18. data/dist/ustyle-latest.css +1 -0
  19. data/dist/ustyle.js +799 -0
  20. data/dist/ustyle.json +1 -0
  21. data/grunt/modules/dss-helper.js +117 -0
  22. data/grunt/modules/file.js +26 -0
  23. data/grunt/modules/templates.js +59 -0
  24. data/grunt/tasks/browser-sync.js +19 -0
  25. data/grunt/tasks/builder.js +72 -0
  26. data/grunt/tasks/styleguide.js +290 -0
  27. data/grunt/tasks/svg2png.js +57 -0
  28. data/lib/ustyle/deploy.rb +31 -0
  29. data/lib/ustyle/engine.rb +24 -0
  30. data/lib/ustyle/hash.rb +44 -0
  31. data/lib/ustyle/icons.rb +13 -0
  32. data/lib/ustyle/sass_functions.rb +104 -0
  33. data/lib/ustyle/sinatra.rb +34 -0
  34. data/lib/ustyle/sprockets.rb +6 -0
  35. data/lib/ustyle/utils.rb +40 -0
  36. data/lib/ustyle/version.rb +4 -0
  37. data/lib/ustyle.rb +54 -0
  38. data/package.json +74 -0
  39. data/styleguide/CNAME +1 -0
  40. data/styleguide/assets/images/bower-logo.png +0 -0
  41. data/styleguide/assets/images/cloudfront-logo.png +0 -0
  42. data/styleguide/assets/images/illustration-01.png +0 -0
  43. data/styleguide/assets/images/illustration-02.png +0 -0
  44. data/styleguide/assets/images/illustration-03.png +0 -0
  45. data/styleguide/assets/images/illustration-04.png +0 -0
  46. data/styleguide/assets/images/illustration-05.png +0 -0
  47. data/styleguide/assets/images/illustration-06.png +0 -0
  48. data/styleguide/assets/images/illustration-07.png +0 -0
  49. data/styleguide/assets/images/illustration-08.png +0 -0
  50. data/styleguide/assets/images/infographic-01.png +0 -0
  51. data/styleguide/assets/images/infographic-02.png +0 -0
  52. data/styleguide/assets/images/lifestyle-photography-01.png +0 -0
  53. data/styleguide/assets/images/lifestyle-photography-02.png +0 -0
  54. data/styleguide/assets/images/lifestyle-photography-03.png +0 -0
  55. data/styleguide/assets/images/lifestyle-photography-04.png +0 -0
  56. data/styleguide/assets/images/lifestyle-photography-05.png +0 -0
  57. data/styleguide/assets/images/lifestyle-photography-06.png +0 -0
  58. data/styleguide/assets/images/lifestyle-photography-07.png +0 -0
  59. data/styleguide/assets/images/lifestyle-photography-08.png +0 -0
  60. data/styleguide/assets/images/npm-logo.png +0 -0
  61. data/styleguide/assets/images/object-photography-01.png +0 -0
  62. data/styleguide/assets/images/object-photography-02.png +0 -0
  63. data/styleguide/assets/images/object-photography-03.png +0 -0
  64. data/styleguide/assets/images/object-photography-04.png +0 -0
  65. data/styleguide/assets/images/object-photography-05.png +0 -0
  66. data/styleguide/assets/images/object-photography-06.png +0 -0
  67. data/styleguide/assets/images/object-photography-07.png +0 -0
  68. data/styleguide/assets/images/object-photography-08.png +0 -0
  69. data/styleguide/assets/images/ruby-logo.png +0 -0
  70. data/styleguide/assets/images/ustyle.svg +73 -0
  71. data/styleguide/assets/javascripts/app.js +91 -0
  72. data/styleguide/assets/javascripts/modules/cleanWhiteSpace.js +34 -0
  73. data/styleguide/assets/javascripts/modules/stats.js +51 -0
  74. data/styleguide/assets/javascripts/vendor/highlight.js +1 -0
  75. data/styleguide/assets/sass/main.scss +152 -0
  76. data/styleguide/assets/sass/modules/_code.scss +8 -0
  77. data/styleguide/assets/sass/modules/_colours.scss +25 -0
  78. data/styleguide/assets/sass/modules/_copyright.scss +4 -0
  79. data/styleguide/assets/sass/modules/_grid.scss +12 -0
  80. data/styleguide/assets/sass/modules/_home.scss +5 -0
  81. data/styleguide/assets/sass/modules/_links.scss +3 -0
  82. data/styleguide/assets/sass/modules/_logo.scss +56 -0
  83. data/styleguide/assets/sass/modules/_made-at.scss +6 -0
  84. data/styleguide/assets/sass/modules/_markdown.scss +7 -0
  85. data/styleguide/assets/sass/modules/_nav-mobile.scss +72 -0
  86. data/styleguide/assets/sass/modules/_nav.scss +32 -0
  87. data/styleguide/assets/sass/modules/_sidebar.scss +94 -0
  88. data/styleguide/assets/sass/modules/_states.scss +4 -0
  89. data/styleguide/assets/sass/modules/_styleguide.scss +134 -0
  90. data/styleguide/assets/sass/modules/_table.scss +3 -0
  91. data/styleguide/assets/sass/modules/_tooltip.scss +9 -0
  92. data/styleguide/assets/sass/modules/_typography.scss +14 -0
  93. data/styleguide/assets/sass/modules/_version.scss +11 -0
  94. data/styleguide/assets/sass/structure/_base.scss +18 -0
  95. data/styleguide/assets/sass/structure/_header.scss +12 -0
  96. data/styleguide/assets/sass/vendor/_highlight.scss +139 -0
  97. data/styleguide/assets/sass/vendor/_pure-table.scss +75 -0
  98. data/styleguide/content/brand/index.md +47 -0
  99. data/styleguide/content/brand/language.md +102 -0
  100. data/styleguide/content/brand/logo.tpl +102 -0
  101. data/styleguide/content/design/index.tpl +79 -0
  102. data/styleguide/content/design/typography.md +30 -0
  103. data/styleguide/content/index.tpl +44 -0
  104. data/styleguide/content/pattern-library/grid.tpl +64 -0
  105. data/styleguide/content/pattern-library/index.tpl +92 -0
  106. data/styleguide/partials/_footer.tpl +8 -0
  107. data/styleguide/partials/_head.tpl +20 -0
  108. data/styleguide/partials/_header.tpl +7 -0
  109. data/styleguide/partials/_sidebar.tpl +22 -0
  110. data/styleguide/partials/colour.tpl +24 -0
  111. data/styleguide/partials/icons.tpl +28 -0
  112. data/styleguide/partials/style_block.tpl +44 -0
  113. data/styleguide/templates/simple.tpl +15 -0
  114. data/styleguide/templates/stats.tpl +50 -0
  115. data/styleguide/templates/styleguide.tpl +33 -0
  116. data/tasks/publish.rake +65 -0
  117. data/ustyle.gemspec +34 -0
  118. data/vendor/assets/images/icons/16px/alarm.png +0 -0
  119. data/vendor/assets/images/icons/16px/android.png +0 -0
  120. data/vendor/assets/images/icons/16px/angry.png +0 -0
  121. data/vendor/assets/images/icons/16px/apple.png +0 -0
  122. data/vendor/assets/images/icons/16px/arrow-circle.png +0 -0
  123. data/vendor/assets/images/icons/16px/arrow-up-left.png +0 -0
  124. data/vendor/assets/images/icons/16px/arrow-up.png +0 -0
  125. data/vendor/assets/images/icons/16px/barchart.png +0 -0
  126. data/vendor/assets/images/icons/16px/blackberry.png +0 -0
  127. data/vendor/assets/images/icons/16px/book.png +0 -0
  128. data/vendor/assets/images/icons/16px/bookmark.png +0 -0
  129. data/vendor/assets/images/icons/16px/breadcrumb.png +0 -0
  130. data/vendor/assets/images/icons/16px/calculator.png +0 -0
  131. data/vendor/assets/images/icons/16px/calendar.png +0 -0
  132. data/vendor/assets/images/icons/16px/car.png +0 -0
  133. data/vendor/assets/images/icons/16px/checkbox-tick.png +0 -0
  134. data/vendor/assets/images/icons/16px/clock.png +0 -0
  135. data/vendor/assets/images/icons/16px/close.png +0 -0
  136. data/vendor/assets/images/icons/16px/cog.png +0 -0
  137. data/vendor/assets/images/icons/16px/controller.png +0 -0
  138. data/vendor/assets/images/icons/16px/credit-card.png +0 -0
  139. data/vendor/assets/images/icons/16px/cross.png +0 -0
  140. data/vendor/assets/images/icons/16px/desktop.png +0 -0
  141. data/vendor/assets/images/icons/16px/doc.png +0 -0
  142. data/vendor/assets/images/icons/16px/down-arrow.png +0 -0
  143. data/vendor/assets/images/icons/16px/dual-fuel.png +0 -0
  144. data/vendor/assets/images/icons/16px/electric-light.png +0 -0
  145. data/vendor/assets/images/icons/16px/envelope.png +0 -0
  146. data/vendor/assets/images/icons/16px/exit-noexit.png +0 -0
  147. data/vendor/assets/images/icons/16px/facebook.png +0 -0
  148. data/vendor/assets/images/icons/16px/filter.png +0 -0
  149. data/vendor/assets/images/icons/16px/fixed-variable.png +0 -0
  150. data/vendor/assets/images/icons/16px/gas.png +0 -0
  151. data/vendor/assets/images/icons/16px/gauge.png +0 -0
  152. data/vendor/assets/images/icons/16px/github.png +0 -0
  153. data/vendor/assets/images/icons/16px/google.png +0 -0
  154. data/vendor/assets/images/icons/16px/graph-up.png +0 -0
  155. data/vendor/assets/images/icons/16px/happy.png +0 -0
  156. data/vendor/assets/images/icons/16px/home.png +0 -0
  157. data/vendor/assets/images/icons/16px/hot.png +0 -0
  158. data/vendor/assets/images/icons/16px/info.png +0 -0
  159. data/vendor/assets/images/icons/16px/kettle.png +0 -0
  160. data/vendor/assets/images/icons/16px/key.png +0 -0
  161. data/vendor/assets/images/icons/16px/laptop.png +0 -0
  162. data/vendor/assets/images/icons/16px/lock.png +0 -0
  163. data/vendor/assets/images/icons/16px/magnify-in.png +0 -0
  164. data/vendor/assets/images/icons/16px/magnify-out.png +0 -0
  165. data/vendor/assets/images/icons/16px/magnify.png +0 -0
  166. data/vendor/assets/images/icons/16px/menu.png +0 -0
  167. data/vendor/assets/images/icons/16px/message.png +0 -0
  168. data/vendor/assets/images/icons/16px/mobile.png +0 -0
  169. data/vendor/assets/images/icons/16px/monthly-dd.png +0 -0
  170. data/vendor/assets/images/icons/16px/neutral.png +0 -0
  171. data/vendor/assets/images/icons/16px/no-exit.png +0 -0
  172. data/vendor/assets/images/icons/16px/pdf.png +0 -0
  173. data/vendor/assets/images/icons/16px/pencil.png +0 -0
  174. data/vendor/assets/images/icons/16px/person-add.png +0 -0
  175. data/vendor/assets/images/icons/16px/person.png +0 -0
  176. data/vendor/assets/images/icons/16px/phone.png +0 -0
  177. data/vendor/assets/images/icons/16px/piggy-bank.png +0 -0
  178. data/vendor/assets/images/icons/16px/pin.png +0 -0
  179. data/vendor/assets/images/icons/16px/play.png +0 -0
  180. data/vendor/assets/images/icons/16px/pound-circle.png +0 -0
  181. data/vendor/assets/images/icons/16px/pound-note.png +0 -0
  182. data/vendor/assets/images/icons/16px/power.png +0 -0
  183. data/vendor/assets/images/icons/16px/present.png +0 -0
  184. data/vendor/assets/images/icons/16px/print.png +0 -0
  185. data/vendor/assets/images/icons/16px/quarterly-dd.png +0 -0
  186. data/vendor/assets/images/icons/16px/question-circle.png +0 -0
  187. data/vendor/assets/images/icons/16px/question.png +0 -0
  188. data/vendor/assets/images/icons/16px/quote.png +0 -0
  189. data/vendor/assets/images/icons/16px/recycle.png +0 -0
  190. data/vendor/assets/images/icons/16px/remove.png +0 -0
  191. data/vendor/assets/images/icons/16px/renewable.png +0 -0
  192. data/vendor/assets/images/icons/16px/results.png +0 -0
  193. data/vendor/assets/images/icons/16px/sad.png +0 -0
  194. data/vendor/assets/images/icons/16px/save.png +0 -0
  195. data/vendor/assets/images/icons/16px/share.png +0 -0
  196. data/vendor/assets/images/icons/16px/sim.png +0 -0
  197. data/vendor/assets/images/icons/16px/smiley.png +0 -0
  198. data/vendor/assets/images/icons/16px/sort.png +0 -0
  199. data/vendor/assets/images/icons/16px/speech-circle.png +0 -0
  200. data/vendor/assets/images/icons/16px/speech.png +0 -0
  201. data/vendor/assets/images/icons/16px/spinner 2.png +0 -0
  202. data/vendor/assets/images/icons/16px/spinner.png +0 -0
  203. data/vendor/assets/images/icons/16px/star-half.png +0 -0
  204. data/vendor/assets/images/icons/16px/star.png +0 -0
  205. data/vendor/assets/images/icons/16px/starline-half.png +0 -0
  206. data/vendor/assets/images/icons/16px/starline.png +0 -0
  207. data/vendor/assets/images/icons/16px/tablet.png +0 -0
  208. data/vendor/assets/images/icons/16px/talk.png +0 -0
  209. data/vendor/assets/images/icons/16px/tick-circle.png +0 -0
  210. data/vendor/assets/images/icons/16px/tick.png +0 -0
  211. data/vendor/assets/images/icons/16px/tv.png +0 -0
  212. data/vendor/assets/images/icons/16px/twitter.png +0 -0
  213. data/vendor/assets/images/icons/16px/ustyle.png +0 -0
  214. data/vendor/assets/images/icons/16px/uswitch.png +0 -0
  215. data/vendor/assets/images/icons/16px/variable.png +0 -0
  216. data/vendor/assets/images/icons/16px/warning-circle.png +0 -0
  217. data/vendor/assets/images/icons/16px/warning.png +0 -0
  218. data/vendor/assets/images/icons/16px/wifi.png +0 -0
  219. data/vendor/assets/images/icons/16px/wiki.png +0 -0
  220. data/vendor/assets/images/icons/16px/windows.png +0 -0
  221. data/vendor/assets/images/icons/16px/wondering.png +0 -0
  222. data/vendor/assets/images/icons/16px/world.png +0 -0
  223. data/vendor/assets/images/icons/16px/xml.png +0 -0
  224. data/vendor/assets/images/icons/32px/alarm.png +0 -0
  225. data/vendor/assets/images/icons/32px/android.png +0 -0
  226. data/vendor/assets/images/icons/32px/angry.png +0 -0
  227. data/vendor/assets/images/icons/32px/apple.png +0 -0
  228. data/vendor/assets/images/icons/32px/arrow-circle.png +0 -0
  229. data/vendor/assets/images/icons/32px/arrow-up-left.png +0 -0
  230. data/vendor/assets/images/icons/32px/arrow-up.png +0 -0
  231. data/vendor/assets/images/icons/32px/barchart.png +0 -0
  232. data/vendor/assets/images/icons/32px/blackberry.png +0 -0
  233. data/vendor/assets/images/icons/32px/book.png +0 -0
  234. data/vendor/assets/images/icons/32px/bookmark.png +0 -0
  235. data/vendor/assets/images/icons/32px/breadcrumb.png +0 -0
  236. data/vendor/assets/images/icons/32px/calculator.png +0 -0
  237. data/vendor/assets/images/icons/32px/calendar.png +0 -0
  238. data/vendor/assets/images/icons/32px/car.png +0 -0
  239. data/vendor/assets/images/icons/32px/checkbox-tick.png +0 -0
  240. data/vendor/assets/images/icons/32px/clock.png +0 -0
  241. data/vendor/assets/images/icons/32px/close.png +0 -0
  242. data/vendor/assets/images/icons/32px/cog.png +0 -0
  243. data/vendor/assets/images/icons/32px/controller.png +0 -0
  244. data/vendor/assets/images/icons/32px/credit-card.png +0 -0
  245. data/vendor/assets/images/icons/32px/cross.png +0 -0
  246. data/vendor/assets/images/icons/32px/desktop.png +0 -0
  247. data/vendor/assets/images/icons/32px/doc.png +0 -0
  248. data/vendor/assets/images/icons/32px/down-arrow.png +0 -0
  249. data/vendor/assets/images/icons/32px/dual-fuel.png +0 -0
  250. data/vendor/assets/images/icons/32px/electric-light.png +0 -0
  251. data/vendor/assets/images/icons/32px/envelope.png +0 -0
  252. data/vendor/assets/images/icons/32px/exit-noexit.png +0 -0
  253. data/vendor/assets/images/icons/32px/facebook.png +0 -0
  254. data/vendor/assets/images/icons/32px/filter.png +0 -0
  255. data/vendor/assets/images/icons/32px/fixed-variable.png +0 -0
  256. data/vendor/assets/images/icons/32px/gas.png +0 -0
  257. data/vendor/assets/images/icons/32px/gauge.png +0 -0
  258. data/vendor/assets/images/icons/32px/github.png +0 -0
  259. data/vendor/assets/images/icons/32px/google.png +0 -0
  260. data/vendor/assets/images/icons/32px/graph-up.png +0 -0
  261. data/vendor/assets/images/icons/32px/happy.png +0 -0
  262. data/vendor/assets/images/icons/32px/home.png +0 -0
  263. data/vendor/assets/images/icons/32px/hot.png +0 -0
  264. data/vendor/assets/images/icons/32px/info.png +0 -0
  265. data/vendor/assets/images/icons/32px/kettle.png +0 -0
  266. data/vendor/assets/images/icons/32px/key.png +0 -0
  267. data/vendor/assets/images/icons/32px/laptop.png +0 -0
  268. data/vendor/assets/images/icons/32px/lock.png +0 -0
  269. data/vendor/assets/images/icons/32px/magnify-in.png +0 -0
  270. data/vendor/assets/images/icons/32px/magnify-out.png +0 -0
  271. data/vendor/assets/images/icons/32px/magnify.png +0 -0
  272. data/vendor/assets/images/icons/32px/menu.png +0 -0
  273. data/vendor/assets/images/icons/32px/message.png +0 -0
  274. data/vendor/assets/images/icons/32px/mobile.png +0 -0
  275. data/vendor/assets/images/icons/32px/monthly-dd.png +0 -0
  276. data/vendor/assets/images/icons/32px/neutral.png +0 -0
  277. data/vendor/assets/images/icons/32px/no-exit.png +0 -0
  278. data/vendor/assets/images/icons/32px/pdf.png +0 -0
  279. data/vendor/assets/images/icons/32px/pencil.png +0 -0
  280. data/vendor/assets/images/icons/32px/person-add.png +0 -0
  281. data/vendor/assets/images/icons/32px/person.png +0 -0
  282. data/vendor/assets/images/icons/32px/phone.png +0 -0
  283. data/vendor/assets/images/icons/32px/piggy-bank.png +0 -0
  284. data/vendor/assets/images/icons/32px/pin.png +0 -0
  285. data/vendor/assets/images/icons/32px/play.png +0 -0
  286. data/vendor/assets/images/icons/32px/pound-circle.png +0 -0
  287. data/vendor/assets/images/icons/32px/pound-note.png +0 -0
  288. data/vendor/assets/images/icons/32px/power.png +0 -0
  289. data/vendor/assets/images/icons/32px/present.png +0 -0
  290. data/vendor/assets/images/icons/32px/print.png +0 -0
  291. data/vendor/assets/images/icons/32px/quarterly-dd.png +0 -0
  292. data/vendor/assets/images/icons/32px/question-circle.png +0 -0
  293. data/vendor/assets/images/icons/32px/question.png +0 -0
  294. data/vendor/assets/images/icons/32px/quote.png +0 -0
  295. data/vendor/assets/images/icons/32px/recycle.png +0 -0
  296. data/vendor/assets/images/icons/32px/remove.png +0 -0
  297. data/vendor/assets/images/icons/32px/renewable.png +0 -0
  298. data/vendor/assets/images/icons/32px/results.png +0 -0
  299. data/vendor/assets/images/icons/32px/sad.png +0 -0
  300. data/vendor/assets/images/icons/32px/save.png +0 -0
  301. data/vendor/assets/images/icons/32px/share.png +0 -0
  302. data/vendor/assets/images/icons/32px/sim.png +0 -0
  303. data/vendor/assets/images/icons/32px/smiley.png +0 -0
  304. data/vendor/assets/images/icons/32px/sort.png +0 -0
  305. data/vendor/assets/images/icons/32px/speech-circle.png +0 -0
  306. data/vendor/assets/images/icons/32px/speech.png +0 -0
  307. data/vendor/assets/images/icons/32px/spinner 2.png +0 -0
  308. data/vendor/assets/images/icons/32px/spinner.png +0 -0
  309. data/vendor/assets/images/icons/32px/star-half.png +0 -0
  310. data/vendor/assets/images/icons/32px/star.png +0 -0
  311. data/vendor/assets/images/icons/32px/starline-half.png +0 -0
  312. data/vendor/assets/images/icons/32px/starline.png +0 -0
  313. data/vendor/assets/images/icons/32px/tablet.png +0 -0
  314. data/vendor/assets/images/icons/32px/talk.png +0 -0
  315. data/vendor/assets/images/icons/32px/tick-circle.png +0 -0
  316. data/vendor/assets/images/icons/32px/tick.png +0 -0
  317. data/vendor/assets/images/icons/32px/tv.png +0 -0
  318. data/vendor/assets/images/icons/32px/twitter.png +0 -0
  319. data/vendor/assets/images/icons/32px/ustyle.png +0 -0
  320. data/vendor/assets/images/icons/32px/uswitch.png +0 -0
  321. data/vendor/assets/images/icons/32px/variable.png +0 -0
  322. data/vendor/assets/images/icons/32px/warning-circle.png +0 -0
  323. data/vendor/assets/images/icons/32px/warning.png +0 -0
  324. data/vendor/assets/images/icons/32px/wifi.png +0 -0
  325. data/vendor/assets/images/icons/32px/wiki.png +0 -0
  326. data/vendor/assets/images/icons/32px/windows.png +0 -0
  327. data/vendor/assets/images/icons/32px/wondering.png +0 -0
  328. data/vendor/assets/images/icons/32px/world.png +0 -0
  329. data/vendor/assets/images/icons/32px/xml.png +0 -0
  330. data/vendor/assets/images/icons/64px/alarm.png +0 -0
  331. data/vendor/assets/images/icons/64px/android.png +0 -0
  332. data/vendor/assets/images/icons/64px/angry.png +0 -0
  333. data/vendor/assets/images/icons/64px/apple.png +0 -0
  334. data/vendor/assets/images/icons/64px/arrow-circle.png +0 -0
  335. data/vendor/assets/images/icons/64px/arrow-up-left.png +0 -0
  336. data/vendor/assets/images/icons/64px/arrow-up.png +0 -0
  337. data/vendor/assets/images/icons/64px/barchart.png +0 -0
  338. data/vendor/assets/images/icons/64px/blackberry.png +0 -0
  339. data/vendor/assets/images/icons/64px/book.png +0 -0
  340. data/vendor/assets/images/icons/64px/bookmark.png +0 -0
  341. data/vendor/assets/images/icons/64px/breadcrumb.png +0 -0
  342. data/vendor/assets/images/icons/64px/calculator.png +0 -0
  343. data/vendor/assets/images/icons/64px/calendar.png +0 -0
  344. data/vendor/assets/images/icons/64px/car.png +0 -0
  345. data/vendor/assets/images/icons/64px/checkbox-tick.png +0 -0
  346. data/vendor/assets/images/icons/64px/clock.png +0 -0
  347. data/vendor/assets/images/icons/64px/close.png +0 -0
  348. data/vendor/assets/images/icons/64px/cog.png +0 -0
  349. data/vendor/assets/images/icons/64px/controller.png +0 -0
  350. data/vendor/assets/images/icons/64px/credit-card.png +0 -0
  351. data/vendor/assets/images/icons/64px/cross.png +0 -0
  352. data/vendor/assets/images/icons/64px/desktop.png +0 -0
  353. data/vendor/assets/images/icons/64px/doc.png +0 -0
  354. data/vendor/assets/images/icons/64px/down-arrow.png +0 -0
  355. data/vendor/assets/images/icons/64px/dual-fuel.png +0 -0
  356. data/vendor/assets/images/icons/64px/electric-light.png +0 -0
  357. data/vendor/assets/images/icons/64px/envelope.png +0 -0
  358. data/vendor/assets/images/icons/64px/exit-noexit.png +0 -0
  359. data/vendor/assets/images/icons/64px/facebook.png +0 -0
  360. data/vendor/assets/images/icons/64px/filter.png +0 -0
  361. data/vendor/assets/images/icons/64px/fixed-variable.png +0 -0
  362. data/vendor/assets/images/icons/64px/gas.png +0 -0
  363. data/vendor/assets/images/icons/64px/gauge.png +0 -0
  364. data/vendor/assets/images/icons/64px/github.png +0 -0
  365. data/vendor/assets/images/icons/64px/google.png +0 -0
  366. data/vendor/assets/images/icons/64px/graph-up.png +0 -0
  367. data/vendor/assets/images/icons/64px/happy.png +0 -0
  368. data/vendor/assets/images/icons/64px/home.png +0 -0
  369. data/vendor/assets/images/icons/64px/hot.png +0 -0
  370. data/vendor/assets/images/icons/64px/info.png +0 -0
  371. data/vendor/assets/images/icons/64px/kettle.png +0 -0
  372. data/vendor/assets/images/icons/64px/key.png +0 -0
  373. data/vendor/assets/images/icons/64px/laptop.png +0 -0
  374. data/vendor/assets/images/icons/64px/lock.png +0 -0
  375. data/vendor/assets/images/icons/64px/magnify-in.png +0 -0
  376. data/vendor/assets/images/icons/64px/magnify-out.png +0 -0
  377. data/vendor/assets/images/icons/64px/magnify.png +0 -0
  378. data/vendor/assets/images/icons/64px/menu.png +0 -0
  379. data/vendor/assets/images/icons/64px/message.png +0 -0
  380. data/vendor/assets/images/icons/64px/mobile.png +0 -0
  381. data/vendor/assets/images/icons/64px/monthly-dd.png +0 -0
  382. data/vendor/assets/images/icons/64px/neutral.png +0 -0
  383. data/vendor/assets/images/icons/64px/no-exit.png +0 -0
  384. data/vendor/assets/images/icons/64px/pdf.png +0 -0
  385. data/vendor/assets/images/icons/64px/pencil.png +0 -0
  386. data/vendor/assets/images/icons/64px/person-add.png +0 -0
  387. data/vendor/assets/images/icons/64px/person.png +0 -0
  388. data/vendor/assets/images/icons/64px/phone.png +0 -0
  389. data/vendor/assets/images/icons/64px/piggy-bank.png +0 -0
  390. data/vendor/assets/images/icons/64px/pin.png +0 -0
  391. data/vendor/assets/images/icons/64px/play.png +0 -0
  392. data/vendor/assets/images/icons/64px/pound-circle.png +0 -0
  393. data/vendor/assets/images/icons/64px/pound-note.png +0 -0
  394. data/vendor/assets/images/icons/64px/power.png +0 -0
  395. data/vendor/assets/images/icons/64px/present.png +0 -0
  396. data/vendor/assets/images/icons/64px/print.png +0 -0
  397. data/vendor/assets/images/icons/64px/quarterly-dd.png +0 -0
  398. data/vendor/assets/images/icons/64px/question-circle.png +0 -0
  399. data/vendor/assets/images/icons/64px/question.png +0 -0
  400. data/vendor/assets/images/icons/64px/quote.png +0 -0
  401. data/vendor/assets/images/icons/64px/recycle.png +0 -0
  402. data/vendor/assets/images/icons/64px/remove.png +0 -0
  403. data/vendor/assets/images/icons/64px/renewable.png +0 -0
  404. data/vendor/assets/images/icons/64px/results.png +0 -0
  405. data/vendor/assets/images/icons/64px/sad.png +0 -0
  406. data/vendor/assets/images/icons/64px/save.png +0 -0
  407. data/vendor/assets/images/icons/64px/share.png +0 -0
  408. data/vendor/assets/images/icons/64px/sim.png +0 -0
  409. data/vendor/assets/images/icons/64px/smiley.png +0 -0
  410. data/vendor/assets/images/icons/64px/sort.png +0 -0
  411. data/vendor/assets/images/icons/64px/speech-circle.png +0 -0
  412. data/vendor/assets/images/icons/64px/speech.png +0 -0
  413. data/vendor/assets/images/icons/64px/spinner 2.png +0 -0
  414. data/vendor/assets/images/icons/64px/spinner.png +0 -0
  415. data/vendor/assets/images/icons/64px/star-half.png +0 -0
  416. data/vendor/assets/images/icons/64px/star.png +0 -0
  417. data/vendor/assets/images/icons/64px/starline-half.png +0 -0
  418. data/vendor/assets/images/icons/64px/starline.png +0 -0
  419. data/vendor/assets/images/icons/64px/tablet.png +0 -0
  420. data/vendor/assets/images/icons/64px/talk.png +0 -0
  421. data/vendor/assets/images/icons/64px/tick-circle.png +0 -0
  422. data/vendor/assets/images/icons/64px/tick.png +0 -0
  423. data/vendor/assets/images/icons/64px/tv.png +0 -0
  424. data/vendor/assets/images/icons/64px/twitter.png +0 -0
  425. data/vendor/assets/images/icons/64px/ustyle.png +0 -0
  426. data/vendor/assets/images/icons/64px/uswitch.png +0 -0
  427. data/vendor/assets/images/icons/64px/variable.png +0 -0
  428. data/vendor/assets/images/icons/64px/warning-circle.png +0 -0
  429. data/vendor/assets/images/icons/64px/warning.png +0 -0
  430. data/vendor/assets/images/icons/64px/wifi.png +0 -0
  431. data/vendor/assets/images/icons/64px/wiki.png +0 -0
  432. data/vendor/assets/images/icons/64px/windows.png +0 -0
  433. data/vendor/assets/images/icons/64px/wondering.png +0 -0
  434. data/vendor/assets/images/icons/64px/world.png +0 -0
  435. data/vendor/assets/images/icons/64px/xml.png +0 -0
  436. data/vendor/assets/images/icons/alarm.svg +1 -0
  437. data/vendor/assets/images/icons/android.svg +1 -0
  438. data/vendor/assets/images/icons/angry.svg +1 -0
  439. data/vendor/assets/images/icons/apple.svg +1 -0
  440. data/vendor/assets/images/icons/arrow-circle.svg +1 -0
  441. data/vendor/assets/images/icons/arrow-up-left.svg +1 -0
  442. data/vendor/assets/images/icons/arrow-up.svg +1 -0
  443. data/vendor/assets/images/icons/barchart.svg +1 -0
  444. data/vendor/assets/images/icons/blackberry.svg +1 -0
  445. data/vendor/assets/images/icons/book.svg +1 -0
  446. data/vendor/assets/images/icons/bookmark.svg +1 -0
  447. data/vendor/assets/images/icons/breadcrumb.svg +1 -0
  448. data/vendor/assets/images/icons/calculator.svg +1 -0
  449. data/vendor/assets/images/icons/calendar.svg +1 -0
  450. data/vendor/assets/images/icons/car.svg +1 -0
  451. data/vendor/assets/images/icons/checkbox-tick.svg +1 -0
  452. data/vendor/assets/images/icons/clock.svg +1 -0
  453. data/vendor/assets/images/icons/close.svg +1 -0
  454. data/vendor/assets/images/icons/cog.svg +1 -0
  455. data/vendor/assets/images/icons/controller.svg +1 -0
  456. data/vendor/assets/images/icons/credit-card.svg +1 -0
  457. data/vendor/assets/images/icons/cross.svg +1 -0
  458. data/vendor/assets/images/icons/desktop.svg +1 -0
  459. data/vendor/assets/images/icons/doc.svg +1 -0
  460. data/vendor/assets/images/icons/down-arrow.svg +1 -0
  461. data/vendor/assets/images/icons/dual-fuel.svg +1 -0
  462. data/vendor/assets/images/icons/electric-light.svg +1 -0
  463. data/vendor/assets/images/icons/envelope.svg +1 -0
  464. data/vendor/assets/images/icons/exit-noexit.svg +1 -0
  465. data/vendor/assets/images/icons/facebook.svg +1 -0
  466. data/vendor/assets/images/icons/filter.svg +1 -0
  467. data/vendor/assets/images/icons/fixed-variable.svg +1 -0
  468. data/vendor/assets/images/icons/gas.svg +1 -0
  469. data/vendor/assets/images/icons/gauge.svg +1 -0
  470. data/vendor/assets/images/icons/github.svg +1 -0
  471. data/vendor/assets/images/icons/google.svg +1 -0
  472. data/vendor/assets/images/icons/graph-up.svg +1 -0
  473. data/vendor/assets/images/icons/happy.svg +1 -0
  474. data/vendor/assets/images/icons/home.svg +1 -0
  475. data/vendor/assets/images/icons/hot.svg +1 -0
  476. data/vendor/assets/images/icons/info.svg +1 -0
  477. data/vendor/assets/images/icons/kettle.svg +1 -0
  478. data/vendor/assets/images/icons/key.svg +1 -0
  479. data/vendor/assets/images/icons/laptop.svg +1 -0
  480. data/vendor/assets/images/icons/lock.svg +1 -0
  481. data/vendor/assets/images/icons/magnify-in.svg +1 -0
  482. data/vendor/assets/images/icons/magnify-out.svg +1 -0
  483. data/vendor/assets/images/icons/magnify.svg +1 -0
  484. data/vendor/assets/images/icons/menu.svg +1 -0
  485. data/vendor/assets/images/icons/message.svg +1 -0
  486. data/vendor/assets/images/icons/mobile.svg +1 -0
  487. data/vendor/assets/images/icons/monthly-dd.svg +1 -0
  488. data/vendor/assets/images/icons/neutral.svg +1 -0
  489. data/vendor/assets/images/icons/no-exit.svg +1 -0
  490. data/vendor/assets/images/icons/pdf.svg +1 -0
  491. data/vendor/assets/images/icons/pencil.svg +1 -0
  492. data/vendor/assets/images/icons/person-add.svg +1 -0
  493. data/vendor/assets/images/icons/person.svg +1 -0
  494. data/vendor/assets/images/icons/phone.svg +1 -0
  495. data/vendor/assets/images/icons/piggy-bank.svg +1 -0
  496. data/vendor/assets/images/icons/pin.svg +1 -0
  497. data/vendor/assets/images/icons/play.svg +1 -0
  498. data/vendor/assets/images/icons/pound-circle.svg +1 -0
  499. data/vendor/assets/images/icons/pound-note.svg +1 -0
  500. data/vendor/assets/images/icons/power.svg +1 -0
  501. data/vendor/assets/images/icons/present.svg +1 -0
  502. data/vendor/assets/images/icons/print.svg +1 -0
  503. data/vendor/assets/images/icons/quarterly-dd.svg +1 -0
  504. data/vendor/assets/images/icons/question-circle.svg +1 -0
  505. data/vendor/assets/images/icons/question.svg +1 -0
  506. data/vendor/assets/images/icons/quote.svg +1 -0
  507. data/vendor/assets/images/icons/recycle.svg +1 -0
  508. data/vendor/assets/images/icons/remove.svg +1 -0
  509. data/vendor/assets/images/icons/renewable.svg +1 -0
  510. data/vendor/assets/images/icons/results.svg +1 -0
  511. data/vendor/assets/images/icons/sad.svg +1 -0
  512. data/vendor/assets/images/icons/save.svg +1 -0
  513. data/vendor/assets/images/icons/share.svg +1 -0
  514. data/vendor/assets/images/icons/sim.svg +1 -0
  515. data/vendor/assets/images/icons/smiley.svg +1 -0
  516. data/vendor/assets/images/icons/sort.svg +1 -0
  517. data/vendor/assets/images/icons/speech-circle.svg +1 -0
  518. data/vendor/assets/images/icons/speech.svg +1 -0
  519. data/vendor/assets/images/icons/spinner 2.svg +1 -0
  520. data/vendor/assets/images/icons/spinner.svg +1 -0
  521. data/vendor/assets/images/icons/spinner_fallback.gif +0 -0
  522. data/vendor/assets/images/icons/star-half.svg +1 -0
  523. data/vendor/assets/images/icons/star.svg +1 -0
  524. data/vendor/assets/images/icons/starline-half.svg +1 -0
  525. data/vendor/assets/images/icons/starline.svg +1 -0
  526. data/vendor/assets/images/icons/tablet.svg +1 -0
  527. data/vendor/assets/images/icons/talk.svg +1 -0
  528. data/vendor/assets/images/icons/tick-circle.svg +1 -0
  529. data/vendor/assets/images/icons/tick.svg +1 -0
  530. data/vendor/assets/images/icons/tv.svg +1 -0
  531. data/vendor/assets/images/icons/twitter.svg +1 -0
  532. data/vendor/assets/images/icons/ustyle.svg +1 -0
  533. data/vendor/assets/images/icons/uswitch.svg +1 -0
  534. data/vendor/assets/images/icons/variable.svg +1 -0
  535. data/vendor/assets/images/icons/warning-circle.svg +1 -0
  536. data/vendor/assets/images/icons/warning.svg +1 -0
  537. data/vendor/assets/images/icons/wifi.svg +1 -0
  538. data/vendor/assets/images/icons/wiki.svg +1 -0
  539. data/vendor/assets/images/icons/windows.svg +1 -0
  540. data/vendor/assets/images/icons/wondering.svg +1 -0
  541. data/vendor/assets/images/icons/world.svg +1 -0
  542. data/vendor/assets/images/icons/xml.svg +1 -0
  543. data/vendor/assets/javascripts/ustyle/anchor.js +300 -0
  544. data/vendor/assets/javascripts/ustyle/backdrop.js +56 -0
  545. data/vendor/assets/javascripts/ustyle/classtoggler.js +58 -0
  546. data/vendor/assets/javascripts/ustyle/login/login.js +165 -0
  547. data/vendor/assets/javascripts/ustyle/login/password-helper.js +151 -0
  548. data/vendor/assets/javascripts/ustyle/overlay.js +125 -0
  549. data/vendor/assets/javascripts/ustyle/radioToggle.js +28 -0
  550. data/vendor/assets/javascripts/ustyle/tabs.js +120 -0
  551. data/vendor/assets/javascripts/ustyle/utils.js +106 -0
  552. data/vendor/assets/javascripts/ustyle.js +7 -0
  553. data/vendor/assets/stylesheets/ustyle/_all.scss +50 -0
  554. data/vendor/assets/stylesheets/ustyle/_content.scss +5 -0
  555. data/vendor/assets/stylesheets/ustyle/_global.scss +24 -0
  556. data/vendor/assets/stylesheets/ustyle/_icons.scss +20 -0
  557. data/vendor/assets/stylesheets/ustyle/articles/_base.scss +88 -0
  558. data/vendor/assets/stylesheets/ustyle/articles/_guide.scss +57 -0
  559. data/vendor/assets/stylesheets/ustyle/articles/_more.scss +31 -0
  560. data/vendor/assets/stylesheets/ustyle/articles/_news.scss +214 -0
  561. data/vendor/assets/stylesheets/ustyle/articles/_related.scss +74 -0
  562. data/vendor/assets/stylesheets/ustyle/basics/_extends.scss +69 -0
  563. data/vendor/assets/stylesheets/ustyle/basics/_font-face-ie.scss +31 -0
  564. data/vendor/assets/stylesheets/ustyle/basics/_font-face.scss +31 -0
  565. data/vendor/assets/stylesheets/ustyle/basics/_fonts.scss +27 -0
  566. data/vendor/assets/stylesheets/ustyle/basics/_functions.scss +78 -0
  567. data/vendor/assets/stylesheets/ustyle/basics/_grid.scss +86 -0
  568. data/vendor/assets/stylesheets/ustyle/basics/_typography.scss +123 -0
  569. data/vendor/assets/stylesheets/ustyle/basics/_variables.scss +188 -0
  570. data/vendor/assets/stylesheets/ustyle/basics/variables/_colors.scss +95 -0
  571. data/vendor/assets/stylesheets/ustyle/basics/variables/_forms.scss +65 -0
  572. data/vendor/assets/stylesheets/ustyle/basics/variables/_icons.scss +166 -0
  573. data/vendor/assets/stylesheets/ustyle/components/_anchor.scss +134 -0
  574. data/vendor/assets/stylesheets/ustyle/components/_backdrop.scss +19 -0
  575. data/vendor/assets/stylesheets/ustyle/components/_breadcrumbs.scss +59 -0
  576. data/vendor/assets/stylesheets/ustyle/components/_button.scss +184 -0
  577. data/vendor/assets/stylesheets/ustyle/components/_content-group.scss +33 -0
  578. data/vendor/assets/stylesheets/ustyle/components/_cta.scss +64 -0
  579. data/vendor/assets/stylesheets/ustyle/components/_featured.scss +112 -0
  580. data/vendor/assets/stylesheets/ustyle/components/_grid-classes.scss +52 -0
  581. data/vendor/assets/stylesheets/ustyle/components/_hero.scss +42 -0
  582. data/vendor/assets/stylesheets/ustyle/components/_links.scss +30 -0
  583. data/vendor/assets/stylesheets/ustyle/components/_lists-li.scss +89 -0
  584. data/vendor/assets/stylesheets/ustyle/components/_lists.scss +46 -0
  585. data/vendor/assets/stylesheets/ustyle/components/_loader.scss +142 -0
  586. data/vendor/assets/stylesheets/ustyle/components/_overlay.scss +183 -0
  587. data/vendor/assets/stylesheets/ustyle/components/_progress.scss +126 -0
  588. data/vendor/assets/stylesheets/ustyle/components/_tabs.scss +239 -0
  589. data/vendor/assets/stylesheets/ustyle/components/_tooltip.scss +244 -0
  590. data/vendor/assets/stylesheets/ustyle/components/_usp.scss +69 -0
  591. data/vendor/assets/stylesheets/ustyle/content/_base.scss +195 -0
  592. data/vendor/assets/stylesheets/ustyle/content/_c-header.scss +30 -0
  593. data/vendor/assets/stylesheets/ustyle/content/_c-social.scss +10 -0
  594. data/vendor/assets/stylesheets/ustyle/content/_c-tabs.scss +30 -0
  595. data/vendor/assets/stylesheets/ustyle/forms/_base.scss +9 -0
  596. data/vendor/assets/stylesheets/ustyle/forms/_fields.scss +75 -0
  597. data/vendor/assets/stylesheets/ustyle/forms/_input-group.scss +101 -0
  598. data/vendor/assets/stylesheets/ustyle/forms/_input.scss +63 -0
  599. data/vendor/assets/stylesheets/ustyle/forms/_radio-checkbox.scss +133 -0
  600. data/vendor/assets/stylesheets/ustyle/forms/_reset.scss +23 -0
  601. data/vendor/assets/stylesheets/ustyle/forms/_select.scss +125 -0
  602. data/vendor/assets/stylesheets/ustyle/forms/_textarea.scss +33 -0
  603. data/vendor/assets/stylesheets/ustyle/forms/_toggle.scss +125 -0
  604. data/vendor/assets/stylesheets/ustyle/forms/_validation.scss +104 -0
  605. data/vendor/assets/stylesheets/ustyle/icons/_base.scss +239 -0
  606. data/vendor/assets/stylesheets/ustyle/icons/_png.scss +37 -0
  607. data/vendor/assets/stylesheets/ustyle/icons/_svg.scss +29 -0
  608. data/vendor/assets/stylesheets/ustyle/login/_base.scss +81 -0
  609. data/vendor/assets/stylesheets/ustyle/login/_password-help.scss +61 -0
  610. data/vendor/assets/stylesheets/ustyle/login/_social.scss +63 -0
  611. data/vendor/assets/stylesheets/ustyle/mixins/_arrow.scss +51 -0
  612. data/vendor/assets/stylesheets/ustyle/mixins/_base.scss +8 -0
  613. data/vendor/assets/stylesheets/ustyle/mixins/_baseline.scss +41 -0
  614. data/vendor/assets/stylesheets/ustyle/mixins/_forms.scss +62 -0
  615. data/vendor/assets/stylesheets/ustyle/mixins/_general.scss +24 -0
  616. data/vendor/assets/stylesheets/ustyle/mixins/_link-colors.scss +44 -0
  617. data/vendor/assets/stylesheets/ustyle/mixins/_media-query.scss +116 -0
  618. data/vendor/assets/stylesheets/ustyle/mixins/_rgba-inline.scss +18 -0
  619. data/vendor/assets/stylesheets/ustyle/mixins/_typography.scss +98 -0
  620. data/vendor/assets/stylesheets/ustyle/tables/_base.scss +4 -0
  621. data/vendor/assets/stylesheets/ustyle/tables/_tables-basic.scss +72 -0
  622. data/vendor/assets/stylesheets/ustyle/tables/_tables-sortable.scss +72 -0
  623. data/vendor/assets/stylesheets/ustyle/tables/_tables-with-key-cells.scss +18 -0
  624. data/vendor/assets/stylesheets/ustyle/tables/_variables.scss +15 -0
  625. data/vendor/assets/stylesheets/ustyle/utilities/_general.scss +106 -0
  626. data/vendor/assets/stylesheets/ustyle/utilities/_grid.scss +13 -0
  627. data/vendor/assets/stylesheets/ustyle/utilities/_images.scss +34 -0
  628. data/vendor/assets/stylesheets/ustyle/utilities/_responsive.scss +101 -0
  629. data/vendor/assets/stylesheets/ustyle/utilities/_spacing.scss +74 -0
  630. data/vendor/assets/stylesheets/ustyle/vendor/normalize.scss +427 -0
  631. data/vendor/assets/stylesheets/ustyle-content.scss +2 -0
  632. data/vendor/assets/stylesheets/ustyle-icons.scss +1 -0
  633. data/vendor/assets/stylesheets/ustyle.scss +1 -0
  634. metadata +822 -0
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path d="M24.04 5.978c.256 0 .512-.1.707-.3l3.263-3.342c.39-.4.39-1.048 0-1.447-.39-.4-1.023-.4-1.414 0l-3.263 3.34c-.39.4-.39 1.05 0 1.45.196.19.45.29.707.29zm.68 3.592c.107.26.306.453.542.553.237.1.51.108.765 0l4.264-1.808c.51-.216.76-.815.55-1.337-.21-.522-.79-.77-1.3-.554l-4.27 1.808c-.51.216-.753.814-.54 1.337zM31 12h-4.616c-.552 0-1 .578-1 1.143 0 .283.112.455.292.64.182.186.432.217.708.217H31c.552 0 1-.434 1-1 0-.565-.447-1-1-1zM7.347 5.69c.195.2.45.3.707.3s.512-.1.707-.3c.4-.4.4-1.05 0-1.45L5.5.9C5.108.5 4.474.5 4.083.9c-.39.4-.39 1.048 0 1.447L7.347 5.69zM1.71 8.315l4.263 1.808c.255.108.53.1.765 0 .237-.1.435-.293.54-.554.212-.53-.03-1.13-.54-1.34L2.473 6.42c-.51-.214-1.095.034-1.306.556-.21.523.03 1.12.542 1.338zm4.612 5.528c.18-.185.293-.49.293-.772 0-.56-.448-1.07-1-1.07H1c-.553 0-1 .44-1 1s.448 1 1 1h4.616c.276 0 .526.03.706-.15zm21.486 11.71c0 .03-.006.05-.007.078.01.03.02.04.02.06l.01-.13h-.01zm.005.14c0-.016.01.053.01.037s-.01-.025-.01-.04v.004zm-.328-.68c-6.147-9.345-3.416-7.977-5.032-14.04-.426-1.873-1.61-3.448-3.202-4.37.18-.425.27-.89.27-1.38 0-1.99-1.57-3.607-3.52-3.607s-3.52 1.614-3.52 3.606c0 .493.1.962.28 1.39-1.5.87-2.64 2.316-3.122 4.053l-.02.072c-1.76 6.353 1.14 4.803-5.144 14.345-.004.006-.01.2-.012.206-.015.025-.03.257-.05.263-.026 0-.04-.08-.063-.04-.03.06-.058-.43-.077-.37-.046.13-.076-.13-.08-.13h.03c.038 1 .458 1 .986 1h21.62c.512 0 .92.28.978-.65-.026-.22-.115-.24-.27-.4-.018-.023-.026.09-.045.066zM16 6.783c-.84 0-1.522-.7-1.522-1.56 0-.86.683-1.56 1.522-1.56.84 0 1.522.7 1.522 1.56 0 .86-.683 1.557-1.522 1.557zm.005 24.61c1.875 0 3.394-.394 3.497-3.394h-6.994c.103 3 1.622 3.39 3.497 3.39z" fill="#fff"/><path d="M24.04 69.978c.256 0 .512-.1.707-.3l3.263-3.342c.39-.4.39-1.048 0-1.447-.39-.4-1.023-.4-1.414 0l-3.263 3.34c-.39.4-.39 1.05 0 1.45.196.19.45.29.707.29zm.68 3.592c.107.26.306.453.542.553.237.1.51.108.765 0l4.264-1.808c.51-.216.76-.815.55-1.337-.21-.522-.79-.77-1.3-.554l-4.265 1.808c-.51.216-.752.814-.54 1.337zM31 76h-4.616c-.552 0-1 .578-1 1.143 0 .283.112.455.292.64.182.186.432.217.708.217H31c.552 0 1-.434 1-1 0-.565-.447-1-1-1zM7.347 69.69c.195.2.45.3.707.3s.512-.1.707-.3c.4-.4.4-1.05 0-1.45L5.5 64.9c-.39-.4-1.023-.4-1.414 0-.39.4-.39 1.048 0 1.447L7.35 69.69zM1.71 72.315l4.263 1.808c.255.108.53.1.765 0 .237-.1.435-.293.54-.554.212-.53-.03-1.13-.54-1.34l-4.264-1.81c-.51-.22-1.095.03-1.306.55-.212.52.03 1.12.54 1.33zm4.612 5.528c.18-.185.293-.49.293-.772 0-.56-.448-1.07-1-1.07H1c-.553 0-1 .44-1 1s.448 1 1 1h4.616c.276 0 .526.03.706-.15zm21.486 11.71c0 .03-.006.05-.007.078.01.03.02.04.02.06l.01-.13h-.01zm.005.14c0-.016.01.053.01.037s-.01-.025-.01-.04v.004zm-.328-.68c-6.147-9.345-3.416-7.977-5.032-14.04-.426-1.873-1.61-3.448-3.202-4.37.18-.425.27-.89.27-1.38 0-1.99-1.57-3.607-3.52-3.607s-3.52 1.614-3.52 3.606c0 .493.1.962.28 1.39-1.5.87-2.642 2.316-3.123 4.053l-.02.072c-1.76 6.353 1.14 4.803-5.144 14.345-.004.006-.01.2-.012.206-.015.025-.03.257-.05.263-.026 0-.04-.08-.063-.04-.03.06-.057-.43-.076-.37-.045.13-.075-.13-.08-.13h.03c.04 1 .46 1 .987 1h21.63c.512 0 .92.28.978-.65-.023-.22-.112-.24-.27-.4-.015-.023-.023.09-.042.066zM16 70.783c-.84 0-1.522-.7-1.522-1.56 0-.86.683-1.56 1.522-1.56.84 0 1.522.7 1.522 1.56 0 .86-.683 1.557-1.522 1.557zm.005 24.61c1.875 0 3.394-.394 3.497-3.394h-6.994c.103 3 1.622 3.39 3.497 3.39z" fill="#333"/><path d="M24.04 133.978c.256 0 .512-.1.707-.3l3.263-3.342c.39-.4.39-1.048 0-1.447-.39-.4-1.023-.4-1.414 0l-3.263 3.34c-.39.4-.39 1.05 0 1.45.196.19.45.29.707.29zm.68 3.592c.107.26.306.453.542.553.237.1.51.108.765 0l4.264-1.808c.51-.216.76-.815.55-1.337-.21-.522-.79-.77-1.3-.554l-4.265 1.808c-.51.216-.752.814-.54 1.337zM31 140h-4.616c-.552 0-1 .578-1 1.143 0 .283.112.455.292.64.18.186.43.217.707.217H31c.552 0 1-.434 1-1 0-.565-.447-1-1-1zm-23.653-6.31c.195.2.45.3.707.3s.512-.1.707-.3c.4-.4.4-1.05 0-1.45L5.5 128.9c-.39-.4-1.023-.4-1.414 0-.39.4-.39 1.048 0 1.447l3.264 3.342zm-5.637 2.625l4.263 1.808c.255.108.53.1.765 0 .237-.1.435-.293.54-.554.212-.53-.03-1.13-.54-1.34l-4.264-1.81c-.51-.22-1.095.03-1.306.55-.212.52.03 1.12.54 1.332zm4.612 5.528c.18-.185.293-.49.293-.772 0-.56-.448-1.07-1-1.07H1c-.553 0-1 .44-1 1s.448 1 1 1h4.616c.276 0 .526.03.706-.15zm21.486 11.71c0 .03-.006.05-.007.078.01.03.02.04.02.06l.01-.13h-.01zm.005.14c0-.016.01.053.01.037s-.01-.025-.01-.04v.004zm-.328-.68c-6.147-9.345-3.416-7.976-5.032-14.04-.426-1.873-1.61-3.448-3.202-4.37.18-.425.27-.89.27-1.38 0-1.99-1.57-3.607-3.52-3.607s-3.52 1.614-3.52 3.606c0 .493.1.962.28 1.39-1.5.87-2.642 2.316-3.123 4.053l-.02.072c-1.757 6.353 1.144 4.803-5.143 14.345-.003.006-.007.2-.01.206-.02.025-.034.257-.05.263-.03 0-.043-.08-.066-.04-.03.06-.055-.43-.074-.37-.048.13-.078-.13-.08-.13h.03c.036 1 .456 1 .984 1h21.63c.512 0 .92.28.978-.65-.025-.22-.114-.24-.27-.4-.017-.023-.025.09-.044.066zM16 134.783c-.84 0-1.522-.7-1.522-1.56 0-.86.683-1.56 1.522-1.56.84 0 1.522.7 1.522 1.56 0 .86-.683 1.557-1.522 1.557zm.005 24.61c1.875 0 3.394-.394 3.497-3.394h-6.994c.103 3 1.622 3.39 3.497 3.39z" fill="#97999A"/><path d="M24.04 197.978c.256 0 .512-.1.707-.3l3.263-3.342c.39-.4.39-1.048 0-1.447-.39-.4-1.023-.4-1.414 0l-3.263 3.34c-.39.4-.39 1.05 0 1.45.196.19.45.29.707.29zm.68 3.592c.107.26.306.453.542.553.237.1.51.108.765 0l4.264-1.808c.51-.216.76-.815.55-1.337-.21-.522-.79-.77-1.3-.554l-4.265 1.808c-.51.216-.752.814-.54 1.337zM31 204h-4.616c-.552 0-1 .578-1 1.143 0 .283.112.455.292.64.18.186.43.217.707.217H31c.552 0 1-.434 1-1 0-.565-.447-1-1-1zm-23.653-6.31c.195.2.45.3.707.3s.512-.1.707-.3c.4-.4.4-1.05 0-1.45L5.5 192.9c-.39-.4-1.023-.4-1.414 0-.39.4-.39 1.048 0 1.447l3.264 3.342zm-5.637 2.625l4.263 1.808c.255.108.53.1.765 0 .237-.1.435-.293.54-.554.212-.53-.03-1.13-.54-1.34l-4.264-1.81c-.51-.22-1.095.03-1.306.55-.212.52.03 1.12.54 1.332zm4.612 5.528c.18-.185.293-.49.293-.772 0-.56-.448-1.07-1-1.07H1c-.553 0-1 .44-1 1s.448 1 1 1h4.616c.276 0 .526.03.706-.15zm21.486 11.71c0 .03-.006.05-.007.078.01.03.02.04.02.06l.01-.13h-.01zm.005.14c0-.016.01.053.01.037s-.01-.025-.01-.04v.004zm-.328-.68c-6.147-9.345-3.416-7.976-5.032-14.04-.426-1.873-1.61-3.448-3.202-4.37.18-.425.27-.89.27-1.38 0-1.99-1.57-3.607-3.52-3.607s-3.52 1.614-3.52 3.606c0 .493.1.962.28 1.39-1.5.87-2.642 2.316-3.123 4.053l-.02.072c-1.757 6.353 1.144 4.803-5.143 14.345-.003.006-.007.2-.01.206-.02.025-.034.257-.05.263-.03 0-.043-.08-.066-.04-.03.06-.055-.43-.074-.37-.048.13-.078-.13-.08-.13h.03c.036 1 .456 1 .984 1h21.63c.512 0 .92.28.978-.65-.025-.22-.114-.24-.27-.4-.017-.023-.025.09-.044.066zM16 198.783c-.84 0-1.522-.7-1.522-1.56 0-.86.683-1.56 1.522-1.56.84 0 1.522.7 1.522 1.56 0 .86-.683 1.557-1.522 1.557zm.005 24.61c1.875 0 3.394-.394 3.497-3.394h-6.994c.103 3 1.622 3.39 3.497 3.39z" fill="#008FE9"/><path d="M24.04 261.978c.256 0 .512-.1.707-.3l3.263-3.342c.39-.4.39-1.048 0-1.447-.39-.4-1.023-.4-1.414 0l-3.263 3.34c-.39.4-.39 1.05 0 1.45.196.19.45.29.707.29zm.68 3.592c.107.26.306.453.542.553.237.1.51.108.765 0l4.264-1.808c.51-.216.76-.815.55-1.337-.21-.523-.79-.77-1.3-.554l-4.265 1.808c-.51.216-.752.814-.54 1.337zM31 268h-4.616c-.552 0-1 .578-1 1.143 0 .283.112.455.292.64.18.186.43.217.707.217H31c.552 0 1-.434 1-1 0-.565-.447-1-1-1zm-23.653-6.31c.195.2.45.3.707.3s.512-.1.707-.3c.4-.4.4-1.05 0-1.45L5.5 256.9c-.39-.4-1.023-.4-1.414 0-.39.4-.39 1.048 0 1.447l3.264 3.342zm-5.637 2.625l4.263 1.808c.255.108.53.1.765 0 .237-.1.435-.293.54-.554.212-.53-.03-1.13-.54-1.34l-4.264-1.81c-.51-.22-1.095.03-1.306.55-.212.52.03 1.12.54 1.332zm4.612 5.528c.18-.185.293-.49.293-.772 0-.56-.448-1.07-1-1.07H1c-.553 0-1 .44-1 1s.448 1 1 1h4.616c.276 0 .526.03.706-.15zm21.486 11.71c0 .03-.006.05-.007.078.01.03.02.04.02.06l.01-.13h-.01zm.005.14c0-.016.01.053.01.037s-.01-.025-.01-.04v.004zm-.328-.68c-6.147-9.345-3.416-7.976-5.032-14.04-.426-1.873-1.61-3.448-3.202-4.37.18-.425.27-.89.27-1.38 0-1.99-1.57-3.607-3.52-3.607s-3.52 1.614-3.52 3.606c0 .493.1.962.28 1.39-1.5.87-2.642 2.316-3.123 4.053l-.02.072c-1.757 6.353 1.144 4.803-5.143 14.345-.003.006-.007.2-.01.206-.02.025-.034.257-.05.263-.03 0-.043-.08-.066-.04-.03.06-.055-.43-.074-.37-.048.13-.078-.13-.08-.13h.03c.036 1 .456 1 .984 1h21.63c.512 0 .92.28.978-.65-.025-.22-.114-.24-.27-.4-.017-.023-.025.09-.044.066zM16 262.783c-.84 0-1.522-.7-1.522-1.56 0-.86.683-1.56 1.522-1.56.84 0 1.522.7 1.522 1.56 0 .86-.683 1.557-1.522 1.557zm.005 24.61c1.875 0 3.394-.394 3.497-3.394h-6.994c.103 3 1.622 3.39 3.497 3.39z" fill="#1C1F4E"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M27.9 10.004c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2v-8c0-1.1-.9-2-2-2zm-24 0c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2v-8c0-1.1-.9-2-2-2zm3 13c0 1.657 1.343 3 3 3h1v4c0 1.1.9 2 2 2s2-.9 2-2v-4h2v4c0 1.1.9 2 2 2s2-.9 2-2v-4h1c1.657 0 3-1.343 3-3v-11h-18v11zM19.606 2.8L20.872.37c.064-.122.016-.274-.106-.337s-.274-.016-.337.106L19.14 2.6c-1.008-.388-2.1-.6-3.246-.6s-2.238.215-3.245.604L11.37.14c-.063-.123-.214-.17-.336-.107-.122.063-.17.215-.106.337l1.266 2.43c-2.832 1.284-4.882 3.99-5.238 7.205h17.89c-.357-3.216-2.407-5.92-5.24-7.203zM11.9 8.455c-.8 0-1.45-.65-1.45-1.45s.65-1.45 1.45-1.45 1.45.65 1.45 1.45c0 .8-.65 1.45-1.45 1.45zm8 0c-.8 0-1.45-.65-1.45-1.45s.65-1.45 1.45-1.45c.8 0 1.45.65 1.45 1.45s-.65 1.45-1.45 1.45z"/><path fill="#333" d="M27.9 74.004c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2v-8c0-1.1-.9-2-2-2zm-24 0c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2v-8c0-1.1-.9-2-2-2zm3 13c0 1.657 1.343 3 3 3h1v4c0 1.1.9 2 2 2s2-.9 2-2v-4h2v4c0 1.1.9 2 2 2s2-.9 2-2v-4h1c1.657 0 3-1.343 3-3v-11h-18v11zM19.606 66.8l1.266-2.43c.064-.122.016-.274-.106-.337s-.274-.016-.337.106l-1.29 2.46c-1.01-.39-2.1-.61-3.25-.61s-2.24.214-3.247.603l-1.28-2.465c-.064-.124-.215-.17-.337-.108-.12.064-.17.215-.106.337l1.267 2.43c-2.83 1.284-4.88 3.99-5.235 7.206h17.89c-.357-3.218-2.407-5.923-5.24-7.205zM11.9 72.455c-.8 0-1.45-.65-1.45-1.45s.65-1.45 1.45-1.45 1.45.65 1.45 1.45c0 .8-.65 1.45-1.45 1.45zm8 0c-.8 0-1.45-.65-1.45-1.45s.65-1.45 1.45-1.45c.8 0 1.45.65 1.45 1.45s-.65 1.45-1.45 1.45z"/><path fill="#97999A" d="M27.9 138.004c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2v-8c0-1.1-.9-2-2-2zm-24 0c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2v-8c0-1.1-.9-2-2-2zm3 13c0 1.657 1.343 3 3 3h1v4c0 1.1.9 2 2 2s2-.9 2-2v-4h2v4c0 1.1.9 2 2 2s2-.9 2-2v-4h1c1.657 0 3-1.343 3-3v-11h-18v11zM19.606 130.8l1.266-2.43c.064-.122.016-.274-.106-.337-.122-.064-.274-.016-.337.106l-1.29 2.46c-1.01-.39-2.1-.61-3.25-.61s-2.24.215-3.248.604l-1.285-2.468c-.063-.124-.214-.17-.336-.108-.12.06-.17.213-.105.335l1.265 2.43c-2.83 1.283-4.88 3.99-5.234 7.204h17.89c-.356-3.216-2.406-5.92-5.24-7.203zm-7.706 5.654c-.8 0-1.45-.65-1.45-1.45s.65-1.45 1.45-1.45 1.45.65 1.45 1.45c0 .8-.65 1.45-1.45 1.45zm8 0c-.8 0-1.45-.65-1.45-1.45s.65-1.45 1.45-1.45c.8 0 1.45.65 1.45 1.45s-.65 1.45-1.45 1.45z"/><path fill="#008FE9" d="M27.9 202.004c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2v-8c0-1.1-.9-2-2-2zm-24 0c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2v-8c0-1.1-.9-2-2-2zm3 13c0 1.657 1.343 3 3 3h1v4c0 1.1.9 2 2 2s2-.9 2-2v-4h2v4c0 1.1.9 2 2 2s2-.9 2-2v-4h1c1.657 0 3-1.343 3-3v-11h-18v11zM19.606 194.8l1.266-2.43c.064-.122.016-.274-.106-.337-.122-.064-.274-.016-.337.106l-1.29 2.46c-1.01-.39-2.1-.61-3.25-.61s-2.24.215-3.248.604l-1.285-2.468c-.063-.124-.214-.17-.336-.108-.12.06-.17.213-.105.335l1.265 2.43c-2.83 1.283-4.88 3.99-5.234 7.204h17.89c-.356-3.216-2.406-5.92-5.24-7.203zm-7.706 5.654c-.8 0-1.45-.65-1.45-1.45s.65-1.45 1.45-1.45 1.45.65 1.45 1.45c0 .8-.65 1.45-1.45 1.45zm8 0c-.8 0-1.45-.65-1.45-1.45s.65-1.45 1.45-1.45c.8 0 1.45.65 1.45 1.45s-.65 1.45-1.45 1.45z"/><path fill="#1C1F4E" d="M27.9 266.004c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2v-8c0-1.1-.9-2-2-2zm-24 0c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2s2-.9 2-2v-8c0-1.1-.9-2-2-2zm3 13c0 1.657 1.343 3 3 3h1v4c0 1.1.9 2 2 2s2-.9 2-2v-4h2v4c0 1.1.9 2 2 2s2-.9 2-2v-4h1c1.657 0 3-1.343 3-3v-11h-18v11zM19.606 258.8l1.266-2.43c.064-.122.016-.274-.106-.337s-.274-.016-.337.106l-1.29 2.46c-1.01-.39-2.1-.61-3.25-.61s-2.24.215-3.248.604l-1.285-2.468c-.063-.124-.214-.17-.336-.108-.12.062-.17.213-.105.335l1.265 2.432c-2.83 1.28-4.88 3.986-5.234 7.202h17.89c-.356-3.218-2.406-5.923-5.24-7.205zm-7.706 5.654c-.8 0-1.45-.65-1.45-1.45s.65-1.45 1.45-1.45 1.45.65 1.45 1.45c0 .8-.65 1.45-1.45 1.45zm8 0c-.8 0-1.45-.65-1.45-1.45s.65-1.45 1.45-1.45c.8 0 1.45.65 1.45 1.45s-.65 1.45-1.45 1.45z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><g fill="#fff"><ellipse cx="10.449" cy="14.387" rx="2.513" ry="2.5"/><ellipse cx="21.388" cy="14.387" rx="2.513" ry="2.5"/><path d="M15.918.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm0 29c-7.16 0-12.985-5.832-12.985-13s5.825-13 12.985-13c7.16 0 12.985 5.832 12.985 13s-5.825 13-12.985 13zm7.312-20.59l-4.208 1.124c-.536.144-.854.692-.71 1.226.12.446.526.74.97.74.086 0 .175-.01.262-.034l4.21-1.125c.535-.144.853-.692.71-1.226-.145-.54-.695-.85-1.233-.71zM16.05 19.34c-.062 0-.113.014-.117.023-.034-.01-.086-.024-.15-.024-2.703 0-5.276 1.16-7.056 3.19-.455.51-.402 1.31.12 1.76.5.43 1.333.38 1.773-.12 1.303-1.48 3.185-2.34 5.165-2.34.062 0 .112-.02.123-.027.032.01.082.022.144.022 1.98 0 3.862.85 5.166 2.334.24.27.584.427.946.427.305 0 .6-.11.826-.31.522-.453.575-1.245.12-1.765-1.782-2.027-4.355-3.19-7.06-3.19zm-3.758-7.87c.087.023.176.034.262.034.444 0 .85-.294.97-.74.144-.533-.174-1.082-.71-1.226l-4.21-1.125c-.537-.143-1.086.173-1.23.706s.173 1.08.71 1.22l4.208 1.12z"/></g><g fill="#333"><ellipse cx="10.449" cy="78.387" rx="2.513" ry="2.5"/><ellipse cx="21.388" cy="78.387" rx="2.513" ry="2.5"/><path d="M15.918 64.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm0 29c-7.16 0-12.985-5.832-12.985-13s5.825-13 12.985-13c7.16 0 12.985 5.832 12.985 13s-5.825 13-12.985 13zm7.312-20.59l-4.208 1.124c-.536.144-.854.692-.71 1.226.12.446.526.74.97.74.086 0 .175-.01.262-.034l4.21-1.125c.535-.144.853-.692.71-1.226-.145-.54-.695-.85-1.233-.71zM16.05 83.34c-.062 0-.113.014-.117.023-.034-.01-.086-.024-.15-.024-2.703 0-5.276 1.16-7.056 3.19-.455.51-.402 1.31.12 1.76.5.43 1.333.38 1.773-.12 1.303-1.48 3.185-2.34 5.165-2.34.062 0 .112-.02.123-.027.032.01.082.022.144.022 1.98 0 3.862.85 5.166 2.334.24.27.584.427.946.427.305 0 .6-.11.826-.31.522-.453.575-1.245.12-1.765-1.782-2.027-4.355-3.19-7.06-3.19zm-3.758-7.87c.087.023.176.034.262.034.444 0 .85-.294.97-.74.144-.533-.174-1.082-.71-1.226l-4.21-1.125c-.537-.143-1.087.173-1.23.706s.173 1.08.71 1.22l4.208 1.12z"/></g><g fill="#97999A"><ellipse cx="10.449" cy="142.387" rx="2.513" ry="2.5"/><ellipse cx="21.388" cy="142.387" rx="2.513" ry="2.5"/><path d="M15.918 128.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm0 29c-7.16 0-12.985-5.832-12.985-13s5.825-13 12.985-13c7.16 0 12.985 5.832 12.985 13s-5.825 13-12.985 13zm7.312-20.59l-4.208 1.124c-.536.144-.854.692-.71 1.226.12.446.526.74.97.74.086 0 .175-.01.262-.034l4.21-1.125c.535-.144.853-.692.71-1.226-.145-.54-.695-.85-1.233-.71zm-7.18 10.926c-.062 0-.113.014-.117.023-.034-.01-.086-.024-.15-.024-2.703 0-5.276 1.16-7.056 3.19-.455.51-.402 1.31.12 1.76.5.43 1.333.38 1.773-.12 1.303-1.48 3.185-2.34 5.165-2.34.062 0 .112-.02.123-.027.032.01.082.022.144.022 1.98 0 3.862.85 5.166 2.334.24.27.584.427.946.427.305 0 .6-.11.826-.31.522-.453.575-1.245.12-1.765-1.782-2.027-4.355-3.19-7.06-3.19zm-3.758-7.87c.087.023.176.034.262.034.444 0 .85-.294.97-.74.144-.533-.174-1.082-.71-1.226l-4.21-1.125c-.537-.143-1.087.173-1.23.706s.173 1.08.71 1.22l4.208 1.12z"/></g><g fill="#008FE9"><ellipse cx="10.449" cy="206.387" rx="2.513" ry="2.5"/><ellipse cx="21.388" cy="206.387" rx="2.513" ry="2.5"/><path d="M15.918 192.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm0 29c-7.16 0-12.985-5.832-12.985-13s5.825-13 12.985-13c7.16 0 12.985 5.832 12.985 13s-5.825 13-12.985 13zm7.312-20.59l-4.208 1.124c-.536.144-.854.692-.71 1.226.12.446.526.74.97.74.086 0 .175-.01.262-.034l4.21-1.125c.535-.144.853-.692.71-1.226-.145-.54-.695-.85-1.233-.71zm-7.18 10.926c-.062 0-.113.014-.117.023-.034-.01-.086-.024-.15-.024-2.703 0-5.276 1.16-7.056 3.19-.455.51-.402 1.31.12 1.76.5.43 1.333.38 1.773-.12 1.303-1.48 3.185-2.34 5.165-2.34.062 0 .112-.02.123-.027.032.01.082.022.144.022 1.98 0 3.862.85 5.166 2.334.24.27.584.427.946.427.305 0 .6-.11.826-.31.522-.453.575-1.245.12-1.765-1.782-2.027-4.355-3.19-7.06-3.19zm-3.758-7.87c.087.023.176.034.262.034.444 0 .85-.294.97-.74.144-.533-.174-1.082-.71-1.226l-4.21-1.125c-.537-.143-1.087.173-1.23.706s.173 1.08.71 1.22l4.208 1.12z"/></g><g fill="#1C1F4E"><ellipse cx="10.449" cy="270.387" rx="2.513" ry="2.5"/><ellipse cx="21.388" cy="270.387" rx="2.513" ry="2.5"/><path d="M15.918 256.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm0 29c-7.16 0-12.985-5.832-12.985-13s5.825-13 12.985-13c7.16 0 12.985 5.832 12.985 13s-5.825 13-12.985 13zm7.312-20.59l-4.208 1.124c-.536.144-.854.692-.71 1.226.12.446.526.74.97.74.086 0 .175-.01.262-.034l4.21-1.125c.535-.144.853-.692.71-1.226-.145-.54-.695-.85-1.233-.71zm-7.18 10.926c-.062 0-.113.014-.117.023-.034-.01-.086-.024-.15-.024-2.703 0-5.276 1.16-7.056 3.19-.455.51-.402 1.31.12 1.76.5.43 1.333.38 1.773-.12 1.303-1.48 3.185-2.34 5.165-2.34.062 0 .112-.02.123-.027.032.01.082.022.144.022 1.98 0 3.862.85 5.166 2.334.24.27.584.427.946.427.305 0 .6-.11.826-.31.522-.453.575-1.245.12-1.765-1.782-2.027-4.355-3.19-7.06-3.19zm-3.758-7.87c.087.023.176.034.262.034.444 0 .85-.294.97-.74.144-.533-.174-1.082-.71-1.226l-4.21-1.125c-.537-.143-1.087.173-1.23.706s.173 1.08.71 1.22l4.208 1.12z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M24.635 17.007c-.04-4.053 3.305-5.996 3.454-6.093-1.88-2.75-4.81-3.127-5.86-3.17-2.49-.254-4.86 1.466-6.13 1.466-1.26 0-3.214-1.43-5.28-1.392-2.717.04-5.22 1.58-6.62 4.012-2.82 4.897-.72 12.15 2.03 16.123 1.343 1.944 2.946 4.127 5.05 4.05 2.026-.082 2.793-1.312 5.242-1.312s3.14 1.32 5.28 1.28c2.18-.04 3.563-1.98 4.898-3.93 1.545-2.25 2.18-4.44 2.218-4.55-.05-.02-4.254-1.63-4.296-6.47zm-4.03-11.893c1.117-1.355 1.87-3.235 1.665-5.11-1.61.065-3.56 1.072-4.713 2.423-1.036 1.2-1.942 3.113-1.7 4.95 1.797.142 3.63-.91 4.748-2.263z"/><path fill="#333" d="M24.635 81.007c-.04-4.053 3.305-5.996 3.454-6.093-1.88-2.75-4.81-3.127-5.86-3.17-2.49-.253-4.86 1.466-6.13 1.466-1.26 0-3.215-1.43-5.28-1.392-2.718.04-5.22 1.58-6.62 4.012-2.82 4.897-.72 12.15 2.03 16.123 1.342 1.944 2.945 4.127 5.05 4.05 2.025-.082 2.792-1.312 5.24-1.312s3.14 1.32 5.284 1.28c2.18-.04 3.562-1.98 4.897-3.93 1.546-2.25 2.18-4.44 2.22-4.55-.05-.02-4.255-1.63-4.297-6.47zm-4.03-11.893c1.117-1.355 1.87-3.235 1.665-5.11-1.61.065-3.56 1.072-4.713 2.423-1.036 1.2-1.942 3.113-1.7 4.95 1.797.142 3.63-.91 4.748-2.263z"/><path fill="#97999A" d="M24.635 145.007c-.04-4.053 3.305-5.996 3.454-6.093-1.88-2.75-4.81-3.127-5.86-3.17-2.49-.253-4.86 1.466-6.13 1.466-1.26 0-3.215-1.43-5.28-1.392-2.718.04-5.22 1.58-6.62 4.012-2.82 4.897-.72 12.15 2.03 16.123 1.34 1.944 2.944 4.127 5.05 4.05 2.024-.082 2.79-1.312 5.24-1.312s3.137 1.32 5.282 1.28c2.18-.04 3.56-1.98 4.896-3.93 1.542-2.25 2.18-4.44 2.215-4.55-.05-.02-4.254-1.63-4.296-6.47zm-4.03-11.893c1.117-1.355 1.87-3.235 1.665-5.11-1.61.066-3.56 1.072-4.713 2.423-1.036 1.2-1.942 3.113-1.7 4.95 1.797.142 3.63-.91 4.748-2.263z"/><path fill="#008FE9" d="M24.635 209.007c-.04-4.053 3.305-5.996 3.454-6.093-1.88-2.75-4.81-3.127-5.86-3.17-2.49-.253-4.86 1.466-6.13 1.466-1.26 0-3.215-1.43-5.28-1.392-2.718.04-5.22 1.58-6.62 4.012-2.82 4.897-.72 12.15 2.03 16.123 1.34 1.944 2.944 4.127 5.05 4.05 2.024-.082 2.79-1.312 5.24-1.312s3.137 1.32 5.282 1.28c2.18-.04 3.56-1.98 4.896-3.93 1.542-2.25 2.18-4.44 2.215-4.55-.05-.02-4.254-1.63-4.296-6.47zm-4.03-11.893c1.117-1.355 1.87-3.235 1.665-5.11-1.61.066-3.56 1.072-4.713 2.423-1.036 1.2-1.942 3.113-1.7 4.95 1.797.142 3.63-.91 4.748-2.263z"/><path fill="#1C1F4E" d="M24.635 273.003c-.04-4.053 3.305-5.996 3.454-6.093-1.88-2.75-4.81-3.127-5.86-3.17-2.49-.253-4.86 1.466-6.13 1.466-1.26 0-3.215-1.43-5.28-1.392-2.718.04-5.22 1.58-6.62 4.012-2.82 4.897-.72 12.15 2.03 16.123 1.34 1.94 2.944 4.12 5.05 4.04 2.024-.08 2.79-1.31 5.24-1.31s3.137 1.31 5.282 1.27c2.18-.04 3.56-1.98 4.896-3.93 1.542-2.26 2.18-4.44 2.215-4.55-.05-.02-4.254-1.64-4.296-6.48zm-4.03-11.893c1.117-1.355 1.87-3.235 1.665-5.11-1.61.065-3.56 1.072-4.713 2.423-1.036 1.2-1.942 3.113-1.7 4.95 1.797.142 3.63-.91 4.748-2.263z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M15.9.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm10.113 16.41l-8.703 8.703c-.166.166-.575.216-.792.126-.217-.09-.518-.302-.518-.536V20H8.198c-.154 0-.11-.137-.22-.246-.108-.11.022-.333.022-.486V12.74c0-.32-.123-.74.198-.74H16V7.3c0-.234.3-.445.518-.535s.546-.04.712.126l8.743 8.71c.11.11.19.26.19.41 0 .16-.04.3-.15.41z"/><path fill="#333" d="M15.9 64.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm10.113 16.41l-8.703 8.703c-.166.166-.575.216-.792.126-.217-.09-.518-.302-.518-.536V84H8.198c-.154 0-.11-.137-.22-.246-.108-.11.022-.333.022-.486V76.74c0-.32-.123-.74.198-.74H16v-4.7c0-.234.3-.445.518-.535s.546-.04.712.126l8.743 8.71c.11.11.19.26.19.41 0 .16-.04.3-.15.41z"/><path fill="#97999A" d="M15.9 128.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm10.113 16.41l-8.703 8.703c-.166.166-.575.216-.792.126-.217-.09-.518-.3-.518-.536V148H8.198c-.154 0-.11-.137-.22-.246-.108-.11.022-.333.022-.486v-6.527c0-.32-.123-.74.198-.74H16v-4.7c0-.23.3-.44.518-.53s.546-.04.712.13l8.743 8.708c.11.11.19.256.19.41 0 .154-.04.3-.15.41z"/><path fill="#008FE9" d="M15.9 192.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm10.113 16.41l-8.703 8.703c-.166.166-.575.216-.792.126-.217-.09-.518-.3-.518-.536V212H8.198c-.154 0-.11-.137-.22-.246-.108-.11.022-.333.022-.486v-6.527c0-.32-.123-.74.198-.74H16v-4.7c0-.23.3-.44.518-.53s.546-.04.712.13l8.743 8.708c.11.11.19.256.19.41 0 .154-.04.3-.15.41z"/><path fill="#1C1F4E" d="M15.9 256.004c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm10.113 16.41l-8.703 8.703c-.166.166-.575.216-.792.126-.217-.09-.518-.3-.518-.536V276H8.198c-.154 0-.11-.137-.22-.246-.108-.11.022-.333.022-.486v-6.527c0-.32-.123-.74.198-.74H16v-4.7c0-.23.3-.44.518-.53s.546-.04.712.13l8.743 8.708c.11.11.19.256.19.41 0 .154-.04.3-.15.41z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M31.724 22.868L17.33 8.475l6.838-6.837c.188-.172.305-.42.305-.695 0-.52-.42-.943-.94-.943H.94C.42 0 0 .425 0 .945v22.588c0 .38.23.724.58.87.117.048.24.072.36.072.246 0 .487-.096.667-.276l6.863-6.87 14.397 14.39c.184.18.425.27.666.27.24 0 .483-.09.667-.277l7.53-7.53c.365-.368.365-.963-.003-1.33z"/><path fill="#333" d="M31.724 86.868L17.33 72.475l6.838-6.837c.188-.172.305-.42.305-.695 0-.52-.42-.943-.94-.943H.94c-.52 0-.94.425-.94.945v22.588c0 .38.23.724.58.87.117.048.24.072.36.072.246 0 .487-.096.667-.276l6.863-6.87 14.397 14.39c.184.18.425.27.666.27.24 0 .483-.09.667-.277l7.53-7.53c.365-.368.365-.963-.003-1.33z"/><path fill="#97999A" d="M31.724 150.868L17.33 136.475l6.838-6.837c.188-.172.305-.42.305-.695 0-.52-.42-.943-.94-.943H.94c-.52 0-.94.425-.94.945v22.588c0 .38.23.724.58.87.117.048.24.072.36.072.246 0 .487-.096.667-.276l6.864-6.87 14.4 14.39c.19.18.43.27.67.27.24 0 .486-.09.67-.275l7.53-7.53c.366-.367.366-.96-.002-1.33z"/><path fill="#008FE9" d="M31.724 214.868L17.33 200.475l6.838-6.837c.188-.172.305-.42.305-.695 0-.52-.42-.943-.94-.943H.94c-.52 0-.94.425-.94.945v22.588c0 .38.23.724.58.87.117.048.24.072.36.072.246 0 .487-.096.667-.276l6.864-6.87 14.4 14.39c.19.18.43.27.67.27.24 0 .486-.09.67-.275l7.53-7.53c.366-.367.366-.96-.002-1.33z"/><path fill="#1C1F4E" d="M31.724 278.868L17.33 264.475l6.838-6.837c.188-.172.305-.42.305-.695 0-.52-.42-.943-.94-.943H.94c-.52 0-.94.425-.94.945v22.588c0 .38.23.724.58.87.117.048.24.072.36.072.246 0 .487-.096.667-.276l6.864-6.87 14.4 14.39c.19.18.43.27.67.27.24 0 .486-.09.67-.275l7.53-7.53c.366-.367.366-.96-.002-1.33z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M31.707 15.297l-15-15C16.52.11 16.265.004 16 .004c-.265 0-.52.105-.707.293l-15 15c-.286.286-.372.714-.217 1.088.155.373.52.615.924.615h8v14.004c0 .552.823.996 1.375.996h11.25c.265 0 .707-.103.895-.29.188-.19.48-.44.48-.706V17h8c.404 0 .77-.242.924-.615.155-.374.07-.802-.217-1.088z"/><path fill="#333" d="M31.707 79.297l-15-15c-.188-.188-.442-.293-.707-.293-.265 0-.52.105-.707.293l-15 15c-.286.286-.372.714-.217 1.088.155.373.52.615.924.615h8v14.004c0 .552.823.996 1.375.996h11.25c.265 0 .707-.103.895-.29.188-.19.48-.44.48-.706V81h8c.404 0 .77-.242.924-.615.155-.374.07-.802-.217-1.088z"/><path fill="#97999A" d="M31.707 143.297l-15-15c-.188-.188-.442-.293-.707-.293-.265 0-.52.105-.707.293l-15 15c-.286.286-.372.714-.217 1.088.155.373.52.615.924.615h8v14.004c0 .552.823.996 1.375.996h11.25c.265 0 .707-.103.895-.29.188-.19.48-.44.48-.706V145h8c.404 0 .77-.242.924-.615.155-.374.07-.802-.217-1.088z"/><path fill="#008FE9" d="M31.707 207.297l-15-15c-.188-.188-.442-.293-.707-.293-.265 0-.52.105-.707.293l-15 15c-.286.286-.372.714-.217 1.088.155.373.52.615.924.615h8v14.004c0 .552.823.996 1.375.996h11.25c.265 0 .707-.103.895-.29.188-.19.48-.44.48-.706V209h8c.404 0 .77-.242.924-.615.155-.374.07-.802-.217-1.088z"/><path fill="#1C1F4E" d="M31.707 271.297l-15-15c-.188-.188-.442-.293-.707-.293-.265 0-.52.105-.707.293l-15 15c-.286.286-.372.714-.217 1.088.155.373.52.615.924.615h8v14.004c0 .552.823.996 1.375.996h11.25c.265 0 .707-.103.895-.29.188-.19.48-.44.48-.706V273h8c.404 0 .77-.242.924-.615.155-.374.07-.802-.217-1.088z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path d="M17 9h6v17h-6zm9-9h6v26h-6zM9 16h6v10H9zm-9 6h6v4H0zm0 7h32v3H0z" fill="#fff"/><path d="M17 73h6v17h-6zm9-9h6v26h-6zM9 80h6v10H9zm-9 6h6v4H0zm0 7h32v3H0z" fill="#333"/><path d="M17 137h6v17h-6zm9-9h6v26h-6zM9 144h6v10H9zm-9 6h6v4H0zm0 7h32v3H0z" fill="#97999A"/><path d="M17 201h6v17h-6zm9-9h6v26h-6zM9 208h6v10H9zm-9 6h6v4H0zm0 7h32v3H0z" fill="#008FE9"/><path d="M17 265h6v17h-6zm9-9h6v26h-6zM9 272h6v10H9zm-9 6h6v4H0zm0 7h32v3H0z" fill="#1C1F4E"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M4.283 18.608H-.1l1.193-5.546H5.31c2.732 0 3.388 1.34 3.388 2.418 0 1.507-.98 3.128-4.415 3.128zm1.525-8.35H1.425l1.18-5.54H6.83c2.738 0 3.375 1.34 3.375 2.41 0 1.516-.962 3.13-4.397 3.13zm8.203 17.03H9.62l1.194-5.538h4.21c2.738 0 3.376 1.354 3.376 2.41 0 1.515-.962 3.13-4.383 3.13zm1.62-8.68h-4.38l1.2-5.546h4.22c2.735 0 3.39 1.34 3.39 2.418 0 1.507-.98 3.128-4.42 3.128zm1.53-8.35h-4.39l1.2-5.54h4.198c2.74 0 3.39 1.34 3.39 2.41 0 1.516-.96 3.13-4.39 3.13zm8.7 13.657h-4.39l1.2-5.547h4.21c2.74 0 3.39 1.355 3.39 2.418 0 1.508-.98 3.13-4.41 3.13zm1.65-8.688h-4.4l1.2-5.56h4.21c2.73 0 3.39 1.356 3.39 2.432 0 1.49-.982 3.12-4.403 3.12z"/><path fill="#333" d="M4.283 82.608H-.1l1.193-5.546H5.31c2.732 0 3.388 1.34 3.388 2.418 0 1.507-.98 3.128-4.415 3.128zm1.525-8.35H1.425l1.18-5.54H6.83c2.738 0 3.375 1.34 3.375 2.41 0 1.516-.962 3.13-4.397 3.13zm8.203 17.03H9.62l1.194-5.538h4.21c2.738 0 3.376 1.354 3.376 2.41 0 1.515-.962 3.13-4.383 3.13zm1.62-8.68h-4.38l1.2-5.546h4.22c2.735 0 3.39 1.34 3.39 2.418 0 1.507-.98 3.128-4.42 3.128zm1.53-8.35h-4.39l1.2-5.54h4.198c2.74 0 3.39 1.34 3.39 2.41 0 1.516-.96 3.13-4.39 3.13zm8.7 13.657h-4.39l1.2-5.547h4.21c2.74 0 3.39 1.355 3.39 2.418 0 1.508-.98 3.13-4.41 3.13zm1.65-8.688h-4.4l1.2-5.56h4.21c2.73 0 3.39 1.356 3.39 2.432 0 1.49-.982 3.12-4.403 3.12z"/><path fill="#97999A" d="M4.283 146.608H-.1l1.193-5.546H5.31c2.732 0 3.388 1.34 3.388 2.418 0 1.507-.98 3.128-4.415 3.128zm1.525-8.35H1.425l1.18-5.54H6.83c2.738 0 3.375 1.34 3.375 2.41 0 1.516-.962 3.13-4.397 3.13zm8.203 17.03H9.62l1.194-5.538h4.21c2.738 0 3.376 1.354 3.376 2.41 0 1.515-.962 3.13-4.383 3.13zm1.62-8.68h-4.38l1.2-5.546h4.22c2.735 0 3.39 1.34 3.39 2.418 0 1.507-.98 3.128-4.42 3.128zm1.53-8.35h-4.39l1.2-5.54h4.198c2.74 0 3.39 1.34 3.39 2.41 0 1.516-.96 3.13-4.39 3.13zm8.7 13.657h-4.39l1.2-5.547h4.21c2.74 0 3.39 1.355 3.39 2.418 0 1.508-.98 3.13-4.41 3.13zm1.65-8.688h-4.4l1.2-5.56h4.21c2.73 0 3.39 1.356 3.39 2.432 0 1.49-.982 3.12-4.403 3.12z"/><path fill="#008FE9" d="M4.283 210.608H-.1l1.193-5.546H5.31c2.732 0 3.388 1.34 3.388 2.418 0 1.507-.98 3.128-4.415 3.128zm1.525-8.35H1.425l1.18-5.54H6.83c2.738 0 3.375 1.34 3.375 2.41 0 1.516-.962 3.13-4.397 3.13zm8.203 17.03H9.62l1.194-5.538h4.21c2.738 0 3.376 1.354 3.376 2.41 0 1.515-.962 3.13-4.383 3.13zm1.62-8.68h-4.38l1.2-5.546h4.22c2.735 0 3.39 1.34 3.39 2.418 0 1.507-.98 3.128-4.42 3.128zm1.53-8.35h-4.39l1.2-5.54h4.198c2.74 0 3.39 1.34 3.39 2.41 0 1.516-.96 3.13-4.39 3.13zm8.7 13.657h-4.39l1.2-5.547h4.21c2.74 0 3.39 1.355 3.39 2.418 0 1.508-.98 3.13-4.41 3.13zm1.65-8.688h-4.4l1.2-5.56h4.21c2.73 0 3.39 1.356 3.39 2.432 0 1.49-.982 3.12-4.403 3.12z"/><path fill="#1C1F4E" d="M4.283 274.608H-.1l1.193-5.546H5.31c2.732 0 3.388 1.34 3.388 2.418 0 1.507-.98 3.128-4.415 3.128zm1.525-8.35H1.425l1.18-5.54H6.83c2.738 0 3.375 1.34 3.375 2.41 0 1.516-.962 3.13-4.397 3.13zm8.203 17.03H9.62l1.194-5.538h4.21c2.738 0 3.376 1.354 3.376 2.41 0 1.515-.962 3.13-4.383 3.13zm1.62-8.68h-4.38l1.2-5.546h4.22c2.735 0 3.39 1.34 3.39 2.418 0 1.507-.98 3.128-4.42 3.128zm1.53-8.35h-4.39l1.2-5.54h4.198c2.74 0 3.39 1.34 3.39 2.41 0 1.516-.96 3.13-4.39 3.13zm8.7 13.657h-4.39l1.2-5.547h4.21c2.74 0 3.39 1.355 3.39 2.418 0 1.508-.98 3.13-4.41 3.13zm1.65-8.688h-4.4l1.2-5.56h4.21c2.73 0 3.39 1.356 3.39 2.43 0 1.495-.982 3.13-4.403 3.13z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M27.026 0h-.002L7.1.56c-1.045.006-2.01.27-2.79.76-.438.278-.684.616-.943 1.003C3.06 2.78 3 3.32 3 3.848v23.61c0 .528.06 1.07.368 1.526.382.567.893 1.014 1.625 1.33.65.28 1.34.423 2.067.428l15.276 1.253c.064.006.12.01.183.01.57 0 1.27-.224 1.68-.628.4-.406.8-.948.8-1.524v-1.17l2.36-.08c1.07-.033 1.63-.898 1.63-1.97V2.13C29 .96 28.26 0 27.02 0zm-9.274 14.995c-.027 0-.054 0-.082-.003l-7.396-.607c-.543-.045-.948-.522-.904-1.065.044-.543.516-.943 1.066-.904l7.396.607c.543.045.948.522.904 1.065-.042.516-.474.907-.984.907zm2.235-3.736c-.027 0-.054-.01-.082-.01L8.04 10.28c-.543-.045-.948-.522-.904-1.065.046-.544.51-.938 1.066-.904l11.865.98c.543.047.948.52.904 1.067-.04.517-.47.908-.98.908zM26 24.74c0 .537-.296.983-.832.994l-.188.01c-.122 0 .02-.1.02-.22V7.614c0-1.125-1.013-2.144-2.135-2.243L7.158 4h-.055c-.558 0-1.008-.065-1.23-.208-.023-.015-.043.02-.06.007.063-.05.156-.09.28-.14.287-.13.652-.18 1.048-.18l17.85-.5c.64 0 1.01.52 1.01 1.154v20.6z"/><path fill="#333" d="M27.026 64h-.002L7.1 64.56c-1.044.006-2.01.27-2.79.76-.438.278-.684.616-.943 1.002-.306.457-.367 1-.367 1.526v23.61c0 .528.06 1.07.368 1.526.382.567.893 1.014 1.625 1.33.65.28 1.34.423 2.067.428l15.276 1.253c.064.006.12.01.183.01.57 0 1.27-.224 1.68-.628.4-.406.8-.948.8-1.524v-1.17l2.36-.08c1.07-.033 1.63-.898 1.63-1.97V66.13c0-1.17-.74-2.13-1.978-2.13zm-9.274 14.995c-.027 0-.054 0-.082-.003l-7.396-.607c-.543-.045-.948-.522-.904-1.065.044-.543.516-.943 1.066-.904l7.396.607c.543.045.948.522.904 1.065-.042.516-.474.907-.984.907zm2.235-3.736c-.027 0-.054-.01-.082-.01L8.04 74.28c-.543-.045-.948-.522-.904-1.065.045-.543.51-.937 1.066-.904l11.865.98c.543.047.948.52.904 1.067-.04.517-.47.908-.98.908zM26 88.74c0 .537-.296.983-.832.994l-.188.01c-.122 0 .02-.1.02-.22v-17.91c0-1.125-1.013-2.144-2.135-2.243L7.158 68h-.055c-.558 0-1.008-.065-1.23-.208-.022-.014-.042.02-.06.008.063-.047.156-.08.28-.133.287-.123.652-.18 1.048-.18l17.85-.497c.64 0 1.01.523 1.01 1.158v20.6z"/><path fill="#97999A" d="M27.026 128h-.002l-19.924.56c-1.044.006-2.01.27-2.79.76-.438.278-.684.616-.943 1.002-.306.457-.367 1-.367 1.526v23.61c0 .528.06 1.07.368 1.526.382.567.893 1.014 1.625 1.33.65.28 1.34.423 2.067.428l15.276 1.253c.064.006.12.01.183.01.57 0 1.27-.224 1.68-.628.4-.406.8-.948.8-1.524v-1.17l2.36-.08c1.07-.033 1.63-.898 1.63-1.97V130.13c0-1.17-.74-2.13-1.978-2.13zm-9.274 14.995c-.027 0-.054 0-.082-.003l-7.396-.607c-.543-.045-.948-.522-.904-1.065.044-.543.516-.943 1.066-.904l7.396.607c.543.045.948.522.904 1.065-.042.516-.474.907-.984.907zm2.235-3.736c-.027 0-.054-.01-.082-.01l-11.865-.97c-.543-.05-.948-.52-.904-1.07.045-.545.51-.94 1.066-.906l11.865.973c.543.045.948.522.904 1.065-.04.515-.47.906-.98.906zM26 152.74c0 .537-.296.983-.832.994l-.188.01c-.122 0 .02-.1.02-.22V135.61c0-1.124-1.013-2.143-2.135-2.242L7.158 132h-.055c-.558 0-1.008-.065-1.23-.208-.022-.014-.042.02-.06.008.063-.047.156-.08.28-.133.287-.123.652-.18 1.048-.18l17.85-.497c.64 0 1.01.523 1.01 1.158v20.6z"/><path fill="#008FE9" d="M27.026 192h-.002l-19.924.56c-1.044.006-2.01.27-2.79.76-.438.278-.684.616-.943 1.002-.306.457-.367 1-.367 1.526v23.61c0 .528.06 1.07.368 1.526.382.567.893 1.014 1.625 1.33.65.28 1.34.423 2.067.428l15.276 1.253c.064.006.12.01.183.01.57 0 1.27-.224 1.68-.628.4-.406.8-.948.8-1.524v-1.17l2.36-.08c1.07-.033 1.63-.898 1.63-1.97V194.13c0-1.17-.74-2.13-1.978-2.13zm-9.274 14.995c-.027 0-.054 0-.082-.003l-7.396-.607c-.543-.045-.948-.522-.904-1.065.044-.543.516-.943 1.066-.904l7.396.607c.543.045.948.522.904 1.065-.042.516-.474.907-.984.907zm2.235-3.736c-.027 0-.054-.01-.082-.01l-11.865-.97c-.543-.05-.948-.52-.904-1.07.045-.545.51-.94 1.066-.906l11.865.973c.543.045.948.522.904 1.065-.04.515-.47.906-.98.906zM26 216.74c0 .537-.296.983-.832.994l-.188.01c-.122 0 .02-.1.02-.22V199.61c0-1.124-1.013-2.143-2.135-2.242L7.158 196h-.055c-.558 0-1.008-.065-1.23-.208-.022-.014-.042.02-.06.008.063-.047.156-.08.28-.133.287-.123.652-.18 1.048-.18l17.85-.497c.64 0 1.01.523 1.01 1.158v20.6z"/><path fill="#1C1F4E" d="M27.026 256h-.002l-19.924.56c-1.044.006-2.01.27-2.79.76-.438.278-.684.616-.943 1.002-.306.457-.367 1-.367 1.526v23.61c0 .528.06 1.07.368 1.526.382.567.893 1.014 1.625 1.33.65.28 1.34.423 2.067.428l15.276 1.253c.064.006.12.01.183.01.57 0 1.27-.224 1.68-.628.4-.406.8-.948.8-1.524v-1.17l2.36-.08c1.07-.033 1.63-.898 1.63-1.97V258.13c0-1.17-.74-2.13-1.978-2.13zm-9.274 14.995c-.027 0-.054 0-.082-.003l-7.396-.607c-.543-.045-.948-.522-.904-1.065.044-.543.516-.943 1.066-.904l7.396.607c.543.045.948.522.904 1.065-.042.516-.474.907-.984.907zm2.235-3.736c-.027 0-.054-.01-.082-.01l-11.865-.97c-.543-.05-.948-.52-.904-1.07.045-.545.51-.94 1.066-.906l11.865.973c.543.045.948.522.904 1.065-.04.515-.47.906-.98.906zM26 280.74c0 .537-.296.983-.832.994l-.188.01c-.122 0 .02-.1.02-.22V263.61c0-1.124-1.013-2.143-2.135-2.242L7.158 260h-.055c-.558 0-1.008-.065-1.23-.208-.022-.014-.042.02-.06.008.063-.047.156-.08.28-.133.287-.123.652-.18 1.048-.18l17.85-.497c.64 0 1.01.523 1.01 1.158v20.6z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M25.412 0H6.588C6.068 0 6 .426 6 .945v30.118c0 .38.053.724.405.87.35.144.667.064.937-.204l8.702-8.75 8.724 8.74c.18.18.41.27.655.27.122 0 .062-.023.178-.07.36-.147.4-.49.4-.87V.943c0-.52-.07-.942-.58-.942z"/><path fill="#333" d="M25.412 64H6.588c-.52 0-.588.426-.588.945v30.118c0 .38.053.724.405.87.35.144.667.064.937-.204l8.702-8.75 8.724 8.74c.18.18.41.27.655.27.122 0 .062-.023.178-.07.36-.147.4-.49.4-.87V64.94c0-.52-.07-.945-.58-.945z"/><path fill="#97999A" d="M25.412 128H6.588c-.52 0-.588.426-.588.945v30.118c0 .38.053.724.405.87.35.144.667.064.937-.204l8.702-8.75 8.724 8.74c.18.18.41.27.655.27.122 0 .062-.023.178-.07.36-.146.4-.49.4-.87v-30.12c0-.52-.07-.945-.58-.945z"/><path fill="#008FE9" d="M25.412 192H6.588c-.52 0-.588.426-.588.945v30.118c0 .38.053.724.405.87.35.144.667.064.937-.204l8.702-8.75 8.724 8.74c.18.18.41.27.655.27.122 0 .062-.023.178-.07.36-.146.4-.49.4-.87v-30.12c0-.52-.07-.945-.58-.945z"/><path fill="#1C1F4E" d="M25.412 256H6.588c-.52 0-.588.426-.588.945v30.118c0 .38.053.724.405.87.35.144.667.064.937-.204l8.702-8.75 8.724 8.74c.18.18.41.27.655.27.122 0 .062-.023.178-.07.36-.146.4-.49.4-.87v-30.12c0-.52-.07-.945-.58-.945z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M21.307 15.32L13.114.714c-.377-.67-1.222-.904-1.89-.53-.667.374-.905 1.22-.53 1.888L18.508 16l-7.745 13.94c-.372.67-.13 1.515.54 1.887.213.118.444.175.672.175.487 0 .96-.258 1.214-.714l8.12-14.616c.23-.422.23-.933-.01-1.353z"/><path fill="#333" d="M21.307 79.32l-8.194-14.605c-.377-.67-1.222-.904-1.89-.53-.667.374-.905 1.22-.53 1.888L18.508 80l-7.745 13.94c-.372.67-.13 1.515.54 1.887.213.118.444.175.672.175.487 0 .96-.258 1.214-.714l8.12-14.616c.23-.422.23-.933-.01-1.353z"/><path fill="#97999A" d="M21.307 143.32l-8.194-14.605c-.377-.67-1.222-.904-1.89-.53-.667.374-.905 1.22-.53 1.888L18.508 144l-7.745 13.94c-.372.67-.13 1.514.54 1.886.213.118.444.175.672.175.487 0 .96-.25 1.214-.71l8.12-14.61c.23-.42.23-.93-.01-1.35z"/><path fill="#008FE9" d="M21.307 207.32l-8.194-14.605c-.377-.67-1.222-.904-1.89-.53-.667.374-.905 1.22-.53 1.888L18.508 208l-7.745 13.94c-.372.67-.13 1.514.54 1.886.213.118.444.175.672.175.487 0 .96-.25 1.214-.71l8.12-14.61c.23-.42.23-.93-.01-1.35z"/><path fill="#1C1F4E" d="M21.307 271.32l-8.194-14.605c-.377-.67-1.222-.904-1.89-.53-.667.374-.905 1.22-.53 1.888L18.508 272l-7.745 13.94c-.372.67-.13 1.514.54 1.886.213.118.444.175.672.175.487 0 .96-.25 1.214-.71l8.12-14.61c.23-.42.23-.93-.01-1.35z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M27 2.22C27 .994 26.006 0 24.78 0H7.22C5.994 0 5 .994 5 2.22v27.56C5 31.006 5.994 32 7.22 32h17.56c1.226 0 2.22-.994 2.22-2.22V2.22zM12 29H8v-4h4v4zm0-6H8v-4h4v4zm0-6H8v-4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4v-4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4v-4h4v4zm0-7H8V3h16v7z"/><path fill="#333" d="M27 66.22c0-1.226-.994-2.22-2.22-2.22H7.22C5.994 64 5 64.994 5 66.22v27.56C5 95.006 5.994 96 7.22 96h17.56c1.226 0 2.22-.994 2.22-2.22V66.22zM12 93H8v-4h4v4zm0-6H8v-4h4v4zm0-6H8v-4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4v-4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4v-4h4v4zm0-7H8v-7h16v7z"/><path fill="#97999A" d="M27 130.22c0-1.226-.994-2.22-2.22-2.22H7.22c-1.226 0-2.22.994-2.22 2.22v27.56c0 1.226.994 2.22 2.22 2.22h17.56c1.226 0 2.22-.994 2.22-2.22v-27.56zM12 157H8v-4h4v4zm0-6H8v-4h4v4zm0-6H8v-4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4v-4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4v-4h4v4zm0-7H8v-7h16v7z"/><path fill="#008FE9" d="M27 194.22c0-1.226-.994-2.22-2.22-2.22H7.22c-1.226 0-2.22.994-2.22 2.22v27.56c0 1.226.994 2.22 2.22 2.22h17.56c1.226 0 2.22-.994 2.22-2.22v-27.56zM12 221H8v-4h4v4zm0-6H8v-4h4v4zm0-6H8v-4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4v-4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4v-4h4v4zm0-7H8v-7h16v7z"/><path fill="#1C1F4E" d="M27 258.22c0-1.226-.994-2.22-2.22-2.22H7.22c-1.226 0-2.22.994-2.22 2.22v27.56c0 1.226.994 2.22 2.22 2.22h17.56c1.226 0 2.22-.994 2.22-2.22v-27.56zM12 285H8v-4h4v4zm0-6H8v-4h4v4zm0-6H8v-4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4v-4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4v-4h4v4zm0-7H8v-7h16v7z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path d="M5 23h4v4H5zm6 0h4v4h-4zm6 0h4v4h-4zM5 17h4v4H5zm6 0h4v4h-4zm6 0h4v4h-4zm6 0h4v4h-4zm-12-6h4v4h-4zm6 0h4v4h-4zm6 0h4v4h-4zM7.5 5.63c.828 0 1.5-.673 1.5-1.5V1.503c0-.828-.672-1.5-1.5-1.5S6 .676 6 1.503v2.624c0 .83.672 1.502 1.5 1.502zm17 0c.828 0 1.5-.673 1.5-1.5V1.503c0-.828-.672-1.5-1.5-1.5s-1.5.672-1.5 1.5v2.623c0 .83.672 1.502 1.5 1.502zM29 3h-1v1.13c0 1.93-1.57 3.5-3.5 3.5S21 6.06 21 4.13V3H11v1.13c0 1.93-1.57 3.5-3.5 3.5S4 6.06 4 4.13V3H3C1.343 3 0 4.57 0 6.227V28.84C0 30.5 1.343 32 3 32h26c1.657 0 3-1.502 3-3.16V6.228C32 4.57 30.657 3 29 3zm0 26H3V9h26v20z" fill="#fff"/><path d="M5 87h4v4H5zm6 0h4v4h-4zm6 0h4v4h-4zM5 81h4v4H5zm6 0h4v4h-4zm6 0h4v4h-4zm6 0h4v4h-4zm-12-6h4v4h-4zm6 0h4v4h-4zm6 0h4v4h-4zM7.5 69.63c.828 0 1.5-.673 1.5-1.5v-2.625c0-.828-.672-1.5-1.5-1.5s-1.5.672-1.5 1.5v2.623c0 .83.672 1.5 1.5 1.5zm17 0c.828 0 1.5-.673 1.5-1.5v-2.625c0-.828-.672-1.5-1.5-1.5s-1.5.672-1.5 1.5v2.623c0 .83.672 1.5 1.5 1.5zM29 67h-1v1.13c0 1.93-1.57 3.5-3.5 3.5s-3.5-1.57-3.5-3.5V67H11v1.13c0 1.93-1.57 3.5-3.5 3.5S4 70.06 4 68.13V67H3c-1.657 0-3 1.57-3 3.227V92.84C0 94.5 1.343 96 3 96h26c1.657 0 3-1.502 3-3.16V70.228C32 68.57 30.657 67 29 67zm0 26H3V73h26v20z" fill="#333"/><path d="M5 151h4v4H5zm6 0h4v4h-4zm6 0h4v4h-4zm-12-6h4v4H5zm6 0h4v4h-4zm6 0h4v4h-4zm6 0h4v4h-4zm-12-6h4v4h-4zm6 0h4v4h-4zm6 0h4v4h-4zm-15.5-5.37c.828 0 1.5-.673 1.5-1.5v-2.625c0-.828-.672-1.5-1.5-1.5s-1.5.672-1.5 1.5v2.623c0 .83.672 1.5 1.5 1.5zm17 0c.828 0 1.5-.673 1.5-1.5v-2.625c0-.828-.672-1.5-1.5-1.5s-1.5.672-1.5 1.5v2.623c0 .83.672 1.5 1.5 1.5zM29 131h-1v1.13c0 1.93-1.57 3.5-3.5 3.5s-3.5-1.57-3.5-3.5V131H11v1.13c0 1.93-1.57 3.5-3.5 3.5s-3.5-1.57-3.5-3.5V131H3c-1.657 0-3 1.57-3 3.227v22.614C0 158.5 1.343 160 3 160h26c1.657 0 3-1.502 3-3.16v-22.613c0-1.656-1.343-3.227-3-3.227zm0 26H3v-20h26v20z" fill="#97999A"/><path d="M5 215h4v4H5zm6 0h4v4h-4zm6 0h4v4h-4zm-12-6h4v4H5zm6 0h4v4h-4zm6 0h4v4h-4zm6 0h4v4h-4zm-12-6h4v4h-4zm6 0h4v4h-4zm6 0h4v4h-4zm-15.5-5.37c.828 0 1.5-.673 1.5-1.5v-2.625c0-.828-.672-1.5-1.5-1.5s-1.5.672-1.5 1.5v2.623c0 .83.672 1.5 1.5 1.5zm17 0c.828 0 1.5-.673 1.5-1.5v-2.625c0-.828-.672-1.5-1.5-1.5s-1.5.672-1.5 1.5v2.623c0 .83.672 1.5 1.5 1.5zM29 195h-1v1.13c0 1.93-1.57 3.5-3.5 3.5s-3.5-1.57-3.5-3.5V195H11v1.13c0 1.93-1.57 3.5-3.5 3.5s-3.5-1.57-3.5-3.5V195H3c-1.657 0-3 1.57-3 3.227v22.614C0 222.5 1.343 224 3 224h26c1.657 0 3-1.502 3-3.16v-22.613c0-1.656-1.343-3.227-3-3.227zm0 26H3v-20h26v20z" fill="#008FE9"/><path d="M5 279h4v4H5zm6 0h4v4h-4zm6 0h4v4h-4zm-12-6h4v4H5zm6 0h4v4h-4zm6 0h4v4h-4zm6 0h4v4h-4zm-12-6h4v4h-4zm6 0h4v4h-4zm6 0h4v4h-4zm-15.5-5.37c.828 0 1.5-.673 1.5-1.5v-2.625c0-.828-.672-1.5-1.5-1.5s-1.5.672-1.5 1.5v2.623c0 .83.672 1.5 1.5 1.5zm17 0c.828 0 1.5-.673 1.5-1.5v-2.625c0-.828-.672-1.5-1.5-1.5s-1.5.672-1.5 1.5v2.623c0 .83.672 1.5 1.5 1.5zM29 259h-1v1.13c0 1.93-1.57 3.5-3.5 3.5s-3.5-1.57-3.5-3.5V259H11v1.13c0 1.93-1.57 3.5-3.5 3.5s-3.5-1.57-3.5-3.5V259H3c-1.657 0-3 1.57-3 3.227v22.614C0 286.5 1.343 288 3 288h26c1.657 0 3-1.502 3-3.16v-22.613c0-1.656-1.343-3.227-3-3.227zm0 26H3v-20h26v20z" fill="#1C1F4E"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M30.326 12.646l-3.193-9.69C26.93 2.336 26.356 2 25.707 2H6.293c-.65 0-1.224.338-1.426.955l-3.193 9.73C.688 13.178 0 14.15 0 15.32v6.59c0 1.565 1 2.846 3 2.976v3.28C3 29.266 3.65 30 4.75 30h1.917C7.767 30 9 29.266 9 28.166V25h14v3.103c0 1.1 1.233 1.897 2.333 1.897h1.917c1.1 0 1.75-.797 1.75-1.897v-3.217c2-.13 3-1.41 3-2.975v-6.59c0-1.17-.688-2.18-1.674-2.67zm-23.268 7.97c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm17.884 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM4.937 12L7.38 5h17.24l2.443 7H4.937z"/><path fill="#333" d="M30.326 76.646l-3.193-9.69c-.202-.618-.777-.956-1.426-.956H6.293c-.65 0-1.224.338-1.426.955l-3.193 9.73C.688 77.178 0 78.15 0 79.32v6.59c0 1.565 1 2.846 3 2.976v3.28C3 93.266 3.65 94 4.75 94h1.917C7.767 94 9 93.266 9 92.166V89h14v3.103c0 1.1 1.233 1.897 2.333 1.897h1.917c1.1 0 1.75-.797 1.75-1.897v-3.217c2-.13 3-1.41 3-2.975v-6.59c0-1.17-.688-2.18-1.674-2.67zm-23.268 7.97c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm17.884 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM4.937 76l2.444-7h17.24l2.45 7H4.94z"/><path fill="#97999A" d="M30.326 140.646l-3.193-9.69c-.202-.618-.777-.956-1.426-.956H6.293c-.65 0-1.224.338-1.426.955l-3.193 9.73C.688 141.178 0 142.15 0 143.32v6.59c0 1.565 1 2.846 3 2.976v3.28c0 1.1.65 1.834 1.75 1.834h1.917c1.1 0 2.333-.734 2.333-1.834V153h14v3.103c0 1.1 1.233 1.897 2.333 1.897h1.917c1.1 0 1.75-.797 1.75-1.897v-3.217c2-.13 3-1.41 3-2.975v-6.59c0-1.17-.688-2.18-1.674-2.67zm-23.268 7.97c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm17.884 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM4.937 140l2.444-7h17.24l2.45 7H4.94z"/><path fill="#008FE9" d="M30.326 204.646l-3.193-9.69c-.202-.618-.777-.956-1.426-.956H6.293c-.65 0-1.224.338-1.426.955l-3.193 9.73C.688 205.178 0 206.15 0 207.32v6.59c0 1.565 1 2.846 3 2.976v3.28c0 1.1.65 1.834 1.75 1.834h1.917c1.1 0 2.333-.734 2.333-1.834V217h14v3.103c0 1.1 1.233 1.897 2.333 1.897h1.917c1.1 0 1.75-.797 1.75-1.897v-3.217c2-.13 3-1.41 3-2.975v-6.59c0-1.17-.688-2.18-1.674-2.67zm-23.268 7.97c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm17.884 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM4.937 204l2.444-7h17.24l2.45 7H4.94z"/><path fill="#1C1F4E" d="M30.326 268.646l-3.193-9.69c-.202-.618-.777-.956-1.426-.956H6.293c-.65 0-1.224.338-1.426.955l-3.193 9.73C.688 269.178 0 270.15 0 271.32v6.59c0 1.565 1 2.846 3 2.976v3.28c0 1.1.65 1.834 1.75 1.834h1.917c1.1 0 2.333-.734 2.333-1.834V281h14v3.103c0 1.1 1.233 1.897 2.333 1.897h1.917c1.1 0 1.75-.797 1.75-1.897v-3.217c2-.13 3-1.41 3-2.975v-6.59c0-1.17-.688-2.18-1.674-2.67zm-23.268 7.97c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm17.884 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM4.937 268l2.444-7h17.24l2.45 7H4.94z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M31.076 2.204c-9.734 5.965-16.798 13.492-19.972 17.27l-7.772-6.088L-.1 16.152l13.43 13.652c2.31-5.918 9.632-17.483 18.57-25.7l-.824-1.9z"/><path fill="#333" d="M31.076 66.204c-9.734 5.965-16.798 13.492-19.972 17.27l-7.772-6.088L-.1 80.152l13.43 13.652c2.31-5.918 9.632-17.483 18.57-25.7l-.824-1.9z"/><path fill="#97999A" d="M31.076 130.204c-9.734 5.965-16.798 13.492-19.972 17.27l-7.772-6.088-3.432 2.766 13.43 13.652c2.31-5.918 9.632-17.483 18.57-25.7l-.824-1.9z"/><path fill="#008FE9" d="M31.076 194.204c-9.734 5.965-16.798 13.492-19.972 17.27l-7.772-6.088-3.432 2.766 13.43 13.652c2.31-5.918 9.632-17.483 18.57-25.7l-.824-1.9z"/><path fill="#1C1F4E" d="M31.076 258.204c-9.734 5.965-16.798 13.492-19.972 17.27l-7.772-6.088-3.432 2.766 13.43 13.652c2.31-5.918 9.632-17.483 18.57-25.7l-.824-1.9z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path d="M15.918.004c-8.837 0-16 7.164-16 16 0 8.837 7.163 16 16 16s16-7.163 16-16c0-8.836-7.163-16-16-16zm0 29c-7.16 0-12.985-5.832-12.985-13s5.825-13 12.985-13c7.16 0 12.985 5.832 12.985 13s-5.825 13-12.985 13zm1.264-13.557l-.03-8.282c0-.69-.564-1.165-1.256-1.165h-.004c-.694 0-1.254.483-1.253 1.173l.03 8.938c0 .4.19.71.47.94.05.05.08.11.14.15l5.882 4.16c.22.158.475.23.727.23.395 0 .78-.183 1.027-.53.402-.56.27-1.34-.295-1.74l-5.45-3.86z" fill="#fff"/><path d="M15.918 64.004c-8.837 0-16 7.164-16 16 0 8.837 7.163 16 16 16s16-7.163 16-16c0-8.836-7.163-16-16-16zm0 29c-7.16 0-12.985-5.832-12.985-13s5.825-13 12.985-13c7.16 0 12.985 5.832 12.985 13s-5.825 13-12.985 13zm1.264-13.557l-.03-8.282c0-.69-.564-1.165-1.256-1.165h-.004c-.694 0-1.254.483-1.253 1.173l.03 8.938c0 .4.19.71.47.94.05.05.08.11.14.15l5.882 4.16c.22.158.475.23.727.23.395 0 .78-.183 1.027-.53.402-.56.27-1.34-.295-1.74l-5.45-3.86z" fill="#333"/><path d="M15.918 128.004c-8.837 0-16 7.164-16 16 0 8.837 7.163 16 16 16s16-7.163 16-16c0-8.836-7.163-16-16-16zm0 29c-7.16 0-12.985-5.832-12.985-13s5.825-13 12.985-13c7.16 0 12.985 5.832 12.985 13s-5.825 13-12.985 13zm1.264-13.557l-.03-8.282c0-.69-.563-1.165-1.255-1.165h-.004c-.694 0-1.254.483-1.253 1.173l.03 8.938c.002.4.194.71.476.94.05.05.086.11.147.15l5.883 4.16c.22.158.475.23.727.23.393 0 .78-.183 1.025-.53.402-.56.27-1.34-.295-1.74l-5.45-3.86z" fill="#97999A"/><path d="M15.918 192.004c-8.837 0-16 7.164-16 16 0 8.837 7.163 16 16 16s16-7.163 16-16c0-8.836-7.163-16-16-16zm0 29c-7.16 0-12.985-5.832-12.985-13s5.825-13 12.985-13c7.16 0 12.985 5.832 12.985 13s-5.825 13-12.985 13zm1.264-13.557l-.03-8.282c0-.69-.563-1.165-1.255-1.165h-.004c-.694 0-1.254.483-1.253 1.173l.03 8.938c.002.4.194.71.476.94.05.05.086.11.147.15l5.883 4.16c.22.158.475.23.727.23.393 0 .78-.183 1.025-.53.402-.56.27-1.34-.295-1.74l-5.45-3.86z" fill="#008FE9"/><path d="M15.918 256.004c-8.837 0-16 7.164-16 16 0 8.837 7.163 16 16 16s16-7.163 16-16c0-8.836-7.163-16-16-16zm0 29c-7.16 0-12.985-5.832-12.985-13s5.825-13 12.985-13c7.16 0 12.985 5.832 12.985 13s-5.825 13-12.985 13zm1.264-13.557l-.03-8.282c0-.69-.563-1.165-1.255-1.165h-.004c-.694 0-1.254.483-1.253 1.173l.03 8.938c.002.4.194.71.476.94.05.05.086.11.147.15l5.883 4.16c.22.158.475.23.727.23.393 0 .78-.183 1.025-.53.402-.56.27-1.34-.295-1.74l-5.45-3.86z" fill="#1C1F4E"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M16 .004c-8.836 0-16 7.163-16 16s7.164 16 16 16c8.837 0 16-7.163 16-16s-7.163-16-16-16zm8 21.172l-2.828 2.828L16 18.834l-5.172 5.17L8 21.177l5.172-5.172L8 10.832l2.828-2.828L16 13.176l5.172-5.172L24 10.832l-5.172 5.172L24 21.176z"/><path fill="#333" d="M16 64.004c-8.836 0-16 7.163-16 16s7.164 16 16 16c8.837 0 16-7.163 16-16s-7.163-16-16-16zm8 21.172l-2.828 2.828L16 82.834l-5.172 5.17L8 85.177l5.172-5.172L8 74.832l2.828-2.828L16 77.176l5.172-5.172L24 74.832l-5.172 5.172L24 85.176z"/><path fill="#97999A" d="M16 128.004c-8.836 0-16 7.163-16 16s7.164 16 16 16c8.837 0 16-7.163 16-16s-7.163-16-16-16zm8 21.172l-2.828 2.828-5.172-5.17-5.172 5.17L8 149.177l5.172-5.172L8 138.832l2.828-2.828L16 141.176l5.172-5.172L24 138.832l-5.172 5.172L24 149.176z"/><path fill="#008FE9" d="M16 192.004c-8.836 0-16 7.163-16 16s7.164 16 16 16c8.837 0 16-7.163 16-16s-7.163-16-16-16zm8 21.172l-2.828 2.828-5.172-5.17-5.172 5.17L8 213.177l5.172-5.172L8 202.832l2.828-2.828L16 205.176l5.172-5.172L24 202.832l-5.172 5.172L24 213.176z"/><path fill="#1C1F4E" d="M16 256.004c-8.836 0-16 7.163-16 16s7.164 16 16 16c8.837 0 16-7.163 16-16s-7.163-16-16-16zm8 21.172l-2.828 2.828-5.172-5.17-5.172 5.17L8 277.177l5.172-5.172L8 266.832l2.828-2.828L16 269.176l5.172-5.172L24 266.832l-5.172 5.172L24 277.176z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M31.31 13.274l-3.698-1.207-.63-1.52L28.67 6.98c.18-.38.102-.834-.197-1.133L26.06 3.433c-.307-.307-.775-.38-1.16-.185L21.43 5.01l-1.52-.63L18.58.667c-.146-.4-.523-.667-.945-.667H14.22c-.432 0-.815.28-.95.692l-1.206 3.7-1.52.63-3.567-1.684c-.38-.18-.836-.1-1.134.197L3.43 5.95c-.308.305-.382.773-.186 1.16l1.763 3.47-.63 1.518-3.714 1.33c-.397.142-.663.52-.663.94v3.415c0 .433.278.816.69.95l3.7 1.208.628 1.52-1.685 3.57c-.18.38-.102.84.197 1.14l2.413 2.42c.306.308.775.38 1.16.185l3.47-1.77 1.52.63 1.33 3.71c.143.4.52.663.942.663h3.414c.43 0 .81-.276.95-.688l1.2-3.698 1.52-.627 3.56 1.68c.38.18.837.1 1.135-.2l2.414-2.414c.305-.304.38-.77.185-1.16l-1.764-3.47.63-1.52 3.714-1.33c.396-.142.662-.52.662-.94v-3.42c0-.432-.28-.816-.69-.95zM16 20.597c-2.532 0-4.593-2.06-4.593-4.593 0-2.532 2.06-4.593 4.594-4.593 2.54 0 4.6 2.07 4.6 4.6s-2.06 4.6-4.59 4.6z"/><path fill="#333" d="M31.31 77.274l-3.698-1.207-.63-1.52 1.686-3.566c.18-.38.102-.83-.197-1.13l-2.41-2.41c-.3-.3-.77-.38-1.16-.18l-3.47 1.764-1.52-.63-1.33-3.715c-.14-.397-.52-.665-.94-.665h-3.42c-.43 0-.81.28-.95.69l-1.2 3.7-1.52.63-3.564-1.683c-.38-.18-.836-.1-1.134.196l-2.413 2.41c-.308.31-.38.778-.186 1.16l1.765 3.47-.63 1.52L.67 77.43c-.397.146-.663.52-.663.94v3.42c0 .432.28.815.69.95l3.7 1.207.63 1.52-1.686 3.57c-.18.38-.1.836.2 1.135l2.416 2.416c.305.308.774.38 1.16.185L10.576 91l1.52.63 1.33 3.71c.14.398.52.662.94.662h3.412c.43 0 .81-.276.95-.688l1.2-3.697 1.52-.628 3.566 1.68c.38.18.836.1 1.134-.2l2.415-2.42c.305-.304.38-.77.185-1.157l-1.763-3.47.63-1.52 3.713-1.33c.397-.145.663-.52.663-.944v-3.41c0-.433-.28-.817-.69-.95zM16 84.597c-2.532 0-4.593-2.06-4.593-4.593 0-2.532 2.06-4.593 4.594-4.593 2.54 0 4.6 2.07 4.6 4.6s-2.06 4.6-4.59 4.6z"/><path fill="#97999A" d="M31.31 141.274l-3.698-1.207-.63-1.52 1.686-3.566c.18-.38.102-.83-.197-1.13l-2.41-2.41c-.3-.3-.77-.38-1.16-.18l-3.47 1.764-1.52-.63-1.33-3.715c-.14-.397-.52-.665-.94-.665h-3.42c-.43 0-.81.28-.95.69l-1.2 3.7-1.52.63-3.563-1.683c-.38-.18-.836-.1-1.134.196l-2.415 2.41c-.307.307-.38.775-.185 1.16l1.76 3.47-.63 1.52-3.712 1.33c-.4.14-.664.52-.664.94v3.416c0 .434.274.817.69.95l3.7 1.21.624 1.52-1.687 3.57c-.18.38-.1.834.2 1.133l2.41 2.417c.31.307.78.38 1.16.184l3.47-1.76 1.52.63 1.33 3.71c.147.397.52.66.94.66h3.42c.43 0 .813-.275.95-.687l1.205-3.696 1.52-.63 3.567 1.685c.38.18.84.1 1.137-.197l2.41-2.415c.306-.306.38-.773.186-1.16l-1.765-3.47.63-1.52 3.716-1.33c.394-.143.66-.52.66-.94v-3.415c0-.433-.278-.817-.69-.95zM16 148.597c-2.532 0-4.593-2.06-4.593-4.593 0-2.532 2.06-4.593 4.594-4.593 2.54 0 4.6 2.07 4.6 4.6s-2.06 4.6-4.59 4.6z"/><path fill="#008FE9" d="M31.31 205.274l-3.698-1.207-.63-1.52 1.686-3.566c.18-.38.102-.83-.197-1.13l-2.41-2.41c-.3-.3-.77-.38-1.16-.18l-3.47 1.764-1.52-.63-1.33-3.715c-.14-.397-.52-.665-.94-.665h-3.42c-.43 0-.81.28-.95.69l-1.2 3.7-1.52.63-3.563-1.683c-.38-.18-.836-.1-1.134.196l-2.415 2.41c-.307.307-.38.775-.185 1.16l1.76 3.47-.63 1.52-3.712 1.33c-.4.14-.664.52-.664.94v3.416c0 .434.274.817.69.95l3.7 1.21.624 1.52-1.687 3.57c-.18.38-.1.834.2 1.133l2.41 2.417c.31.307.78.38 1.16.184l3.47-1.76 1.52.63 1.33 3.71c.147.397.52.66.94.66h3.42c.43 0 .813-.275.95-.687l1.205-3.696 1.52-.63 3.567 1.685c.38.18.84.1 1.137-.197l2.41-2.415c.306-.306.38-.773.186-1.16l-1.765-3.47.63-1.52 3.716-1.33c.394-.143.66-.52.66-.94v-3.415c0-.433-.278-.817-.69-.95zM16 212.597c-2.532 0-4.593-2.06-4.593-4.593 0-2.532 2.06-4.593 4.594-4.593 2.54 0 4.6 2.07 4.6 4.6s-2.06 4.6-4.59 4.6z"/><path fill="#1C1F4E" d="M31.31 269.274l-3.698-1.207-.63-1.52 1.686-3.566c.18-.38.102-.83-.197-1.13l-2.41-2.41c-.3-.3-.77-.38-1.16-.18l-3.47 1.764-1.52-.63-1.33-3.715c-.14-.397-.52-.665-.94-.665h-3.42c-.43 0-.81.28-.95.69l-1.2 3.7-1.52.63-3.563-1.683c-.38-.18-.836-.1-1.134.196l-2.415 2.41c-.307.307-.38.775-.185 1.16l1.76 3.47-.63 1.52-3.712 1.33c-.4.14-.664.52-.664.94v3.416c0 .434.274.817.69.95l3.7 1.21.624 1.52-1.687 3.57c-.18.38-.1.834.2 1.133l2.41 2.417c.31.307.78.38 1.16.184l3.47-1.76 1.52.63 1.33 3.71c.147.397.52.66.94.66h3.42c.43 0 .813-.275.95-.687l1.205-3.696 1.52-.63 3.567 1.685c.38.18.84.1 1.137-.197l2.41-2.415c.306-.306.38-.773.186-1.16l-1.765-3.47.63-1.52 3.716-1.33c.394-.143.66-.52.66-.94v-3.415c0-.433-.278-.817-.69-.95zM16 276.597c-2.532 0-4.593-2.06-4.593-4.593 0-2.532 2.06-4.593 4.594-4.593 2.54 0 4.6 2.07 4.6 4.6s-2.06 4.6-4.59 4.6z"/></svg>
@@ -0,0 +1 @@
1
+ <svg baseProfile="tiny" xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M30.2 9.6H1.9c-1 0-1.9.7-1.9 1.8v9.2c0 1 .9 1.9 1.9 1.9h28.2c1.1 0 1.9-.9 1.9-2v-9.2c.1-1-.8-1.7-1.8-1.7zM9.7 16.7H7.8v1.8H6.3v-1.9H4.4v-1.5h1.9v-1.9h1.5v1.9h1.9v1.6zm12.2.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5c0 .9-.7 1.5-1.5 1.5zm4.9-.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5z"/><path fill="#333" d="M30.2 73.6H1.9c-1 0-1.9.7-1.9 1.8v9.2c0 1 .9 1.9 1.9 1.9h28.2c1.1 0 1.9-.9 1.9-2v-9.2c.1-1-.8-1.7-1.8-1.7zM9.7 80.7H7.8v1.8H6.3v-1.9H4.4v-1.5h1.9v-1.9h1.5v1.9h1.9v1.6zm12.2.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5c0 .9-.7 1.5-1.5 1.5zm4.9-.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5z"/><path fill="#97999A" d="M30.2 137.6H1.9c-1 0-1.9.7-1.9 1.8v9.2c0 1 .9 1.9 1.9 1.9h28.2c1.1 0 1.9-.9 1.9-2v-9.2c.1-1-.8-1.7-1.8-1.7zm-20.5 7.1H7.8v1.8H6.3v-1.9H4.4v-1.5h1.9v-1.9h1.5v1.9h1.9v1.6zm12.2.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5c0 .9-.7 1.5-1.5 1.5zm4.9-.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5z"/><path fill="#008FE9" d="M30.2 201.6H1.9c-1 0-1.9.7-1.9 1.8v9.2c0 1 .9 1.9 1.9 1.9h28.2c1.1 0 1.9-.9 1.9-2v-9.2c.1-1-.8-1.7-1.8-1.7zm-20.5 7.1H7.8v1.8H6.3v-1.9H4.4v-1.5h1.9v-1.9h1.5v1.9h1.9v1.6zm12.2.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5c0 .9-.7 1.5-1.5 1.5zm4.9-.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5z"/><path fill="#1C1F4E" d="M30.2 265.6H1.9c-1 0-1.9.7-1.9 1.8v9.2c0 1 .9 1.9 1.9 1.9h28.2c1.1 0 1.9-.9 1.9-2v-9.2c.1-1-.8-1.7-1.8-1.7zm-20.5 7.1H7.8v1.8H6.3v-1.9H4.4v-1.5h1.9v-1.9h1.5v1.9h1.9v1.6zm12.2.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5c0 .9-.7 1.5-1.5 1.5zm4.9-.9c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path d="M32 6.997C32 5.342 30.658 4 29.003 4H2.997C1.342 4 0 5.342 0 6.997v18.005C0 26.658 1.342 28 2.997 28h26.005C30.658 28 32 26.658 32 25.003V6.997zM29 25H3V15h26v10zm0-15H3V7h26v3zM5.96 23h3c.552 0 1-.448 1-1s-.448-1-1-1h-3c-.55 0-.998.448-.998 1s.447 1 1 1zm6.995 0h7.993c.552 0 1-.448 1-1s-.448-1-1-1h-7.993c-.552 0-1 .448-1 1s.448 1 1 1z" fill="#fff"/><path d="M32 70.997C32 69.342 30.658 68 29.003 68H2.997C1.342 68 0 69.342 0 70.997v18.005C0 90.658 1.342 92 2.997 92h26.005C30.658 92 32 90.658 32 89.003V70.997zM29 89H3V79h26v10zm0-15H3v-3h26v3zM5.96 87h3c.552 0 1-.448 1-1s-.448-1-1-1h-3c-.55 0-.998.448-.998 1s.447 1 1 1zm6.995 0h7.993c.552 0 1-.448 1-1s-.448-1-1-1h-7.993c-.552 0-1 .448-1 1s.448 1 1 1z" fill="#333"/><path d="M32 134.997c0-1.655-1.342-2.997-2.997-2.997H2.997C1.342 132 0 133.342 0 134.997v18.005C0 154.658 1.342 156 2.997 156h26.005c1.655 0 2.997-1.342 2.997-2.997v-18.006zM29 153H3v-10h26v10zm0-15H3v-3h26v3zM5.96 151h3c.552 0 1-.448 1-1s-.448-1-1-1h-3c-.55 0-.998.448-.998 1s.447 1 1 1zm6.995 0h7.993c.552 0 1-.448 1-1s-.448-1-1-1h-7.993c-.552 0-1 .448-1 1s.448 1 1 1z" fill="#97999A"/><path d="M32 198.997c0-1.655-1.342-2.997-2.997-2.997H2.997C1.342 196 0 197.342 0 198.997v18.005C0 218.658 1.342 220 2.997 220h26.005c1.655 0 2.997-1.342 2.997-2.997v-18.006zM29 217H3v-10h26v10zm0-15H3v-3h26v3zM5.96 215h3c.552 0 1-.448 1-1s-.448-1-1-1h-3c-.55 0-.998.448-.998 1s.447 1 1 1zm6.995 0h7.993c.552 0 1-.448 1-1s-.448-1-1-1h-7.993c-.552 0-1 .448-1 1s.448 1 1 1z" fill="#008FE9"/><path d="M32 262.997c0-1.655-1.342-2.997-2.997-2.997H2.997C1.342 260 0 261.342 0 262.997v18.005C0 282.658 1.342 284 2.997 284h26.005c1.655 0 2.997-1.342 2.997-2.997v-18.006zM29 281H3v-10h26v10zm0-15H3v-3h26v3zM5.96 279h3c.552 0 1-.448 1-1s-.448-1-1-1h-3c-.55 0-.998.448-.998 1s.447 1 1 1zm6.995 0h7.993c.552 0 1-.448 1-1s-.448-1-1-1h-7.993c-.552 0-1 .448-1 1s.448 1 1 1z" fill="#1C1F4E"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M26.5 9.61l-4.106-4.106L16 11.898 9.606 5.504 5.5 9.61l6.394 6.394L5.5 22.398l4.106 4.106L16 20.11l6.394 6.394 4.106-4.106-6.394-6.394z"/><path fill="#333" d="M26.5 73.61l-4.106-4.106L16 75.898l-6.394-6.394L5.5 73.61l6.394 6.394L5.5 86.398l4.106 4.106L16 84.11l6.394 6.394 4.106-4.106-6.394-6.394z"/><path fill="#97999A" d="M26.5 137.61l-4.106-4.106L16 139.898l-6.394-6.394L5.5 137.61l6.394 6.394-6.394 6.394 4.106 4.106L16 148.11l6.394 6.394 4.106-4.106-6.394-6.394z"/><path fill="#008FE9" d="M26.5 201.61l-4.106-4.106L16 203.898l-6.394-6.394L5.5 201.61l6.394 6.394-6.394 6.394 4.106 4.106L16 212.11l6.394 6.394 4.106-4.106-6.394-6.394z"/><path fill="#D64226" d="M26.5 265.61l-4.106-4.106L16 267.898l-6.394-6.394L5.5 265.61l6.394 6.394-6.394 6.394 4.106 4.106L16 276.11l6.394 6.394 4.106-4.106-6.394-6.394z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path d="M29 0H3C1.35 0 0 1.354 0 3.004V22h.01c.048 2 1.37 3 2.99 3h26c1.65 0 3-.972 3-2.622V3.004C32 1.354 30.65 0 29 0zm0 19H3V3h26v16zm-6.75 11H22v-3H10v3h-.25c-.553 0-1 .447-1 1s.447 1 1 1h12.5c.553 0 1-.447 1-1s-.447-1-1-1z" fill="#fff"/><path d="M29 64H3c-1.65 0-3 1.354-3 3.004V86h.01c.048 2 1.37 3 2.99 3h26c1.65 0 3-.972 3-2.622V67.004C32 65.354 30.65 64 29 64zm0 19H3V67h26v16zm-6.75 11H22v-3H10v3h-.25c-.553 0-1 .447-1 1s.447 1 1 1h12.5c.553 0 1-.447 1-1s-.447-1-1-1z" fill="#333"/><path d="M29 128H3c-1.65 0-3 1.354-3 3.004V150h.01c.048 2 1.37 3 2.99 3h26c1.65 0 3-.972 3-2.622v-19.373c0-1.65-1.35-3.005-3-3.005zm0 19H3v-16h26v16zm-6.75 11H22v-3H10v3h-.25c-.553 0-1 .447-1 1s.447 1 1 1h12.5c.553 0 1-.447 1-1s-.447-1-1-1z" fill="#97999A"/><path d="M29 192H3c-1.65 0-3 1.354-3 3.004V214h.01c.048 2 1.37 3 2.99 3h26c1.65 0 3-.972 3-2.622v-19.373c0-1.65-1.35-3.005-3-3.005zm0 19H3v-16h26v16zm-6.75 11H22v-3H10v3h-.25c-.553 0-1 .447-1 1s.447 1 1 1h12.5c.553 0 1-.447 1-1s-.447-1-1-1z" fill="#008FE9"/><path d="M29 256H3c-1.65 0-3 1.354-3 3.004V278h.01c.048 2 1.37 3 2.99 3h26c1.65 0 3-.972 3-2.622v-19.373c0-1.65-1.35-3.005-3-3.005zm0 19H3v-16h26v16zm-6.75 11H22v-3H10v3h-.25c-.553 0-1 .447-1 1s.447 1 1 1h12.5c.553 0 1-.447 1-1s-.447-1-1-1z" fill="#1C1F4E"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M19.893 14.876h1.382l-1.594 7.068-2.07-9.938h-3.33l-2.41 9.938-1.8-9.938H6.58l3.535 15.996h3.4l2.385-9.46 2.133 9.46h3.135l4.05-15.996h-5.325v2.87zm8.24-8.64l-4.465-4.464C22.696.8 20.775.004 19.4.004h-15c-1.375 0-2.5 1.125-2.5 2.5v27c0 1.375 1.125 2.5 2.5 2.5h23c1.375 0 2.5-1.125 2.5-2.5v-19c0-1.375-.795-3.296-1.767-4.268zM26.718 7.65c.098.098.195.218.29.354H21.9V2.896c.136.095.256.192.354.29l4.464 4.464zM27.9 29.504c0 .27-.23.5-.5.5h-23c-.27 0-.5-.23-.5-.5v-27c0-.27.23-.5.5-.5h15c.15 0 .32.02.5.053v7.947h7.947c.034.18.053.35.053.5v19z"/><path fill="#333" d="M19.893 78.876h1.382l-1.594 7.068-2.07-9.938h-3.33l-2.41 9.938-1.8-9.938H6.58l3.535 15.996h3.4l2.385-9.46 2.133 9.46h3.135l4.05-15.996h-5.325v2.87zm8.24-8.64l-4.465-4.464c-.972-.972-2.893-1.768-4.268-1.768h-15c-1.375 0-2.5 1.125-2.5 2.5v27c0 1.375 1.125 2.5 2.5 2.5h23c1.375 0 2.5-1.125 2.5-2.5v-19c0-1.375-.795-3.296-1.767-4.268zm-1.415 1.414c.098.098.195.218.29.354H21.9v-5.108c.136.095.256.192.354.29l4.464 4.464zM27.9 93.504c0 .27-.23.5-.5.5h-23c-.27 0-.5-.23-.5-.5v-27c0-.27.23-.5.5-.5h15c.15 0 .32.02.5.053v7.947h7.947c.034.18.053.35.053.5v19z"/><path fill="#97999A" d="M19.893 142.876h1.382l-1.594 7.068-2.07-9.938h-3.33l-2.41 9.938-1.8-9.938H6.58l3.535 15.996h3.4l2.385-9.46 2.133 9.46h3.135l4.05-15.996h-5.325v2.87zm8.24-8.64l-4.465-4.464c-.972-.972-2.893-1.768-4.268-1.768h-15c-1.375 0-2.5 1.125-2.5 2.5v27c0 1.375 1.125 2.5 2.5 2.5h23c1.375 0 2.5-1.125 2.5-2.5v-19c0-1.375-.795-3.296-1.767-4.268zm-1.415 1.414c.098.098.195.218.29.354H21.9v-5.108c.136.095.256.192.354.29l4.464 4.464zm1.182 21.854c0 .27-.23.5-.5.5h-23c-.27 0-.5-.23-.5-.5v-27c0-.27.23-.5.5-.5h15c.15 0 .32.02.5.053v7.947h7.947c.034.18.053.35.053.5v19z"/><path fill="#008FE9" d="M19.893 206.876h1.382l-1.594 7.068-2.07-9.938h-3.33l-2.41 9.938-1.8-9.938H6.58l3.535 15.996h3.4l2.385-9.46 2.133 9.46h3.135l4.05-15.996h-5.325v2.87zm8.24-8.64l-4.465-4.464c-.972-.972-2.893-1.768-4.268-1.768h-15c-1.375 0-2.5 1.125-2.5 2.5v27c0 1.375 1.125 2.5 2.5 2.5h23c1.375 0 2.5-1.125 2.5-2.5v-19c0-1.375-.795-3.296-1.767-4.268zm-1.415 1.414c.098.098.195.218.29.354H21.9v-5.108c.136.095.256.192.354.29l4.464 4.464zm1.182 21.854c0 .27-.23.5-.5.5h-23c-.27 0-.5-.23-.5-.5v-27c0-.27.23-.5.5-.5h15c.15 0 .32.02.5.053v7.947h7.947c.034.18.053.35.053.5v19z"/><path fill="#1C1F4E" d="M19.893 270.876h1.382l-1.594 7.068-2.07-9.938h-3.33l-2.41 9.938-1.8-9.938H6.58l3.535 15.996h3.4l2.385-9.46 2.133 9.46h3.135l4.05-15.996h-5.325v2.87zm8.24-8.64l-4.465-4.464c-.972-.972-2.893-1.768-4.268-1.768h-15c-1.375 0-2.5 1.125-2.5 2.5v27c0 1.375 1.125 2.5 2.5 2.5h23c1.375 0 2.5-1.125 2.5-2.5v-19c0-1.375-.795-3.296-1.767-4.268zm-1.415 1.414c.098.098.195.218.29.354H21.9v-5.108c.136.095.256.192.354.29l4.464 4.464zm1.182 21.854c0 .27-.23.5-.5.5h-23c-.27 0-.5-.23-.5-.5v-27c0-.27.23-.5.5-.5h15c.15 0 .32.02.5.053v7.947h7.947c.034.18.053.35.053.5v19z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M15.9 29.656L31.9 2h-32l16 27.656z"/><path fill="#333" d="M15.9 93.656L31.9 66h-32l16 27.656z"/><path fill="#97999A" d="M15.9 157.656L31.9 130h-32l16 27.656z"/><path fill="#008FE9" d="M15.9 221.656L31.9 194h-32l16 27.656z"/><path fill="#1C1F4E" d="M15.9 285.656L31.9 258h-32l16 27.656z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M13.166 15.992c-.277-.99-.152-2.03.353-2.93.14-.25.31-.475.5-.684-.4-.432-.7-.955-.86-1.542-.28-.99-.15-2.03.35-2.93.03-.065.082-.12.122-.182-.706-.997-1.47-1.93-2.29-2.78-1.08-1.13-2.25-2.137-3.47-3.032-.5-.366-1.01-.715-1.53-1.045-.4-.255-.786-.51-1.195-.74-.18-.1-.39-.168-.576-.08-.056.027-.11.068-.153.12-.02.023-.035.047-.05.073-.158.253-.136.614-.083.93.3 1.776.12 3.965-.16 5.735-.437 2.774-1.356 5.403-2.55 7.783C.014 17.806-.35 21.702.32 25.183c.502 2.625 2.087 4.616 4.093 5.843-.06-.094-.128-.183-.18-.285-1.488-2.82-.444-6.08.794-8.69.633-1.33 1.36-2.62 1.93-3.99.283-.68.502-1.42.64-2.17.114-.63.158-1.37.085-2.01-.026-.23 0-.51.163-.62.084-.05.184-.04.276-.02.56.13 1.04.626 1.49 1.026.56.49 1.07 1.05 1.54 1.66.49.63.93 1.306 1.34 2.007 1.78 3.11 2.11 7.14 1.2 10.647-.32 1.24-.87 2.522-1.7 3.443 2.182-.707 3.61-2.18 4.532-4.17C15.62 27.1 15 26 15 24.765V23.16c0-1.464 1-2.747 2-3.444V18.9c0-.04-.185-.072-.268-.09-1.683-.048-3.12-1.196-3.566-2.818zm18.77-5.24c-.276-.986-1.297-1.562-2.283-1.287L16.377 13.17c-.984.273-1.56 1.298-1.285 2.283.226.82.972 1.453 1.783 1.453.02 0 .043.094.063.094h.016c.08 0 .863.118 1.523.53.22.136.413.47.588.47H19v2h3v-2.142c0-.36-.395-.69-.588-.98-.26-.393-.61-.718-.92-.99l6.098-1.71 1.075.983c-.074.04-.156.08-.23.13-.597.35-1.207.97-1.83 1.6-.132.13-.605.5-.605.98V21h-5.893C18.002 21 17 22.056 17 23.16v1.6c0 1.106 1 2 2 2v2.244C19 30.66 20.45 32 22.107 32h2.844c1.66 0 3.05-1.34 3.05-2.996v-2.246c1-.017 2-.903 2-1.997v-1.6c0-1.1-.97-2.16-2.08-2.16H28v-3.14c0-.36.76-.63 1.183-.79.265-.1.498-.17.67-.21.084-.02.144-.03.185-.03l.036-.007c.46-.05.847-.37.99-.812.14-.44.008-.923-.334-1.234l-1.477-1.332 1.395-.39c.986-.273 1.56-1.296 1.287-2.282zm-16.17-4.627c.315.237.705.37 1.11.37.164 0 .332-.022.5-.068l9.883-2.734c.12-.035.24-.08.35-.137.21-.113.4-.266.56-.447.07-.1.14-.19.2-.3.11-.21.19-.44.22-.68.03-.24.01-.49-.06-.736-.05-.185-.136-.35-.235-.504-.018-.03-.034-.057-.054-.084-.1-.14-.22-.267-.356-.37l-.08-.06c-.145-.1-.298-.186-.464-.243 0-.004-.003-.006-.006-.006-.17-.056-.346-.08-.527-.086-.02 0-.04-.01-.06-.01-.02 0-.036.007-.05.008-.15.005-.3.02-.45.063L16.37 2.85c-.983.275-1.56 1.298-1.286 2.286.115.41.36.748.675.985zm-.674 4.17c.226.82.972 1.36 1.783 1.36.164 0 .33-.024.498-.07L30.648 7.88c.986-.274 1.56-1.296 1.287-2.282-.275-.988-1.296-1.565-2.282-1.29L16.377 8.012c-.984.277-1.56 1.3-1.285 2.286z"/><path fill="#333" d="M13.166 79.992c-.277-.99-.152-2.03.353-2.93.14-.25.31-.475.5-.684-.4-.432-.7-.955-.86-1.542-.28-.99-.15-2.03.35-2.93.03-.065.082-.12.122-.182-.706-.997-1.47-1.93-2.29-2.78-1.09-1.13-2.258-2.137-3.477-3.032-.5-.368-1.01-.717-1.53-1.047-.398-.255-.785-.51-1.194-.74-.18-.1-.39-.17-.575-.08-.055.027-.11.068-.152.12-.02.022-.034.047-.05.073-.157.253-.135.614-.08.93.3 1.776.12 3.965-.16 5.735-.44 2.774-1.36 5.403-2.55 7.783C.01 81.806-.35 85.702.32 89.183c.503 2.625 2.088 4.616 4.094 5.843-.06-.094-.128-.183-.18-.285-1.488-2.82-.444-6.08.794-8.69.633-1.33 1.36-2.62 1.93-3.99.283-.68.502-1.42.64-2.17.114-.63.158-1.37.085-2.01-.026-.23 0-.51.163-.62.084-.05.184-.04.276-.02.558.13 1.033.626 1.486 1.026.554.49 1.068 1.05 1.54 1.66.49.63.93 1.306 1.333 2.007 1.79 3.11 2.11 7.14 1.2 10.647-.32 1.24-.87 2.522-1.7 3.443 2.19-.707 3.61-2.18 4.54-4.17C15.62 91.1 15 90 15 88.765V87.16c0-1.464 1-2.747 2-3.444V82.9c0-.04-.185-.072-.268-.09-1.683-.048-3.12-1.196-3.566-2.818zm18.77-5.24c-.276-.986-1.297-1.562-2.283-1.287L16.377 77.17c-.984.273-1.56 1.298-1.285 2.283.226.82.972 1.453 1.783 1.453.02 0 .043.094.063.094h.016c.08 0 .863.118 1.523.53.22.136.413.47.588.47H19v2h3v-2.142c0-.36-.395-.69-.588-.98-.26-.393-.61-.718-.92-.99l6.098-1.71 1.075.983c-.074.04-.156.08-.23.13-.597.35-1.207.97-1.83 1.6-.132.13-.605.5-.605.98V85h-5.893C18.002 85 17 86.056 17 87.16v1.6c0 1.106 1 2 2 2v2.244C19 94.66 20.45 96 22.107 96h2.844c1.66 0 3.05-1.34 3.05-2.996v-2.246c1-.017 2-.903 2-1.997v-1.6c0-1.1-.97-2.16-2.08-2.16H28v-3.14c0-.36.76-.63 1.183-.79.265-.1.498-.17.67-.21.084-.02.144-.03.185-.03l.036-.007c.46-.05.847-.37.99-.812.14-.44.008-.923-.334-1.234l-1.477-1.332 1.395-.39c.986-.273 1.56-1.296 1.287-2.282zm-16.17-4.627c.315.237.705.37 1.11.37.164 0 .332-.022.5-.068l9.883-2.734c.12-.035.24-.08.35-.137.21-.113.4-.266.56-.447.07-.1.14-.19.2-.3.11-.21.19-.44.22-.68.03-.24.01-.49-.06-.736-.05-.185-.136-.35-.235-.504-.018-.03-.034-.057-.054-.084-.1-.14-.22-.267-.356-.37l-.08-.06c-.145-.1-.298-.186-.464-.243 0-.004-.003-.006-.006-.006-.17-.056-.346-.08-.527-.086-.02 0-.04-.01-.06-.01-.02 0-.036.007-.05.008-.15.005-.3.02-.45.063l-9.888 2.74c-.985.277-1.56 1.3-1.288 2.288.118.41.36.746.678.983zm-.674 4.17c.226.82.972 1.36 1.783 1.36.164 0 .33-.024.498-.07l13.275-3.704c.986-.27 1.56-1.29 1.287-2.28-.275-.99-1.296-1.56-2.282-1.29l-13.276 3.71c-.984.28-1.56 1.3-1.285 2.29z"/><path fill="#97999A" d="M13.166 143.992c-.277-.99-.152-2.03.353-2.93.14-.25.31-.475.5-.684-.4-.432-.7-.955-.86-1.542-.28-.99-.15-2.03.35-2.93.03-.065.082-.12.122-.182-.706-.997-1.47-1.93-2.29-2.78-1.09-1.13-2.258-2.137-3.477-3.032-.5-.368-1.01-.717-1.53-1.047-.398-.255-.785-.51-1.194-.74-.18-.1-.39-.17-.575-.08-.055.027-.11.068-.152.12-.02.022-.034.047-.05.073-.157.253-.135.614-.08.93.3 1.776.12 3.965-.16 5.735-.44 2.774-1.36 5.403-2.55 7.783-1.57 3.12-1.93 7.016-1.26 10.497.5 2.625 2.086 4.616 4.09 5.843-.06-.094-.126-.183-.18-.285-1.486-2.82-.442-6.08.796-8.69.633-1.33 1.36-2.62 1.93-3.99.283-.68.502-1.42.64-2.17.114-.63.16-1.37.085-2.01-.026-.23 0-.51.163-.62.082-.05.182-.04.274-.02.56.13 1.032.626 1.485 1.026.554.49 1.07 1.05 1.54 1.66.49.63.93 1.306 1.333 2.007 1.78 3.11 2.11 7.14 1.2 10.647-.32 1.24-.878 2.522-1.708 3.443 2.183-.707 3.61-2.18 4.533-4.17-.89-.74-1.51-1.84-1.51-3.077v-1.6c0-1.467 1-2.75 2-3.447v-.818c0-.04-.188-.07-.27-.09-1.684-.048-3.12-1.196-3.567-2.818zm18.77-5.24c-.276-.986-1.297-1.562-2.283-1.287l-13.276 3.704c-.984.27-1.56 1.29-1.285 2.28.226.82.972 1.45 1.783 1.45.02 0 .043.09.063.09h.016c.08 0 .863.113 1.523.53.22.13.413.47.59.47H19v2h3v-2.147c0-.36-.395-.69-.588-.98-.26-.393-.61-.718-.92-.99l6.098-1.71 1.075.983c-.074.04-.156.08-.23.125-.597.35-1.207.97-1.83 1.594-.13.13-.604.5-.604.98V149h-5.89c-1.1 0-2.1 1.056-2.1 2.16v1.6c0 1.106 1 2 2 2v2.244C19 158.66 20.45 160 22.11 160h2.844c1.657 0 3.05-1.34 3.05-2.996v-2.246c1-.017 2-.903 2-1.997v-1.6c0-1.1-.976-2.16-2.08-2.16H28v-3.14c0-.36.76-.63 1.183-.79.265-.1.498-.17.67-.21.084-.02.144-.03.185-.03l.036-.007c.46-.05.847-.37.99-.812.14-.44.008-.923-.334-1.234l-1.477-1.332 1.395-.39c.986-.273 1.56-1.296 1.287-2.282zm-16.17-4.627c.315.237.705.37 1.11.37.164 0 .332-.022.5-.068l9.883-2.734c.12-.035.24-.08.35-.137.21-.113.4-.266.56-.447.07-.1.14-.19.2-.3.11-.21.19-.44.22-.68.03-.24.01-.49-.06-.736-.05-.185-.136-.35-.235-.504-.018-.03-.034-.057-.054-.084-.1-.14-.22-.267-.356-.37l-.08-.06c-.145-.1-.298-.186-.464-.243 0-.004-.003-.006-.006-.006-.17-.056-.346-.08-.527-.086-.02 0-.04-.01-.06-.01-.02 0-.036.007-.05.008-.15.005-.3.02-.45.063l-9.888 2.736c-.98.274-1.56 1.297-1.286 2.285.115.41.36.748.675.985zm-.674 4.17c.226.82.972 1.36 1.783 1.36.164 0 .33-.024.498-.07l13.275-3.704c.986-.27 1.56-1.29 1.287-2.28-.275-.99-1.296-1.56-2.282-1.29l-13.276 3.71c-.984.28-1.56 1.3-1.285 2.29z"/><path fill="#008FE9" d="M13.166 207.992c-.277-.99-.152-2.03.353-2.93.14-.25.31-.475.5-.684-.4-.432-.7-.955-.86-1.542-.28-.99-.15-2.03.35-2.93.03-.065.082-.12.122-.182-.706-.997-1.47-1.93-2.29-2.78-1.09-1.13-2.258-2.137-3.477-3.032-.5-.368-1.01-.717-1.53-1.047-.398-.255-.785-.51-1.194-.74-.18-.1-.39-.17-.575-.08-.055.027-.11.068-.152.12-.02.022-.034.047-.05.073-.157.253-.135.614-.08.93.3 1.776.12 3.965-.16 5.735-.44 2.774-1.36 5.403-2.55 7.783-1.57 3.12-1.93 7.016-1.26 10.497.5 2.625 2.086 4.616 4.09 5.843-.06-.094-.126-.183-.18-.285-1.486-2.82-.442-6.08.796-8.69.633-1.33 1.36-2.62 1.93-3.99.283-.68.502-1.42.64-2.17.114-.63.16-1.37.085-2.01-.026-.23 0-.51.163-.62.082-.05.182-.04.274-.02.56.13 1.032.626 1.485 1.026.554.49 1.07 1.05 1.54 1.66.49.63.93 1.306 1.333 2.007 1.78 3.11 2.11 7.14 1.2 10.647-.32 1.24-.878 2.522-1.708 3.443 2.183-.707 3.61-2.18 4.533-4.17-.89-.74-1.51-1.84-1.51-3.077v-1.6c0-1.467 1-2.75 2-3.447v-.818c0-.04-.188-.07-.27-.09-1.684-.048-3.12-1.196-3.567-2.818zm18.77-5.24c-.276-.986-1.297-1.562-2.283-1.287l-13.276 3.704c-.984.27-1.56 1.29-1.285 2.28.226.82.972 1.45 1.783 1.45.02 0 .043.09.063.09h.016c.08 0 .863.113 1.523.53.22.13.413.47.59.47H19v2h3v-2.147c0-.36-.395-.69-.588-.98-.26-.393-.61-.718-.92-.99l6.098-1.71 1.075.983c-.074.04-.156.08-.23.125-.597.35-1.207.97-1.83 1.594-.13.13-.604.5-.604.98V213h-5.89c-1.1 0-2.1 1.056-2.1 2.16v1.6c0 1.106 1 2 2 2v2.244C19 222.66 20.45 224 22.11 224h2.844c1.657 0 3.05-1.34 3.05-2.996v-2.246c1-.017 2-.903 2-1.997v-1.6c0-1.1-.976-2.16-2.08-2.16H28v-3.14c0-.36.76-.63 1.183-.79.265-.1.498-.17.67-.21.084-.02.144-.03.185-.03l.036-.007c.46-.05.847-.37.99-.812.14-.44.008-.923-.334-1.234l-1.477-1.332 1.395-.39c.986-.273 1.56-1.296 1.287-2.282zm-16.17-4.627c.315.237.705.37 1.11.37.164 0 .332-.022.5-.068l9.883-2.734c.12-.035.24-.08.35-.137.21-.113.4-.266.56-.447.07-.1.14-.19.2-.3.11-.21.19-.44.22-.68.03-.24.01-.49-.06-.736-.05-.185-.136-.35-.235-.504-.018-.03-.034-.057-.054-.084-.1-.14-.22-.267-.356-.37l-.08-.06c-.145-.1-.298-.186-.464-.243 0-.004-.003-.006-.006-.006-.17-.056-.346-.08-.527-.086-.02 0-.04-.01-.06-.01-.02 0-.036.007-.05.008-.15.005-.3.02-.45.063l-9.888 2.736c-.98.274-1.56 1.297-1.286 2.285.115.41.36.748.675.985zm-.674 4.17c.226.82.972 1.36 1.783 1.36.164 0 .33-.024.498-.07l13.275-3.704c.986-.27 1.56-1.29 1.287-2.28-.275-.99-1.296-1.56-2.282-1.29l-13.276 3.71c-.984.28-1.56 1.3-1.285 2.29z"/><path fill="#1C1F4E" d="M13.166 271.992c-.277-.99-.152-2.03.353-2.93.14-.25.31-.475.5-.684-.4-.432-.7-.955-.86-1.542-.28-.99-.15-2.03.35-2.93.03-.065.082-.12.122-.182-.706-.997-1.47-1.93-2.29-2.78-1.09-1.13-2.258-2.137-3.477-3.032-.5-.368-1.01-.717-1.53-1.047-.398-.255-.785-.51-1.194-.74-.18-.1-.39-.17-.575-.08-.055.027-.11.068-.152.12-.02.022-.034.047-.05.073-.157.253-.135.614-.08.93.3 1.776.12 3.965-.16 5.735-.44 2.774-1.36 5.403-2.55 7.783-1.57 3.12-1.93 7.016-1.26 10.497.5 2.625 2.086 4.616 4.09 5.843-.06-.094-.126-.183-.18-.285-1.486-2.82-.442-6.08.796-8.69.633-1.33 1.36-2.62 1.93-3.99.283-.68.502-1.42.64-2.17.114-.63.16-1.37.085-2.01-.026-.23 0-.51.163-.62.082-.05.182-.04.274-.02.56.13 1.032.626 1.485 1.026.554.49 1.07 1.05 1.54 1.66.49.63.93 1.306 1.333 2.007 1.78 3.11 2.11 7.14 1.2 10.647-.32 1.24-.878 2.522-1.708 3.443 2.183-.707 3.61-2.18 4.533-4.17-.89-.74-1.51-1.84-1.51-3.077v-1.6c0-1.467 1-2.75 2-3.447v-.818c0-.04-.188-.07-.27-.09-1.684-.048-3.12-1.196-3.567-2.818zm18.77-5.24c-.276-.986-1.297-1.562-2.283-1.287l-13.276 3.704c-.984.27-1.56 1.29-1.285 2.28.226.82.972 1.45 1.783 1.45.02 0 .043.09.063.09h.016c.08 0 .863.113 1.523.53.22.13.413.47.59.47H19v2h3v-2.147c0-.36-.395-.69-.588-.98-.26-.393-.61-.718-.92-.99l6.098-1.71 1.075.983c-.074.04-.156.08-.23.125-.597.35-1.207.97-1.83 1.594-.13.13-.604.5-.604.98V277h-5.89c-1.1 0-2.1 1.056-2.1 2.16v1.6c0 1.106 1 2 2 2v2.244C19 286.66 20.45 288 22.11 288h2.844c1.657 0 3.05-1.34 3.05-2.996v-2.246c1-.017 2-.903 2-1.997v-1.6c0-1.1-.976-2.16-2.08-2.16H28v-3.14c0-.36.76-.63 1.183-.79.265-.1.498-.17.67-.21.084-.02.144-.03.185-.03l.036-.007c.46-.05.847-.37.99-.812.14-.44.008-.923-.334-1.234l-1.477-1.332 1.395-.39c.986-.273 1.56-1.296 1.287-2.282zm-16.17-4.627c.315.237.705.37 1.11.37.164 0 .332-.022.5-.068l9.883-2.734c.12-.035.24-.08.35-.137.21-.113.4-.266.56-.447.07-.1.14-.19.2-.3.11-.21.19-.44.22-.68.03-.24.01-.49-.06-.736-.05-.185-.136-.35-.235-.504-.018-.03-.034-.057-.054-.084-.1-.14-.22-.267-.356-.37l-.08-.06c-.145-.1-.298-.186-.464-.243 0-.004-.003-.006-.006-.006-.17-.056-.346-.08-.527-.086-.02 0-.04-.01-.06-.01-.02 0-.036.007-.05.008-.15.005-.3.02-.45.063l-9.888 2.736c-.98.274-1.56 1.297-1.286 2.285.115.41.36.748.675.985zm-.674 4.17c.226.82.972 1.36 1.783 1.36.164 0 .33-.024.498-.07l13.275-3.704c.986-.27 1.56-1.29 1.287-2.28-.275-.99-1.296-1.56-2.282-1.29l-13.276 3.71c-.984.28-1.56 1.3-1.285 2.29z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path d="M7.567 10.265c.227.822.973 1.36 1.785 1.36.164 0 .332-.023.498-.07l13.294-3.708c.988-.276 1.563-1.3 1.29-2.287-.276-.99-1.3-1.567-2.286-1.29L8.854 7.976c-.985.276-1.563 1.3-1.287 2.288zM9.354 6.46c.164 0 .332-.023.498-.07l9.9-2.737c.987-.277 1.563-1.3 1.288-2.29-.274-.987-1.298-1.566-2.285-1.29l-9.9 2.74c-.985.274-1.563 1.3-1.29 2.288.23.82.977 1.36 1.79 1.36zM22.15 9.433l-13.296 3.71c-.985.274-1.563 1.3-1.287 2.286.227.82.973 1.46 1.785 1.46.022 0 .043.1.064.1h.016c.08 0 .864.114 1.525.53.22.132.413.47.59.47H12v2h2v-2.16c0-.36-.153-.69-.347-.98-.26-.397-.49-.72-.8-.997l6.167-1.71 1.107.982c-.075.04-.14.08-.216.12-.59.35-1.08.86-1.56 1.595-.19.294-.34.624-.34.983V21H11.6c-1.12 0-1.6 1.04-1.6 2.148v1.604c0 1.106 0 2.003 2 2.003V29c0 1.66.932 3 2.592 3h2.848C19.1 32 20 30.66 20 29v-2.25c2-.016 2-.903 2-2v-1.603C22 22.04 21.52 21 20.413 21H20v-3.163c1-.365 1.008-.63 1.432-.797.265-.107.622-.172.793-.21.085-.02.207-.03.248-.038.018-.003.06-.005.066-.006.46-.05.86-.372 1-.813.14-.442.01-.928-.33-1.24L21.74 13.4l1.4-.39c.987-.274 1.563-1.3 1.29-2.287-.276-.99-1.3-1.566-2.285-1.29z" fill="#fff"/><path d="M7.567 74.265c.227.822.973 1.36 1.785 1.36.164 0 .332-.023.498-.07l13.294-3.708c.988-.276 1.563-1.3 1.29-2.287-.276-.99-1.3-1.567-2.286-1.29L8.854 71.976c-.985.276-1.563 1.3-1.287 2.288zm1.787-3.805c.164 0 .332-.023.498-.07l9.9-2.737c.987-.277 1.563-1.3 1.288-2.29-.274-.987-1.298-1.566-2.285-1.29l-9.9 2.74c-.985.274-1.563 1.3-1.29 2.288.23.82.977 1.36 1.79 1.36zm12.796 2.973l-13.296 3.71c-.985.274-1.563 1.3-1.287 2.286.227.82.973 1.46 1.785 1.46.022 0 .043.1.064.1h.016c.08 0 .864.114 1.525.53.22.132.413.47.59.47H12v2h2v-2.16c0-.36-.153-.69-.347-.98-.26-.397-.49-.72-.8-.997l6.167-1.71 1.107.982c-.075.04-.14.08-.216.12-.59.35-1.08.86-1.56 1.595-.19.294-.34.624-.34.983V85H11.6c-1.12 0-1.6 1.04-1.6 2.148v1.604c0 1.106 0 2.003 2 2.003V93c0 1.66.932 3 2.592 3h2.848C19.1 96 20 94.66 20 93v-2.25c2-.016 2-.903 2-2v-1.603C22 86.04 21.52 85 20.413 85H20v-3.163c1-.365 1.008-.63 1.432-.797.265-.107.622-.172.793-.21.085-.02.207-.03.248-.038.018-.003.06-.005.066-.006.46-.05.86-.372 1-.813.14-.442.01-.928-.33-1.24L21.74 77.4l1.4-.39c.987-.274 1.563-1.3 1.29-2.287-.276-.99-1.3-1.566-2.285-1.29z" fill="#333"/><path d="M7.567 138.265c.227.822.973 1.36 1.785 1.36.164 0 .332-.023.498-.07l13.294-3.708c.988-.276 1.563-1.3 1.29-2.287-.276-.99-1.3-1.567-2.286-1.29l-13.295 3.708c-.984.275-1.562 1.3-1.286 2.287zm1.787-3.805c.164 0 .332-.023.498-.07l9.9-2.737c.987-.277 1.563-1.3 1.288-2.29-.274-.987-1.298-1.566-2.285-1.29l-9.9 2.74c-.985.274-1.563 1.3-1.29 2.288.23.82.977 1.36 1.79 1.36zm12.796 2.973l-13.296 3.71c-.985.274-1.563 1.3-1.287 2.286.227.82.973 1.46 1.785 1.46.022 0 .043.1.064.1h.016c.08 0 .864.114 1.525.53.22.132.413.47.59.47H12v2h2v-2.167c0-.36-.153-.69-.347-.98-.26-.394-.49-.72-.8-.994l6.167-1.71 1.107.982c-.075.04-.14.08-.216.122-.59.35-1.08.86-1.56 1.596-.19.295-.34.625-.34.984V149H11.6c-1.108 0-1.59 1.04-1.59 2.148v1.604c0 1.106 0 2.003 2 2.003V157c0 1.66.932 3 2.592 3h2.848c1.66 0 2.56-1.34 2.56-3v-2.25c2-.016 2-.903 2-2v-1.603c0-1.106-.48-2.148-1.586-2.148H20v-3.17c1-.37 1.008-.63 1.432-.8.265-.11.622-.177.793-.21.085-.02.207-.03.248-.04l.066-.01c.46-.05.86-.37 1-.812.14-.443.01-.93-.33-1.24l-1.48-1.335 1.4-.39c.988-.275 1.564-1.3 1.29-2.288-.276-.988-1.3-1.565-2.285-1.29z" fill="#97999A"/><path d="M7.567 202.265c.227.822.973 1.36 1.785 1.36.164 0 .332-.023.498-.07l13.294-3.708c.988-.276 1.563-1.3 1.29-2.287-.276-.99-1.3-1.567-2.286-1.29l-13.295 3.708c-.984.275-1.562 1.3-1.286 2.287zm1.787-3.805c.164 0 .332-.023.498-.07l9.9-2.737c.987-.277 1.563-1.3 1.288-2.29-.274-.987-1.298-1.566-2.285-1.29l-9.9 2.74c-.985.274-1.563 1.3-1.29 2.288.23.82.977 1.36 1.79 1.36zm12.796 2.973l-13.296 3.71c-.985.274-1.563 1.3-1.287 2.286.227.82.973 1.46 1.785 1.46.022 0 .043.1.064.1h.016c.08 0 .864.114 1.525.53.22.132.413.47.59.47H12v2h2v-2.167c0-.36-.153-.69-.347-.98-.26-.394-.49-.72-.8-.994l6.167-1.71 1.107.982c-.075.04-.14.08-.216.122-.59.35-1.08.86-1.56 1.596-.19.295-.34.625-.34.984V213H11.6c-1.108 0-1.59 1.04-1.59 2.148v1.604c0 1.106 0 2.003 2 2.003V221c0 1.66.932 3 2.592 3h2.848c1.66 0 2.56-1.34 2.56-3v-2.25c2-.016 2-.903 2-2v-1.603c0-1.106-.48-2.148-1.586-2.148H20v-3.17c1-.37 1.008-.63 1.432-.8.265-.11.622-.177.793-.21.085-.02.207-.03.248-.04l.066-.01c.46-.05.86-.37 1-.812.14-.443.01-.93-.33-1.24l-1.48-1.335 1.4-.39c.988-.275 1.564-1.3 1.29-2.288-.276-.988-1.3-1.565-2.285-1.29z" fill="#008FE9"/><path d="M7.567 266.265c.227.822.973 1.36 1.785 1.36.164 0 .332-.023.498-.07l13.294-3.708c.988-.276 1.563-1.3 1.29-2.287-.276-.99-1.3-1.567-2.286-1.29l-13.295 3.708c-.984.275-1.562 1.3-1.286 2.287zm1.787-3.805c.164 0 .332-.023.498-.07l9.9-2.737c.987-.277 1.563-1.3 1.288-2.29-.274-.987-1.298-1.566-2.285-1.29l-9.9 2.74c-.985.274-1.563 1.3-1.29 2.288.23.82.977 1.36 1.79 1.36zm12.796 2.973l-13.296 3.71c-.985.274-1.563 1.3-1.287 2.286.227.82.973 1.46 1.785 1.46.022 0 .043.1.064.1h.016c.08 0 .864.114 1.525.53.22.132.413.47.59.47H12v2h2v-2.167c0-.36-.153-.69-.347-.98-.26-.394-.49-.72-.8-.994l6.167-1.71 1.107.982c-.075.04-.14.08-.216.122-.59.35-1.08.86-1.56 1.596-.19.295-.34.625-.34.984V277H11.6c-1.108 0-1.59 1.04-1.59 2.148v1.604c0 1.106 0 2.003 2 2.003V285c0 1.66.932 3 2.592 3h2.848c1.66 0 2.56-1.34 2.56-3v-2.25c2-.016 2-.903 2-2v-1.603c0-1.106-.48-2.148-1.586-2.148H20v-3.17c1-.37 1.008-.63 1.432-.8.265-.11.622-.177.793-.21.085-.02.207-.03.248-.04l.066-.01c.46-.05.86-.37 1-.812.14-.443.01-.93-.33-1.24l-1.48-1.335 1.4-.39c.988-.275 1.564-1.3 1.29-2.288-.276-.988-1.3-1.565-2.285-1.29z" fill="#1C1F4E"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M31.562 4.464c-.377-.626-.974-1.098-1.685-1.317C29.597 3.062 29.307 3 29 3H3c-.307 0-.598.062-.877.148-.712.22-1.308.69-1.685 1.316C.166 4.914 0 5.44 0 6.004v20c0 .307.06.598.146.877.22.72.688 1.31 1.313 1.69.45.27.97.44 1.54.44h26c.56 0 1.09-.16 1.54-.43.62-.38 1.09-.974 1.31-1.685.08-.28.14-.57.14-.876v-20c0-.568-.17-1.09-.44-1.54zM27.022 6L19 14.024l-1.5 1.5-.793.795c-.39.39-1.023.39-1.414 0l-.793-.8-1.5-1.5L4.978 6H27.02zM3 7.026l8.5 8.5-8.5 8.5v-17zM4.02 26L13 17.024l1.586 1.587c.78.79 2.047.79 2.828.01L19 17.03 27.978 26H4.02zM29 24.026l-8.5-8.5 8.5-8.5v17z"/><path fill="#333" d="M31.562 68.464c-.377-.626-.974-1.098-1.685-1.317-.28-.085-.57-.147-.877-.147H3c-.307 0-.598.062-.877.148-.712.22-1.308.69-1.685 1.316-.272.45-.438.975-.438 1.54v20c0 .307.06.598.146.877.22.72.688 1.31 1.313 1.69.45.27.97.44 1.54.44h26c.56 0 1.09-.16 1.54-.43.62-.38 1.09-.974 1.31-1.685.08-.28.14-.57.14-.876v-20c0-.568-.17-1.09-.44-1.54zM27.022 70L19 78.024l-1.5 1.5-.793.795c-.39.39-1.023.39-1.414 0l-.793-.8-1.5-1.5L4.978 70H27.02zM3 71.026l8.5 8.5-8.5 8.5v-17zM4.02 90L13 81.024l1.586 1.587c.78.79 2.047.79 2.828.01L19 81.03 27.978 90H4.02zM29 88.026l-8.5-8.5 8.5-8.5v17z"/><path fill="#97999A" d="M31.562 132.464c-.377-.626-.974-1.098-1.685-1.317-.28-.085-.57-.147-.877-.147H3c-.307 0-.598.062-.877.148-.712.22-1.308.69-1.685 1.316-.272.45-.438.975-.438 1.54v20c0 .307.06.598.146.877.22.72.688 1.31 1.313 1.69.45.27.97.44 1.54.44h26c.56 0 1.09-.16 1.54-.43.62-.38 1.09-.974 1.31-1.685.08-.28.14-.57.14-.875v-20c0-.567-.17-1.09-.44-1.54zM27.022 134L19 142.024l-1.5 1.5-.793.795c-.39.39-1.023.39-1.414 0l-.793-.8-1.5-1.5L4.978 134H27.02zM3 135.026l8.5 8.5-8.5 8.5v-17zM4.02 154l8.98-8.976 1.586 1.587c.78.79 2.047.79 2.828.01L19 145.03l8.978 8.97H4.02zM29 152.026l-8.5-8.5 8.5-8.5v17z"/><path fill="#008FE9" d="M31.562 196.464c-.377-.626-.974-1.098-1.685-1.317-.28-.085-.57-.147-.877-.147H3c-.307 0-.598.062-.877.148-.712.22-1.308.69-1.685 1.316-.272.45-.438.975-.438 1.54v20c0 .307.06.598.146.877.22.72.688 1.31 1.313 1.69.45.27.97.44 1.54.44h26c.56 0 1.09-.16 1.54-.43.62-.38 1.09-.974 1.31-1.685.08-.28.14-.57.14-.875v-20c0-.567-.17-1.09-.44-1.54zM27.022 198L19 206.024l-1.5 1.5-.793.795c-.39.39-1.023.39-1.414 0l-.793-.8-1.5-1.5L4.978 198H27.02zM3 199.026l8.5 8.5-8.5 8.5v-17zM4.02 218l8.98-8.976 1.586 1.587c.78.79 2.047.79 2.828.01L19 209.03l8.978 8.97H4.02zM29 216.026l-8.5-8.5 8.5-8.5v17z"/><path fill="#1C1F4E" d="M31.562 260.464c-.377-.626-.974-1.098-1.685-1.317-.28-.085-.57-.147-.877-.147H3c-.307 0-.598.062-.877.148-.712.22-1.308.69-1.685 1.316-.272.45-.438.975-.438 1.54v20c0 .307.06.598.146.877.22.72.688 1.31 1.313 1.69.45.27.97.44 1.54.44h26c.56 0 1.09-.16 1.54-.43.62-.38 1.09-.974 1.31-1.685.08-.28.14-.57.14-.875v-20c0-.567-.17-1.09-.44-1.54zM27.022 262L19 270.024l-1.5 1.5-.793.795c-.39.39-1.023.39-1.414 0l-.793-.8-1.5-1.5L4.978 262H27.02zM3 263.026l8.5 8.5-8.5 8.5v-17zM4.02 282l8.98-8.976 1.586 1.587c.78.79 2.047.79 2.828.01L19 273.03l8.978 8.97H4.02zM29 280.026l-8.5-8.5 8.5-8.5v17z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path d="M7.874 16.004c4.388 0 7.945-3.582 7.945-8s-3.56-8-7.95-8c-4.39 0-7.95 3.582-7.95 8s3.553 8 7.94 8zM4.636 7.388l1.576 1.604 4.9-4.988 1.48 1.505L6.212 12 3.157 8.89l1.48-1.506zM31.176.51c-.592-.595-1.552-.595-2.143 0L.343 29.4c-.59.595-.59 1.56 0 2.157.297.298.685.446 1.073.446.388 0 .776-.148 1.072-.446L31.176 2.67c.59-.597.59-1.564 0-2.16zm.724 19.427l-2.932-2.932-4.568 4.567-4.567-4.567-2.933 2.932 4.567 4.567L16.9 29.07l2.933 2.934 4.567-4.567 4.568 4.567L31.9 29.07l-4.567-4.566z" fill="#fff"/><path d="M7.874 80.004c4.388 0 7.945-3.582 7.945-8s-3.56-8-7.95-8c-4.39 0-7.95 3.582-7.95 8s3.553 8 7.94 8zm-3.238-8.616l1.576 1.604 4.9-4.988 1.48 1.505L6.212 76l-3.055-3.11 1.48-1.506zm26.54-6.878c-.592-.595-1.552-.595-2.143 0L.343 93.4c-.59.595-.59 1.56 0 2.157.297.298.685.446 1.073.446.388 0 .776-.148 1.072-.446l28.688-28.89c.59-.594.59-1.56 0-2.156zm.724 19.427l-2.932-2.932-4.568 4.567-4.567-4.567-2.933 2.932 4.567 4.567L16.9 93.07l2.933 2.934 4.567-4.567 4.568 4.567L31.9 93.07l-4.567-4.566z" fill="#333"/><path d="M7.874 144.004c4.388 0 7.945-3.582 7.945-8s-3.56-8-7.95-8c-4.39 0-7.95 3.582-7.95 8s3.553 8 7.94 8zm-3.238-8.616l1.576 1.604 4.9-4.988 1.48 1.505-6.38 6.49-3.055-3.11 1.48-1.51zm26.54-6.878c-.592-.595-1.552-.595-2.143 0L.343 157.4c-.59.595-.59 1.56 0 2.157.297.298.685.446 1.073.446.388 0 .776-.148 1.072-.446l28.688-28.89c.59-.594.59-1.56 0-2.156zm.724 19.427l-2.932-2.932-4.568 4.567-4.567-4.567-2.933 2.932 4.567 4.567-4.567 4.567 2.933 2.94 4.567-4.56 4.568 4.567 2.932-2.933-4.567-4.566z" fill="#97999A"/><path d="M7.874 208.004c4.388 0 7.945-3.582 7.945-8s-3.56-8-7.95-8c-4.39 0-7.95 3.582-7.95 8s3.553 8 7.94 8zm-3.238-8.616l1.576 1.604 4.9-4.988 1.48 1.505-6.38 6.49-3.055-3.11 1.48-1.51zm26.54-6.878c-.592-.595-1.552-.595-2.143 0L.343 221.4c-.59.595-.59 1.56 0 2.157.297.298.685.446 1.073.446.388 0 .776-.148 1.072-.446l28.688-28.89c.59-.594.59-1.56 0-2.156zm.724 19.427l-2.932-2.932-4.568 4.567-4.567-4.567-2.933 2.932 4.567 4.567-4.567 4.567 2.933 2.94 4.567-4.56 4.568 4.567 2.932-2.933-4.567-4.566z" fill="#008FE9"/><path d="M7.874 272.004c4.388 0 7.945-3.582 7.945-8s-3.56-8-7.95-8c-4.39 0-7.95 3.582-7.95 8s3.553 8 7.94 8zm-3.238-8.616l1.576 1.604 4.9-4.988 1.48 1.505-6.38 6.49-3.055-3.11 1.48-1.51zm26.54-6.878c-.592-.595-1.552-.595-2.143 0L.343 285.4c-.59.595-.59 1.56 0 2.157.297.298.685.446 1.073.446.388 0 .776-.148 1.072-.446l28.688-28.89c.59-.594.59-1.56 0-2.156zm.724 19.427l-2.932-2.932-4.568 4.567-4.567-4.567-2.933 2.932 4.567 4.567-4.567 4.567 2.933 2.94 4.567-4.56 4.568 4.567 2.932-2.933-4.567-4.566z" fill="#1C1F4E"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="288" viewBox="0 0 32 288"><path fill="#fff" d="M15.9.066c8.837 0 16 7.163 16 16 0 8.16-6.107 14.892-14 15.876V20.066h5.5l.5-4h-6v-2c0-1.105.895-2 2-2h4v-4h-4c-3.314 0-6 2.686-6 6v2h-3v4h3v11.876c-7.893-.984-14-7.717-14-15.876 0-8.836 7.164-16 16-16z"/><path fill="#333" d="M15.9 64.066c8.837 0 16 7.163 16 16 0 8.16-6.107 14.892-14 15.876V84.066h5.5l.5-4h-6v-2c0-1.105.895-2 2-2h4v-4h-4c-3.314 0-6 2.686-6 6v2h-3v4h3v11.876c-7.893-.984-14-7.717-14-15.876 0-8.836 7.164-16 16-16z"/><path fill="#97999A" d="M15.9 128.066c8.837 0 16 7.163 16 16 0 8.16-6.107 14.892-14 15.876v-11.876h5.5l.5-4h-6v-2c0-1.105.895-2 2-2h4v-4h-4c-3.314 0-6 2.686-6 6v2h-3v4h3v11.876c-7.893-.984-14-7.717-14-15.876 0-8.836 7.164-16 16-16z"/><path fill="#008FE9" d="M15.9 192.066c8.837 0 16 7.163 16 16 0 8.16-6.107 14.892-14 15.876v-11.876h5.5l.5-4h-6v-2c0-1.105.895-2 2-2h4v-4h-4c-3.314 0-6 2.686-6 6v2h-3v4h3v11.876c-7.893-.984-14-7.717-14-15.876 0-8.836 7.164-16 16-16z"/><path fill="#3B5998" d="M15.9 256.066c8.837 0 16 7.163 16 16 0 8.16-6.107 14.892-14 15.876v-11.876h5.5l.5-4h-6v-2c0-1.105.895-2 2-2h4v-4h-4c-3.314 0-6 2.686-6 6v2h-3v4h3v11.876c-7.893-.984-14-7.717-14-15.876 0-8.836 7.164-16 16-16z"/></svg>