@alma-cdk/project 0.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1603) hide show
  1. package/.gitattributes +22 -0
  2. package/.jsii +5569 -0
  3. package/.nvmrc +1 -0
  4. package/API.md +3500 -0
  5. package/LICENSE +202 -0
  6. package/README.md +201 -0
  7. package/assets/accounts-1x.svg +3 -0
  8. package/assets/accounts-2x.svg +3 -0
  9. package/assets/accounts-3x.svg +3 -0
  10. package/assets/accounts.drawio +1 -0
  11. package/assets/alma-cdk-logo.afdesign +0 -0
  12. package/assets/alma-cdk-project.svg +61 -0
  13. package/lib/configurations/accounts.d.ts +108 -0
  14. package/lib/configurations/accounts.js +176 -0
  15. package/lib/configurations/environments.d.ts +45 -0
  16. package/lib/configurations/environments.js +83 -0
  17. package/lib/configurations/index.d.ts +2 -0
  18. package/lib/configurations/index.js +8 -0
  19. package/lib/context/account.d.ts +12 -0
  20. package/lib/context/account.js +41 -0
  21. package/lib/context/environment.d.ts +144 -0
  22. package/lib/context/environment.js +183 -0
  23. package/lib/context/index.d.ts +2 -0
  24. package/lib/context/index.js +9 -0
  25. package/lib/error/add.d.ts +2 -0
  26. package/lib/error/add.js +9 -0
  27. package/lib/error/index.d.ts +1 -0
  28. package/lib/error/index.js +5 -0
  29. package/lib/index.d.ts +6 -0
  30. package/lib/index.js +19 -0
  31. package/lib/name/index.d.ts +10 -0
  32. package/lib/name/index.js +18 -0
  33. package/lib/name/interfaces.d.ts +4 -0
  34. package/lib/name/interfaces.js +3 -0
  35. package/lib/name/max-length.d.ts +6 -0
  36. package/lib/name/max-length.js +29 -0
  37. package/lib/name/name-path.d.ts +8 -0
  38. package/lib/name/name-path.js +32 -0
  39. package/lib/name/name-path.test.d.ts +1 -0
  40. package/lib/name/name-path.test.js +88 -0
  41. package/lib/name/name-url.d.ts +8 -0
  42. package/lib/name/name-url.js +33 -0
  43. package/lib/name/name-url.test.d.ts +1 -0
  44. package/lib/name/name-url.test.js +84 -0
  45. package/lib/name/name.d.ts +13 -0
  46. package/lib/name/name.js +61 -0
  47. package/lib/name/name.test.d.ts +1 -0
  48. package/lib/name/name.test.js +83 -0
  49. package/lib/name/trim.d.ts +3 -0
  50. package/lib/name/trim.js +24 -0
  51. package/lib/name/trim.test.d.ts +1 -0
  52. package/lib/name/trim.test.js +30 -0
  53. package/lib/project/account-type.d.ts +10 -0
  54. package/lib/project/account-type.js +37 -0
  55. package/lib/project/environment-type.d.ts +9 -0
  56. package/lib/project/environment-type.js +40 -0
  57. package/lib/project/envregexp.d.ts +5 -0
  58. package/lib/project/envregexp.js +17 -0
  59. package/lib/project/index.d.ts +6 -0
  60. package/lib/project/index.js +25 -0
  61. package/lib/project/interfaces.d.ts +102 -0
  62. package/lib/project/interfaces.js +3 -0
  63. package/lib/project/project-context.d.ts +29 -0
  64. package/lib/project/project-context.js +87 -0
  65. package/lib/project/project.d.ts +51 -0
  66. package/lib/project/project.js +82 -0
  67. package/lib/project/resolve-region.d.ts +2 -0
  68. package/lib/project/resolve-region.js +24 -0
  69. package/lib/smartstack/description/index.d.ts +6 -0
  70. package/lib/smartstack/description/index.js +16 -0
  71. package/lib/smartstack/description/index.test.d.ts +1 -0
  72. package/lib/smartstack/description/index.test.js +104 -0
  73. package/lib/smartstack/index.d.ts +1 -0
  74. package/lib/smartstack/index.js +5 -0
  75. package/lib/smartstack/name/index.d.ts +8 -0
  76. package/lib/smartstack/name/index.js +21 -0
  77. package/lib/smartstack/name/index.test.d.ts +1 -0
  78. package/lib/smartstack/name/index.test.js +129 -0
  79. package/lib/smartstack/stack.d.ts +9 -0
  80. package/lib/smartstack/stack.js +66 -0
  81. package/lib/smartstack/tags/checks.d.ts +5 -0
  82. package/lib/smartstack/tags/checks.js +18 -0
  83. package/lib/smartstack/tags/exclude.d.ts +2 -0
  84. package/lib/smartstack/tags/exclude.js +17 -0
  85. package/lib/smartstack/tags/index.d.ts +2 -0
  86. package/lib/smartstack/tags/index.js +23 -0
  87. package/lib/smartstack/tags/taggers.d.ts +13 -0
  88. package/lib/smartstack/tags/taggers.js +41 -0
  89. package/lib/smartstack/tags/values.d.ts +20 -0
  90. package/lib/smartstack/tags/values.js +27 -0
  91. package/lib/smartstack/termination/index.d.ts +5 -0
  92. package/lib/smartstack/termination/index.js +22 -0
  93. package/lib/smartstack/termination/index.test.d.ts +1 -0
  94. package/lib/smartstack/termination/index.test.js +86 -0
  95. package/lib/template/index.d.ts +5 -0
  96. package/lib/template/index.js +28 -0
  97. package/lib/utils/isSet.d.ts +1 -0
  98. package/lib/utils/isSet.js +9 -0
  99. package/lib/wrapper/account.d.ts +4 -0
  100. package/lib/wrapper/account.js +23 -0
  101. package/lib/wrapper/environment.d.ts +4 -0
  102. package/lib/wrapper/environment.js +19 -0
  103. package/lib/wrapper/index.d.ts +2 -0
  104. package/lib/wrapper/index.js +7 -0
  105. package/node_modules/a-sync-waterfall/LICENSE +21 -0
  106. package/node_modules/a-sync-waterfall/README.md +95 -0
  107. package/node_modules/a-sync-waterfall/index.js +83 -0
  108. package/node_modules/a-sync-waterfall/package.json +25 -0
  109. package/node_modules/a-sync-waterfall/test.js +77 -0
  110. package/node_modules/asap/CHANGES.md +70 -0
  111. package/node_modules/asap/LICENSE.md +21 -0
  112. package/node_modules/asap/README.md +237 -0
  113. package/node_modules/asap/asap.js +65 -0
  114. package/node_modules/asap/browser-asap.js +66 -0
  115. package/node_modules/asap/browser-raw.js +223 -0
  116. package/node_modules/asap/package.json +62 -0
  117. package/node_modules/asap/raw.js +101 -0
  118. package/node_modules/camel-case/LICENSE +21 -0
  119. package/node_modules/camel-case/README.md +47 -0
  120. package/node_modules/camel-case/dist/index.d.ts +5 -0
  121. package/node_modules/camel-case/dist/index.js +23 -0
  122. package/node_modules/camel-case/dist/index.js.map +1 -0
  123. package/node_modules/camel-case/dist/index.spec.d.ts +1 -0
  124. package/node_modules/camel-case/dist/index.spec.js +26 -0
  125. package/node_modules/camel-case/dist/index.spec.js.map +1 -0
  126. package/node_modules/camel-case/dist.es2015/index.d.ts +5 -0
  127. package/node_modules/camel-case/dist.es2015/index.js +17 -0
  128. package/node_modules/camel-case/dist.es2015/index.js.map +1 -0
  129. package/node_modules/camel-case/dist.es2015/index.spec.d.ts +1 -0
  130. package/node_modules/camel-case/dist.es2015/index.spec.js +24 -0
  131. package/node_modules/camel-case/dist.es2015/index.spec.js.map +1 -0
  132. package/node_modules/camel-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  133. package/node_modules/camel-case/node_modules/tslib/LICENSE.txt +12 -0
  134. package/node_modules/camel-case/node_modules/tslib/README.md +164 -0
  135. package/node_modules/camel-case/node_modules/tslib/modules/index.js +55 -0
  136. package/node_modules/camel-case/node_modules/tslib/modules/package.json +3 -0
  137. package/node_modules/camel-case/node_modules/tslib/package.json +42 -0
  138. package/node_modules/camel-case/node_modules/tslib/tslib.d.ts +398 -0
  139. package/node_modules/camel-case/node_modules/tslib/tslib.es6.html +1 -0
  140. package/node_modules/camel-case/node_modules/tslib/tslib.es6.js +248 -0
  141. package/node_modules/camel-case/node_modules/tslib/tslib.html +1 -0
  142. package/node_modules/camel-case/node_modules/tslib/tslib.js +317 -0
  143. package/node_modules/camel-case/package.json +93 -0
  144. package/node_modules/capital-case/LICENSE +21 -0
  145. package/node_modules/capital-case/README.md +37 -0
  146. package/node_modules/capital-case/dist/index.d.ts +4 -0
  147. package/node_modules/capital-case/dist/index.js +16 -0
  148. package/node_modules/capital-case/dist/index.js.map +1 -0
  149. package/node_modules/capital-case/dist/index.spec.d.ts +1 -0
  150. package/node_modules/capital-case/dist/index.spec.js +24 -0
  151. package/node_modules/capital-case/dist/index.spec.js.map +1 -0
  152. package/node_modules/capital-case/dist.es2015/index.d.ts +4 -0
  153. package/node_modules/capital-case/dist.es2015/index.js +11 -0
  154. package/node_modules/capital-case/dist.es2015/index.js.map +1 -0
  155. package/node_modules/capital-case/dist.es2015/index.spec.d.ts +1 -0
  156. package/node_modules/capital-case/dist.es2015/index.spec.js +22 -0
  157. package/node_modules/capital-case/dist.es2015/index.spec.js.map +1 -0
  158. package/node_modules/capital-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  159. package/node_modules/capital-case/node_modules/tslib/LICENSE.txt +12 -0
  160. package/node_modules/capital-case/node_modules/tslib/README.md +164 -0
  161. package/node_modules/capital-case/node_modules/tslib/modules/index.js +55 -0
  162. package/node_modules/capital-case/node_modules/tslib/modules/package.json +3 -0
  163. package/node_modules/capital-case/node_modules/tslib/package.json +42 -0
  164. package/node_modules/capital-case/node_modules/tslib/tslib.d.ts +398 -0
  165. package/node_modules/capital-case/node_modules/tslib/tslib.es6.html +1 -0
  166. package/node_modules/capital-case/node_modules/tslib/tslib.es6.js +248 -0
  167. package/node_modules/capital-case/node_modules/tslib/tslib.html +1 -0
  168. package/node_modules/capital-case/node_modules/tslib/tslib.js +317 -0
  169. package/node_modules/capital-case/package.json +94 -0
  170. package/node_modules/change-case/LICENSE +21 -0
  171. package/node_modules/change-case/README.md +44 -0
  172. package/node_modules/change-case/dist/index.d.ts +11 -0
  173. package/node_modules/change-case/dist/index.js +15 -0
  174. package/node_modules/change-case/dist/index.js.map +1 -0
  175. package/node_modules/change-case/dist/index.spec.d.ts +1 -0
  176. package/node_modules/change-case/dist/index.spec.js +9 -0
  177. package/node_modules/change-case/dist/index.spec.js.map +1 -0
  178. package/node_modules/change-case/dist.es2015/index.d.ts +11 -0
  179. package/node_modules/change-case/dist.es2015/index.js +12 -0
  180. package/node_modules/change-case/dist.es2015/index.js.map +1 -0
  181. package/node_modules/change-case/dist.es2015/index.spec.d.ts +1 -0
  182. package/node_modules/change-case/dist.es2015/index.spec.js +7 -0
  183. package/node_modules/change-case/dist.es2015/index.spec.js.map +1 -0
  184. package/node_modules/change-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  185. package/node_modules/change-case/node_modules/tslib/LICENSE.txt +12 -0
  186. package/node_modules/change-case/node_modules/tslib/README.md +164 -0
  187. package/node_modules/change-case/node_modules/tslib/modules/index.js +55 -0
  188. package/node_modules/change-case/node_modules/tslib/modules/package.json +3 -0
  189. package/node_modules/change-case/node_modules/tslib/package.json +42 -0
  190. package/node_modules/change-case/node_modules/tslib/tslib.d.ts +398 -0
  191. package/node_modules/change-case/node_modules/tslib/tslib.es6.html +1 -0
  192. package/node_modules/change-case/node_modules/tslib/tslib.es6.js +248 -0
  193. package/node_modules/change-case/node_modules/tslib/tslib.html +1 -0
  194. package/node_modules/change-case/node_modules/tslib/tslib.js +317 -0
  195. package/node_modules/change-case/package.json +105 -0
  196. package/node_modules/constant-case/LICENSE +21 -0
  197. package/node_modules/constant-case/README.md +37 -0
  198. package/node_modules/constant-case/dist/index.d.ts +3 -0
  199. package/node_modules/constant-case/dist/index.js +12 -0
  200. package/node_modules/constant-case/dist/index.js.map +1 -0
  201. package/node_modules/constant-case/dist/index.spec.d.ts +1 -0
  202. package/node_modules/constant-case/dist/index.spec.js +26 -0
  203. package/node_modules/constant-case/dist/index.spec.js.map +1 -0
  204. package/node_modules/constant-case/dist.es2015/index.d.ts +3 -0
  205. package/node_modules/constant-case/dist.es2015/index.js +8 -0
  206. package/node_modules/constant-case/dist.es2015/index.js.map +1 -0
  207. package/node_modules/constant-case/dist.es2015/index.spec.d.ts +1 -0
  208. package/node_modules/constant-case/dist.es2015/index.spec.js +24 -0
  209. package/node_modules/constant-case/dist.es2015/index.spec.js.map +1 -0
  210. package/node_modules/constant-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  211. package/node_modules/constant-case/node_modules/tslib/LICENSE.txt +12 -0
  212. package/node_modules/constant-case/node_modules/tslib/README.md +164 -0
  213. package/node_modules/constant-case/node_modules/tslib/modules/index.js +55 -0
  214. package/node_modules/constant-case/node_modules/tslib/modules/package.json +3 -0
  215. package/node_modules/constant-case/node_modules/tslib/package.json +42 -0
  216. package/node_modules/constant-case/node_modules/tslib/tslib.d.ts +398 -0
  217. package/node_modules/constant-case/node_modules/tslib/tslib.es6.html +1 -0
  218. package/node_modules/constant-case/node_modules/tslib/tslib.es6.js +248 -0
  219. package/node_modules/constant-case/node_modules/tslib/tslib.html +1 -0
  220. package/node_modules/constant-case/node_modules/tslib/tslib.js +317 -0
  221. package/node_modules/constant-case/package.json +94 -0
  222. package/node_modules/dot-case/LICENSE +21 -0
  223. package/node_modules/dot-case/README.md +37 -0
  224. package/node_modules/dot-case/dist/index.d.ts +3 -0
  225. package/node_modules/dot-case/dist/index.js +11 -0
  226. package/node_modules/dot-case/dist/index.js.map +1 -0
  227. package/node_modules/dot-case/dist/index.spec.d.ts +1 -0
  228. package/node_modules/dot-case/dist/index.spec.js +26 -0
  229. package/node_modules/dot-case/dist/index.spec.js.map +1 -0
  230. package/node_modules/dot-case/dist.es2015/index.d.ts +3 -0
  231. package/node_modules/dot-case/dist.es2015/index.js +7 -0
  232. package/node_modules/dot-case/dist.es2015/index.js.map +1 -0
  233. package/node_modules/dot-case/dist.es2015/index.spec.d.ts +1 -0
  234. package/node_modules/dot-case/dist.es2015/index.spec.js +24 -0
  235. package/node_modules/dot-case/dist.es2015/index.spec.js.map +1 -0
  236. package/node_modules/dot-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  237. package/node_modules/dot-case/node_modules/tslib/LICENSE.txt +12 -0
  238. package/node_modules/dot-case/node_modules/tslib/README.md +164 -0
  239. package/node_modules/dot-case/node_modules/tslib/modules/index.js +55 -0
  240. package/node_modules/dot-case/node_modules/tslib/modules/package.json +3 -0
  241. package/node_modules/dot-case/node_modules/tslib/package.json +42 -0
  242. package/node_modules/dot-case/node_modules/tslib/tslib.d.ts +398 -0
  243. package/node_modules/dot-case/node_modules/tslib/tslib.es6.html +1 -0
  244. package/node_modules/dot-case/node_modules/tslib/tslib.es6.js +248 -0
  245. package/node_modules/dot-case/node_modules/tslib/tslib.html +1 -0
  246. package/node_modules/dot-case/node_modules/tslib/tslib.js +317 -0
  247. package/node_modules/dot-case/package.json +93 -0
  248. package/node_modules/header-case/LICENSE +21 -0
  249. package/node_modules/header-case/README.md +37 -0
  250. package/node_modules/header-case/dist/index.d.ts +3 -0
  251. package/node_modules/header-case/dist/index.js +11 -0
  252. package/node_modules/header-case/dist/index.js.map +1 -0
  253. package/node_modules/header-case/dist/index.spec.d.ts +1 -0
  254. package/node_modules/header-case/dist/index.spec.js +24 -0
  255. package/node_modules/header-case/dist/index.spec.js.map +1 -0
  256. package/node_modules/header-case/dist.es2015/index.d.ts +3 -0
  257. package/node_modules/header-case/dist.es2015/index.js +7 -0
  258. package/node_modules/header-case/dist.es2015/index.js.map +1 -0
  259. package/node_modules/header-case/dist.es2015/index.spec.d.ts +1 -0
  260. package/node_modules/header-case/dist.es2015/index.spec.js +22 -0
  261. package/node_modules/header-case/dist.es2015/index.spec.js.map +1 -0
  262. package/node_modules/header-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  263. package/node_modules/header-case/node_modules/tslib/LICENSE.txt +12 -0
  264. package/node_modules/header-case/node_modules/tslib/README.md +164 -0
  265. package/node_modules/header-case/node_modules/tslib/modules/index.js +55 -0
  266. package/node_modules/header-case/node_modules/tslib/modules/package.json +3 -0
  267. package/node_modules/header-case/node_modules/tslib/package.json +42 -0
  268. package/node_modules/header-case/node_modules/tslib/tslib.d.ts +398 -0
  269. package/node_modules/header-case/node_modules/tslib/tslib.es6.html +1 -0
  270. package/node_modules/header-case/node_modules/tslib/tslib.es6.js +248 -0
  271. package/node_modules/header-case/node_modules/tslib/tslib.html +1 -0
  272. package/node_modules/header-case/node_modules/tslib/tslib.js +317 -0
  273. package/node_modules/header-case/package.json +93 -0
  274. package/node_modules/lodash/LICENSE +47 -0
  275. package/node_modules/lodash/README.md +39 -0
  276. package/node_modules/lodash/_DataView.js +7 -0
  277. package/node_modules/lodash/_Hash.js +32 -0
  278. package/node_modules/lodash/_LazyWrapper.js +28 -0
  279. package/node_modules/lodash/_ListCache.js +32 -0
  280. package/node_modules/lodash/_LodashWrapper.js +22 -0
  281. package/node_modules/lodash/_Map.js +7 -0
  282. package/node_modules/lodash/_MapCache.js +32 -0
  283. package/node_modules/lodash/_Promise.js +7 -0
  284. package/node_modules/lodash/_Set.js +7 -0
  285. package/node_modules/lodash/_SetCache.js +27 -0
  286. package/node_modules/lodash/_Stack.js +27 -0
  287. package/node_modules/lodash/_Symbol.js +6 -0
  288. package/node_modules/lodash/_Uint8Array.js +6 -0
  289. package/node_modules/lodash/_WeakMap.js +7 -0
  290. package/node_modules/lodash/_apply.js +21 -0
  291. package/node_modules/lodash/_arrayAggregator.js +22 -0
  292. package/node_modules/lodash/_arrayEach.js +22 -0
  293. package/node_modules/lodash/_arrayEachRight.js +21 -0
  294. package/node_modules/lodash/_arrayEvery.js +23 -0
  295. package/node_modules/lodash/_arrayFilter.js +25 -0
  296. package/node_modules/lodash/_arrayIncludes.js +17 -0
  297. package/node_modules/lodash/_arrayIncludesWith.js +22 -0
  298. package/node_modules/lodash/_arrayLikeKeys.js +49 -0
  299. package/node_modules/lodash/_arrayMap.js +21 -0
  300. package/node_modules/lodash/_arrayPush.js +20 -0
  301. package/node_modules/lodash/_arrayReduce.js +26 -0
  302. package/node_modules/lodash/_arrayReduceRight.js +24 -0
  303. package/node_modules/lodash/_arraySample.js +15 -0
  304. package/node_modules/lodash/_arraySampleSize.js +17 -0
  305. package/node_modules/lodash/_arrayShuffle.js +15 -0
  306. package/node_modules/lodash/_arraySome.js +23 -0
  307. package/node_modules/lodash/_asciiSize.js +12 -0
  308. package/node_modules/lodash/_asciiToArray.js +12 -0
  309. package/node_modules/lodash/_asciiWords.js +15 -0
  310. package/node_modules/lodash/_assignMergeValue.js +20 -0
  311. package/node_modules/lodash/_assignValue.js +28 -0
  312. package/node_modules/lodash/_assocIndexOf.js +21 -0
  313. package/node_modules/lodash/_baseAggregator.js +21 -0
  314. package/node_modules/lodash/_baseAssign.js +17 -0
  315. package/node_modules/lodash/_baseAssignIn.js +17 -0
  316. package/node_modules/lodash/_baseAssignValue.js +25 -0
  317. package/node_modules/lodash/_baseAt.js +23 -0
  318. package/node_modules/lodash/_baseClamp.js +22 -0
  319. package/node_modules/lodash/_baseClone.js +166 -0
  320. package/node_modules/lodash/_baseConforms.js +18 -0
  321. package/node_modules/lodash/_baseConformsTo.js +27 -0
  322. package/node_modules/lodash/_baseCreate.js +30 -0
  323. package/node_modules/lodash/_baseDelay.js +21 -0
  324. package/node_modules/lodash/_baseDifference.js +67 -0
  325. package/node_modules/lodash/_baseEach.js +14 -0
  326. package/node_modules/lodash/_baseEachRight.js +14 -0
  327. package/node_modules/lodash/_baseEvery.js +21 -0
  328. package/node_modules/lodash/_baseExtremum.js +32 -0
  329. package/node_modules/lodash/_baseFill.js +32 -0
  330. package/node_modules/lodash/_baseFilter.js +21 -0
  331. package/node_modules/lodash/_baseFindIndex.js +24 -0
  332. package/node_modules/lodash/_baseFindKey.js +23 -0
  333. package/node_modules/lodash/_baseFlatten.js +38 -0
  334. package/node_modules/lodash/_baseFor.js +16 -0
  335. package/node_modules/lodash/_baseForOwn.js +16 -0
  336. package/node_modules/lodash/_baseForOwnRight.js +16 -0
  337. package/node_modules/lodash/_baseForRight.js +15 -0
  338. package/node_modules/lodash/_baseFunctions.js +19 -0
  339. package/node_modules/lodash/_baseGet.js +24 -0
  340. package/node_modules/lodash/_baseGetAllKeys.js +20 -0
  341. package/node_modules/lodash/_baseGetTag.js +28 -0
  342. package/node_modules/lodash/_baseGt.js +14 -0
  343. package/node_modules/lodash/_baseHas.js +19 -0
  344. package/node_modules/lodash/_baseHasIn.js +13 -0
  345. package/node_modules/lodash/_baseInRange.js +18 -0
  346. package/node_modules/lodash/_baseIndexOf.js +20 -0
  347. package/node_modules/lodash/_baseIndexOfWith.js +23 -0
  348. package/node_modules/lodash/_baseIntersection.js +74 -0
  349. package/node_modules/lodash/_baseInverter.js +21 -0
  350. package/node_modules/lodash/_baseInvoke.js +24 -0
  351. package/node_modules/lodash/_baseIsArguments.js +18 -0
  352. package/node_modules/lodash/_baseIsArrayBuffer.js +17 -0
  353. package/node_modules/lodash/_baseIsDate.js +18 -0
  354. package/node_modules/lodash/_baseIsEqual.js +28 -0
  355. package/node_modules/lodash/_baseIsEqualDeep.js +83 -0
  356. package/node_modules/lodash/_baseIsMap.js +18 -0
  357. package/node_modules/lodash/_baseIsMatch.js +62 -0
  358. package/node_modules/lodash/_baseIsNaN.js +12 -0
  359. package/node_modules/lodash/_baseIsNative.js +47 -0
  360. package/node_modules/lodash/_baseIsRegExp.js +18 -0
  361. package/node_modules/lodash/_baseIsSet.js +18 -0
  362. package/node_modules/lodash/_baseIsTypedArray.js +60 -0
  363. package/node_modules/lodash/_baseIteratee.js +31 -0
  364. package/node_modules/lodash/_baseKeys.js +30 -0
  365. package/node_modules/lodash/_baseKeysIn.js +33 -0
  366. package/node_modules/lodash/_baseLodash.js +10 -0
  367. package/node_modules/lodash/_baseLt.js +14 -0
  368. package/node_modules/lodash/_baseMap.js +22 -0
  369. package/node_modules/lodash/_baseMatches.js +22 -0
  370. package/node_modules/lodash/_baseMatchesProperty.js +33 -0
  371. package/node_modules/lodash/_baseMean.js +20 -0
  372. package/node_modules/lodash/_baseMerge.js +42 -0
  373. package/node_modules/lodash/_baseMergeDeep.js +94 -0
  374. package/node_modules/lodash/_baseNth.js +20 -0
  375. package/node_modules/lodash/_baseOrderBy.js +49 -0
  376. package/node_modules/lodash/_basePick.js +19 -0
  377. package/node_modules/lodash/_basePickBy.js +30 -0
  378. package/node_modules/lodash/_baseProperty.js +14 -0
  379. package/node_modules/lodash/_basePropertyDeep.js +16 -0
  380. package/node_modules/lodash/_basePropertyOf.js +14 -0
  381. package/node_modules/lodash/_basePullAll.js +51 -0
  382. package/node_modules/lodash/_basePullAt.js +37 -0
  383. package/node_modules/lodash/_baseRandom.js +18 -0
  384. package/node_modules/lodash/_baseRange.js +28 -0
  385. package/node_modules/lodash/_baseReduce.js +23 -0
  386. package/node_modules/lodash/_baseRepeat.js +35 -0
  387. package/node_modules/lodash/_baseRest.js +17 -0
  388. package/node_modules/lodash/_baseSample.js +15 -0
  389. package/node_modules/lodash/_baseSampleSize.js +18 -0
  390. package/node_modules/lodash/_baseSet.js +51 -0
  391. package/node_modules/lodash/_baseSetData.js +17 -0
  392. package/node_modules/lodash/_baseSetToString.js +22 -0
  393. package/node_modules/lodash/_baseShuffle.js +15 -0
  394. package/node_modules/lodash/_baseSlice.js +31 -0
  395. package/node_modules/lodash/_baseSome.js +22 -0
  396. package/node_modules/lodash/_baseSortBy.js +21 -0
  397. package/node_modules/lodash/_baseSortedIndex.js +42 -0
  398. package/node_modules/lodash/_baseSortedIndexBy.js +67 -0
  399. package/node_modules/lodash/_baseSortedUniq.js +30 -0
  400. package/node_modules/lodash/_baseSum.js +24 -0
  401. package/node_modules/lodash/_baseTimes.js +20 -0
  402. package/node_modules/lodash/_baseToNumber.js +24 -0
  403. package/node_modules/lodash/_baseToPairs.js +18 -0
  404. package/node_modules/lodash/_baseToString.js +37 -0
  405. package/node_modules/lodash/_baseTrim.js +19 -0
  406. package/node_modules/lodash/_baseUnary.js +14 -0
  407. package/node_modules/lodash/_baseUniq.js +72 -0
  408. package/node_modules/lodash/_baseUnset.js +20 -0
  409. package/node_modules/lodash/_baseUpdate.js +18 -0
  410. package/node_modules/lodash/_baseValues.js +19 -0
  411. package/node_modules/lodash/_baseWhile.js +26 -0
  412. package/node_modules/lodash/_baseWrapperValue.js +25 -0
  413. package/node_modules/lodash/_baseXor.js +36 -0
  414. package/node_modules/lodash/_baseZipObject.js +23 -0
  415. package/node_modules/lodash/_cacheHas.js +13 -0
  416. package/node_modules/lodash/_castArrayLikeObject.js +14 -0
  417. package/node_modules/lodash/_castFunction.js +14 -0
  418. package/node_modules/lodash/_castPath.js +21 -0
  419. package/node_modules/lodash/_castRest.js +14 -0
  420. package/node_modules/lodash/_castSlice.js +18 -0
  421. package/node_modules/lodash/_charsEndIndex.js +19 -0
  422. package/node_modules/lodash/_charsStartIndex.js +20 -0
  423. package/node_modules/lodash/_cloneArrayBuffer.js +16 -0
  424. package/node_modules/lodash/_cloneBuffer.js +35 -0
  425. package/node_modules/lodash/_cloneDataView.js +16 -0
  426. package/node_modules/lodash/_cloneRegExp.js +17 -0
  427. package/node_modules/lodash/_cloneSymbol.js +18 -0
  428. package/node_modules/lodash/_cloneTypedArray.js +16 -0
  429. package/node_modules/lodash/_compareAscending.js +41 -0
  430. package/node_modules/lodash/_compareMultiple.js +44 -0
  431. package/node_modules/lodash/_composeArgs.js +39 -0
  432. package/node_modules/lodash/_composeArgsRight.js +41 -0
  433. package/node_modules/lodash/_copyArray.js +20 -0
  434. package/node_modules/lodash/_copyObject.js +40 -0
  435. package/node_modules/lodash/_copySymbols.js +16 -0
  436. package/node_modules/lodash/_copySymbolsIn.js +16 -0
  437. package/node_modules/lodash/_coreJsData.js +6 -0
  438. package/node_modules/lodash/_countHolders.js +21 -0
  439. package/node_modules/lodash/_createAggregator.js +23 -0
  440. package/node_modules/lodash/_createAssigner.js +37 -0
  441. package/node_modules/lodash/_createBaseEach.js +32 -0
  442. package/node_modules/lodash/_createBaseFor.js +25 -0
  443. package/node_modules/lodash/_createBind.js +28 -0
  444. package/node_modules/lodash/_createCaseFirst.js +33 -0
  445. package/node_modules/lodash/_createCompounder.js +24 -0
  446. package/node_modules/lodash/_createCtor.js +37 -0
  447. package/node_modules/lodash/_createCurry.js +46 -0
  448. package/node_modules/lodash/_createFind.js +25 -0
  449. package/node_modules/lodash/_createFlow.js +78 -0
  450. package/node_modules/lodash/_createHybrid.js +92 -0
  451. package/node_modules/lodash/_createInverter.js +17 -0
  452. package/node_modules/lodash/_createMathOperation.js +38 -0
  453. package/node_modules/lodash/_createOver.js +27 -0
  454. package/node_modules/lodash/_createPadding.js +33 -0
  455. package/node_modules/lodash/_createPartial.js +43 -0
  456. package/node_modules/lodash/_createRange.js +30 -0
  457. package/node_modules/lodash/_createRecurry.js +56 -0
  458. package/node_modules/lodash/_createRelationalOperation.js +20 -0
  459. package/node_modules/lodash/_createRound.js +35 -0
  460. package/node_modules/lodash/_createSet.js +19 -0
  461. package/node_modules/lodash/_createToPairs.js +30 -0
  462. package/node_modules/lodash/_createWrap.js +106 -0
  463. package/node_modules/lodash/_customDefaultsAssignIn.js +29 -0
  464. package/node_modules/lodash/_customDefaultsMerge.js +28 -0
  465. package/node_modules/lodash/_customOmitClone.js +16 -0
  466. package/node_modules/lodash/_deburrLetter.js +71 -0
  467. package/node_modules/lodash/_defineProperty.js +11 -0
  468. package/node_modules/lodash/_equalArrays.js +84 -0
  469. package/node_modules/lodash/_equalByTag.js +112 -0
  470. package/node_modules/lodash/_equalObjects.js +90 -0
  471. package/node_modules/lodash/_escapeHtmlChar.js +21 -0
  472. package/node_modules/lodash/_escapeStringChar.js +22 -0
  473. package/node_modules/lodash/_flatRest.js +16 -0
  474. package/node_modules/lodash/_freeGlobal.js +4 -0
  475. package/node_modules/lodash/_getAllKeys.js +16 -0
  476. package/node_modules/lodash/_getAllKeysIn.js +17 -0
  477. package/node_modules/lodash/_getData.js +15 -0
  478. package/node_modules/lodash/_getFuncName.js +31 -0
  479. package/node_modules/lodash/_getHolder.js +13 -0
  480. package/node_modules/lodash/_getMapData.js +18 -0
  481. package/node_modules/lodash/_getMatchData.js +24 -0
  482. package/node_modules/lodash/_getNative.js +17 -0
  483. package/node_modules/lodash/_getPrototype.js +6 -0
  484. package/node_modules/lodash/_getRawTag.js +46 -0
  485. package/node_modules/lodash/_getSymbols.js +30 -0
  486. package/node_modules/lodash/_getSymbolsIn.js +25 -0
  487. package/node_modules/lodash/_getTag.js +58 -0
  488. package/node_modules/lodash/_getValue.js +13 -0
  489. package/node_modules/lodash/_getView.js +33 -0
  490. package/node_modules/lodash/_getWrapDetails.js +17 -0
  491. package/node_modules/lodash/_hasPath.js +39 -0
  492. package/node_modules/lodash/_hasUnicode.js +26 -0
  493. package/node_modules/lodash/_hasUnicodeWord.js +15 -0
  494. package/node_modules/lodash/_hashClear.js +15 -0
  495. package/node_modules/lodash/_hashDelete.js +17 -0
  496. package/node_modules/lodash/_hashGet.js +30 -0
  497. package/node_modules/lodash/_hashHas.js +23 -0
  498. package/node_modules/lodash/_hashSet.js +23 -0
  499. package/node_modules/lodash/_initCloneArray.js +26 -0
  500. package/node_modules/lodash/_initCloneByTag.js +77 -0
  501. package/node_modules/lodash/_initCloneObject.js +18 -0
  502. package/node_modules/lodash/_insertWrapDetails.js +23 -0
  503. package/node_modules/lodash/_isFlattenable.js +20 -0
  504. package/node_modules/lodash/_isIndex.js +25 -0
  505. package/node_modules/lodash/_isIterateeCall.js +30 -0
  506. package/node_modules/lodash/_isKey.js +29 -0
  507. package/node_modules/lodash/_isKeyable.js +15 -0
  508. package/node_modules/lodash/_isLaziable.js +28 -0
  509. package/node_modules/lodash/_isMaskable.js +14 -0
  510. package/node_modules/lodash/_isMasked.js +20 -0
  511. package/node_modules/lodash/_isPrototype.js +18 -0
  512. package/node_modules/lodash/_isStrictComparable.js +15 -0
  513. package/node_modules/lodash/_iteratorToArray.js +18 -0
  514. package/node_modules/lodash/_lazyClone.js +23 -0
  515. package/node_modules/lodash/_lazyReverse.js +23 -0
  516. package/node_modules/lodash/_lazyValue.js +69 -0
  517. package/node_modules/lodash/_listCacheClear.js +13 -0
  518. package/node_modules/lodash/_listCacheDelete.js +35 -0
  519. package/node_modules/lodash/_listCacheGet.js +19 -0
  520. package/node_modules/lodash/_listCacheHas.js +16 -0
  521. package/node_modules/lodash/_listCacheSet.js +26 -0
  522. package/node_modules/lodash/_mapCacheClear.js +21 -0
  523. package/node_modules/lodash/_mapCacheDelete.js +18 -0
  524. package/node_modules/lodash/_mapCacheGet.js +16 -0
  525. package/node_modules/lodash/_mapCacheHas.js +16 -0
  526. package/node_modules/lodash/_mapCacheSet.js +22 -0
  527. package/node_modules/lodash/_mapToArray.js +18 -0
  528. package/node_modules/lodash/_matchesStrictComparable.js +20 -0
  529. package/node_modules/lodash/_memoizeCapped.js +26 -0
  530. package/node_modules/lodash/_mergeData.js +90 -0
  531. package/node_modules/lodash/_metaMap.js +6 -0
  532. package/node_modules/lodash/_nativeCreate.js +6 -0
  533. package/node_modules/lodash/_nativeKeys.js +6 -0
  534. package/node_modules/lodash/_nativeKeysIn.js +20 -0
  535. package/node_modules/lodash/_nodeUtil.js +30 -0
  536. package/node_modules/lodash/_objectToString.js +22 -0
  537. package/node_modules/lodash/_overArg.js +15 -0
  538. package/node_modules/lodash/_overRest.js +36 -0
  539. package/node_modules/lodash/_parent.js +16 -0
  540. package/node_modules/lodash/_reEscape.js +4 -0
  541. package/node_modules/lodash/_reEvaluate.js +4 -0
  542. package/node_modules/lodash/_reInterpolate.js +4 -0
  543. package/node_modules/lodash/_realNames.js +4 -0
  544. package/node_modules/lodash/_reorder.js +29 -0
  545. package/node_modules/lodash/_replaceHolders.js +29 -0
  546. package/node_modules/lodash/_root.js +9 -0
  547. package/node_modules/lodash/_safeGet.js +21 -0
  548. package/node_modules/lodash/_setCacheAdd.js +19 -0
  549. package/node_modules/lodash/_setCacheHas.js +14 -0
  550. package/node_modules/lodash/_setData.js +20 -0
  551. package/node_modules/lodash/_setToArray.js +18 -0
  552. package/node_modules/lodash/_setToPairs.js +18 -0
  553. package/node_modules/lodash/_setToString.js +14 -0
  554. package/node_modules/lodash/_setWrapToString.js +21 -0
  555. package/node_modules/lodash/_shortOut.js +37 -0
  556. package/node_modules/lodash/_shuffleSelf.js +28 -0
  557. package/node_modules/lodash/_stackClear.js +15 -0
  558. package/node_modules/lodash/_stackDelete.js +18 -0
  559. package/node_modules/lodash/_stackGet.js +14 -0
  560. package/node_modules/lodash/_stackHas.js +14 -0
  561. package/node_modules/lodash/_stackSet.js +34 -0
  562. package/node_modules/lodash/_strictIndexOf.js +23 -0
  563. package/node_modules/lodash/_strictLastIndexOf.js +21 -0
  564. package/node_modules/lodash/_stringSize.js +18 -0
  565. package/node_modules/lodash/_stringToArray.js +18 -0
  566. package/node_modules/lodash/_stringToPath.js +27 -0
  567. package/node_modules/lodash/_toKey.js +21 -0
  568. package/node_modules/lodash/_toSource.js +26 -0
  569. package/node_modules/lodash/_trimmedEndIndex.js +19 -0
  570. package/node_modules/lodash/_unescapeHtmlChar.js +21 -0
  571. package/node_modules/lodash/_unicodeSize.js +44 -0
  572. package/node_modules/lodash/_unicodeToArray.js +40 -0
  573. package/node_modules/lodash/_unicodeWords.js +69 -0
  574. package/node_modules/lodash/_updateWrapDetails.js +46 -0
  575. package/node_modules/lodash/_wrapperClone.js +23 -0
  576. package/node_modules/lodash/add.js +22 -0
  577. package/node_modules/lodash/after.js +42 -0
  578. package/node_modules/lodash/array.js +67 -0
  579. package/node_modules/lodash/ary.js +29 -0
  580. package/node_modules/lodash/assign.js +58 -0
  581. package/node_modules/lodash/assignIn.js +40 -0
  582. package/node_modules/lodash/assignInWith.js +38 -0
  583. package/node_modules/lodash/assignWith.js +37 -0
  584. package/node_modules/lodash/at.js +23 -0
  585. package/node_modules/lodash/attempt.js +35 -0
  586. package/node_modules/lodash/before.js +40 -0
  587. package/node_modules/lodash/bind.js +57 -0
  588. package/node_modules/lodash/bindAll.js +41 -0
  589. package/node_modules/lodash/bindKey.js +68 -0
  590. package/node_modules/lodash/camelCase.js +29 -0
  591. package/node_modules/lodash/capitalize.js +23 -0
  592. package/node_modules/lodash/castArray.js +44 -0
  593. package/node_modules/lodash/ceil.js +26 -0
  594. package/node_modules/lodash/chain.js +38 -0
  595. package/node_modules/lodash/chunk.js +50 -0
  596. package/node_modules/lodash/clamp.js +39 -0
  597. package/node_modules/lodash/clone.js +36 -0
  598. package/node_modules/lodash/cloneDeep.js +29 -0
  599. package/node_modules/lodash/cloneDeepWith.js +40 -0
  600. package/node_modules/lodash/cloneWith.js +42 -0
  601. package/node_modules/lodash/collection.js +30 -0
  602. package/node_modules/lodash/commit.js +33 -0
  603. package/node_modules/lodash/compact.js +31 -0
  604. package/node_modules/lodash/concat.js +43 -0
  605. package/node_modules/lodash/cond.js +60 -0
  606. package/node_modules/lodash/conforms.js +35 -0
  607. package/node_modules/lodash/conformsTo.js +32 -0
  608. package/node_modules/lodash/constant.js +26 -0
  609. package/node_modules/lodash/core.js +3877 -0
  610. package/node_modules/lodash/core.min.js +29 -0
  611. package/node_modules/lodash/countBy.js +40 -0
  612. package/node_modules/lodash/create.js +43 -0
  613. package/node_modules/lodash/curry.js +57 -0
  614. package/node_modules/lodash/curryRight.js +54 -0
  615. package/node_modules/lodash/date.js +3 -0
  616. package/node_modules/lodash/debounce.js +191 -0
  617. package/node_modules/lodash/deburr.js +45 -0
  618. package/node_modules/lodash/defaultTo.js +25 -0
  619. package/node_modules/lodash/defaults.js +64 -0
  620. package/node_modules/lodash/defaultsDeep.js +30 -0
  621. package/node_modules/lodash/defer.js +26 -0
  622. package/node_modules/lodash/delay.js +28 -0
  623. package/node_modules/lodash/difference.js +33 -0
  624. package/node_modules/lodash/differenceBy.js +44 -0
  625. package/node_modules/lodash/differenceWith.js +40 -0
  626. package/node_modules/lodash/divide.js +22 -0
  627. package/node_modules/lodash/drop.js +38 -0
  628. package/node_modules/lodash/dropRight.js +39 -0
  629. package/node_modules/lodash/dropRightWhile.js +45 -0
  630. package/node_modules/lodash/dropWhile.js +45 -0
  631. package/node_modules/lodash/each.js +1 -0
  632. package/node_modules/lodash/eachRight.js +1 -0
  633. package/node_modules/lodash/endsWith.js +43 -0
  634. package/node_modules/lodash/entries.js +1 -0
  635. package/node_modules/lodash/entriesIn.js +1 -0
  636. package/node_modules/lodash/eq.js +37 -0
  637. package/node_modules/lodash/escape.js +43 -0
  638. package/node_modules/lodash/escapeRegExp.js +32 -0
  639. package/node_modules/lodash/every.js +56 -0
  640. package/node_modules/lodash/extend.js +1 -0
  641. package/node_modules/lodash/extendWith.js +1 -0
  642. package/node_modules/lodash/fill.js +45 -0
  643. package/node_modules/lodash/filter.js +52 -0
  644. package/node_modules/lodash/find.js +42 -0
  645. package/node_modules/lodash/findIndex.js +55 -0
  646. package/node_modules/lodash/findKey.js +44 -0
  647. package/node_modules/lodash/findLast.js +25 -0
  648. package/node_modules/lodash/findLastIndex.js +59 -0
  649. package/node_modules/lodash/findLastKey.js +44 -0
  650. package/node_modules/lodash/first.js +1 -0
  651. package/node_modules/lodash/flake.lock +40 -0
  652. package/node_modules/lodash/flake.nix +20 -0
  653. package/node_modules/lodash/flatMap.js +29 -0
  654. package/node_modules/lodash/flatMapDeep.js +31 -0
  655. package/node_modules/lodash/flatMapDepth.js +31 -0
  656. package/node_modules/lodash/flatten.js +22 -0
  657. package/node_modules/lodash/flattenDeep.js +25 -0
  658. package/node_modules/lodash/flattenDepth.js +33 -0
  659. package/node_modules/lodash/flip.js +28 -0
  660. package/node_modules/lodash/floor.js +26 -0
  661. package/node_modules/lodash/flow.js +27 -0
  662. package/node_modules/lodash/flowRight.js +26 -0
  663. package/node_modules/lodash/forEach.js +41 -0
  664. package/node_modules/lodash/forEachRight.js +31 -0
  665. package/node_modules/lodash/forIn.js +39 -0
  666. package/node_modules/lodash/forInRight.js +37 -0
  667. package/node_modules/lodash/forOwn.js +36 -0
  668. package/node_modules/lodash/forOwnRight.js +34 -0
  669. package/node_modules/lodash/fp/F.js +1 -0
  670. package/node_modules/lodash/fp/T.js +1 -0
  671. package/node_modules/lodash/fp/__.js +1 -0
  672. package/node_modules/lodash/fp/_baseConvert.js +569 -0
  673. package/node_modules/lodash/fp/_convertBrowser.js +18 -0
  674. package/node_modules/lodash/fp/_falseOptions.js +7 -0
  675. package/node_modules/lodash/fp/_mapping.js +358 -0
  676. package/node_modules/lodash/fp/_util.js +16 -0
  677. package/node_modules/lodash/fp/add.js +5 -0
  678. package/node_modules/lodash/fp/after.js +5 -0
  679. package/node_modules/lodash/fp/all.js +1 -0
  680. package/node_modules/lodash/fp/allPass.js +1 -0
  681. package/node_modules/lodash/fp/always.js +1 -0
  682. package/node_modules/lodash/fp/any.js +1 -0
  683. package/node_modules/lodash/fp/anyPass.js +1 -0
  684. package/node_modules/lodash/fp/apply.js +1 -0
  685. package/node_modules/lodash/fp/array.js +2 -0
  686. package/node_modules/lodash/fp/ary.js +5 -0
  687. package/node_modules/lodash/fp/assign.js +5 -0
  688. package/node_modules/lodash/fp/assignAll.js +5 -0
  689. package/node_modules/lodash/fp/assignAllWith.js +5 -0
  690. package/node_modules/lodash/fp/assignIn.js +5 -0
  691. package/node_modules/lodash/fp/assignInAll.js +5 -0
  692. package/node_modules/lodash/fp/assignInAllWith.js +5 -0
  693. package/node_modules/lodash/fp/assignInWith.js +5 -0
  694. package/node_modules/lodash/fp/assignWith.js +5 -0
  695. package/node_modules/lodash/fp/assoc.js +1 -0
  696. package/node_modules/lodash/fp/assocPath.js +1 -0
  697. package/node_modules/lodash/fp/at.js +5 -0
  698. package/node_modules/lodash/fp/attempt.js +5 -0
  699. package/node_modules/lodash/fp/before.js +5 -0
  700. package/node_modules/lodash/fp/bind.js +5 -0
  701. package/node_modules/lodash/fp/bindAll.js +5 -0
  702. package/node_modules/lodash/fp/bindKey.js +5 -0
  703. package/node_modules/lodash/fp/camelCase.js +5 -0
  704. package/node_modules/lodash/fp/capitalize.js +5 -0
  705. package/node_modules/lodash/fp/castArray.js +5 -0
  706. package/node_modules/lodash/fp/ceil.js +5 -0
  707. package/node_modules/lodash/fp/chain.js +5 -0
  708. package/node_modules/lodash/fp/chunk.js +5 -0
  709. package/node_modules/lodash/fp/clamp.js +5 -0
  710. package/node_modules/lodash/fp/clone.js +5 -0
  711. package/node_modules/lodash/fp/cloneDeep.js +5 -0
  712. package/node_modules/lodash/fp/cloneDeepWith.js +5 -0
  713. package/node_modules/lodash/fp/cloneWith.js +5 -0
  714. package/node_modules/lodash/fp/collection.js +2 -0
  715. package/node_modules/lodash/fp/commit.js +5 -0
  716. package/node_modules/lodash/fp/compact.js +5 -0
  717. package/node_modules/lodash/fp/complement.js +1 -0
  718. package/node_modules/lodash/fp/compose.js +1 -0
  719. package/node_modules/lodash/fp/concat.js +5 -0
  720. package/node_modules/lodash/fp/cond.js +5 -0
  721. package/node_modules/lodash/fp/conforms.js +1 -0
  722. package/node_modules/lodash/fp/conformsTo.js +5 -0
  723. package/node_modules/lodash/fp/constant.js +5 -0
  724. package/node_modules/lodash/fp/contains.js +1 -0
  725. package/node_modules/lodash/fp/convert.js +18 -0
  726. package/node_modules/lodash/fp/countBy.js +5 -0
  727. package/node_modules/lodash/fp/create.js +5 -0
  728. package/node_modules/lodash/fp/curry.js +5 -0
  729. package/node_modules/lodash/fp/curryN.js +5 -0
  730. package/node_modules/lodash/fp/curryRight.js +5 -0
  731. package/node_modules/lodash/fp/curryRightN.js +5 -0
  732. package/node_modules/lodash/fp/date.js +2 -0
  733. package/node_modules/lodash/fp/debounce.js +5 -0
  734. package/node_modules/lodash/fp/deburr.js +5 -0
  735. package/node_modules/lodash/fp/defaultTo.js +5 -0
  736. package/node_modules/lodash/fp/defaults.js +5 -0
  737. package/node_modules/lodash/fp/defaultsAll.js +5 -0
  738. package/node_modules/lodash/fp/defaultsDeep.js +5 -0
  739. package/node_modules/lodash/fp/defaultsDeepAll.js +5 -0
  740. package/node_modules/lodash/fp/defer.js +5 -0
  741. package/node_modules/lodash/fp/delay.js +5 -0
  742. package/node_modules/lodash/fp/difference.js +5 -0
  743. package/node_modules/lodash/fp/differenceBy.js +5 -0
  744. package/node_modules/lodash/fp/differenceWith.js +5 -0
  745. package/node_modules/lodash/fp/dissoc.js +1 -0
  746. package/node_modules/lodash/fp/dissocPath.js +1 -0
  747. package/node_modules/lodash/fp/divide.js +5 -0
  748. package/node_modules/lodash/fp/drop.js +5 -0
  749. package/node_modules/lodash/fp/dropLast.js +1 -0
  750. package/node_modules/lodash/fp/dropLastWhile.js +1 -0
  751. package/node_modules/lodash/fp/dropRight.js +5 -0
  752. package/node_modules/lodash/fp/dropRightWhile.js +5 -0
  753. package/node_modules/lodash/fp/dropWhile.js +5 -0
  754. package/node_modules/lodash/fp/each.js +1 -0
  755. package/node_modules/lodash/fp/eachRight.js +1 -0
  756. package/node_modules/lodash/fp/endsWith.js +5 -0
  757. package/node_modules/lodash/fp/entries.js +1 -0
  758. package/node_modules/lodash/fp/entriesIn.js +1 -0
  759. package/node_modules/lodash/fp/eq.js +5 -0
  760. package/node_modules/lodash/fp/equals.js +1 -0
  761. package/node_modules/lodash/fp/escape.js +5 -0
  762. package/node_modules/lodash/fp/escapeRegExp.js +5 -0
  763. package/node_modules/lodash/fp/every.js +5 -0
  764. package/node_modules/lodash/fp/extend.js +1 -0
  765. package/node_modules/lodash/fp/extendAll.js +1 -0
  766. package/node_modules/lodash/fp/extendAllWith.js +1 -0
  767. package/node_modules/lodash/fp/extendWith.js +1 -0
  768. package/node_modules/lodash/fp/fill.js +5 -0
  769. package/node_modules/lodash/fp/filter.js +5 -0
  770. package/node_modules/lodash/fp/find.js +5 -0
  771. package/node_modules/lodash/fp/findFrom.js +5 -0
  772. package/node_modules/lodash/fp/findIndex.js +5 -0
  773. package/node_modules/lodash/fp/findIndexFrom.js +5 -0
  774. package/node_modules/lodash/fp/findKey.js +5 -0
  775. package/node_modules/lodash/fp/findLast.js +5 -0
  776. package/node_modules/lodash/fp/findLastFrom.js +5 -0
  777. package/node_modules/lodash/fp/findLastIndex.js +5 -0
  778. package/node_modules/lodash/fp/findLastIndexFrom.js +5 -0
  779. package/node_modules/lodash/fp/findLastKey.js +5 -0
  780. package/node_modules/lodash/fp/first.js +1 -0
  781. package/node_modules/lodash/fp/flatMap.js +5 -0
  782. package/node_modules/lodash/fp/flatMapDeep.js +5 -0
  783. package/node_modules/lodash/fp/flatMapDepth.js +5 -0
  784. package/node_modules/lodash/fp/flatten.js +5 -0
  785. package/node_modules/lodash/fp/flattenDeep.js +5 -0
  786. package/node_modules/lodash/fp/flattenDepth.js +5 -0
  787. package/node_modules/lodash/fp/flip.js +5 -0
  788. package/node_modules/lodash/fp/floor.js +5 -0
  789. package/node_modules/lodash/fp/flow.js +5 -0
  790. package/node_modules/lodash/fp/flowRight.js +5 -0
  791. package/node_modules/lodash/fp/forEach.js +5 -0
  792. package/node_modules/lodash/fp/forEachRight.js +5 -0
  793. package/node_modules/lodash/fp/forIn.js +5 -0
  794. package/node_modules/lodash/fp/forInRight.js +5 -0
  795. package/node_modules/lodash/fp/forOwn.js +5 -0
  796. package/node_modules/lodash/fp/forOwnRight.js +5 -0
  797. package/node_modules/lodash/fp/fromPairs.js +5 -0
  798. package/node_modules/lodash/fp/function.js +2 -0
  799. package/node_modules/lodash/fp/functions.js +5 -0
  800. package/node_modules/lodash/fp/functionsIn.js +5 -0
  801. package/node_modules/lodash/fp/get.js +5 -0
  802. package/node_modules/lodash/fp/getOr.js +5 -0
  803. package/node_modules/lodash/fp/groupBy.js +5 -0
  804. package/node_modules/lodash/fp/gt.js +5 -0
  805. package/node_modules/lodash/fp/gte.js +5 -0
  806. package/node_modules/lodash/fp/has.js +5 -0
  807. package/node_modules/lodash/fp/hasIn.js +5 -0
  808. package/node_modules/lodash/fp/head.js +5 -0
  809. package/node_modules/lodash/fp/identical.js +1 -0
  810. package/node_modules/lodash/fp/identity.js +5 -0
  811. package/node_modules/lodash/fp/inRange.js +5 -0
  812. package/node_modules/lodash/fp/includes.js +5 -0
  813. package/node_modules/lodash/fp/includesFrom.js +5 -0
  814. package/node_modules/lodash/fp/indexBy.js +1 -0
  815. package/node_modules/lodash/fp/indexOf.js +5 -0
  816. package/node_modules/lodash/fp/indexOfFrom.js +5 -0
  817. package/node_modules/lodash/fp/init.js +1 -0
  818. package/node_modules/lodash/fp/initial.js +5 -0
  819. package/node_modules/lodash/fp/intersection.js +5 -0
  820. package/node_modules/lodash/fp/intersectionBy.js +5 -0
  821. package/node_modules/lodash/fp/intersectionWith.js +5 -0
  822. package/node_modules/lodash/fp/invert.js +5 -0
  823. package/node_modules/lodash/fp/invertBy.js +5 -0
  824. package/node_modules/lodash/fp/invertObj.js +1 -0
  825. package/node_modules/lodash/fp/invoke.js +5 -0
  826. package/node_modules/lodash/fp/invokeArgs.js +5 -0
  827. package/node_modules/lodash/fp/invokeArgsMap.js +5 -0
  828. package/node_modules/lodash/fp/invokeMap.js +5 -0
  829. package/node_modules/lodash/fp/isArguments.js +5 -0
  830. package/node_modules/lodash/fp/isArray.js +5 -0
  831. package/node_modules/lodash/fp/isArrayBuffer.js +5 -0
  832. package/node_modules/lodash/fp/isArrayLike.js +5 -0
  833. package/node_modules/lodash/fp/isArrayLikeObject.js +5 -0
  834. package/node_modules/lodash/fp/isBoolean.js +5 -0
  835. package/node_modules/lodash/fp/isBuffer.js +5 -0
  836. package/node_modules/lodash/fp/isDate.js +5 -0
  837. package/node_modules/lodash/fp/isElement.js +5 -0
  838. package/node_modules/lodash/fp/isEmpty.js +5 -0
  839. package/node_modules/lodash/fp/isEqual.js +5 -0
  840. package/node_modules/lodash/fp/isEqualWith.js +5 -0
  841. package/node_modules/lodash/fp/isError.js +5 -0
  842. package/node_modules/lodash/fp/isFinite.js +5 -0
  843. package/node_modules/lodash/fp/isFunction.js +5 -0
  844. package/node_modules/lodash/fp/isInteger.js +5 -0
  845. package/node_modules/lodash/fp/isLength.js +5 -0
  846. package/node_modules/lodash/fp/isMap.js +5 -0
  847. package/node_modules/lodash/fp/isMatch.js +5 -0
  848. package/node_modules/lodash/fp/isMatchWith.js +5 -0
  849. package/node_modules/lodash/fp/isNaN.js +5 -0
  850. package/node_modules/lodash/fp/isNative.js +5 -0
  851. package/node_modules/lodash/fp/isNil.js +5 -0
  852. package/node_modules/lodash/fp/isNull.js +5 -0
  853. package/node_modules/lodash/fp/isNumber.js +5 -0
  854. package/node_modules/lodash/fp/isObject.js +5 -0
  855. package/node_modules/lodash/fp/isObjectLike.js +5 -0
  856. package/node_modules/lodash/fp/isPlainObject.js +5 -0
  857. package/node_modules/lodash/fp/isRegExp.js +5 -0
  858. package/node_modules/lodash/fp/isSafeInteger.js +5 -0
  859. package/node_modules/lodash/fp/isSet.js +5 -0
  860. package/node_modules/lodash/fp/isString.js +5 -0
  861. package/node_modules/lodash/fp/isSymbol.js +5 -0
  862. package/node_modules/lodash/fp/isTypedArray.js +5 -0
  863. package/node_modules/lodash/fp/isUndefined.js +5 -0
  864. package/node_modules/lodash/fp/isWeakMap.js +5 -0
  865. package/node_modules/lodash/fp/isWeakSet.js +5 -0
  866. package/node_modules/lodash/fp/iteratee.js +5 -0
  867. package/node_modules/lodash/fp/join.js +5 -0
  868. package/node_modules/lodash/fp/juxt.js +1 -0
  869. package/node_modules/lodash/fp/kebabCase.js +5 -0
  870. package/node_modules/lodash/fp/keyBy.js +5 -0
  871. package/node_modules/lodash/fp/keys.js +5 -0
  872. package/node_modules/lodash/fp/keysIn.js +5 -0
  873. package/node_modules/lodash/fp/lang.js +2 -0
  874. package/node_modules/lodash/fp/last.js +5 -0
  875. package/node_modules/lodash/fp/lastIndexOf.js +5 -0
  876. package/node_modules/lodash/fp/lastIndexOfFrom.js +5 -0
  877. package/node_modules/lodash/fp/lowerCase.js +5 -0
  878. package/node_modules/lodash/fp/lowerFirst.js +5 -0
  879. package/node_modules/lodash/fp/lt.js +5 -0
  880. package/node_modules/lodash/fp/lte.js +5 -0
  881. package/node_modules/lodash/fp/map.js +5 -0
  882. package/node_modules/lodash/fp/mapKeys.js +5 -0
  883. package/node_modules/lodash/fp/mapValues.js +5 -0
  884. package/node_modules/lodash/fp/matches.js +1 -0
  885. package/node_modules/lodash/fp/matchesProperty.js +5 -0
  886. package/node_modules/lodash/fp/math.js +2 -0
  887. package/node_modules/lodash/fp/max.js +5 -0
  888. package/node_modules/lodash/fp/maxBy.js +5 -0
  889. package/node_modules/lodash/fp/mean.js +5 -0
  890. package/node_modules/lodash/fp/meanBy.js +5 -0
  891. package/node_modules/lodash/fp/memoize.js +5 -0
  892. package/node_modules/lodash/fp/merge.js +5 -0
  893. package/node_modules/lodash/fp/mergeAll.js +5 -0
  894. package/node_modules/lodash/fp/mergeAllWith.js +5 -0
  895. package/node_modules/lodash/fp/mergeWith.js +5 -0
  896. package/node_modules/lodash/fp/method.js +5 -0
  897. package/node_modules/lodash/fp/methodOf.js +5 -0
  898. package/node_modules/lodash/fp/min.js +5 -0
  899. package/node_modules/lodash/fp/minBy.js +5 -0
  900. package/node_modules/lodash/fp/mixin.js +5 -0
  901. package/node_modules/lodash/fp/multiply.js +5 -0
  902. package/node_modules/lodash/fp/nAry.js +1 -0
  903. package/node_modules/lodash/fp/negate.js +5 -0
  904. package/node_modules/lodash/fp/next.js +5 -0
  905. package/node_modules/lodash/fp/noop.js +5 -0
  906. package/node_modules/lodash/fp/now.js +5 -0
  907. package/node_modules/lodash/fp/nth.js +5 -0
  908. package/node_modules/lodash/fp/nthArg.js +5 -0
  909. package/node_modules/lodash/fp/number.js +2 -0
  910. package/node_modules/lodash/fp/object.js +2 -0
  911. package/node_modules/lodash/fp/omit.js +5 -0
  912. package/node_modules/lodash/fp/omitAll.js +1 -0
  913. package/node_modules/lodash/fp/omitBy.js +5 -0
  914. package/node_modules/lodash/fp/once.js +5 -0
  915. package/node_modules/lodash/fp/orderBy.js +5 -0
  916. package/node_modules/lodash/fp/over.js +5 -0
  917. package/node_modules/lodash/fp/overArgs.js +5 -0
  918. package/node_modules/lodash/fp/overEvery.js +5 -0
  919. package/node_modules/lodash/fp/overSome.js +5 -0
  920. package/node_modules/lodash/fp/pad.js +5 -0
  921. package/node_modules/lodash/fp/padChars.js +5 -0
  922. package/node_modules/lodash/fp/padCharsEnd.js +5 -0
  923. package/node_modules/lodash/fp/padCharsStart.js +5 -0
  924. package/node_modules/lodash/fp/padEnd.js +5 -0
  925. package/node_modules/lodash/fp/padStart.js +5 -0
  926. package/node_modules/lodash/fp/parseInt.js +5 -0
  927. package/node_modules/lodash/fp/partial.js +5 -0
  928. package/node_modules/lodash/fp/partialRight.js +5 -0
  929. package/node_modules/lodash/fp/partition.js +5 -0
  930. package/node_modules/lodash/fp/path.js +1 -0
  931. package/node_modules/lodash/fp/pathEq.js +1 -0
  932. package/node_modules/lodash/fp/pathOr.js +1 -0
  933. package/node_modules/lodash/fp/paths.js +1 -0
  934. package/node_modules/lodash/fp/pick.js +5 -0
  935. package/node_modules/lodash/fp/pickAll.js +1 -0
  936. package/node_modules/lodash/fp/pickBy.js +5 -0
  937. package/node_modules/lodash/fp/pipe.js +1 -0
  938. package/node_modules/lodash/fp/placeholder.js +6 -0
  939. package/node_modules/lodash/fp/plant.js +5 -0
  940. package/node_modules/lodash/fp/pluck.js +1 -0
  941. package/node_modules/lodash/fp/prop.js +1 -0
  942. package/node_modules/lodash/fp/propEq.js +1 -0
  943. package/node_modules/lodash/fp/propOr.js +1 -0
  944. package/node_modules/lodash/fp/property.js +1 -0
  945. package/node_modules/lodash/fp/propertyOf.js +5 -0
  946. package/node_modules/lodash/fp/props.js +1 -0
  947. package/node_modules/lodash/fp/pull.js +5 -0
  948. package/node_modules/lodash/fp/pullAll.js +5 -0
  949. package/node_modules/lodash/fp/pullAllBy.js +5 -0
  950. package/node_modules/lodash/fp/pullAllWith.js +5 -0
  951. package/node_modules/lodash/fp/pullAt.js +5 -0
  952. package/node_modules/lodash/fp/random.js +5 -0
  953. package/node_modules/lodash/fp/range.js +5 -0
  954. package/node_modules/lodash/fp/rangeRight.js +5 -0
  955. package/node_modules/lodash/fp/rangeStep.js +5 -0
  956. package/node_modules/lodash/fp/rangeStepRight.js +5 -0
  957. package/node_modules/lodash/fp/rearg.js +5 -0
  958. package/node_modules/lodash/fp/reduce.js +5 -0
  959. package/node_modules/lodash/fp/reduceRight.js +5 -0
  960. package/node_modules/lodash/fp/reject.js +5 -0
  961. package/node_modules/lodash/fp/remove.js +5 -0
  962. package/node_modules/lodash/fp/repeat.js +5 -0
  963. package/node_modules/lodash/fp/replace.js +5 -0
  964. package/node_modules/lodash/fp/rest.js +5 -0
  965. package/node_modules/lodash/fp/restFrom.js +5 -0
  966. package/node_modules/lodash/fp/result.js +5 -0
  967. package/node_modules/lodash/fp/reverse.js +5 -0
  968. package/node_modules/lodash/fp/round.js +5 -0
  969. package/node_modules/lodash/fp/sample.js +5 -0
  970. package/node_modules/lodash/fp/sampleSize.js +5 -0
  971. package/node_modules/lodash/fp/seq.js +2 -0
  972. package/node_modules/lodash/fp/set.js +5 -0
  973. package/node_modules/lodash/fp/setWith.js +5 -0
  974. package/node_modules/lodash/fp/shuffle.js +5 -0
  975. package/node_modules/lodash/fp/size.js +5 -0
  976. package/node_modules/lodash/fp/slice.js +5 -0
  977. package/node_modules/lodash/fp/snakeCase.js +5 -0
  978. package/node_modules/lodash/fp/some.js +5 -0
  979. package/node_modules/lodash/fp/sortBy.js +5 -0
  980. package/node_modules/lodash/fp/sortedIndex.js +5 -0
  981. package/node_modules/lodash/fp/sortedIndexBy.js +5 -0
  982. package/node_modules/lodash/fp/sortedIndexOf.js +5 -0
  983. package/node_modules/lodash/fp/sortedLastIndex.js +5 -0
  984. package/node_modules/lodash/fp/sortedLastIndexBy.js +5 -0
  985. package/node_modules/lodash/fp/sortedLastIndexOf.js +5 -0
  986. package/node_modules/lodash/fp/sortedUniq.js +5 -0
  987. package/node_modules/lodash/fp/sortedUniqBy.js +5 -0
  988. package/node_modules/lodash/fp/split.js +5 -0
  989. package/node_modules/lodash/fp/spread.js +5 -0
  990. package/node_modules/lodash/fp/spreadFrom.js +5 -0
  991. package/node_modules/lodash/fp/startCase.js +5 -0
  992. package/node_modules/lodash/fp/startsWith.js +5 -0
  993. package/node_modules/lodash/fp/string.js +2 -0
  994. package/node_modules/lodash/fp/stubArray.js +5 -0
  995. package/node_modules/lodash/fp/stubFalse.js +5 -0
  996. package/node_modules/lodash/fp/stubObject.js +5 -0
  997. package/node_modules/lodash/fp/stubString.js +5 -0
  998. package/node_modules/lodash/fp/stubTrue.js +5 -0
  999. package/node_modules/lodash/fp/subtract.js +5 -0
  1000. package/node_modules/lodash/fp/sum.js +5 -0
  1001. package/node_modules/lodash/fp/sumBy.js +5 -0
  1002. package/node_modules/lodash/fp/symmetricDifference.js +1 -0
  1003. package/node_modules/lodash/fp/symmetricDifferenceBy.js +1 -0
  1004. package/node_modules/lodash/fp/symmetricDifferenceWith.js +1 -0
  1005. package/node_modules/lodash/fp/tail.js +5 -0
  1006. package/node_modules/lodash/fp/take.js +5 -0
  1007. package/node_modules/lodash/fp/takeLast.js +1 -0
  1008. package/node_modules/lodash/fp/takeLastWhile.js +1 -0
  1009. package/node_modules/lodash/fp/takeRight.js +5 -0
  1010. package/node_modules/lodash/fp/takeRightWhile.js +5 -0
  1011. package/node_modules/lodash/fp/takeWhile.js +5 -0
  1012. package/node_modules/lodash/fp/tap.js +5 -0
  1013. package/node_modules/lodash/fp/template.js +5 -0
  1014. package/node_modules/lodash/fp/templateSettings.js +5 -0
  1015. package/node_modules/lodash/fp/throttle.js +5 -0
  1016. package/node_modules/lodash/fp/thru.js +5 -0
  1017. package/node_modules/lodash/fp/times.js +5 -0
  1018. package/node_modules/lodash/fp/toArray.js +5 -0
  1019. package/node_modules/lodash/fp/toFinite.js +5 -0
  1020. package/node_modules/lodash/fp/toInteger.js +5 -0
  1021. package/node_modules/lodash/fp/toIterator.js +5 -0
  1022. package/node_modules/lodash/fp/toJSON.js +5 -0
  1023. package/node_modules/lodash/fp/toLength.js +5 -0
  1024. package/node_modules/lodash/fp/toLower.js +5 -0
  1025. package/node_modules/lodash/fp/toNumber.js +5 -0
  1026. package/node_modules/lodash/fp/toPairs.js +5 -0
  1027. package/node_modules/lodash/fp/toPairsIn.js +5 -0
  1028. package/node_modules/lodash/fp/toPath.js +5 -0
  1029. package/node_modules/lodash/fp/toPlainObject.js +5 -0
  1030. package/node_modules/lodash/fp/toSafeInteger.js +5 -0
  1031. package/node_modules/lodash/fp/toString.js +5 -0
  1032. package/node_modules/lodash/fp/toUpper.js +5 -0
  1033. package/node_modules/lodash/fp/transform.js +5 -0
  1034. package/node_modules/lodash/fp/trim.js +5 -0
  1035. package/node_modules/lodash/fp/trimChars.js +5 -0
  1036. package/node_modules/lodash/fp/trimCharsEnd.js +5 -0
  1037. package/node_modules/lodash/fp/trimCharsStart.js +5 -0
  1038. package/node_modules/lodash/fp/trimEnd.js +5 -0
  1039. package/node_modules/lodash/fp/trimStart.js +5 -0
  1040. package/node_modules/lodash/fp/truncate.js +5 -0
  1041. package/node_modules/lodash/fp/unapply.js +1 -0
  1042. package/node_modules/lodash/fp/unary.js +5 -0
  1043. package/node_modules/lodash/fp/unescape.js +5 -0
  1044. package/node_modules/lodash/fp/union.js +5 -0
  1045. package/node_modules/lodash/fp/unionBy.js +5 -0
  1046. package/node_modules/lodash/fp/unionWith.js +5 -0
  1047. package/node_modules/lodash/fp/uniq.js +5 -0
  1048. package/node_modules/lodash/fp/uniqBy.js +5 -0
  1049. package/node_modules/lodash/fp/uniqWith.js +5 -0
  1050. package/node_modules/lodash/fp/uniqueId.js +5 -0
  1051. package/node_modules/lodash/fp/unnest.js +1 -0
  1052. package/node_modules/lodash/fp/unset.js +5 -0
  1053. package/node_modules/lodash/fp/unzip.js +5 -0
  1054. package/node_modules/lodash/fp/unzipWith.js +5 -0
  1055. package/node_modules/lodash/fp/update.js +5 -0
  1056. package/node_modules/lodash/fp/updateWith.js +5 -0
  1057. package/node_modules/lodash/fp/upperCase.js +5 -0
  1058. package/node_modules/lodash/fp/upperFirst.js +5 -0
  1059. package/node_modules/lodash/fp/useWith.js +1 -0
  1060. package/node_modules/lodash/fp/util.js +2 -0
  1061. package/node_modules/lodash/fp/value.js +5 -0
  1062. package/node_modules/lodash/fp/valueOf.js +5 -0
  1063. package/node_modules/lodash/fp/values.js +5 -0
  1064. package/node_modules/lodash/fp/valuesIn.js +5 -0
  1065. package/node_modules/lodash/fp/where.js +1 -0
  1066. package/node_modules/lodash/fp/whereEq.js +1 -0
  1067. package/node_modules/lodash/fp/without.js +5 -0
  1068. package/node_modules/lodash/fp/words.js +5 -0
  1069. package/node_modules/lodash/fp/wrap.js +5 -0
  1070. package/node_modules/lodash/fp/wrapperAt.js +5 -0
  1071. package/node_modules/lodash/fp/wrapperChain.js +5 -0
  1072. package/node_modules/lodash/fp/wrapperLodash.js +5 -0
  1073. package/node_modules/lodash/fp/wrapperReverse.js +5 -0
  1074. package/node_modules/lodash/fp/wrapperValue.js +5 -0
  1075. package/node_modules/lodash/fp/xor.js +5 -0
  1076. package/node_modules/lodash/fp/xorBy.js +5 -0
  1077. package/node_modules/lodash/fp/xorWith.js +5 -0
  1078. package/node_modules/lodash/fp/zip.js +5 -0
  1079. package/node_modules/lodash/fp/zipAll.js +5 -0
  1080. package/node_modules/lodash/fp/zipObj.js +1 -0
  1081. package/node_modules/lodash/fp/zipObject.js +5 -0
  1082. package/node_modules/lodash/fp/zipObjectDeep.js +5 -0
  1083. package/node_modules/lodash/fp/zipWith.js +5 -0
  1084. package/node_modules/lodash/fp.js +2 -0
  1085. package/node_modules/lodash/fromPairs.js +28 -0
  1086. package/node_modules/lodash/function.js +25 -0
  1087. package/node_modules/lodash/functions.js +31 -0
  1088. package/node_modules/lodash/functionsIn.js +31 -0
  1089. package/node_modules/lodash/get.js +33 -0
  1090. package/node_modules/lodash/groupBy.js +41 -0
  1091. package/node_modules/lodash/gt.js +29 -0
  1092. package/node_modules/lodash/gte.js +30 -0
  1093. package/node_modules/lodash/has.js +35 -0
  1094. package/node_modules/lodash/hasIn.js +34 -0
  1095. package/node_modules/lodash/head.js +23 -0
  1096. package/node_modules/lodash/identity.js +21 -0
  1097. package/node_modules/lodash/inRange.js +55 -0
  1098. package/node_modules/lodash/includes.js +53 -0
  1099. package/node_modules/lodash/index.js +1 -0
  1100. package/node_modules/lodash/indexOf.js +42 -0
  1101. package/node_modules/lodash/initial.js +22 -0
  1102. package/node_modules/lodash/intersection.js +30 -0
  1103. package/node_modules/lodash/intersectionBy.js +45 -0
  1104. package/node_modules/lodash/intersectionWith.js +41 -0
  1105. package/node_modules/lodash/invert.js +42 -0
  1106. package/node_modules/lodash/invertBy.js +56 -0
  1107. package/node_modules/lodash/invoke.js +24 -0
  1108. package/node_modules/lodash/invokeMap.js +41 -0
  1109. package/node_modules/lodash/isArguments.js +36 -0
  1110. package/node_modules/lodash/isArray.js +26 -0
  1111. package/node_modules/lodash/isArrayBuffer.js +27 -0
  1112. package/node_modules/lodash/isArrayLike.js +33 -0
  1113. package/node_modules/lodash/isArrayLikeObject.js +33 -0
  1114. package/node_modules/lodash/isBoolean.js +29 -0
  1115. package/node_modules/lodash/isBuffer.js +38 -0
  1116. package/node_modules/lodash/isDate.js +27 -0
  1117. package/node_modules/lodash/isElement.js +25 -0
  1118. package/node_modules/lodash/isEmpty.js +77 -0
  1119. package/node_modules/lodash/isEqual.js +35 -0
  1120. package/node_modules/lodash/isEqualWith.js +41 -0
  1121. package/node_modules/lodash/isError.js +36 -0
  1122. package/node_modules/lodash/isFinite.js +36 -0
  1123. package/node_modules/lodash/isFunction.js +37 -0
  1124. package/node_modules/lodash/isInteger.js +33 -0
  1125. package/node_modules/lodash/isLength.js +35 -0
  1126. package/node_modules/lodash/isMap.js +27 -0
  1127. package/node_modules/lodash/isMatch.js +36 -0
  1128. package/node_modules/lodash/isMatchWith.js +41 -0
  1129. package/node_modules/lodash/isNaN.js +38 -0
  1130. package/node_modules/lodash/isNative.js +40 -0
  1131. package/node_modules/lodash/isNil.js +25 -0
  1132. package/node_modules/lodash/isNull.js +22 -0
  1133. package/node_modules/lodash/isNumber.js +38 -0
  1134. package/node_modules/lodash/isObject.js +31 -0
  1135. package/node_modules/lodash/isObjectLike.js +29 -0
  1136. package/node_modules/lodash/isPlainObject.js +62 -0
  1137. package/node_modules/lodash/isRegExp.js +27 -0
  1138. package/node_modules/lodash/isSafeInteger.js +37 -0
  1139. package/node_modules/lodash/isSet.js +27 -0
  1140. package/node_modules/lodash/isString.js +30 -0
  1141. package/node_modules/lodash/isSymbol.js +29 -0
  1142. package/node_modules/lodash/isTypedArray.js +27 -0
  1143. package/node_modules/lodash/isUndefined.js +22 -0
  1144. package/node_modules/lodash/isWeakMap.js +28 -0
  1145. package/node_modules/lodash/isWeakSet.js +28 -0
  1146. package/node_modules/lodash/iteratee.js +53 -0
  1147. package/node_modules/lodash/join.js +26 -0
  1148. package/node_modules/lodash/kebabCase.js +28 -0
  1149. package/node_modules/lodash/keyBy.js +36 -0
  1150. package/node_modules/lodash/keys.js +37 -0
  1151. package/node_modules/lodash/keysIn.js +32 -0
  1152. package/node_modules/lodash/lang.js +58 -0
  1153. package/node_modules/lodash/last.js +20 -0
  1154. package/node_modules/lodash/lastIndexOf.js +46 -0
  1155. package/node_modules/lodash/lodash.js +17209 -0
  1156. package/node_modules/lodash/lodash.min.js +140 -0
  1157. package/node_modules/lodash/lowerCase.js +27 -0
  1158. package/node_modules/lodash/lowerFirst.js +22 -0
  1159. package/node_modules/lodash/lt.js +29 -0
  1160. package/node_modules/lodash/lte.js +30 -0
  1161. package/node_modules/lodash/map.js +53 -0
  1162. package/node_modules/lodash/mapKeys.js +36 -0
  1163. package/node_modules/lodash/mapValues.js +43 -0
  1164. package/node_modules/lodash/matches.js +46 -0
  1165. package/node_modules/lodash/matchesProperty.js +44 -0
  1166. package/node_modules/lodash/math.js +17 -0
  1167. package/node_modules/lodash/max.js +29 -0
  1168. package/node_modules/lodash/maxBy.js +34 -0
  1169. package/node_modules/lodash/mean.js +22 -0
  1170. package/node_modules/lodash/meanBy.js +31 -0
  1171. package/node_modules/lodash/memoize.js +73 -0
  1172. package/node_modules/lodash/merge.js +39 -0
  1173. package/node_modules/lodash/mergeWith.js +39 -0
  1174. package/node_modules/lodash/method.js +34 -0
  1175. package/node_modules/lodash/methodOf.js +33 -0
  1176. package/node_modules/lodash/min.js +29 -0
  1177. package/node_modules/lodash/minBy.js +34 -0
  1178. package/node_modules/lodash/mixin.js +74 -0
  1179. package/node_modules/lodash/multiply.js +22 -0
  1180. package/node_modules/lodash/negate.js +40 -0
  1181. package/node_modules/lodash/next.js +35 -0
  1182. package/node_modules/lodash/noop.js +17 -0
  1183. package/node_modules/lodash/now.js +23 -0
  1184. package/node_modules/lodash/nth.js +29 -0
  1185. package/node_modules/lodash/nthArg.js +32 -0
  1186. package/node_modules/lodash/number.js +5 -0
  1187. package/node_modules/lodash/object.js +49 -0
  1188. package/node_modules/lodash/omit.js +57 -0
  1189. package/node_modules/lodash/omitBy.js +29 -0
  1190. package/node_modules/lodash/once.js +25 -0
  1191. package/node_modules/lodash/orderBy.js +47 -0
  1192. package/node_modules/lodash/over.js +24 -0
  1193. package/node_modules/lodash/overArgs.js +61 -0
  1194. package/node_modules/lodash/overEvery.js +34 -0
  1195. package/node_modules/lodash/overSome.js +37 -0
  1196. package/node_modules/lodash/package.json +21 -0
  1197. package/node_modules/lodash/pad.js +49 -0
  1198. package/node_modules/lodash/padEnd.js +39 -0
  1199. package/node_modules/lodash/padStart.js +39 -0
  1200. package/node_modules/lodash/parseInt.js +43 -0
  1201. package/node_modules/lodash/partial.js +50 -0
  1202. package/node_modules/lodash/partialRight.js +49 -0
  1203. package/node_modules/lodash/partition.js +43 -0
  1204. package/node_modules/lodash/pick.js +25 -0
  1205. package/node_modules/lodash/pickBy.js +37 -0
  1206. package/node_modules/lodash/plant.js +48 -0
  1207. package/node_modules/lodash/property.js +32 -0
  1208. package/node_modules/lodash/propertyOf.js +30 -0
  1209. package/node_modules/lodash/pull.js +29 -0
  1210. package/node_modules/lodash/pullAll.js +29 -0
  1211. package/node_modules/lodash/pullAllBy.js +33 -0
  1212. package/node_modules/lodash/pullAllWith.js +32 -0
  1213. package/node_modules/lodash/pullAt.js +43 -0
  1214. package/node_modules/lodash/random.js +82 -0
  1215. package/node_modules/lodash/range.js +46 -0
  1216. package/node_modules/lodash/rangeRight.js +41 -0
  1217. package/node_modules/lodash/rearg.js +33 -0
  1218. package/node_modules/lodash/reduce.js +51 -0
  1219. package/node_modules/lodash/reduceRight.js +36 -0
  1220. package/node_modules/lodash/reject.js +46 -0
  1221. package/node_modules/lodash/release.md +48 -0
  1222. package/node_modules/lodash/remove.js +53 -0
  1223. package/node_modules/lodash/repeat.js +37 -0
  1224. package/node_modules/lodash/replace.js +29 -0
  1225. package/node_modules/lodash/rest.js +40 -0
  1226. package/node_modules/lodash/result.js +56 -0
  1227. package/node_modules/lodash/reverse.js +34 -0
  1228. package/node_modules/lodash/round.js +26 -0
  1229. package/node_modules/lodash/sample.js +24 -0
  1230. package/node_modules/lodash/sampleSize.js +37 -0
  1231. package/node_modules/lodash/seq.js +16 -0
  1232. package/node_modules/lodash/set.js +35 -0
  1233. package/node_modules/lodash/setWith.js +32 -0
  1234. package/node_modules/lodash/shuffle.js +25 -0
  1235. package/node_modules/lodash/size.js +46 -0
  1236. package/node_modules/lodash/slice.js +37 -0
  1237. package/node_modules/lodash/snakeCase.js +28 -0
  1238. package/node_modules/lodash/some.js +51 -0
  1239. package/node_modules/lodash/sortBy.js +48 -0
  1240. package/node_modules/lodash/sortedIndex.js +24 -0
  1241. package/node_modules/lodash/sortedIndexBy.js +33 -0
  1242. package/node_modules/lodash/sortedIndexOf.js +31 -0
  1243. package/node_modules/lodash/sortedLastIndex.js +25 -0
  1244. package/node_modules/lodash/sortedLastIndexBy.js +33 -0
  1245. package/node_modules/lodash/sortedLastIndexOf.js +31 -0
  1246. package/node_modules/lodash/sortedUniq.js +24 -0
  1247. package/node_modules/lodash/sortedUniqBy.js +26 -0
  1248. package/node_modules/lodash/split.js +52 -0
  1249. package/node_modules/lodash/spread.js +63 -0
  1250. package/node_modules/lodash/startCase.js +29 -0
  1251. package/node_modules/lodash/startsWith.js +39 -0
  1252. package/node_modules/lodash/string.js +33 -0
  1253. package/node_modules/lodash/stubArray.js +23 -0
  1254. package/node_modules/lodash/stubFalse.js +18 -0
  1255. package/node_modules/lodash/stubObject.js +23 -0
  1256. package/node_modules/lodash/stubString.js +18 -0
  1257. package/node_modules/lodash/stubTrue.js +18 -0
  1258. package/node_modules/lodash/subtract.js +22 -0
  1259. package/node_modules/lodash/sum.js +24 -0
  1260. package/node_modules/lodash/sumBy.js +33 -0
  1261. package/node_modules/lodash/tail.js +22 -0
  1262. package/node_modules/lodash/take.js +37 -0
  1263. package/node_modules/lodash/takeRight.js +39 -0
  1264. package/node_modules/lodash/takeRightWhile.js +45 -0
  1265. package/node_modules/lodash/takeWhile.js +45 -0
  1266. package/node_modules/lodash/tap.js +29 -0
  1267. package/node_modules/lodash/template.js +272 -0
  1268. package/node_modules/lodash/templateSettings.js +67 -0
  1269. package/node_modules/lodash/throttle.js +69 -0
  1270. package/node_modules/lodash/thru.js +28 -0
  1271. package/node_modules/lodash/times.js +51 -0
  1272. package/node_modules/lodash/toArray.js +58 -0
  1273. package/node_modules/lodash/toFinite.js +42 -0
  1274. package/node_modules/lodash/toInteger.js +36 -0
  1275. package/node_modules/lodash/toIterator.js +23 -0
  1276. package/node_modules/lodash/toJSON.js +1 -0
  1277. package/node_modules/lodash/toLength.js +38 -0
  1278. package/node_modules/lodash/toLower.js +28 -0
  1279. package/node_modules/lodash/toNumber.js +64 -0
  1280. package/node_modules/lodash/toPairs.js +30 -0
  1281. package/node_modules/lodash/toPairsIn.js +30 -0
  1282. package/node_modules/lodash/toPath.js +33 -0
  1283. package/node_modules/lodash/toPlainObject.js +32 -0
  1284. package/node_modules/lodash/toSafeInteger.js +37 -0
  1285. package/node_modules/lodash/toString.js +28 -0
  1286. package/node_modules/lodash/toUpper.js +28 -0
  1287. package/node_modules/lodash/transform.js +65 -0
  1288. package/node_modules/lodash/trim.js +47 -0
  1289. package/node_modules/lodash/trimEnd.js +41 -0
  1290. package/node_modules/lodash/trimStart.js +43 -0
  1291. package/node_modules/lodash/truncate.js +111 -0
  1292. package/node_modules/lodash/unary.js +22 -0
  1293. package/node_modules/lodash/unescape.js +34 -0
  1294. package/node_modules/lodash/union.js +26 -0
  1295. package/node_modules/lodash/unionBy.js +39 -0
  1296. package/node_modules/lodash/unionWith.js +34 -0
  1297. package/node_modules/lodash/uniq.js +25 -0
  1298. package/node_modules/lodash/uniqBy.js +31 -0
  1299. package/node_modules/lodash/uniqWith.js +28 -0
  1300. package/node_modules/lodash/uniqueId.js +28 -0
  1301. package/node_modules/lodash/unset.js +34 -0
  1302. package/node_modules/lodash/unzip.js +45 -0
  1303. package/node_modules/lodash/unzipWith.js +39 -0
  1304. package/node_modules/lodash/update.js +35 -0
  1305. package/node_modules/lodash/updateWith.js +33 -0
  1306. package/node_modules/lodash/upperCase.js +27 -0
  1307. package/node_modules/lodash/upperFirst.js +22 -0
  1308. package/node_modules/lodash/util.js +34 -0
  1309. package/node_modules/lodash/value.js +1 -0
  1310. package/node_modules/lodash/valueOf.js +1 -0
  1311. package/node_modules/lodash/values.js +34 -0
  1312. package/node_modules/lodash/valuesIn.js +32 -0
  1313. package/node_modules/lodash/without.js +31 -0
  1314. package/node_modules/lodash/words.js +35 -0
  1315. package/node_modules/lodash/wrap.js +30 -0
  1316. package/node_modules/lodash/wrapperAt.js +48 -0
  1317. package/node_modules/lodash/wrapperChain.js +34 -0
  1318. package/node_modules/lodash/wrapperLodash.js +147 -0
  1319. package/node_modules/lodash/wrapperReverse.js +44 -0
  1320. package/node_modules/lodash/wrapperValue.js +21 -0
  1321. package/node_modules/lodash/xor.js +28 -0
  1322. package/node_modules/lodash/xorBy.js +39 -0
  1323. package/node_modules/lodash/xorWith.js +34 -0
  1324. package/node_modules/lodash/zip.js +22 -0
  1325. package/node_modules/lodash/zipObject.js +24 -0
  1326. package/node_modules/lodash/zipObjectDeep.js +23 -0
  1327. package/node_modules/lodash/zipWith.js +32 -0
  1328. package/node_modules/lower-case/LICENSE +21 -0
  1329. package/node_modules/lower-case/README.md +35 -0
  1330. package/node_modules/lower-case/dist/index.d.ts +8 -0
  1331. package/node_modules/lower-case/dist/index.js +53 -0
  1332. package/node_modules/lower-case/dist/index.js.map +1 -0
  1333. package/node_modules/lower-case/dist/index.spec.d.ts +1 -0
  1334. package/node_modules/lower-case/dist/index.spec.js +36 -0
  1335. package/node_modules/lower-case/dist/index.spec.js.map +1 -0
  1336. package/node_modules/lower-case/dist.es2015/index.d.ts +8 -0
  1337. package/node_modules/lower-case/dist.es2015/index.js +48 -0
  1338. package/node_modules/lower-case/dist.es2015/index.js.map +1 -0
  1339. package/node_modules/lower-case/dist.es2015/index.spec.d.ts +1 -0
  1340. package/node_modules/lower-case/dist.es2015/index.spec.js +34 -0
  1341. package/node_modules/lower-case/dist.es2015/index.spec.js.map +1 -0
  1342. package/node_modules/lower-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  1343. package/node_modules/lower-case/node_modules/tslib/LICENSE.txt +12 -0
  1344. package/node_modules/lower-case/node_modules/tslib/README.md +164 -0
  1345. package/node_modules/lower-case/node_modules/tslib/modules/index.js +55 -0
  1346. package/node_modules/lower-case/node_modules/tslib/modules/package.json +3 -0
  1347. package/node_modules/lower-case/node_modules/tslib/package.json +42 -0
  1348. package/node_modules/lower-case/node_modules/tslib/tslib.d.ts +398 -0
  1349. package/node_modules/lower-case/node_modules/tslib/tslib.es6.html +1 -0
  1350. package/node_modules/lower-case/node_modules/tslib/tslib.es6.js +248 -0
  1351. package/node_modules/lower-case/node_modules/tslib/tslib.html +1 -0
  1352. package/node_modules/lower-case/node_modules/tslib/tslib.js +317 -0
  1353. package/node_modules/lower-case/package.json +91 -0
  1354. package/node_modules/no-case/LICENSE +21 -0
  1355. package/node_modules/no-case/README.md +37 -0
  1356. package/node_modules/no-case/dist/index.d.ts +10 -0
  1357. package/node_modules/no-case/dist/index.js +35 -0
  1358. package/node_modules/no-case/dist/index.js.map +1 -0
  1359. package/node_modules/no-case/dist/index.spec.d.ts +1 -0
  1360. package/node_modules/no-case/dist/index.spec.js +59 -0
  1361. package/node_modules/no-case/dist/index.spec.js.map +1 -0
  1362. package/node_modules/no-case/dist.es2015/index.d.ts +10 -0
  1363. package/node_modules/no-case/dist.es2015/index.js +31 -0
  1364. package/node_modules/no-case/dist.es2015/index.js.map +1 -0
  1365. package/node_modules/no-case/dist.es2015/index.spec.d.ts +1 -0
  1366. package/node_modules/no-case/dist.es2015/index.spec.js +57 -0
  1367. package/node_modules/no-case/dist.es2015/index.spec.js.map +1 -0
  1368. package/node_modules/no-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  1369. package/node_modules/no-case/node_modules/tslib/LICENSE.txt +12 -0
  1370. package/node_modules/no-case/node_modules/tslib/README.md +164 -0
  1371. package/node_modules/no-case/node_modules/tslib/modules/index.js +55 -0
  1372. package/node_modules/no-case/node_modules/tslib/modules/package.json +3 -0
  1373. package/node_modules/no-case/node_modules/tslib/package.json +42 -0
  1374. package/node_modules/no-case/node_modules/tslib/tslib.d.ts +398 -0
  1375. package/node_modules/no-case/node_modules/tslib/tslib.es6.html +1 -0
  1376. package/node_modules/no-case/node_modules/tslib/tslib.es6.js +248 -0
  1377. package/node_modules/no-case/node_modules/tslib/tslib.html +1 -0
  1378. package/node_modules/no-case/node_modules/tslib/tslib.js +317 -0
  1379. package/node_modules/no-case/package.json +89 -0
  1380. package/node_modules/nunjucks/CHANGELOG.md +736 -0
  1381. package/node_modules/nunjucks/LICENSE +26 -0
  1382. package/node_modules/nunjucks/README.md +58 -0
  1383. package/node_modules/nunjucks/bin/precompile +58 -0
  1384. package/node_modules/nunjucks/bin/precompile.cmd +5 -0
  1385. package/node_modules/nunjucks/browser/nunjucks-slim.js +4263 -0
  1386. package/node_modules/nunjucks/browser/nunjucks-slim.js.map +1 -0
  1387. package/node_modules/nunjucks/browser/nunjucks-slim.min.js +3 -0
  1388. package/node_modules/nunjucks/browser/nunjucks-slim.min.js.map +1 -0
  1389. package/node_modules/nunjucks/browser/nunjucks.js +8423 -0
  1390. package/node_modules/nunjucks/browser/nunjucks.js.map +1 -0
  1391. package/node_modules/nunjucks/browser/nunjucks.min.js +3 -0
  1392. package/node_modules/nunjucks/browser/nunjucks.min.js.map +1 -0
  1393. package/node_modules/nunjucks/index.js +103 -0
  1394. package/node_modules/nunjucks/node_modules/commander/CHANGELOG.md +385 -0
  1395. package/node_modules/nunjucks/node_modules/commander/LICENSE +22 -0
  1396. package/node_modules/nunjucks/node_modules/commander/Readme.md +737 -0
  1397. package/node_modules/nunjucks/node_modules/commander/index.js +1756 -0
  1398. package/node_modules/nunjucks/node_modules/commander/package.json +52 -0
  1399. package/node_modules/nunjucks/node_modules/commander/typings/index.d.ts +386 -0
  1400. package/node_modules/nunjucks/package.json +116 -0
  1401. package/node_modules/nunjucks/src/compiler.js +1449 -0
  1402. package/node_modules/nunjucks/src/environment.js +659 -0
  1403. package/node_modules/nunjucks/src/express-app.js +28 -0
  1404. package/node_modules/nunjucks/src/filters.js +680 -0
  1405. package/node_modules/nunjucks/src/globals.js +72 -0
  1406. package/node_modules/nunjucks/src/jinja-compat.js +358 -0
  1407. package/node_modules/nunjucks/src/lexer.js +542 -0
  1408. package/node_modules/nunjucks/src/lib.js +417 -0
  1409. package/node_modules/nunjucks/src/loader.js +30 -0
  1410. package/node_modules/nunjucks/src/loaders.js +5 -0
  1411. package/node_modules/nunjucks/src/node-loaders.js +177 -0
  1412. package/node_modules/nunjucks/src/nodes.js +394 -0
  1413. package/node_modules/nunjucks/src/object.js +129 -0
  1414. package/node_modules/nunjucks/src/parser.js +1267 -0
  1415. package/node_modules/nunjucks/src/precompile-global.js +22 -0
  1416. package/node_modules/nunjucks/src/precompile.js +131 -0
  1417. package/node_modules/nunjucks/src/precompiled-loader.js +41 -0
  1418. package/node_modules/nunjucks/src/runtime.js +405 -0
  1419. package/node_modules/nunjucks/src/tests.js +286 -0
  1420. package/node_modules/nunjucks/src/transformer.js +197 -0
  1421. package/node_modules/nunjucks/src/web-loaders.js +110 -0
  1422. package/node_modules/param-case/LICENSE +21 -0
  1423. package/node_modules/param-case/README.md +37 -0
  1424. package/node_modules/param-case/dist/index.d.ts +3 -0
  1425. package/node_modules/param-case/dist/index.js +11 -0
  1426. package/node_modules/param-case/dist/index.js.map +1 -0
  1427. package/node_modules/param-case/dist/index.spec.d.ts +1 -0
  1428. package/node_modules/param-case/dist/index.spec.js +24 -0
  1429. package/node_modules/param-case/dist/index.spec.js.map +1 -0
  1430. package/node_modules/param-case/dist.es2015/index.d.ts +3 -0
  1431. package/node_modules/param-case/dist.es2015/index.js +7 -0
  1432. package/node_modules/param-case/dist.es2015/index.js.map +1 -0
  1433. package/node_modules/param-case/dist.es2015/index.spec.d.ts +1 -0
  1434. package/node_modules/param-case/dist.es2015/index.spec.js +22 -0
  1435. package/node_modules/param-case/dist.es2015/index.spec.js.map +1 -0
  1436. package/node_modules/param-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  1437. package/node_modules/param-case/node_modules/tslib/LICENSE.txt +12 -0
  1438. package/node_modules/param-case/node_modules/tslib/README.md +164 -0
  1439. package/node_modules/param-case/node_modules/tslib/modules/index.js +55 -0
  1440. package/node_modules/param-case/node_modules/tslib/modules/package.json +3 -0
  1441. package/node_modules/param-case/node_modules/tslib/package.json +42 -0
  1442. package/node_modules/param-case/node_modules/tslib/tslib.d.ts +398 -0
  1443. package/node_modules/param-case/node_modules/tslib/tslib.es6.html +1 -0
  1444. package/node_modules/param-case/node_modules/tslib/tslib.es6.js +248 -0
  1445. package/node_modules/param-case/node_modules/tslib/tslib.html +1 -0
  1446. package/node_modules/param-case/node_modules/tslib/tslib.js +317 -0
  1447. package/node_modules/param-case/package.json +95 -0
  1448. package/node_modules/pascal-case/LICENSE +21 -0
  1449. package/node_modules/pascal-case/README.md +47 -0
  1450. package/node_modules/pascal-case/dist/index.d.ts +5 -0
  1451. package/node_modules/pascal-case/dist/index.js +24 -0
  1452. package/node_modules/pascal-case/dist/index.js.map +1 -0
  1453. package/node_modules/pascal-case/dist/index.spec.d.ts +1 -0
  1454. package/node_modules/pascal-case/dist/index.spec.js +25 -0
  1455. package/node_modules/pascal-case/dist/index.spec.js.map +1 -0
  1456. package/node_modules/pascal-case/dist.es2015/index.d.ts +5 -0
  1457. package/node_modules/pascal-case/dist.es2015/index.js +18 -0
  1458. package/node_modules/pascal-case/dist.es2015/index.js.map +1 -0
  1459. package/node_modules/pascal-case/dist.es2015/index.spec.d.ts +1 -0
  1460. package/node_modules/pascal-case/dist.es2015/index.spec.js +23 -0
  1461. package/node_modules/pascal-case/dist.es2015/index.spec.js.map +1 -0
  1462. package/node_modules/pascal-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  1463. package/node_modules/pascal-case/node_modules/tslib/LICENSE.txt +12 -0
  1464. package/node_modules/pascal-case/node_modules/tslib/README.md +164 -0
  1465. package/node_modules/pascal-case/node_modules/tslib/modules/index.js +55 -0
  1466. package/node_modules/pascal-case/node_modules/tslib/modules/package.json +3 -0
  1467. package/node_modules/pascal-case/node_modules/tslib/package.json +42 -0
  1468. package/node_modules/pascal-case/node_modules/tslib/tslib.d.ts +398 -0
  1469. package/node_modules/pascal-case/node_modules/tslib/tslib.es6.html +1 -0
  1470. package/node_modules/pascal-case/node_modules/tslib/tslib.es6.js +248 -0
  1471. package/node_modules/pascal-case/node_modules/tslib/tslib.html +1 -0
  1472. package/node_modules/pascal-case/node_modules/tslib/tslib.js +317 -0
  1473. package/node_modules/pascal-case/package.json +94 -0
  1474. package/node_modules/path-case/LICENSE +21 -0
  1475. package/node_modules/path-case/README.md +37 -0
  1476. package/node_modules/path-case/dist/index.d.ts +3 -0
  1477. package/node_modules/path-case/dist/index.js +11 -0
  1478. package/node_modules/path-case/dist/index.js.map +1 -0
  1479. package/node_modules/path-case/dist/index.spec.d.ts +1 -0
  1480. package/node_modules/path-case/dist/index.spec.js +24 -0
  1481. package/node_modules/path-case/dist/index.spec.js.map +1 -0
  1482. package/node_modules/path-case/dist.es2015/index.d.ts +3 -0
  1483. package/node_modules/path-case/dist.es2015/index.js +7 -0
  1484. package/node_modules/path-case/dist.es2015/index.js.map +1 -0
  1485. package/node_modules/path-case/dist.es2015/index.spec.d.ts +1 -0
  1486. package/node_modules/path-case/dist.es2015/index.spec.js +22 -0
  1487. package/node_modules/path-case/dist.es2015/index.spec.js.map +1 -0
  1488. package/node_modules/path-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  1489. package/node_modules/path-case/node_modules/tslib/LICENSE.txt +12 -0
  1490. package/node_modules/path-case/node_modules/tslib/README.md +164 -0
  1491. package/node_modules/path-case/node_modules/tslib/modules/index.js +55 -0
  1492. package/node_modules/path-case/node_modules/tslib/modules/package.json +3 -0
  1493. package/node_modules/path-case/node_modules/tslib/package.json +42 -0
  1494. package/node_modules/path-case/node_modules/tslib/tslib.d.ts +398 -0
  1495. package/node_modules/path-case/node_modules/tslib/tslib.es6.html +1 -0
  1496. package/node_modules/path-case/node_modules/tslib/tslib.es6.js +248 -0
  1497. package/node_modules/path-case/node_modules/tslib/tslib.html +1 -0
  1498. package/node_modules/path-case/node_modules/tslib/tslib.js +317 -0
  1499. package/node_modules/path-case/package.json +92 -0
  1500. package/node_modules/sentence-case/LICENSE +21 -0
  1501. package/node_modules/sentence-case/README.md +37 -0
  1502. package/node_modules/sentence-case/dist/index.d.ts +4 -0
  1503. package/node_modules/sentence-case/dist/index.js +19 -0
  1504. package/node_modules/sentence-case/dist/index.js.map +1 -0
  1505. package/node_modules/sentence-case/dist/index.spec.d.ts +1 -0
  1506. package/node_modules/sentence-case/dist/index.spec.js +24 -0
  1507. package/node_modules/sentence-case/dist/index.spec.js.map +1 -0
  1508. package/node_modules/sentence-case/dist.es2015/index.d.ts +4 -0
  1509. package/node_modules/sentence-case/dist.es2015/index.js +14 -0
  1510. package/node_modules/sentence-case/dist.es2015/index.js.map +1 -0
  1511. package/node_modules/sentence-case/dist.es2015/index.spec.d.ts +1 -0
  1512. package/node_modules/sentence-case/dist.es2015/index.spec.js +22 -0
  1513. package/node_modules/sentence-case/dist.es2015/index.spec.js.map +1 -0
  1514. package/node_modules/sentence-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  1515. package/node_modules/sentence-case/node_modules/tslib/LICENSE.txt +12 -0
  1516. package/node_modules/sentence-case/node_modules/tslib/README.md +164 -0
  1517. package/node_modules/sentence-case/node_modules/tslib/modules/index.js +55 -0
  1518. package/node_modules/sentence-case/node_modules/tslib/modules/package.json +3 -0
  1519. package/node_modules/sentence-case/node_modules/tslib/package.json +42 -0
  1520. package/node_modules/sentence-case/node_modules/tslib/tslib.d.ts +398 -0
  1521. package/node_modules/sentence-case/node_modules/tslib/tslib.es6.html +1 -0
  1522. package/node_modules/sentence-case/node_modules/tslib/tslib.es6.js +248 -0
  1523. package/node_modules/sentence-case/node_modules/tslib/tslib.html +1 -0
  1524. package/node_modules/sentence-case/node_modules/tslib/tslib.js +317 -0
  1525. package/node_modules/sentence-case/package.json +93 -0
  1526. package/node_modules/snake-case/LICENSE +21 -0
  1527. package/node_modules/snake-case/README.md +37 -0
  1528. package/node_modules/snake-case/dist/index.d.ts +3 -0
  1529. package/node_modules/snake-case/dist/index.js +11 -0
  1530. package/node_modules/snake-case/dist/index.js.map +1 -0
  1531. package/node_modules/snake-case/dist/index.spec.d.ts +1 -0
  1532. package/node_modules/snake-case/dist/index.spec.js +25 -0
  1533. package/node_modules/snake-case/dist/index.spec.js.map +1 -0
  1534. package/node_modules/snake-case/dist.es2015/index.d.ts +3 -0
  1535. package/node_modules/snake-case/dist.es2015/index.js +7 -0
  1536. package/node_modules/snake-case/dist.es2015/index.js.map +1 -0
  1537. package/node_modules/snake-case/dist.es2015/index.spec.d.ts +1 -0
  1538. package/node_modules/snake-case/dist.es2015/index.spec.js +23 -0
  1539. package/node_modules/snake-case/dist.es2015/index.spec.js.map +1 -0
  1540. package/node_modules/snake-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  1541. package/node_modules/snake-case/node_modules/tslib/LICENSE.txt +12 -0
  1542. package/node_modules/snake-case/node_modules/tslib/README.md +164 -0
  1543. package/node_modules/snake-case/node_modules/tslib/modules/index.js +55 -0
  1544. package/node_modules/snake-case/node_modules/tslib/modules/package.json +3 -0
  1545. package/node_modules/snake-case/node_modules/tslib/package.json +42 -0
  1546. package/node_modules/snake-case/node_modules/tslib/tslib.d.ts +398 -0
  1547. package/node_modules/snake-case/node_modules/tslib/tslib.es6.html +1 -0
  1548. package/node_modules/snake-case/node_modules/tslib/tslib.es6.js +248 -0
  1549. package/node_modules/snake-case/node_modules/tslib/tslib.html +1 -0
  1550. package/node_modules/snake-case/node_modules/tslib/tslib.js +317 -0
  1551. package/node_modules/snake-case/package.json +94 -0
  1552. package/node_modules/upper-case/README.md +34 -0
  1553. package/node_modules/upper-case/dist/index.d.ts +8 -0
  1554. package/node_modules/upper-case/dist/index.js +49 -0
  1555. package/node_modules/upper-case/dist/index.js.map +1 -0
  1556. package/node_modules/upper-case/dist/index.spec.d.ts +1 -0
  1557. package/node_modules/upper-case/dist/index.spec.js +34 -0
  1558. package/node_modules/upper-case/dist/index.spec.js.map +1 -0
  1559. package/node_modules/upper-case/dist.es2015/index.d.ts +8 -0
  1560. package/node_modules/upper-case/dist.es2015/index.js +44 -0
  1561. package/node_modules/upper-case/dist.es2015/index.js.map +1 -0
  1562. package/node_modules/upper-case/dist.es2015/index.spec.d.ts +1 -0
  1563. package/node_modules/upper-case/dist.es2015/index.spec.js +32 -0
  1564. package/node_modules/upper-case/dist.es2015/index.spec.js.map +1 -0
  1565. package/node_modules/upper-case/node_modules/tslib/CopyrightNotice.txt +15 -0
  1566. package/node_modules/upper-case/node_modules/tslib/LICENSE.txt +12 -0
  1567. package/node_modules/upper-case/node_modules/tslib/README.md +164 -0
  1568. package/node_modules/upper-case/node_modules/tslib/modules/index.js +55 -0
  1569. package/node_modules/upper-case/node_modules/tslib/modules/package.json +3 -0
  1570. package/node_modules/upper-case/node_modules/tslib/package.json +42 -0
  1571. package/node_modules/upper-case/node_modules/tslib/tslib.d.ts +398 -0
  1572. package/node_modules/upper-case/node_modules/tslib/tslib.es6.html +1 -0
  1573. package/node_modules/upper-case/node_modules/tslib/tslib.es6.js +248 -0
  1574. package/node_modules/upper-case/node_modules/tslib/tslib.html +1 -0
  1575. package/node_modules/upper-case/node_modules/tslib/tslib.js +317 -0
  1576. package/node_modules/upper-case/package.json +90 -0
  1577. package/node_modules/upper-case-first/LICENSE +21 -0
  1578. package/node_modules/upper-case-first/README.md +32 -0
  1579. package/node_modules/upper-case-first/dist/index.d.ts +4 -0
  1580. package/node_modules/upper-case-first/dist/index.js +11 -0
  1581. package/node_modules/upper-case-first/dist/index.js.map +1 -0
  1582. package/node_modules/upper-case-first/dist/index.spec.d.ts +1 -0
  1583. package/node_modules/upper-case-first/dist/index.spec.js +20 -0
  1584. package/node_modules/upper-case-first/dist/index.spec.js.map +1 -0
  1585. package/node_modules/upper-case-first/dist.es2015/index.d.ts +4 -0
  1586. package/node_modules/upper-case-first/dist.es2015/index.js +7 -0
  1587. package/node_modules/upper-case-first/dist.es2015/index.js.map +1 -0
  1588. package/node_modules/upper-case-first/dist.es2015/index.spec.d.ts +1 -0
  1589. package/node_modules/upper-case-first/dist.es2015/index.spec.js +18 -0
  1590. package/node_modules/upper-case-first/dist.es2015/index.spec.js.map +1 -0
  1591. package/node_modules/upper-case-first/node_modules/tslib/CopyrightNotice.txt +15 -0
  1592. package/node_modules/upper-case-first/node_modules/tslib/LICENSE.txt +12 -0
  1593. package/node_modules/upper-case-first/node_modules/tslib/README.md +164 -0
  1594. package/node_modules/upper-case-first/node_modules/tslib/modules/index.js +55 -0
  1595. package/node_modules/upper-case-first/node_modules/tslib/modules/package.json +3 -0
  1596. package/node_modules/upper-case-first/node_modules/tslib/package.json +42 -0
  1597. package/node_modules/upper-case-first/node_modules/tslib/tslib.d.ts +398 -0
  1598. package/node_modules/upper-case-first/node_modules/tslib/tslib.es6.html +1 -0
  1599. package/node_modules/upper-case-first/node_modules/tslib/tslib.es6.js +248 -0
  1600. package/node_modules/upper-case-first/node_modules/tslib/tslib.html +1 -0
  1601. package/node_modules/upper-case-first/node_modules/tslib/tslib.js +317 -0
  1602. package/node_modules/upper-case-first/package.json +91 -0
  1603. package/package.json +149 -0
@@ -0,0 +1,3 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="1182px" height="684px" viewBox="-0.5 -0.5 1182 684"><defs><linearGradient x1="0%" y1="100%" x2="0%" y2="0%" id="mx-gradient-f78e04-1-d05c17-1-s-0"><stop offset="0%" style="stop-color: rgb(208, 92, 23); stop-opacity: 1;"/><stop offset="100%" style="stop-color: rgb(247, 142, 4); stop-opacity: 1;"/></linearGradient><linearGradient x1="0%" y1="100%" x2="0%" y2="0%" id="mx-gradient-945df2-1-5a30b5-1-s-0"><stop offset="0%" style="stop-color: rgb(90, 48, 181); stop-opacity: 1;"/><stop offset="100%" style="stop-color: rgb(148, 93, 242); stop-opacity: 1;"/></linearGradient><linearGradient x1="0%" y1="100%" x2="0%" y2="0%" id="mx-gradient-ff4f8b-1-bc1356-1-s-0"><stop offset="0%" style="stop-color: rgb(188, 19, 86); stop-opacity: 1;"/><stop offset="100%" style="stop-color: rgb(255, 79, 139); stop-opacity: 1;"/></linearGradient><linearGradient x1="0%" y1="100%" x2="0%" y2="0%" id="mx-gradient-60a337-1-277116-1-s-0"><stop offset="0%" style="stop-color: rgb(39, 113, 22); stop-opacity: 1;"/><stop offset="100%" style="stop-color: rgb(96, 163, 55); stop-opacity: 1;"/></linearGradient><linearGradient x1="0%" y1="100%" x2="0%" y2="0%" id="mx-gradient-4d72f3-1-3334b9-1-s-0"><stop offset="0%" style="stop-color: rgb(51, 52, 185); stop-opacity: 1;"/><stop offset="100%" style="stop-color: rgb(77, 114, 243); stop-opacity: 1;"/></linearGradient><linearGradient x1="0%" y1="100%" x2="0%" y2="0%" id="mx-gradient-f34482-1-bc1356-1-s-0"><stop offset="0%" style="stop-color: rgb(188, 19, 86); stop-opacity: 1;"/><stop offset="100%" style="stop-color: rgb(243, 68, 130); stop-opacity: 1;"/></linearGradient><style type="text/css">@import url("data:application/x-font-ttf;charset=utf-8;base64,LyogY3lyaWxsaWMtZXh0ICovCkBmb250LWZhY2UgewogIGZvbnQtZmFtaWx5OiAnUnViaWsnOwogIGZvbnQtc3R5bGU6IG5vcm1hbDsKICBmb250LXdlaWdodDogNDAwOwogIGZvbnQtZGlzcGxheTogc3dhcDsKICBzcmM6IHVybChodHRwczovL2ZvbnRzLmdzdGF0aWMuY29tL3MvcnViaWsvdjIxL2lKV1pCWHlJZkRuSVY1UE5oWTFLVE43Wi1ZaC1CNGlGV2tVemRZUEZrWlZPQTZ3LndvZmYpIGZvcm1hdCgnd29mZicpOwogIHVuaWNvZGUtcmFuZ2U6IFUrMDQ2MC0wNTJGLCBVKzFDODAtMUM4OCwgVSsyMEI0LCBVKzJERTAtMkRGRiwgVStBNjQwLUE2OUYsIFUrRkUyRS1GRTJGOwp9Ci8qIGN5cmlsbGljICovCkBmb250LWZhY2UgewogIGZvbnQtZmFtaWx5OiAnUnViaWsnOwogIGZvbnQtc3R5bGU6IG5vcm1hbDsKICBmb250LXdlaWdodDogNDAwOwogIGZvbnQtZGlzcGxheTogc3dhcDsKICBzcmM6IHVybChodHRwczovL2ZvbnRzLmdzdGF0aWMuY29tL3MvcnViaWsvdjIxL2lKV1pCWHlJZkRuSVY1UE5oWTFLVE43Wi1ZaC1CNGlGVTBVemRZUEZrWlZPQTZ3LndvZmYpIGZvcm1hdCgnd29mZicpOwogIHVuaWNvZGUtcmFuZ2U6IFUrMDMwMSwgVSswNDAwLTA0NUYsIFUrMDQ5MC0wNDkxLCBVKzA0QjAtMDRCMSwgVSsyMTE2Owp9Ci8qIGhlYnJldyAqLwpAZm9udC1mYWNlIHsKICBmb250LWZhbWlseTogJ1J1YmlrJzsKICBmb250LXN0eWxlOiBub3JtYWw7CiAgZm9udC13ZWlnaHQ6IDQwMDsKICBmb250LWRpc3BsYXk6IHN3YXA7CiAgc3JjOiB1cmwoaHR0cHM6Ly9mb250cy5nc3RhdGljLmNvbS9zL3J1YmlrL3YyMS9pSldaQlh5SWZEbklWNVBOaFkxS1RON1otWWgtQjRpRlZVVXpkWVBGa1pWT0E2dy53b2ZmKSBmb3JtYXQoJ3dvZmYnKTsKICB1bmljb2RlLXJhbmdlOiBVKzA1OTAtMDVGRiwgVSsyMDBDLTIwMTAsIFUrMjBBQSwgVSsyNUNDLCBVK0ZCMUQtRkI0RjsKfQovKiBsYXRpbi1leHQgKi8KQGZvbnQtZmFjZSB7CiAgZm9udC1mYW1pbHk6ICdSdWJpayc7CiAgZm9udC1zdHlsZTogbm9ybWFsOwogIGZvbnQtd2VpZ2h0OiA0MDA7CiAgZm9udC1kaXNwbGF5OiBzd2FwOwogIHNyYzogdXJsKGh0dHBzOi8vZm9udHMuZ3N0YXRpYy5jb20vcy9ydWJpay92MjEvaUpXWkJYeUlmRG5JVjVQTmhZMUtUTjdaLVloLUI0aUZXVVV6ZFlQRmtaVk9BNncud29mZikgZm9ybWF0KCd3b2ZmJyk7CiAgdW5pY29kZS1yYW5nZTogVSswMTAwLTAyNEYsIFUrMDI1OSwgVSsxRTAwLTFFRkYsIFUrMjAyMCwgVSsyMEEwLTIwQUIsIFUrMjBBRC0yMENGLCBVKzIxMTMsIFUrMkM2MC0yQzdGLCBVK0E3MjAtQTdGRjsKfQovKiBsYXRpbiAqLwpAZm9udC1mYWNlIHsKICBmb250LWZhbWlseTogJ1J1YmlrJzsKICBmb250LXN0eWxlOiBub3JtYWw7CiAgZm9udC13ZWlnaHQ6IDQwMDsKICBmb250LWRpc3BsYXk6IHN3YXA7CiAgc3JjOiB1cmwoaHR0cHM6Ly9mb250cy5nc3RhdGljLmNvbS9zL3J1YmlrL3YyMS9pSldaQlh5SWZEbklWNVBOaFkxS1RON1otWWgtQjRpRlYwVXpkWVBGa1pWTy53b2ZmKSBmb3JtYXQoJ3dvZmYnKTsKICB1bmljb2RlLXJhbmdlOiBVKzAwMDAtMDBGRiwgVSswMTMxLCBVKzAxNTItMDE1MywgVSswMkJCLTAyQkMsIFUrMDJDNiwgVSswMkRBLCBVKzAyREMsIFUrMjAwMC0yMDZGLCBVKzIwNzQsIFUrMjBBQywgVSsyMTIyLCBVKzIxOTEsIFUrMjE5MywgVSsyMjEyLCBVKzIyMTUsIFUrRkVGRiwgVStGRkZEOwp9Cg=="), @import url("data:application/x-font-ttf;charset=utf-8;base64,LyogY3lyaWxsaWMtZXh0ICovCkBmb250LWZhY2UgewogIGZvbnQtZmFtaWx5OiAnRmlyYSBDb2RlJzsKICBmb250LXN0eWxlOiBub3JtYWw7CiAgZm9udC13ZWlnaHQ6IDQwMDsKICBmb250LWRpc3BsYXk6IHN3YXA7CiAgc3JjOiB1cmwoaHR0cHM6Ly9mb250cy5nc3RhdGljLmNvbS9zL2ZpcmFjb2RlL3YyMS91VTllQ0JzUjZaMnZmRTlhcTNiTDBmeHlVczR0Y3c0V19EMXNKVjM3TU96bG9qd1VLYUpPLndvZmYpIGZvcm1hdCgnd29mZicpOwogIHVuaWNvZGUtcmFuZ2U6IFUrMDQ2MC0wNTJGLCBVKzFDODAtMUM4OCwgVSsyMEI0LCBVKzJERTAtMkRGRiwgVStBNjQwLUE2OUYsIFUrRkUyRS1GRTJGOwp9Ci8qIGN5cmlsbGljICovCkBmb250LWZhY2UgewogIGZvbnQtZmFtaWx5OiAnRmlyYSBDb2RlJzsKICBmb250LXN0eWxlOiBub3JtYWw7CiAgZm9udC13ZWlnaHQ6IDQwMDsKICBmb250LWRpc3BsYXk6IHN3YXA7CiAgc3JjOiB1cmwoaHR0cHM6Ly9mb250cy5nc3RhdGljLmNvbS9zL2ZpcmFjb2RlL3YyMS91VTllQ0JzUjZaMnZmRTlhcTNiTDBmeHlVczR0Y3c0V19EMXNKVlQ3TU96bG9qd1VLYUpPLndvZmYpIGZvcm1hdCgnd29mZicpOwogIHVuaWNvZGUtcmFuZ2U6IFUrMDMwMSwgVSswNDAwLTA0NUYsIFUrMDQ5MC0wNDkxLCBVKzA0QjAtMDRCMSwgVSsyMTE2Owp9Ci8qIGdyZWVrLWV4dCAqLwpAZm9udC1mYWNlIHsKICBmb250LWZhbWlseTogJ0ZpcmEgQ29kZSc7CiAgZm9udC1zdHlsZTogbm9ybWFsOwogIGZvbnQtd2VpZ2h0OiA0MDA7CiAgZm9udC1kaXNwbGF5OiBzd2FwOwogIHNyYzogdXJsKGh0dHBzOi8vZm9udHMuZ3N0YXRpYy5jb20vcy9maXJhY29kZS92MjEvdVU5ZUNCc1I2WjJ2ZkU5YXEzYkwwZnh5VXM0dGN3NFdfRDFzSlZ6N01PemxvandVS2FKTy53b2ZmKSBmb3JtYXQoJ3dvZmYnKTsKICB1bmljb2RlLXJhbmdlOiBVKzFGMDAtMUZGRjsKfQovKiBncmVlayAqLwpAZm9udC1mYWNlIHsKICBmb250LWZhbWlseTogJ0ZpcmEgQ29kZSc7CiAgZm9udC1zdHlsZTogbm9ybWFsOwogIGZvbnQtd2VpZ2h0OiA0MDA7CiAgZm9udC1kaXNwbGF5OiBzd2FwOwogIHNyYzogdXJsKGh0dHBzOi8vZm9udHMuZ3N0YXRpYy5jb20vcy9maXJhY29kZS92MjEvdVU5ZUNCc1I2WjJ2ZkU5YXEzYkwwZnh5VXM0dGN3NFdfRDFzSlZQN01PemxvandVS2FKTy53b2ZmKSBmb3JtYXQoJ3dvZmYnKTsKICB1bmljb2RlLXJhbmdlOiBVKzAzNzAtMDNGRjsKfQovKiBsYXRpbi1leHQgKi8KQGZvbnQtZmFjZSB7CiAgZm9udC1mYW1pbHk6ICdGaXJhIENvZGUnOwogIGZvbnQtc3R5bGU6IG5vcm1hbDsKICBmb250LXdlaWdodDogNDAwOwogIGZvbnQtZGlzcGxheTogc3dhcDsKICBzcmM6IHVybChodHRwczovL2ZvbnRzLmdzdGF0aWMuY29tL3MvZmlyYWNvZGUvdjIxL3VVOWVDQnNSNloydmZFOWFxM2JMMGZ4eVVzNHRjdzRXX0Qxc0pWNzdNT3psb2p3VUthSk8ud29mZikgZm9ybWF0KCd3b2ZmJyk7CiAgdW5pY29kZS1yYW5nZTogVSswMTAwLTAyNEYsIFUrMDI1OSwgVSsxRTAwLTFFRkYsIFUrMjAyMCwgVSsyMEEwLTIwQUIsIFUrMjBBRC0yMENGLCBVKzIxMTMsIFUrMkM2MC0yQzdGLCBVK0E3MjAtQTdGRjsKfQovKiBsYXRpbiAqLwpAZm9udC1mYWNlIHsKICBmb250LWZhbWlseTogJ0ZpcmEgQ29kZSc7CiAgZm9udC1zdHlsZTogbm9ybWFsOwogIGZvbnQtd2VpZ2h0OiA0MDA7CiAgZm9udC1kaXNwbGF5OiBzd2FwOwogIHNyYzogdXJsKGh0dHBzOi8vZm9udHMuZ3N0YXRpYy5jb20vcy9maXJhY29kZS92MjEvdVU5ZUNCc1I2WjJ2ZkU5YXEzYkwwZnh5VXM0dGN3NFdfRDFzSlZEN01PemxvandVS1Eud29mZikgZm9ybWF0KCd3b2ZmJyk7CiAgdW5pY29kZS1yYW5nZTogVSswMDAwLTAwRkYsIFUrMDEzMSwgVSswMTUyLTAxNTMsIFUrMDJCQi0wMkJDLCBVKzAyQzYsIFUrMDJEQSwgVSswMkRDLCBVKzIwMDAtMjA2RiwgVSsyMDc0LCBVKzIwQUMsIFUrMjEyMiwgVSsyMTkxLCBVKzIxOTMsIFUrMjIxMiwgVSsyMjE1LCBVK0ZFRkYsIFUrRkZGRDsKfQo=")</style></defs><g><path d="M 0 80 L 740 80 L 740 600 L 0 600 Z" fill="none" stroke="#aab7b8" stroke-miterlimit="10" pointer-events="all"/><path d="M 10.73 86.89 C 8.19 86.86 6.05 89.34 6.28 91.84 C 4.63 92.3 3.58 94.09 3.93 95.76 C 4.17 97.45 5.84 98.8 7.55 98.58 C 11.3 98.56 15.04 98.61 18.79 98.55 C 20.71 98.38 22.05 96.29 21.58 94.45 C 21.34 93.13 20.21 91.98 18.87 91.81 C 18.86 90.3 17.26 88.82 15.79 89.6 C 14.97 90.39 14.82 88.44 14.02 88.13 C 13.14 87.28 11.95 86.82 10.73 86.89 Z M 10.75 87.63 C 12.68 87.51 14.32 89.05 14.91 90.79 C 15.31 91.19 15.67 90.52 15.97 90.34 C 17.25 89.57 18.21 91.17 18.23 92.29 C 18.58 92.77 19.39 92.38 19.77 92.91 C 21.21 93.93 21.3 96.3 19.88 97.37 C 18.9 98.09 17.63 97.75 16.5 97.83 C 13.28 97.82 10.06 97.84 6.84 97.82 C 5.2 97.58 4.19 95.69 4.79 94.17 C 5.07 93.16 6.05 92.67 6.94 92.36 C 7.19 91.62 6.85 90.71 7.33 89.99 C 7.92 88.65 9.25 87.61 10.75 87.63 Z M 0 105 C 0 96.67 0 88.33 0 80 C 8.33 80 16.67 80 25 80 C 25 88.33 25 96.67 25 105 C 16.67 105 8.33 105 0 105 Z" fill="#aab7b8" stroke="none" pointer-events="all"/><g fill="#AAB7B8" font-family="Rubik" font-size="16px"><text x="31.5" y="101.5">dev account</text></g><path d="M 760 80 L 960 80 L 960 600 L 760 600 Z" fill="none" stroke="#aab7b8" stroke-miterlimit="10" pointer-events="all"/><path d="M 770.73 86.89 C 768.18 86.86 766.05 89.34 766.28 91.84 C 764.63 92.3 763.58 94.09 763.93 95.76 C 764.17 97.45 765.84 98.8 767.55 98.58 C 771.3 98.56 775.04 98.61 778.79 98.55 C 780.71 98.38 782.05 96.29 781.58 94.45 C 781.34 93.13 780.21 91.98 778.87 91.81 C 778.86 90.3 777.26 88.82 775.79 89.6 C 774.97 90.39 774.82 88.44 774.02 88.13 C 773.14 87.28 771.95 86.82 770.73 86.89 Z M 770.75 87.63 C 772.68 87.51 774.32 89.05 774.91 90.79 C 775.31 91.19 775.67 90.52 775.97 90.34 C 777.25 89.57 778.21 91.17 778.23 92.29 C 778.58 92.77 779.39 92.38 779.77 92.91 C 781.21 93.93 781.3 96.3 779.88 97.37 C 778.9 98.09 777.63 97.75 776.5 97.83 C 773.28 97.82 770.06 97.84 766.84 97.82 C 765.2 97.58 764.19 95.69 764.79 94.17 C 765.07 93.16 766.05 92.67 766.94 92.36 C 767.19 91.62 766.85 90.71 767.33 89.99 C 767.92 88.65 769.25 87.61 770.75 87.63 Z M 760 105 C 760 96.67 760 88.33 760 80 C 768.33 80 776.67 80 785 80 C 785 88.33 785 96.67 785 105 C 776.67 105 768.33 105 760 105 Z" fill="#aab7b8" stroke="none" pointer-events="all"/><g fill="#AAB7B8" font-family="Rubik" font-size="16px"><text x="791.5" y="101.5">preprod account</text></g><path d="M 980 80 L 1180 80 L 1180 600 L 980 600 Z" fill="none" stroke="#aab7b8" stroke-miterlimit="10" pointer-events="all"/><path d="M 990.73 86.89 C 988.18 86.86 986.05 89.34 986.28 91.84 C 984.63 92.3 983.58 94.09 983.93 95.76 C 984.17 97.45 985.84 98.8 987.55 98.58 C 991.3 98.56 995.04 98.61 998.79 98.55 C 1000.71 98.38 1002.05 96.29 1001.58 94.45 C 1001.34 93.13 1000.21 91.98 998.87 91.81 C 998.86 90.3 997.26 88.82 995.79 89.6 C 994.97 90.39 994.82 88.44 994.02 88.13 C 993.14 87.28 991.95 86.82 990.73 86.89 Z M 990.75 87.63 C 992.68 87.51 994.32 89.05 994.91 90.79 C 995.31 91.19 995.67 90.52 995.97 90.34 C 997.25 89.57 998.21 91.17 998.23 92.29 C 998.58 92.77 999.39 92.38 999.77 92.91 C 1001.21 93.93 1001.3 96.3 999.88 97.37 C 998.9 98.09 997.63 97.75 996.5 97.83 C 993.28 97.82 990.06 97.84 986.84 97.82 C 985.2 97.58 984.19 95.69 984.79 94.17 C 985.07 93.16 986.05 92.67 986.94 92.36 C 987.19 91.62 986.85 90.71 987.33 89.99 C 987.92 88.65 989.25 87.61 990.75 87.63 Z M 980 105 C 980 96.67 980 88.33 980 80 C 988.33 80 996.67 80 1005 80 C 1005 88.33 1005 96.67 1005 105 C 996.67 105 988.33 105 980 105 Z" fill="#aab7b8" stroke="none" pointer-events="all"/><g fill="#AAB7B8" font-family="Rubik" font-size="16px"><text x="1011.5" y="101.5">prod account</text></g><path d="M 20 400 L 720 400" fill="none" stroke="#5c5c5c" stroke-width="2" stroke-miterlimit="10" stroke-dasharray="6 6" pointer-events="stroke"/><path d="M 780 400 L 940 400" fill="none" stroke="#5c5c5c" stroke-width="2" stroke-miterlimit="10" stroke-dasharray="6 6" pointer-events="stroke"/><rect x="200" y="140" width="160" height="40" fill="#6a00ff" stroke="#6a00ff" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="22px"><text x="279.5" y="173.5">feature</text></g><rect x="200" y="180" width="160" height="40" fill="#6a00ff" stroke="#6a00ff" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="279.5" y="198.5">environment(s)</text></g><rect x="200" y="260" width="160" height="40" fill="#1c0042" stroke="#6a00ff" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="279.5" y="286">short-lived</text></g><rect x="200" y="220" width="160" height="40" fill="#1c0042" stroke="#6a00ff" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="279.5" y="246">OPTIONAL</text></g><path d="M 200 300 L 240 300 L 240 340 L 200 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 213.16 334.86 L 206.07 334.86 L 213.91 318.45 L 217.47 325.77 Z M 214.43 316.89 C 214.33 316.69 214.13 316.57 213.91 316.57 L 213.91 316.57 C 213.69 316.57 213.49 316.69 213.39 316.89 L 204.64 335.18 C 204.56 335.36 204.57 335.57 204.67 335.73 C 204.78 335.9 204.96 336 205.16 336 L 213.52 336 C 213.75 336 213.95 335.87 214.04 335.67 L 218.62 326.02 C 218.7 325.86 218.7 325.68 218.62 325.52 Z M 234.3 334.86 L 227.25 334.86 L 215.94 311.18 C 215.84 310.98 215.64 310.86 215.42 310.86 L 210.81 310.86 L 210.81 305.14 L 219.85 305.14 L 231.11 328.82 C 231.21 329.02 231.41 329.14 231.63 329.14 L 234.3 329.14 Z M 234.87 328 L 231.99 328 L 220.73 304.33 C 220.64 304.13 220.44 304 220.22 304 L 210.24 304 C 209.93 304 209.67 304.26 209.67 304.57 L 209.66 311.43 C 209.66 311.58 209.72 311.73 209.83 311.83 C 209.94 311.94 210.08 312 210.24 312 L 215.06 312 L 226.37 335.67 C 226.47 335.87 226.67 336 226.89 336 L 234.87 336 C 235.19 336 235.44 335.74 235.44 335.43 L 235.44 328.57 C 235.44 328.26 235.19 328 234.87 328 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 280 300 L 320 300 L 320 340 L 280 340 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 296.61 328.94 L 298.29 328.94 L 298.29 327.79 L 296.61 327.79 Z M 299.43 328.94 L 301.14 328.94 L 301.14 327.79 L 299.43 327.79 Z M 292.58 305.53 L 285.16 309.21 L 285.16 332.11 L 292.58 334.62 Z M 293.72 312.82 L 293.72 327.79 L 295.43 327.79 L 295.43 328.94 L 293.72 328.94 L 293.72 335.42 C 293.72 335.61 293.63 335.78 293.48 335.89 C 293.38 335.96 293.27 336 293.15 336 C 293.09 336 293.03 335.99 292.97 335.97 L 284.4 333.07 C 284.17 333 284.01 332.78 284.01 332.53 L 284.01 308.86 C 284.01 308.64 284.14 308.44 284.33 308.34 L 292.9 304.09 C 293.07 304 293.28 304.01 293.45 304.12 C 293.62 304.22 293.72 304.41 293.72 304.6 L 293.72 311.67 L 295.43 311.67 L 295.43 312.82 Z M 302.28 328.94 L 304 328.94 L 304 327.79 L 302.28 327.79 Z M 302.32 312.82 L 304 312.82 L 304 311.67 L 302.32 311.67 Z M 299.47 312.82 L 301.14 312.82 L 301.14 311.67 L 299.47 311.67 Z M 296.61 312.82 L 298.29 312.82 L 298.29 311.67 L 296.61 311.67 Z M 314.84 309.21 L 307.42 305.53 L 307.42 334.62 L 314.84 332.11 Z M 315.99 332.53 C 315.99 332.78 315.83 333 315.6 333.07 L 307.03 335.97 C 306.97 335.99 306.91 336 306.85 336 C 306.73 336 306.62 335.96 306.52 335.89 C 306.37 335.78 306.28 335.61 306.28 335.42 L 306.28 328.94 L 305.18 328.94 L 305.18 327.79 L 306.28 327.79 L 306.28 312.82 L 305.18 312.82 L 305.18 311.67 L 306.28 311.67 L 306.28 304.6 C 306.28 304.41 306.38 304.22 306.55 304.12 C 306.72 304.01 306.93 304 307.1 304.09 L 315.67 308.34 C 315.86 308.44 315.99 308.64 315.99 308.86 Z M 301.68 316.48 L 300.61 316.07 L 297.75 323.55 L 298.82 323.96 Z M 305.54 320.13 C 305.77 319.91 305.77 319.54 305.54 319.32 L 303.26 317.02 L 302.45 317.83 L 304.33 319.73 L 302.45 321.62 L 303.26 322.44 Z M 296.74 322.44 L 294.46 320.13 C 294.23 319.91 294.23 319.54 294.46 319.32 L 296.74 317.02 L 297.55 317.83 L 295.67 319.73 L 297.55 321.62 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 240 300 L 280 300 L 280 340 L 240 340 Z" fill="url(#mx-gradient-ff4f8b-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 267.8 334.86 C 266.58 334.86 265.58 333.86 265.58 332.62 C 265.58 331.39 266.58 330.39 267.8 330.39 C 269.03 330.39 270.02 331.39 270.02 332.62 C 270.02 333.86 269.03 334.86 267.8 334.86 Z M 262.93 325.14 L 257.03 325.14 L 254.07 320 L 257.03 314.86 L 262.93 314.86 L 265.89 320 Z M 252.93 309.61 C 251.7 309.61 250.7 308.61 250.7 307.38 C 250.7 306.14 251.7 305.14 252.93 305.14 C 254.15 305.14 255.15 306.14 255.15 307.38 C 255.15 308.61 254.15 309.61 252.93 309.61 Z M 267.8 329.25 C 267.38 329.25 266.98 329.33 266.61 329.47 L 264.19 325.38 L 264.07 325.45 L 267.03 320.29 C 267.14 320.11 267.14 319.89 267.03 319.71 L 263.75 314 C 263.65 313.82 263.46 313.71 263.26 313.71 L 257.29 313.71 L 257.31 313.7 L 255.1 309.95 C 255.82 309.33 256.28 308.4 256.28 307.38 C 256.28 305.51 254.78 304 252.93 304 C 251.08 304 249.57 305.51 249.57 307.38 C 249.57 309.24 251.08 310.75 252.93 310.75 C 253.35 310.75 253.75 310.67 254.12 310.53 L 256.19 314.03 L 252.93 319.71 C 252.82 319.89 252.82 320.11 252.93 320.29 L 256.21 326 C 256.31 326.18 256.5 326.29 256.7 326.29 L 263.26 326.29 C 263.31 326.29 263.35 326.28 263.4 326.27 L 265.63 330.05 C 264.91 330.67 264.45 331.6 264.45 332.62 C 264.45 334.49 265.95 336 267.8 336 C 269.66 336 271.16 334.49 271.16 332.62 C 271.16 330.76 269.66 329.25 267.8 329.25 Z M 271.19 315.49 C 269.97 315.49 268.97 314.49 268.97 313.25 C 268.97 312.02 269.97 311.02 271.19 311.02 C 272.42 311.02 273.41 312.02 273.41 313.25 C 273.41 314.49 272.42 315.49 271.19 315.49 Z M 275.35 319.71 L 273.2 315.96 C 274.02 315.34 274.55 314.36 274.55 313.25 C 274.55 311.39 273.04 309.88 271.19 309.88 C 270.72 309.88 270.27 309.98 269.86 310.15 L 268.1 307.09 C 268 306.91 267.82 306.81 267.61 306.81 L 260.57 306.81 L 260.57 307.95 L 267.28 307.95 L 268.91 310.78 C 268.25 311.4 267.83 312.28 267.83 313.25 C 267.83 315.12 269.34 316.63 271.19 316.63 C 271.54 316.63 271.87 316.58 272.18 316.48 L 274.2 320 L 271.37 324.94 L 272.35 325.51 L 275.35 320.29 C 275.45 320.11 275.45 319.89 275.35 319.71 Z M 249.27 328.71 C 248.05 328.71 247.05 327.71 247.05 326.48 C 247.05 325.25 248.05 324.25 249.27 324.25 C 250.5 324.25 251.5 325.25 251.5 326.48 C 251.5 327.71 250.5 328.71 249.27 328.71 Z M 251.13 329.29 C 252.03 328.68 252.63 327.65 252.63 326.48 C 252.63 324.62 251.12 323.1 249.27 323.1 C 248.74 323.1 248.23 323.23 247.78 323.46 L 245.8 320 L 249.09 314.27 L 248.1 313.7 L 244.65 319.71 C 244.55 319.89 244.55 320.11 244.65 320.29 L 246.86 324.14 C 246.28 324.75 245.92 325.57 245.92 326.48 C 245.92 328.34 247.42 329.86 249.27 329.86 C 249.55 329.86 249.82 329.82 250.08 329.75 L 251.9 332.91 C 252 333.09 252.18 333.19 252.39 333.19 L 259.43 333.19 L 259.43 332.05 L 252.72 332.05 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 240 340 L 280 340 L 280 380 L 240 380 Z" fill="url(#mx-gradient-60a337-1-277116-1-s-0)" stroke="none" pointer-events="none"/><path d="M 271.94 361.65 L 272.16 360.11 C 274.18 361.32 274.21 361.82 274.21 361.83 C 274.2 361.84 273.86 362.13 271.94 361.65 Z M 270.83 361.34 C 267.33 360.29 262.46 358.05 260.49 357.12 C 260.49 357.11 260.49 357.11 260.49 357.1 C 260.49 356.34 259.88 355.72 259.12 355.72 C 258.36 355.72 257.75 356.34 257.75 357.1 C 257.75 357.85 258.36 358.47 259.12 358.47 C 259.45 358.47 259.75 358.35 259.99 358.15 C 262.31 359.25 267.14 361.45 270.67 362.49 L 269.27 372.32 C 269.27 372.35 269.27 372.37 269.27 372.4 C 269.27 373.27 265.43 374.86 259.17 374.86 C 252.84 374.86 248.97 373.27 248.97 372.4 C 248.97 372.37 248.97 372.35 248.97 372.32 L 246.05 351.06 C 248.57 352.8 253.99 353.71 259.18 353.71 C 264.35 353.71 269.76 352.8 272.29 351.07 Z M 245.75 348.84 C 245.79 348.09 250.11 345.14 259.18 345.14 C 268.24 345.14 272.56 348.09 272.6 348.84 L 272.6 349.1 C 272.11 350.79 266.51 352.57 259.18 352.57 C 251.83 352.57 246.23 350.78 245.75 349.09 Z M 273.75 348.86 C 273.75 346.88 268.07 344 259.18 344 C 250.28 344 244.6 346.88 244.6 348.86 L 244.66 349.29 L 247.83 372.44 C 247.9 375.03 254.81 376 259.17 376 C 264.59 376 270.34 374.76 270.41 372.45 L 271.78 362.79 C 272.54 362.97 273.17 363.07 273.67 363.07 C 274.35 363.07 274.8 362.9 275.08 362.57 C 275.31 362.3 275.4 361.97 275.33 361.62 C 275.18 360.83 274.24 359.98 272.33 358.89 L 273.69 349.31 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 320 300 L 360 300 L 360 340 L 320 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 347.53 330.06 L 347.53 327.02 L 349.41 326.26 L 349.41 329.3 Z M 344.39 326.26 L 346.27 327.02 L 346.27 330.06 L 344.39 329.3 Z M 340.63 334.45 L 340.63 331.41 L 342.51 330.65 L 342.51 333.69 Z M 337.49 330.65 L 339.37 331.41 L 339.37 334.45 L 337.49 333.69 Z M 333.73 330.06 L 333.73 327.02 L 335.61 326.26 L 335.61 329.3 Z M 330.59 326.26 L 332.47 327.02 L 332.47 330.06 L 330.59 329.3 Z M 333.1 324.76 L 334.55 325.34 L 333.1 325.92 L 331.65 325.34 Z M 340 329.15 L 341.45 329.73 L 340 330.31 L 338.55 329.73 Z M 346.9 324.76 L 348.35 325.34 L 346.9 325.92 L 345.45 325.34 Z M 350.27 324.76 L 347.13 323.5 C 346.98 323.44 346.82 323.44 346.67 323.5 L 343.53 324.76 C 343.29 324.85 343.14 325.08 343.14 325.34 L 343.14 329.05 L 340.23 327.89 C 340.08 327.83 339.92 327.83 339.77 327.89 L 336.86 329.05 L 336.86 325.34 C 336.86 325.08 336.71 324.85 336.47 324.76 L 333.33 323.5 C 333.18 323.44 333.02 323.44 332.87 323.5 L 329.73 324.76 C 329.49 324.85 329.34 325.08 329.34 325.34 L 329.34 329.73 C 329.34 329.98 329.49 330.21 329.73 330.31 L 332.87 331.57 C 332.94 331.59 333.02 331.61 333.1 331.61 C 333.18 331.61 333.26 331.59 333.33 331.57 L 336.24 330.4 L 336.24 334.12 C 336.24 334.37 336.39 334.61 336.63 334.7 L 339.77 335.96 C 339.84 335.98 339.92 336 340 336 C 340.08 336 340.16 335.98 340.23 335.96 L 343.37 334.7 C 343.61 334.61 343.76 334.37 343.76 334.12 L 343.76 330.4 L 346.67 331.57 C 346.74 331.59 346.82 331.61 346.9 331.61 C 346.98 331.61 347.06 331.59 347.13 331.57 L 350.27 330.31 C 350.51 330.21 350.66 329.98 350.66 329.73 L 350.66 325.34 C 350.66 325.08 350.51 324.85 350.27 324.76 Z M 355.68 317.15 C 355.68 320.81 347.6 322.79 340 322.79 C 332.4 322.79 324.32 320.81 324.32 317.15 C 324.32 315.4 326.26 313.85 329.79 312.81 L 330.14 314.01 C 327.33 314.85 325.57 316.05 325.57 317.15 C 325.57 319.22 331.5 321.54 340 321.54 C 348.5 321.54 354.43 319.22 354.43 317.15 C 354.43 316.05 352.67 314.85 349.86 314.01 L 350.21 312.81 C 353.74 313.85 355.68 315.4 355.68 317.15 Z M 340 305.31 L 346.41 307.78 L 340 310.24 L 333.59 307.78 Z M 346.64 317.71 C 345.45 318.24 343.47 318.86 340.63 318.94 L 340.63 311.34 L 347.53 308.69 L 347.53 316.34 C 347.53 316.93 347.18 317.47 346.64 317.71 Z M 332.47 316.34 L 332.47 308.69 L 339.37 311.34 L 339.37 318.94 C 336.53 318.86 334.55 318.24 333.36 317.71 C 332.82 317.47 332.47 316.93 332.47 316.34 Z M 332.85 318.86 C 334.23 319.48 336.59 320.21 340 320.21 C 343.41 320.21 345.77 319.48 347.15 318.86 C 348.14 318.42 348.78 317.43 348.78 316.34 L 348.78 307.78 C 348.78 307.52 348.62 307.28 348.38 307.19 L 340.23 304.06 C 340.08 304 339.92 304 339.77 304.06 L 331.62 307.19 C 331.38 307.28 331.22 307.52 331.22 307.78 L 331.22 316.34 C 331.22 317.43 331.86 318.42 332.85 318.86 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 320 340 L 360 340 L 360 380 L 320 380 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 348.64 366.93 C 348.64 365.98 347.87 365.21 346.93 365.21 C 345.98 365.21 345.21 365.98 345.21 366.93 C 345.21 367.87 345.98 368.64 346.93 368.64 C 347.87 368.64 348.64 367.87 348.64 366.93 Z M 349.78 366.93 C 349.78 368.5 348.5 369.78 346.93 369.78 C 345.35 369.78 344.07 368.5 344.07 366.93 C 344.07 365.35 345.35 364.07 346.93 364.07 C 348.5 364.07 349.78 365.35 349.78 366.93 Z M 334.51 358.68 C 334.51 357.74 333.74 356.97 332.8 356.97 C 331.85 356.97 331.08 357.74 331.08 358.68 C 331.08 359.63 331.85 360.4 332.8 360.4 C 333.74 360.4 334.51 359.63 334.51 358.68 Z M 335.65 358.68 C 335.65 360.26 334.37 361.54 332.8 361.54 C 331.22 361.54 329.94 360.26 329.94 358.68 C 329.94 357.11 331.22 355.82 332.8 355.82 C 334.37 355.82 335.65 357.11 335.65 358.68 Z M 339.85 349.72 C 339.85 350.66 340.61 351.43 341.56 351.43 C 342.51 351.43 343.27 350.66 343.27 349.72 C 343.27 348.77 342.51 348 341.56 348 C 340.61 348 339.85 348.77 339.85 349.72 Z M 338.7 349.72 C 338.7 348.14 339.99 346.86 341.56 346.86 C 343.14 346.86 344.42 348.14 344.42 349.72 C 344.42 351.29 343.14 352.58 341.56 352.58 C 339.99 352.58 338.7 351.29 338.7 349.72 Z M 354.86 360 C 354.86 354.7 352.02 349.8 347.44 347.15 C 346.61 347.31 345.82 347.54 344.83 347.9 L 344.44 346.82 C 344.96 346.64 345.42 346.49 345.87 346.36 C 344.03 345.56 342.03 345.14 340 345.14 C 339.03 345.14 338.09 345.24 337.16 345.42 C 337.83 345.82 338.43 346.21 339 346.65 L 338.31 347.56 C 337.5 346.94 336.65 346.42 335.54 345.83 C 329.93 347.6 325.89 352.55 325.25 358.36 C 326.42 358.12 327.55 357.99 328.81 357.96 L 328.84 359.1 C 327.52 359.13 326.39 359.27 325.16 359.55 C 325.15 359.7 325.14 359.85 325.14 360 C 325.14 364.95 327.59 369.51 331.62 372.26 C 330.9 370.12 330.54 368.11 330.54 366.14 C 330.54 365.02 330.74 364.1 330.94 363.12 C 330.99 362.9 331.04 362.67 331.08 362.43 L 332.2 362.65 C 332.16 362.89 332.11 363.13 332.06 363.36 C 331.86 364.31 331.69 365.14 331.69 366.14 C 331.69 368.37 332.18 370.68 333.17 373.19 C 335.3 374.29 337.59 374.86 340 374.86 C 341.57 374.86 343.11 374.61 344.58 374.12 C 345.15 372.99 345.58 371.92 345.94 370.69 L 347.03 371 C 346.77 371.9 346.48 372.72 346.12 373.53 C 347.04 373.11 347.91 372.6 348.73 372 C 348.54 371.52 348.32 371.04 348.09 370.57 L 349.11 370.06 C 349.31 370.46 349.49 370.86 349.67 371.27 C 352.97 368.44 354.86 364.38 354.86 360 Z M 356 360 C 356 364.99 353.73 369.6 349.78 372.66 C 348.81 373.42 347.74 374.05 346.62 374.56 C 346.15 374.77 345.66 374.97 345.16 375.14 C 343.52 375.71 341.78 376 340 376 C 337.37 376 334.76 375.35 332.45 374.11 C 327.24 371.32 324 365.91 324 360 C 324 359.61 324.01 359.31 324.03 359.03 C 324.42 352.36 329 346.58 335.43 344.67 C 336.89 344.22 338.43 344 340 344 C 342.75 344 345.45 344.71 347.82 346.05 C 352.86 348.87 356 354.22 356 360 Z M 338.47 351.69 L 337.71 350.83 C 336.43 351.95 335.44 353.14 334.27 354.93 L 335.23 355.55 C 336.33 353.85 337.27 352.74 338.47 351.69 Z M 336.73 359.1 L 336.36 360.18 C 338.98 361.08 341.27 362.52 343.56 364.71 L 344.35 363.88 C 341.94 361.58 339.51 360.06 336.73 359.1 Z M 344.37 352.38 C 346.51 355.65 347.72 359.24 347.96 363.05 L 346.82 363.12 C 346.59 359.51 345.45 356.11 343.41 353.01 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 280 340 L 320 340 L 320 380 L 280 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 285.95 345.14 L 291.26 350.45 L 290.45 351.26 L 285.14 345.95 L 285.14 350.29 L 284 350.29 L 284 344.57 C 284 344.26 284.26 344 284.57 344 L 290.29 344 L 290.29 345.14 Z M 316 344.57 L 316 350.29 L 314.86 350.29 L 314.86 345.95 L 309.55 351.26 L 308.74 350.45 L 314.05 345.14 L 309.71 345.14 L 309.71 344 L 315.43 344 C 315.74 344 316 344.26 316 344.57 Z M 314.86 369.71 L 316 369.71 L 316 375.43 C 316 375.74 315.74 376 315.43 376 L 309.71 376 L 309.71 374.86 L 314.05 374.86 L 308.74 369.55 L 309.55 368.74 L 314.86 374.05 Z M 314.57 359.55 C 314.57 357.65 312.38 355.78 308.71 354.54 L 309.08 353.46 C 313.3 354.88 315.71 357.1 315.71 359.55 C 315.71 362 313.3 364.22 309.08 365.65 L 308.71 364.56 C 312.38 363.32 314.57 361.45 314.57 359.55 Z M 285.46 359.55 C 285.46 361.37 287.51 363.19 290.94 364.43 L 290.56 365.51 C 286.59 364.07 284.32 361.9 284.32 359.55 C 284.32 357.2 286.59 355.03 290.56 353.6 L 290.94 354.67 C 287.51 355.91 285.46 357.73 285.46 359.55 Z M 291.26 369.55 L 285.95 374.86 L 290.29 374.86 L 290.29 376 L 284.57 376 C 284.26 376 284 375.74 284 375.43 L 284 369.71 L 285.14 369.71 L 285.14 374.05 L 290.45 368.74 Z M 300 355.02 C 295.92 355.02 293.71 353.97 293.71 353.53 C 293.71 353.1 295.92 352.05 300 352.05 C 304.08 352.05 306.29 353.1 306.29 353.53 C 306.29 353.97 304.08 355.02 300 355.02 Z M 300.02 359.45 C 296.11 359.45 293.71 358.38 293.71 357.8 L 293.71 355.02 C 295.12 355.8 297.62 356.16 300 356.16 C 302.38 356.16 304.88 355.8 306.29 355.02 L 306.29 357.8 C 306.29 358.38 303.91 359.45 300.02 359.45 Z M 300.02 363.81 C 296.11 363.81 293.71 362.74 293.71 362.16 L 293.71 359.35 C 295.1 360.17 297.57 360.59 300.02 360.59 C 302.45 360.59 304.9 360.17 306.29 359.35 L 306.29 362.16 C 306.29 362.74 303.91 363.81 300.02 363.81 Z M 300 367.72 C 295.93 367.72 293.71 366.63 293.71 366.07 L 293.71 363.71 C 295.1 364.53 297.57 364.95 300.02 364.95 C 302.45 364.95 304.9 364.53 306.29 363.72 L 306.29 366.07 C 306.29 366.63 304.07 367.72 300 367.72 Z M 300 350.91 C 296.42 350.91 292.57 351.73 292.57 353.53 L 292.57 366.07 C 292.57 367.91 296.31 368.87 300 368.87 C 303.69 368.87 307.43 367.91 307.43 366.07 L 307.43 353.53 C 307.43 351.73 303.58 350.91 300 350.91 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 200 340 L 240 340 L 240 380 L 200 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 226.88 368.49 C 224.98 370.03 220.98 370.84 217.15 370.84 C 213.32 370.84 209.31 370.03 207.41 368.49 L 207.41 371.59 L 207.41 371.59 C 207.41 373.14 211.41 374.87 217.15 374.87 C 222.88 374.87 226.88 373.14 226.88 371.59 Z M 226.88 362.58 L 228.03 362.58 L 228.03 362.58 C 228.03 363.27 227.68 363.92 227.01 364.51 C 227.82 365.23 228.03 365.93 228.03 366.43 C 228.03 366.44 228.03 366.44 228.03 366.44 L 228.03 371.59 L 228.03 371.59 C 228.03 374.45 222.42 376 217.15 376 C 211.88 376 206.29 374.46 206.27 371.61 C 206.27 371.61 206.26 371.61 206.26 371.6 L 206.26 366.43 C 206.26 366.43 206.26 366.43 206.26 366.43 C 206.27 365.93 206.47 365.22 207.28 364.51 C 206.48 363.79 206.27 363.09 206.26 362.6 L 206.26 362.6 C 206.26 362.59 206.26 362.59 206.26 362.59 L 206.26 357.42 C 206.26 357.42 206.26 357.42 206.26 357.41 C 206.27 356.91 206.47 356.21 207.29 355.5 C 206.48 354.78 206.27 354.08 206.26 353.58 L 206.26 353.58 C 206.26 353.58 206.26 353.58 206.26 353.58 L 206.26 348.41 C 206.26 348.41 206.26 348.4 206.26 348.4 C 206.27 345.54 211.88 344 217.15 344 C 220.12 344 222.98 344.47 224.99 345.3 L 224.56 346.35 C 222.68 345.58 219.98 345.13 217.15 345.13 C 211.41 345.13 207.41 346.86 207.41 348.41 C 207.41 349.96 211.41 351.69 217.15 351.69 C 217.3 351.69 217.45 351.69 217.61 351.68 L 217.65 352.81 C 217.48 352.82 217.32 352.82 217.15 352.82 C 213.32 352.82 209.31 352 207.41 350.46 L 207.41 353.57 L 207.41 353.57 L 207.41 353.58 C 207.41 354.17 208.02 354.69 208.53 355.02 C 210.07 356 212.82 356.67 215.9 356.81 L 215.84 357.94 C 212.73 357.8 210.01 357.16 208.25 356.17 C 207.82 356.49 207.41 356.93 207.41 357.42 C 207.41 358.97 211.41 360.7 217.15 360.7 C 217.71 360.7 218.27 360.68 218.81 360.64 L 218.89 361.77 C 218.32 361.81 217.74 361.83 217.15 361.83 C 213.32 361.83 209.31 361.02 207.41 359.47 L 207.41 362.58 L 207.41 362.58 C 207.41 363.19 208.02 363.7 208.53 364.03 C 210.29 365.16 213.59 365.85 217.15 365.85 L 217.4 365.85 L 217.4 366.99 L 217.15 366.99 C 213.54 366.99 210.25 366.32 208.25 365.18 C 207.82 365.51 207.41 365.94 207.41 366.43 C 207.41 367.98 211.41 369.71 217.15 369.71 C 222.88 369.71 226.88 367.99 226.88 366.44 L 226.88 366.43 L 226.88 366.43 C 226.88 365.94 226.47 365.5 226.04 365.18 C 225.76 365.34 225.46 365.49 225.12 365.63 L 224.69 364.58 C 225.1 364.41 225.46 364.23 225.76 364.04 C 226.27 363.7 226.88 363.17 226.88 362.58 Z M 231.78 354.3 L 228.58 354.3 C 228.39 354.3 228.21 354.2 228.1 354.05 C 228 353.89 227.98 353.69 228.05 353.52 L 229.99 348.65 L 222.62 348.65 L 219.19 355.45 L 222.84 355.45 C 223.02 355.45 223.19 355.54 223.3 355.68 C 223.4 355.83 223.44 356.02 223.38 356.19 L 220.13 366.34 Z M 233.53 354.12 L 219.25 368.88 C 219.14 368.99 218.99 369.05 218.84 369.05 C 218.74 369.05 218.63 369.03 218.54 368.97 C 218.32 368.84 218.21 368.57 218.29 368.32 L 222.05 356.59 L 218.26 356.59 C 218.07 356.59 217.88 356.48 217.78 356.32 C 217.67 356.15 217.66 355.94 217.75 355.77 L 221.75 347.83 C 221.85 347.64 222.05 347.52 222.26 347.52 L 230.84 347.52 C 231.02 347.52 231.2 347.61 231.31 347.77 C 231.42 347.92 231.44 348.12 231.37 348.29 L 229.42 353.16 L 233.12 353.16 C 233.35 353.16 233.56 353.3 233.65 353.51 C 233.74 353.72 233.69 353.96 233.53 354.12 Z M 208.24 371.81 C 209.05 372.27 210.07 372.65 211.27 372.95 L 211.55 371.85 C 210.46 371.58 209.51 371.23 208.8 370.83 Z M 211.27 363.89 L 211.55 362.79 C 210.46 362.51 209.51 362.16 208.8 361.76 L 208.24 362.75 C 209.05 363.2 210.07 363.59 211.27 363.89 Z M 208.24 353.68 L 208.8 352.69 C 209.51 353.09 210.46 353.45 211.55 353.72 L 211.27 354.82 C 210.07 354.52 209.05 354.13 208.24 353.68 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="200" y="300" width="160" height="80" fill="none" stroke="#6a00ff" stroke-width="2" pointer-events="none"/><rect x="380" y="140" width="160" height="40" fill="#21c0a5" stroke="#21c0a5" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="22px"><text x="459.5" y="173.5">test</text></g><rect x="380" y="260" width="160" height="40" fill="#0b3d35" stroke="#21c0a5" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="459.5" y="286">for QA purposes</text></g><rect x="380" y="180" width="160" height="40" fill="#21c0a5" stroke="#21c0a5" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="459.5" y="198.5">environment</text></g><rect x="380" y="220" width="160" height="40" fill="#0b3d35" stroke="#21c0a5" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="459.5" y="246">OPTIONAL</text></g><path d="M 380 300 L 420 300 L 420 340 L 380 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 393.16 334.86 L 386.07 334.86 L 393.91 318.45 L 397.47 325.77 Z M 394.43 316.89 C 394.33 316.69 394.13 316.57 393.91 316.57 L 393.91 316.57 C 393.69 316.57 393.49 316.69 393.39 316.89 L 384.64 335.18 C 384.56 335.36 384.57 335.57 384.67 335.73 C 384.78 335.9 384.96 336 385.16 336 L 393.52 336 C 393.75 336 393.95 335.87 394.04 335.67 L 398.62 326.02 C 398.7 325.86 398.7 325.68 398.62 325.52 Z M 414.3 334.86 L 407.25 334.86 L 395.94 311.18 C 395.84 310.98 395.64 310.86 395.42 310.86 L 390.81 310.86 L 390.81 305.14 L 399.85 305.14 L 411.11 328.82 C 411.21 329.02 411.41 329.14 411.63 329.14 L 414.3 329.14 Z M 414.87 328 L 411.99 328 L 400.73 304.33 C 400.64 304.13 400.44 304 400.22 304 L 390.24 304 C 389.93 304 389.67 304.26 389.67 304.57 L 389.66 311.43 C 389.66 311.58 389.72 311.73 389.83 311.83 C 389.94 311.94 390.08 312 390.24 312 L 395.06 312 L 406.37 335.67 C 406.47 335.87 406.67 336 406.89 336 L 414.87 336 C 415.19 336 415.44 335.74 415.44 335.43 L 415.44 328.57 C 415.44 328.26 415.19 328 414.87 328 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 460 300 L 500 300 L 500 340 L 460 340 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 476.61 328.94 L 478.29 328.94 L 478.29 327.79 L 476.61 327.79 Z M 479.43 328.94 L 481.14 328.94 L 481.14 327.79 L 479.43 327.79 Z M 472.58 305.53 L 465.16 309.21 L 465.16 332.11 L 472.58 334.62 Z M 473.72 312.82 L 473.72 327.79 L 475.43 327.79 L 475.43 328.94 L 473.72 328.94 L 473.72 335.42 C 473.72 335.61 473.63 335.78 473.48 335.89 C 473.38 335.96 473.27 336 473.15 336 C 473.09 336 473.03 335.99 472.97 335.97 L 464.4 333.07 C 464.17 333 464.01 332.78 464.01 332.53 L 464.01 308.86 C 464.01 308.64 464.14 308.44 464.33 308.34 L 472.9 304.09 C 473.07 304 473.28 304.01 473.45 304.12 C 473.62 304.22 473.72 304.41 473.72 304.6 L 473.72 311.67 L 475.43 311.67 L 475.43 312.82 Z M 482.28 328.94 L 484 328.94 L 484 327.79 L 482.28 327.79 Z M 482.32 312.82 L 484 312.82 L 484 311.67 L 482.32 311.67 Z M 479.47 312.82 L 481.14 312.82 L 481.14 311.67 L 479.47 311.67 Z M 476.61 312.82 L 478.29 312.82 L 478.29 311.67 L 476.61 311.67 Z M 494.84 309.21 L 487.42 305.53 L 487.42 334.62 L 494.84 332.11 Z M 495.99 332.53 C 495.99 332.78 495.83 333 495.6 333.07 L 487.03 335.97 C 486.97 335.99 486.91 336 486.85 336 C 486.73 336 486.62 335.96 486.52 335.89 C 486.37 335.78 486.28 335.61 486.28 335.42 L 486.28 328.94 L 485.18 328.94 L 485.18 327.79 L 486.28 327.79 L 486.28 312.82 L 485.18 312.82 L 485.18 311.67 L 486.28 311.67 L 486.28 304.6 C 486.28 304.41 486.38 304.22 486.55 304.12 C 486.72 304.01 486.93 304 487.1 304.09 L 495.67 308.34 C 495.86 308.44 495.99 308.64 495.99 308.86 Z M 481.68 316.48 L 480.61 316.07 L 477.75 323.55 L 478.82 323.96 Z M 485.54 320.13 C 485.77 319.91 485.77 319.54 485.54 319.32 L 483.26 317.02 L 482.45 317.83 L 484.33 319.73 L 482.45 321.62 L 483.26 322.44 Z M 476.74 322.44 L 474.46 320.13 C 474.23 319.91 474.23 319.54 474.46 319.32 L 476.74 317.02 L 477.55 317.83 L 475.67 319.73 L 477.55 321.62 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 420 300 L 460 300 L 460 340 L 420 340 Z" fill="url(#mx-gradient-ff4f8b-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 447.8 334.86 C 446.58 334.86 445.58 333.86 445.58 332.62 C 445.58 331.39 446.58 330.39 447.8 330.39 C 449.03 330.39 450.02 331.39 450.02 332.62 C 450.02 333.86 449.03 334.86 447.8 334.86 Z M 442.93 325.14 L 437.03 325.14 L 434.07 320 L 437.03 314.86 L 442.93 314.86 L 445.89 320 Z M 432.93 309.61 C 431.7 309.61 430.7 308.61 430.7 307.38 C 430.7 306.14 431.7 305.14 432.93 305.14 C 434.15 305.14 435.15 306.14 435.15 307.38 C 435.15 308.61 434.15 309.61 432.93 309.61 Z M 447.8 329.25 C 447.38 329.25 446.98 329.33 446.61 329.47 L 444.19 325.38 L 444.07 325.45 L 447.03 320.29 C 447.14 320.11 447.14 319.89 447.03 319.71 L 443.75 314 C 443.65 313.82 443.46 313.71 443.26 313.71 L 437.29 313.71 L 437.31 313.7 L 435.1 309.95 C 435.82 309.33 436.28 308.4 436.28 307.38 C 436.28 305.51 434.78 304 432.93 304 C 431.08 304 429.57 305.51 429.57 307.38 C 429.57 309.24 431.08 310.75 432.93 310.75 C 433.35 310.75 433.75 310.67 434.12 310.53 L 436.19 314.03 L 432.93 319.71 C 432.82 319.89 432.82 320.11 432.93 320.29 L 436.21 326 C 436.31 326.18 436.5 326.29 436.7 326.29 L 443.26 326.29 C 443.31 326.29 443.35 326.28 443.4 326.27 L 445.63 330.05 C 444.91 330.67 444.45 331.6 444.45 332.62 C 444.45 334.49 445.95 336 447.8 336 C 449.66 336 451.16 334.49 451.16 332.62 C 451.16 330.76 449.66 329.25 447.8 329.25 Z M 451.19 315.49 C 449.97 315.49 448.97 314.49 448.97 313.25 C 448.97 312.02 449.97 311.02 451.19 311.02 C 452.42 311.02 453.41 312.02 453.41 313.25 C 453.41 314.49 452.42 315.49 451.19 315.49 Z M 455.35 319.71 L 453.2 315.96 C 454.02 315.34 454.55 314.36 454.55 313.25 C 454.55 311.39 453.04 309.88 451.19 309.88 C 450.72 309.88 450.27 309.98 449.86 310.15 L 448.1 307.09 C 448 306.91 447.82 306.81 447.61 306.81 L 440.57 306.81 L 440.57 307.95 L 447.28 307.95 L 448.91 310.78 C 448.25 311.4 447.83 312.28 447.83 313.25 C 447.83 315.12 449.34 316.63 451.19 316.63 C 451.54 316.63 451.87 316.58 452.18 316.48 L 454.2 320 L 451.37 324.94 L 452.35 325.51 L 455.35 320.29 C 455.45 320.11 455.45 319.89 455.35 319.71 Z M 429.27 328.71 C 428.05 328.71 427.05 327.71 427.05 326.48 C 427.05 325.25 428.05 324.25 429.27 324.25 C 430.5 324.25 431.5 325.25 431.5 326.48 C 431.5 327.71 430.5 328.71 429.27 328.71 Z M 431.13 329.29 C 432.03 328.68 432.63 327.65 432.63 326.48 C 432.63 324.62 431.12 323.1 429.27 323.1 C 428.74 323.1 428.23 323.23 427.78 323.46 L 425.8 320 L 429.09 314.27 L 428.1 313.7 L 424.65 319.71 C 424.55 319.89 424.55 320.11 424.65 320.29 L 426.86 324.14 C 426.28 324.75 425.92 325.57 425.92 326.48 C 425.92 328.34 427.42 329.86 429.27 329.86 C 429.55 329.86 429.82 329.82 430.08 329.75 L 431.9 332.91 C 432 333.09 432.18 333.19 432.39 333.19 L 439.43 333.19 L 439.43 332.05 L 432.72 332.05 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 420 340 L 460 340 L 460 380 L 420 380 Z" fill="url(#mx-gradient-60a337-1-277116-1-s-0)" stroke="none" pointer-events="none"/><path d="M 451.94 361.65 L 452.16 360.11 C 454.18 361.32 454.21 361.82 454.21 361.83 C 454.2 361.84 453.86 362.13 451.94 361.65 Z M 450.83 361.34 C 447.33 360.29 442.46 358.05 440.49 357.12 C 440.49 357.11 440.49 357.11 440.49 357.1 C 440.49 356.34 439.88 355.72 439.12 355.72 C 438.36 355.72 437.75 356.34 437.75 357.1 C 437.75 357.85 438.36 358.47 439.12 358.47 C 439.45 358.47 439.75 358.35 439.99 358.15 C 442.31 359.25 447.14 361.45 450.67 362.49 L 449.27 372.32 C 449.27 372.35 449.27 372.37 449.27 372.4 C 449.27 373.27 445.43 374.86 439.17 374.86 C 432.84 374.86 428.97 373.27 428.97 372.4 C 428.97 372.37 428.97 372.35 428.97 372.32 L 426.05 351.06 C 428.57 352.8 433.99 353.71 439.18 353.71 C 444.35 353.71 449.76 352.8 452.29 351.07 Z M 425.75 348.84 C 425.79 348.09 430.11 345.14 439.18 345.14 C 448.24 345.14 452.56 348.09 452.6 348.84 L 452.6 349.1 C 452.11 350.79 446.51 352.57 439.18 352.57 C 431.83 352.57 426.23 350.78 425.75 349.09 Z M 453.75 348.86 C 453.75 346.88 448.07 344 439.18 344 C 430.28 344 424.6 346.88 424.6 348.86 L 424.66 349.29 L 427.83 372.44 C 427.9 375.03 434.81 376 439.17 376 C 444.59 376 450.34 374.76 450.41 372.45 L 451.78 362.79 C 452.54 362.97 453.17 363.07 453.67 363.07 C 454.35 363.07 454.8 362.9 455.08 362.57 C 455.31 362.3 455.4 361.97 455.33 361.62 C 455.18 360.83 454.24 359.98 452.33 358.89 L 453.69 349.31 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 500 300 L 540 300 L 540 340 L 500 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 527.53 330.06 L 527.53 327.02 L 529.41 326.26 L 529.41 329.3 Z M 524.39 326.26 L 526.27 327.02 L 526.27 330.06 L 524.39 329.3 Z M 520.63 334.45 L 520.63 331.41 L 522.51 330.65 L 522.51 333.69 Z M 517.49 330.65 L 519.37 331.41 L 519.37 334.45 L 517.49 333.69 Z M 513.73 330.06 L 513.73 327.02 L 515.61 326.26 L 515.61 329.3 Z M 510.59 326.26 L 512.47 327.02 L 512.47 330.06 L 510.59 329.3 Z M 513.1 324.76 L 514.55 325.34 L 513.1 325.92 L 511.65 325.34 Z M 520 329.15 L 521.45 329.73 L 520 330.31 L 518.55 329.73 Z M 526.9 324.76 L 528.35 325.34 L 526.9 325.92 L 525.45 325.34 Z M 530.27 324.76 L 527.13 323.5 C 526.98 323.44 526.82 323.44 526.67 323.5 L 523.53 324.76 C 523.29 324.85 523.14 325.08 523.14 325.34 L 523.14 329.05 L 520.23 327.89 C 520.08 327.83 519.92 327.83 519.77 327.89 L 516.86 329.05 L 516.86 325.34 C 516.86 325.08 516.71 324.85 516.47 324.76 L 513.33 323.5 C 513.18 323.44 513.02 323.44 512.87 323.5 L 509.73 324.76 C 509.49 324.85 509.34 325.08 509.34 325.34 L 509.34 329.73 C 509.34 329.98 509.49 330.21 509.73 330.31 L 512.87 331.57 C 512.94 331.59 513.02 331.61 513.1 331.61 C 513.18 331.61 513.26 331.59 513.33 331.57 L 516.24 330.4 L 516.24 334.12 C 516.24 334.37 516.39 334.61 516.63 334.7 L 519.77 335.96 C 519.84 335.98 519.92 336 520 336 C 520.08 336 520.16 335.98 520.23 335.96 L 523.37 334.7 C 523.61 334.61 523.76 334.37 523.76 334.12 L 523.76 330.4 L 526.67 331.57 C 526.74 331.59 526.82 331.61 526.9 331.61 C 526.98 331.61 527.06 331.59 527.13 331.57 L 530.27 330.31 C 530.51 330.21 530.66 329.98 530.66 329.73 L 530.66 325.34 C 530.66 325.08 530.51 324.85 530.27 324.76 Z M 535.68 317.15 C 535.68 320.81 527.6 322.79 520 322.79 C 512.4 322.79 504.32 320.81 504.32 317.15 C 504.32 315.4 506.26 313.85 509.79 312.81 L 510.14 314.01 C 507.33 314.85 505.57 316.05 505.57 317.15 C 505.57 319.22 511.5 321.54 520 321.54 C 528.5 321.54 534.43 319.22 534.43 317.15 C 534.43 316.05 532.67 314.85 529.86 314.01 L 530.21 312.81 C 533.74 313.85 535.68 315.4 535.68 317.15 Z M 520 305.31 L 526.41 307.78 L 520 310.24 L 513.59 307.78 Z M 526.64 317.71 C 525.45 318.24 523.47 318.86 520.63 318.94 L 520.63 311.34 L 527.53 308.69 L 527.53 316.34 C 527.53 316.93 527.18 317.47 526.64 317.71 Z M 512.47 316.34 L 512.47 308.69 L 519.37 311.34 L 519.37 318.94 C 516.53 318.86 514.55 318.24 513.36 317.71 C 512.82 317.47 512.47 316.93 512.47 316.34 Z M 512.85 318.86 C 514.23 319.48 516.59 320.21 520 320.21 C 523.41 320.21 525.77 319.48 527.15 318.86 C 528.14 318.42 528.78 317.43 528.78 316.34 L 528.78 307.78 C 528.78 307.52 528.62 307.28 528.38 307.19 L 520.23 304.06 C 520.08 304 519.92 304 519.77 304.06 L 511.62 307.19 C 511.38 307.28 511.22 307.52 511.22 307.78 L 511.22 316.34 C 511.22 317.43 511.86 318.42 512.85 318.86 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 500 340 L 540 340 L 540 380 L 500 380 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 528.64 366.93 C 528.64 365.98 527.87 365.21 526.93 365.21 C 525.98 365.21 525.21 365.98 525.21 366.93 C 525.21 367.87 525.98 368.64 526.93 368.64 C 527.87 368.64 528.64 367.87 528.64 366.93 Z M 529.78 366.93 C 529.78 368.5 528.5 369.78 526.93 369.78 C 525.35 369.78 524.07 368.5 524.07 366.93 C 524.07 365.35 525.35 364.07 526.93 364.07 C 528.5 364.07 529.78 365.35 529.78 366.93 Z M 514.51 358.68 C 514.51 357.74 513.74 356.97 512.8 356.97 C 511.85 356.97 511.08 357.74 511.08 358.68 C 511.08 359.63 511.85 360.4 512.8 360.4 C 513.74 360.4 514.51 359.63 514.51 358.68 Z M 515.65 358.68 C 515.65 360.26 514.37 361.54 512.8 361.54 C 511.22 361.54 509.94 360.26 509.94 358.68 C 509.94 357.11 511.22 355.82 512.8 355.82 C 514.37 355.82 515.65 357.11 515.65 358.68 Z M 519.85 349.72 C 519.85 350.66 520.61 351.43 521.56 351.43 C 522.51 351.43 523.27 350.66 523.27 349.72 C 523.27 348.77 522.51 348 521.56 348 C 520.61 348 519.85 348.77 519.85 349.72 Z M 518.7 349.72 C 518.7 348.14 519.99 346.86 521.56 346.86 C 523.14 346.86 524.42 348.14 524.42 349.72 C 524.42 351.29 523.14 352.58 521.56 352.58 C 519.99 352.58 518.7 351.29 518.7 349.72 Z M 534.86 360 C 534.86 354.7 532.02 349.8 527.44 347.15 C 526.61 347.31 525.82 347.54 524.83 347.9 L 524.44 346.82 C 524.96 346.64 525.42 346.49 525.87 346.36 C 524.03 345.56 522.03 345.14 520 345.14 C 519.03 345.14 518.09 345.24 517.16 345.42 C 517.83 345.82 518.43 346.21 519 346.65 L 518.31 347.56 C 517.5 346.94 516.65 346.42 515.54 345.83 C 509.93 347.6 505.89 352.55 505.25 358.36 C 506.42 358.12 507.55 357.99 508.81 357.96 L 508.84 359.1 C 507.52 359.13 506.39 359.27 505.16 359.55 C 505.15 359.7 505.14 359.85 505.14 360 C 505.14 364.95 507.59 369.51 511.62 372.26 C 510.9 370.12 510.54 368.11 510.54 366.14 C 510.54 365.02 510.74 364.1 510.94 363.12 C 510.99 362.9 511.04 362.67 511.08 362.43 L 512.2 362.65 C 512.16 362.89 512.11 363.13 512.06 363.36 C 511.86 364.31 511.69 365.14 511.69 366.14 C 511.69 368.37 512.18 370.68 513.17 373.19 C 515.3 374.29 517.59 374.86 520 374.86 C 521.57 374.86 523.11 374.61 524.58 374.12 C 525.15 372.99 525.58 371.92 525.94 370.69 L 527.03 371 C 526.77 371.9 526.48 372.72 526.12 373.53 C 527.04 373.11 527.91 372.6 528.73 372 C 528.54 371.52 528.32 371.04 528.09 370.57 L 529.11 370.06 C 529.31 370.46 529.49 370.86 529.67 371.27 C 532.97 368.44 534.86 364.38 534.86 360 Z M 536 360 C 536 364.99 533.73 369.6 529.78 372.66 C 528.81 373.42 527.74 374.05 526.62 374.56 C 526.15 374.77 525.66 374.97 525.16 375.14 C 523.52 375.71 521.78 376 520 376 C 517.37 376 514.76 375.35 512.45 374.11 C 507.24 371.32 504 365.91 504 360 C 504 359.61 504.01 359.31 504.03 359.03 C 504.42 352.36 509 346.58 515.43 344.67 C 516.89 344.22 518.43 344 520 344 C 522.75 344 525.45 344.71 527.82 346.05 C 532.86 348.87 536 354.22 536 360 Z M 518.47 351.69 L 517.71 350.83 C 516.43 351.95 515.44 353.14 514.27 354.93 L 515.23 355.55 C 516.33 353.85 517.27 352.74 518.47 351.69 Z M 516.73 359.1 L 516.36 360.18 C 518.98 361.08 521.27 362.52 523.56 364.71 L 524.35 363.88 C 521.94 361.58 519.51 360.06 516.73 359.1 Z M 524.37 352.38 C 526.51 355.65 527.72 359.24 527.96 363.05 L 526.82 363.12 C 526.59 359.51 525.45 356.11 523.41 353.01 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 460 340 L 500 340 L 500 380 L 460 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 465.95 345.14 L 471.26 350.45 L 470.45 351.26 L 465.14 345.95 L 465.14 350.29 L 464 350.29 L 464 344.57 C 464 344.26 464.26 344 464.57 344 L 470.29 344 L 470.29 345.14 Z M 496 344.57 L 496 350.29 L 494.86 350.29 L 494.86 345.95 L 489.55 351.26 L 488.74 350.45 L 494.05 345.14 L 489.71 345.14 L 489.71 344 L 495.43 344 C 495.74 344 496 344.26 496 344.57 Z M 494.86 369.71 L 496 369.71 L 496 375.43 C 496 375.74 495.74 376 495.43 376 L 489.71 376 L 489.71 374.86 L 494.05 374.86 L 488.74 369.55 L 489.55 368.74 L 494.86 374.05 Z M 494.57 359.55 C 494.57 357.65 492.38 355.78 488.71 354.54 L 489.08 353.46 C 493.3 354.88 495.71 357.1 495.71 359.55 C 495.71 362 493.3 364.22 489.08 365.65 L 488.71 364.56 C 492.38 363.32 494.57 361.45 494.57 359.55 Z M 465.46 359.55 C 465.46 361.37 467.51 363.19 470.94 364.43 L 470.56 365.51 C 466.59 364.07 464.32 361.9 464.32 359.55 C 464.32 357.2 466.59 355.03 470.56 353.6 L 470.94 354.67 C 467.51 355.91 465.46 357.73 465.46 359.55 Z M 471.26 369.55 L 465.95 374.86 L 470.29 374.86 L 470.29 376 L 464.57 376 C 464.26 376 464 375.74 464 375.43 L 464 369.71 L 465.14 369.71 L 465.14 374.05 L 470.45 368.74 Z M 480 355.02 C 475.92 355.02 473.71 353.97 473.71 353.53 C 473.71 353.1 475.92 352.05 480 352.05 C 484.08 352.05 486.29 353.1 486.29 353.53 C 486.29 353.97 484.08 355.02 480 355.02 Z M 480.02 359.45 C 476.11 359.45 473.71 358.38 473.71 357.8 L 473.71 355.02 C 475.12 355.8 477.62 356.16 480 356.16 C 482.38 356.16 484.88 355.8 486.29 355.02 L 486.29 357.8 C 486.29 358.38 483.91 359.45 480.02 359.45 Z M 480.02 363.81 C 476.11 363.81 473.71 362.74 473.71 362.16 L 473.71 359.35 C 475.1 360.17 477.57 360.59 480.02 360.59 C 482.45 360.59 484.9 360.17 486.29 359.35 L 486.29 362.16 C 486.29 362.74 483.91 363.81 480.02 363.81 Z M 480 367.72 C 475.93 367.72 473.71 366.63 473.71 366.07 L 473.71 363.71 C 475.1 364.53 477.57 364.95 480.02 364.95 C 482.45 364.95 484.9 364.53 486.29 363.72 L 486.29 366.07 C 486.29 366.63 484.07 367.72 480 367.72 Z M 480 350.91 C 476.42 350.91 472.57 351.73 472.57 353.53 L 472.57 366.07 C 472.57 367.91 476.31 368.87 480 368.87 C 483.69 368.87 487.43 367.91 487.43 366.07 L 487.43 353.53 C 487.43 351.73 483.58 350.91 480 350.91 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 380 340 L 420 340 L 420 380 L 380 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 406.88 368.49 C 404.98 370.03 400.98 370.84 397.15 370.84 C 393.32 370.84 389.31 370.03 387.41 368.49 L 387.41 371.59 L 387.41 371.59 C 387.41 373.14 391.41 374.87 397.15 374.87 C 402.88 374.87 406.88 373.14 406.88 371.59 Z M 406.88 362.58 L 408.03 362.58 L 408.03 362.58 C 408.03 363.27 407.68 363.92 407.01 364.51 C 407.82 365.23 408.03 365.93 408.03 366.43 C 408.03 366.44 408.03 366.44 408.03 366.44 L 408.03 371.59 L 408.03 371.59 C 408.03 374.45 402.42 376 397.15 376 C 391.88 376 386.29 374.46 386.27 371.61 C 386.27 371.61 386.26 371.61 386.26 371.6 L 386.26 366.43 C 386.26 366.43 386.26 366.43 386.26 366.43 C 386.27 365.93 386.47 365.22 387.28 364.51 C 386.48 363.79 386.27 363.09 386.26 362.6 L 386.26 362.6 C 386.26 362.59 386.26 362.59 386.26 362.59 L 386.26 357.42 C 386.26 357.42 386.26 357.42 386.26 357.41 C 386.27 356.91 386.47 356.21 387.29 355.5 C 386.48 354.78 386.27 354.08 386.26 353.58 L 386.26 353.58 C 386.26 353.58 386.26 353.58 386.26 353.58 L 386.26 348.41 C 386.26 348.41 386.26 348.4 386.26 348.4 C 386.27 345.54 391.88 344 397.15 344 C 400.12 344 402.98 344.47 404.99 345.3 L 404.56 346.35 C 402.68 345.58 399.98 345.13 397.15 345.13 C 391.41 345.13 387.41 346.86 387.41 348.41 C 387.41 349.96 391.41 351.69 397.15 351.69 C 397.3 351.69 397.45 351.69 397.61 351.68 L 397.65 352.81 C 397.48 352.82 397.32 352.82 397.15 352.82 C 393.32 352.82 389.31 352 387.41 350.46 L 387.41 353.57 L 387.41 353.57 L 387.41 353.58 C 387.41 354.17 388.02 354.69 388.53 355.02 C 390.07 356 392.82 356.67 395.9 356.81 L 395.84 357.94 C 392.73 357.8 390.01 357.16 388.25 356.17 C 387.82 356.49 387.41 356.93 387.41 357.42 C 387.41 358.97 391.41 360.7 397.15 360.7 C 397.71 360.7 398.27 360.68 398.81 360.64 L 398.89 361.77 C 398.32 361.81 397.74 361.83 397.15 361.83 C 393.32 361.83 389.31 361.02 387.41 359.47 L 387.41 362.58 L 387.41 362.58 C 387.41 363.19 388.02 363.7 388.53 364.03 C 390.29 365.16 393.59 365.85 397.15 365.85 L 397.4 365.85 L 397.4 366.99 L 397.15 366.99 C 393.54 366.99 390.25 366.32 388.25 365.18 C 387.82 365.51 387.41 365.94 387.41 366.43 C 387.41 367.98 391.41 369.71 397.15 369.71 C 402.88 369.71 406.88 367.99 406.88 366.44 L 406.88 366.43 L 406.88 366.43 C 406.88 365.94 406.47 365.5 406.04 365.18 C 405.76 365.34 405.46 365.49 405.12 365.63 L 404.69 364.58 C 405.1 364.41 405.46 364.23 405.76 364.04 C 406.27 363.7 406.88 363.17 406.88 362.58 Z M 411.78 354.3 L 408.58 354.3 C 408.39 354.3 408.21 354.2 408.1 354.05 C 408 353.89 407.98 353.69 408.05 353.52 L 409.99 348.65 L 402.62 348.65 L 399.19 355.45 L 402.84 355.45 C 403.02 355.45 403.19 355.54 403.3 355.68 C 403.4 355.83 403.44 356.02 403.38 356.19 L 400.13 366.34 Z M 413.53 354.12 L 399.25 368.88 C 399.14 368.99 398.99 369.05 398.84 369.05 C 398.74 369.05 398.63 369.03 398.54 368.97 C 398.32 368.84 398.21 368.57 398.29 368.32 L 402.05 356.59 L 398.26 356.59 C 398.07 356.59 397.88 356.48 397.78 356.32 C 397.67 356.15 397.66 355.94 397.75 355.77 L 401.75 347.83 C 401.85 347.64 402.05 347.52 402.26 347.52 L 410.84 347.52 C 411.02 347.52 411.2 347.61 411.31 347.77 C 411.42 347.92 411.44 348.12 411.37 348.29 L 409.42 353.16 L 413.12 353.16 C 413.35 353.16 413.56 353.3 413.65 353.51 C 413.74 353.72 413.69 353.96 413.53 354.12 Z M 388.24 371.81 C 389.05 372.27 390.07 372.65 391.27 372.95 L 391.55 371.85 C 390.46 371.58 389.51 371.23 388.8 370.83 Z M 391.27 363.89 L 391.55 362.79 C 390.46 362.51 389.51 362.16 388.8 361.76 L 388.24 362.75 C 389.05 363.2 390.07 363.59 391.27 363.89 Z M 388.24 353.68 L 388.8 352.69 C 389.51 353.09 390.46 353.45 391.55 353.72 L 391.27 354.82 C 390.07 354.52 389.05 354.13 388.24 353.68 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="380" y="300" width="160" height="80" fill="none" stroke="#21c0a5" stroke-width="2" pointer-events="none"/><rect x="560" y="140" width="160" height="40" fill="#45a364" stroke="#45a364" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="22px"><text x="639.5" y="173.5">staging</text></g><rect x="560" y="260" width="160" height="40" fill="#193b24" stroke="#45a364" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="639.5" y="286">release candidate</text></g><rect x="560" y="180" width="160" height="40" fill="#45a364" stroke="#45a364" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="639.5" y="198.5">environment</text></g><rect x="560" y="220" width="160" height="40" fill="#193b24" stroke="#45a364" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-weight="bold" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="639.5" y="246">REQUIRED</text></g><path d="M 560 300 L 600 300 L 600 340 L 560 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 573.16 334.86 L 566.07 334.86 L 573.91 318.45 L 577.47 325.77 Z M 574.43 316.89 C 574.33 316.69 574.13 316.57 573.91 316.57 L 573.91 316.57 C 573.69 316.57 573.49 316.69 573.39 316.89 L 564.64 335.18 C 564.56 335.36 564.57 335.57 564.67 335.73 C 564.78 335.9 564.96 336 565.16 336 L 573.52 336 C 573.75 336 573.95 335.87 574.04 335.67 L 578.62 326.02 C 578.7 325.86 578.7 325.68 578.62 325.52 Z M 594.3 334.86 L 587.25 334.86 L 575.94 311.18 C 575.84 310.98 575.64 310.86 575.42 310.86 L 570.81 310.86 L 570.81 305.14 L 579.85 305.14 L 591.11 328.82 C 591.21 329.02 591.41 329.14 591.63 329.14 L 594.3 329.14 Z M 594.87 328 L 591.99 328 L 580.73 304.33 C 580.64 304.13 580.44 304 580.22 304 L 570.24 304 C 569.93 304 569.67 304.26 569.67 304.57 L 569.66 311.43 C 569.66 311.58 569.72 311.73 569.83 311.83 C 569.94 311.94 570.08 312 570.24 312 L 575.06 312 L 586.37 335.67 C 586.47 335.87 586.67 336 586.89 336 L 594.87 336 C 595.19 336 595.44 335.74 595.44 335.43 L 595.44 328.57 C 595.44 328.26 595.19 328 594.87 328 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 640 300 L 680 300 L 680 340 L 640 340 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 656.61 328.94 L 658.29 328.94 L 658.29 327.79 L 656.61 327.79 Z M 659.43 328.94 L 661.14 328.94 L 661.14 327.79 L 659.43 327.79 Z M 652.58 305.53 L 645.16 309.21 L 645.16 332.11 L 652.58 334.62 Z M 653.72 312.82 L 653.72 327.79 L 655.43 327.79 L 655.43 328.94 L 653.72 328.94 L 653.72 335.42 C 653.72 335.61 653.63 335.78 653.48 335.89 C 653.38 335.96 653.27 336 653.15 336 C 653.09 336 653.03 335.99 652.97 335.97 L 644.4 333.07 C 644.17 333 644.01 332.78 644.01 332.53 L 644.01 308.86 C 644.01 308.64 644.14 308.44 644.33 308.34 L 652.9 304.09 C 653.07 304 653.28 304.01 653.45 304.12 C 653.62 304.22 653.72 304.41 653.72 304.6 L 653.72 311.67 L 655.43 311.67 L 655.43 312.82 Z M 662.28 328.94 L 664 328.94 L 664 327.79 L 662.28 327.79 Z M 662.32 312.82 L 664 312.82 L 664 311.67 L 662.32 311.67 Z M 659.47 312.82 L 661.14 312.82 L 661.14 311.67 L 659.47 311.67 Z M 656.61 312.82 L 658.29 312.82 L 658.29 311.67 L 656.61 311.67 Z M 674.84 309.21 L 667.42 305.53 L 667.42 334.62 L 674.84 332.11 Z M 675.99 332.53 C 675.99 332.78 675.83 333 675.6 333.07 L 667.03 335.97 C 666.97 335.99 666.91 336 666.85 336 C 666.73 336 666.62 335.96 666.52 335.89 C 666.37 335.78 666.28 335.61 666.28 335.42 L 666.28 328.94 L 665.18 328.94 L 665.18 327.79 L 666.28 327.79 L 666.28 312.82 L 665.18 312.82 L 665.18 311.67 L 666.28 311.67 L 666.28 304.6 C 666.28 304.41 666.38 304.22 666.55 304.12 C 666.72 304.01 666.93 304 667.1 304.09 L 675.67 308.34 C 675.86 308.44 675.99 308.64 675.99 308.86 Z M 661.68 316.48 L 660.61 316.07 L 657.75 323.55 L 658.82 323.96 Z M 665.54 320.13 C 665.77 319.91 665.77 319.54 665.54 319.32 L 663.26 317.02 L 662.45 317.83 L 664.33 319.73 L 662.45 321.62 L 663.26 322.44 Z M 656.74 322.44 L 654.46 320.13 C 654.23 319.91 654.23 319.54 654.46 319.32 L 656.74 317.02 L 657.55 317.83 L 655.67 319.73 L 657.55 321.62 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 600 300 L 640 300 L 640 340 L 600 340 Z" fill="url(#mx-gradient-ff4f8b-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 627.8 334.86 C 626.58 334.86 625.58 333.86 625.58 332.62 C 625.58 331.39 626.58 330.39 627.8 330.39 C 629.03 330.39 630.02 331.39 630.02 332.62 C 630.02 333.86 629.03 334.86 627.8 334.86 Z M 622.93 325.14 L 617.03 325.14 L 614.07 320 L 617.03 314.86 L 622.93 314.86 L 625.89 320 Z M 612.93 309.61 C 611.7 309.61 610.7 308.61 610.7 307.38 C 610.7 306.14 611.7 305.14 612.93 305.14 C 614.15 305.14 615.15 306.14 615.15 307.38 C 615.15 308.61 614.15 309.61 612.93 309.61 Z M 627.8 329.25 C 627.38 329.25 626.98 329.33 626.61 329.47 L 624.19 325.38 L 624.07 325.45 L 627.03 320.29 C 627.14 320.11 627.14 319.89 627.03 319.71 L 623.75 314 C 623.65 313.82 623.46 313.71 623.26 313.71 L 617.29 313.71 L 617.31 313.7 L 615.1 309.95 C 615.82 309.33 616.28 308.4 616.28 307.38 C 616.28 305.51 614.78 304 612.93 304 C 611.08 304 609.57 305.51 609.57 307.38 C 609.57 309.24 611.08 310.75 612.93 310.75 C 613.35 310.75 613.75 310.67 614.12 310.53 L 616.19 314.03 L 612.93 319.71 C 612.82 319.89 612.82 320.11 612.93 320.29 L 616.21 326 C 616.31 326.18 616.5 326.29 616.7 326.29 L 623.26 326.29 C 623.31 326.29 623.35 326.28 623.4 326.27 L 625.63 330.05 C 624.91 330.67 624.45 331.6 624.45 332.62 C 624.45 334.49 625.95 336 627.8 336 C 629.66 336 631.16 334.49 631.16 332.62 C 631.16 330.76 629.66 329.25 627.8 329.25 Z M 631.19 315.49 C 629.97 315.49 628.97 314.49 628.97 313.25 C 628.97 312.02 629.97 311.02 631.19 311.02 C 632.42 311.02 633.41 312.02 633.41 313.25 C 633.41 314.49 632.42 315.49 631.19 315.49 Z M 635.35 319.71 L 633.2 315.96 C 634.02 315.34 634.55 314.36 634.55 313.25 C 634.55 311.39 633.04 309.88 631.19 309.88 C 630.72 309.88 630.27 309.98 629.86 310.15 L 628.1 307.09 C 628 306.91 627.82 306.81 627.61 306.81 L 620.57 306.81 L 620.57 307.95 L 627.28 307.95 L 628.91 310.78 C 628.25 311.4 627.83 312.28 627.83 313.25 C 627.83 315.12 629.34 316.63 631.19 316.63 C 631.54 316.63 631.87 316.58 632.18 316.48 L 634.2 320 L 631.37 324.94 L 632.35 325.51 L 635.35 320.29 C 635.45 320.11 635.45 319.89 635.35 319.71 Z M 609.27 328.71 C 608.05 328.71 607.05 327.71 607.05 326.48 C 607.05 325.25 608.05 324.25 609.27 324.25 C 610.5 324.25 611.5 325.25 611.5 326.48 C 611.5 327.71 610.5 328.71 609.27 328.71 Z M 611.13 329.29 C 612.03 328.68 612.63 327.65 612.63 326.48 C 612.63 324.62 611.12 323.1 609.27 323.1 C 608.74 323.1 608.23 323.23 607.78 323.46 L 605.8 320 L 609.09 314.27 L 608.1 313.7 L 604.65 319.71 C 604.55 319.89 604.55 320.11 604.65 320.29 L 606.86 324.14 C 606.28 324.75 605.92 325.57 605.92 326.48 C 605.92 328.34 607.42 329.86 609.27 329.86 C 609.55 329.86 609.82 329.82 610.08 329.75 L 611.9 332.91 C 612 333.09 612.18 333.19 612.39 333.19 L 619.43 333.19 L 619.43 332.05 L 612.72 332.05 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 600 340 L 640 340 L 640 380 L 600 380 Z" fill="url(#mx-gradient-60a337-1-277116-1-s-0)" stroke="none" pointer-events="none"/><path d="M 631.94 361.65 L 632.16 360.11 C 634.18 361.32 634.21 361.82 634.21 361.83 C 634.2 361.84 633.86 362.13 631.94 361.65 Z M 630.83 361.34 C 627.33 360.29 622.46 358.05 620.49 357.12 C 620.49 357.11 620.49 357.11 620.49 357.1 C 620.49 356.34 619.88 355.72 619.12 355.72 C 618.36 355.72 617.75 356.34 617.75 357.1 C 617.75 357.85 618.36 358.47 619.12 358.47 C 619.45 358.47 619.75 358.35 619.99 358.15 C 622.31 359.25 627.14 361.45 630.67 362.49 L 629.27 372.32 C 629.27 372.35 629.27 372.37 629.27 372.4 C 629.27 373.27 625.43 374.86 619.17 374.86 C 612.84 374.86 608.97 373.27 608.97 372.4 C 608.97 372.37 608.97 372.35 608.97 372.32 L 606.05 351.06 C 608.57 352.8 613.99 353.71 619.18 353.71 C 624.35 353.71 629.76 352.8 632.29 351.07 Z M 605.75 348.84 C 605.79 348.09 610.11 345.14 619.18 345.14 C 628.24 345.14 632.56 348.09 632.6 348.84 L 632.6 349.1 C 632.11 350.79 626.51 352.57 619.18 352.57 C 611.83 352.57 606.23 350.78 605.75 349.09 Z M 633.75 348.86 C 633.75 346.88 628.07 344 619.18 344 C 610.28 344 604.6 346.88 604.6 348.86 L 604.66 349.29 L 607.83 372.44 C 607.9 375.03 614.81 376 619.17 376 C 624.59 376 630.34 374.76 630.41 372.45 L 631.78 362.79 C 632.54 362.97 633.17 363.07 633.67 363.07 C 634.35 363.07 634.8 362.9 635.08 362.57 C 635.31 362.3 635.4 361.97 635.33 361.62 C 635.18 360.83 634.24 359.98 632.33 358.89 L 633.69 349.31 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 680 300 L 720 300 L 720 340 L 680 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 707.53 330.06 L 707.53 327.02 L 709.41 326.26 L 709.41 329.3 Z M 704.39 326.26 L 706.27 327.02 L 706.27 330.06 L 704.39 329.3 Z M 700.63 334.45 L 700.63 331.41 L 702.51 330.65 L 702.51 333.69 Z M 697.49 330.65 L 699.37 331.41 L 699.37 334.45 L 697.49 333.69 Z M 693.73 330.06 L 693.73 327.02 L 695.61 326.26 L 695.61 329.3 Z M 690.59 326.26 L 692.47 327.02 L 692.47 330.06 L 690.59 329.3 Z M 693.1 324.76 L 694.55 325.34 L 693.1 325.92 L 691.65 325.34 Z M 700 329.15 L 701.45 329.73 L 700 330.31 L 698.55 329.73 Z M 706.9 324.76 L 708.35 325.34 L 706.9 325.92 L 705.45 325.34 Z M 710.27 324.76 L 707.13 323.5 C 706.98 323.44 706.82 323.44 706.67 323.5 L 703.53 324.76 C 703.29 324.85 703.14 325.08 703.14 325.34 L 703.14 329.05 L 700.23 327.89 C 700.08 327.83 699.92 327.83 699.77 327.89 L 696.86 329.05 L 696.86 325.34 C 696.86 325.08 696.71 324.85 696.47 324.76 L 693.33 323.5 C 693.18 323.44 693.02 323.44 692.87 323.5 L 689.73 324.76 C 689.49 324.85 689.34 325.08 689.34 325.34 L 689.34 329.73 C 689.34 329.98 689.49 330.21 689.73 330.31 L 692.87 331.57 C 692.94 331.59 693.02 331.61 693.1 331.61 C 693.18 331.61 693.26 331.59 693.33 331.57 L 696.24 330.4 L 696.24 334.12 C 696.24 334.37 696.39 334.61 696.63 334.7 L 699.77 335.96 C 699.84 335.98 699.92 336 700 336 C 700.08 336 700.16 335.98 700.23 335.96 L 703.37 334.7 C 703.61 334.61 703.76 334.37 703.76 334.12 L 703.76 330.4 L 706.67 331.57 C 706.74 331.59 706.82 331.61 706.9 331.61 C 706.98 331.61 707.06 331.59 707.13 331.57 L 710.27 330.31 C 710.51 330.21 710.66 329.98 710.66 329.73 L 710.66 325.34 C 710.66 325.08 710.51 324.85 710.27 324.76 Z M 715.68 317.15 C 715.68 320.81 707.6 322.79 700 322.79 C 692.4 322.79 684.32 320.81 684.32 317.15 C 684.32 315.4 686.26 313.85 689.79 312.81 L 690.14 314.01 C 687.33 314.85 685.57 316.05 685.57 317.15 C 685.57 319.22 691.5 321.54 700 321.54 C 708.5 321.54 714.43 319.22 714.43 317.15 C 714.43 316.05 712.67 314.85 709.86 314.01 L 710.21 312.81 C 713.74 313.85 715.68 315.4 715.68 317.15 Z M 700 305.31 L 706.41 307.78 L 700 310.24 L 693.59 307.78 Z M 706.64 317.71 C 705.45 318.24 703.47 318.86 700.63 318.94 L 700.63 311.34 L 707.53 308.69 L 707.53 316.34 C 707.53 316.93 707.18 317.47 706.64 317.71 Z M 692.47 316.34 L 692.47 308.69 L 699.37 311.34 L 699.37 318.94 C 696.53 318.86 694.55 318.24 693.36 317.71 C 692.82 317.47 692.47 316.93 692.47 316.34 Z M 692.85 318.86 C 694.23 319.48 696.59 320.21 700 320.21 C 703.41 320.21 705.77 319.48 707.15 318.86 C 708.14 318.42 708.78 317.43 708.78 316.34 L 708.78 307.78 C 708.78 307.52 708.62 307.28 708.38 307.19 L 700.23 304.06 C 700.08 304 699.92 304 699.77 304.06 L 691.62 307.19 C 691.38 307.28 691.22 307.52 691.22 307.78 L 691.22 316.34 C 691.22 317.43 691.86 318.42 692.85 318.86 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 680 340 L 720 340 L 720 380 L 680 380 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 708.64 366.93 C 708.64 365.98 707.87 365.21 706.93 365.21 C 705.98 365.21 705.21 365.98 705.21 366.93 C 705.21 367.87 705.98 368.64 706.93 368.64 C 707.87 368.64 708.64 367.87 708.64 366.93 Z M 709.78 366.93 C 709.78 368.5 708.5 369.78 706.93 369.78 C 705.35 369.78 704.07 368.5 704.07 366.93 C 704.07 365.35 705.35 364.07 706.93 364.07 C 708.5 364.07 709.78 365.35 709.78 366.93 Z M 694.51 358.68 C 694.51 357.74 693.74 356.97 692.8 356.97 C 691.85 356.97 691.08 357.74 691.08 358.68 C 691.08 359.63 691.85 360.4 692.8 360.4 C 693.74 360.4 694.51 359.63 694.51 358.68 Z M 695.65 358.68 C 695.65 360.26 694.37 361.54 692.8 361.54 C 691.22 361.54 689.94 360.26 689.94 358.68 C 689.94 357.11 691.22 355.82 692.8 355.82 C 694.37 355.82 695.65 357.11 695.65 358.68 Z M 699.85 349.72 C 699.85 350.66 700.61 351.43 701.56 351.43 C 702.51 351.43 703.27 350.66 703.27 349.72 C 703.27 348.77 702.51 348 701.56 348 C 700.61 348 699.85 348.77 699.85 349.72 Z M 698.7 349.72 C 698.7 348.14 699.99 346.86 701.56 346.86 C 703.14 346.86 704.42 348.14 704.42 349.72 C 704.42 351.29 703.14 352.58 701.56 352.58 C 699.99 352.58 698.7 351.29 698.7 349.72 Z M 714.86 360 C 714.86 354.7 712.02 349.8 707.44 347.15 C 706.61 347.31 705.82 347.54 704.83 347.9 L 704.44 346.82 C 704.96 346.64 705.42 346.49 705.87 346.36 C 704.03 345.56 702.03 345.14 700 345.14 C 699.03 345.14 698.09 345.24 697.16 345.42 C 697.83 345.82 698.43 346.21 699 346.65 L 698.31 347.56 C 697.5 346.94 696.65 346.42 695.54 345.83 C 689.93 347.6 685.89 352.55 685.25 358.36 C 686.42 358.12 687.55 357.99 688.81 357.96 L 688.84 359.1 C 687.52 359.13 686.39 359.27 685.16 359.55 C 685.15 359.7 685.14 359.85 685.14 360 C 685.14 364.95 687.59 369.51 691.62 372.26 C 690.9 370.12 690.54 368.11 690.54 366.14 C 690.54 365.02 690.74 364.1 690.94 363.12 C 690.99 362.9 691.04 362.67 691.08 362.43 L 692.2 362.65 C 692.16 362.89 692.11 363.13 692.06 363.36 C 691.86 364.31 691.69 365.14 691.69 366.14 C 691.69 368.37 692.18 370.68 693.17 373.19 C 695.3 374.29 697.59 374.86 700 374.86 C 701.57 374.86 703.11 374.61 704.58 374.12 C 705.15 372.99 705.58 371.92 705.94 370.69 L 707.03 371 C 706.77 371.9 706.48 372.72 706.12 373.53 C 707.04 373.11 707.91 372.6 708.73 372 C 708.54 371.52 708.32 371.04 708.09 370.57 L 709.11 370.06 C 709.31 370.46 709.49 370.86 709.67 371.27 C 712.97 368.44 714.86 364.38 714.86 360 Z M 716 360 C 716 364.99 713.73 369.6 709.78 372.66 C 708.81 373.42 707.74 374.05 706.62 374.56 C 706.15 374.77 705.66 374.97 705.16 375.14 C 703.52 375.71 701.78 376 700 376 C 697.37 376 694.76 375.35 692.45 374.11 C 687.24 371.32 684 365.91 684 360 C 684 359.61 684.01 359.31 684.03 359.03 C 684.42 352.36 689 346.58 695.43 344.67 C 696.89 344.22 698.43 344 700 344 C 702.75 344 705.45 344.71 707.82 346.05 C 712.86 348.87 716 354.22 716 360 Z M 698.47 351.69 L 697.71 350.83 C 696.43 351.95 695.44 353.14 694.27 354.93 L 695.23 355.55 C 696.33 353.85 697.27 352.74 698.47 351.69 Z M 696.73 359.1 L 696.36 360.18 C 698.98 361.08 701.27 362.52 703.56 364.71 L 704.35 363.88 C 701.94 361.58 699.51 360.06 696.73 359.1 Z M 704.37 352.38 C 706.51 355.65 707.72 359.24 707.96 363.05 L 706.82 363.12 C 706.59 359.51 705.45 356.11 703.41 353.01 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 640 340 L 680 340 L 680 380 L 640 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 645.95 345.14 L 651.26 350.45 L 650.45 351.26 L 645.14 345.95 L 645.14 350.29 L 644 350.29 L 644 344.57 C 644 344.26 644.26 344 644.57 344 L 650.29 344 L 650.29 345.14 Z M 676 344.57 L 676 350.29 L 674.86 350.29 L 674.86 345.95 L 669.55 351.26 L 668.74 350.45 L 674.05 345.14 L 669.71 345.14 L 669.71 344 L 675.43 344 C 675.74 344 676 344.26 676 344.57 Z M 674.86 369.71 L 676 369.71 L 676 375.43 C 676 375.74 675.74 376 675.43 376 L 669.71 376 L 669.71 374.86 L 674.05 374.86 L 668.74 369.55 L 669.55 368.74 L 674.86 374.05 Z M 674.57 359.55 C 674.57 357.65 672.38 355.78 668.71 354.54 L 669.08 353.46 C 673.3 354.88 675.71 357.1 675.71 359.55 C 675.71 362 673.3 364.22 669.08 365.65 L 668.71 364.56 C 672.38 363.32 674.57 361.45 674.57 359.55 Z M 645.46 359.55 C 645.46 361.37 647.51 363.19 650.94 364.43 L 650.56 365.51 C 646.59 364.07 644.32 361.9 644.32 359.55 C 644.32 357.2 646.59 355.03 650.56 353.6 L 650.94 354.67 C 647.51 355.91 645.46 357.73 645.46 359.55 Z M 651.26 369.55 L 645.95 374.86 L 650.29 374.86 L 650.29 376 L 644.57 376 C 644.26 376 644 375.74 644 375.43 L 644 369.71 L 645.14 369.71 L 645.14 374.05 L 650.45 368.74 Z M 660 355.02 C 655.92 355.02 653.71 353.97 653.71 353.53 C 653.71 353.1 655.92 352.05 660 352.05 C 664.08 352.05 666.29 353.1 666.29 353.53 C 666.29 353.97 664.08 355.02 660 355.02 Z M 660.02 359.45 C 656.11 359.45 653.71 358.38 653.71 357.8 L 653.71 355.02 C 655.12 355.8 657.62 356.16 660 356.16 C 662.38 356.16 664.88 355.8 666.29 355.02 L 666.29 357.8 C 666.29 358.38 663.91 359.45 660.02 359.45 Z M 660.02 363.81 C 656.11 363.81 653.71 362.74 653.71 362.16 L 653.71 359.35 C 655.1 360.17 657.57 360.59 660.02 360.59 C 662.45 360.59 664.9 360.17 666.29 359.35 L 666.29 362.16 C 666.29 362.74 663.91 363.81 660.02 363.81 Z M 660 367.72 C 655.93 367.72 653.71 366.63 653.71 366.07 L 653.71 363.71 C 655.1 364.53 657.57 364.95 660.02 364.95 C 662.45 364.95 664.9 364.53 666.29 363.72 L 666.29 366.07 C 666.29 366.63 664.07 367.72 660 367.72 Z M 660 350.91 C 656.42 350.91 652.57 351.73 652.57 353.53 L 652.57 366.07 C 652.57 367.91 656.31 368.87 660 368.87 C 663.69 368.87 667.43 367.91 667.43 366.07 L 667.43 353.53 C 667.43 351.73 663.58 350.91 660 350.91 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 560 340 L 600 340 L 600 380 L 560 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 586.88 368.49 C 584.98 370.03 580.98 370.84 577.15 370.84 C 573.32 370.84 569.31 370.03 567.41 368.49 L 567.41 371.59 L 567.41 371.59 C 567.41 373.14 571.41 374.87 577.15 374.87 C 582.88 374.87 586.88 373.14 586.88 371.59 Z M 586.88 362.58 L 588.03 362.58 L 588.03 362.58 C 588.03 363.27 587.68 363.92 587.01 364.51 C 587.82 365.23 588.03 365.93 588.03 366.43 C 588.03 366.44 588.03 366.44 588.03 366.44 L 588.03 371.59 L 588.03 371.59 C 588.03 374.45 582.42 376 577.15 376 C 571.88 376 566.29 374.46 566.27 371.61 C 566.27 371.61 566.26 371.61 566.26 371.6 L 566.26 366.43 C 566.26 366.43 566.26 366.43 566.26 366.43 C 566.27 365.93 566.47 365.22 567.28 364.51 C 566.48 363.79 566.27 363.09 566.26 362.6 L 566.26 362.6 C 566.26 362.59 566.26 362.59 566.26 362.59 L 566.26 357.42 C 566.26 357.42 566.26 357.42 566.26 357.41 C 566.27 356.91 566.47 356.21 567.29 355.5 C 566.48 354.78 566.27 354.08 566.26 353.58 L 566.26 353.58 C 566.26 353.58 566.26 353.58 566.26 353.58 L 566.26 348.41 C 566.26 348.41 566.26 348.4 566.26 348.4 C 566.27 345.54 571.88 344 577.15 344 C 580.12 344 582.98 344.47 584.99 345.3 L 584.56 346.35 C 582.68 345.58 579.98 345.13 577.15 345.13 C 571.41 345.13 567.41 346.86 567.41 348.41 C 567.41 349.96 571.41 351.69 577.15 351.69 C 577.3 351.69 577.45 351.69 577.61 351.68 L 577.65 352.81 C 577.48 352.82 577.32 352.82 577.15 352.82 C 573.32 352.82 569.31 352 567.41 350.46 L 567.41 353.57 L 567.41 353.57 L 567.41 353.58 C 567.41 354.17 568.02 354.69 568.53 355.02 C 570.07 356 572.82 356.67 575.9 356.81 L 575.84 357.94 C 572.73 357.8 570.01 357.16 568.25 356.17 C 567.82 356.49 567.41 356.93 567.41 357.42 C 567.41 358.97 571.41 360.7 577.15 360.7 C 577.71 360.7 578.27 360.68 578.81 360.64 L 578.89 361.77 C 578.32 361.81 577.74 361.83 577.15 361.83 C 573.32 361.83 569.31 361.02 567.41 359.47 L 567.41 362.58 L 567.41 362.58 C 567.41 363.19 568.02 363.7 568.53 364.03 C 570.29 365.16 573.59 365.85 577.15 365.85 L 577.4 365.85 L 577.4 366.99 L 577.15 366.99 C 573.54 366.99 570.25 366.32 568.25 365.18 C 567.82 365.51 567.41 365.94 567.41 366.43 C 567.41 367.98 571.41 369.71 577.15 369.71 C 582.88 369.71 586.88 367.99 586.88 366.44 L 586.88 366.43 L 586.88 366.43 C 586.88 365.94 586.47 365.5 586.04 365.18 C 585.76 365.34 585.46 365.49 585.12 365.63 L 584.69 364.58 C 585.1 364.41 585.46 364.23 585.76 364.04 C 586.27 363.7 586.88 363.17 586.88 362.58 Z M 591.78 354.3 L 588.58 354.3 C 588.39 354.3 588.21 354.2 588.1 354.05 C 588 353.89 587.98 353.69 588.05 353.52 L 589.99 348.65 L 582.62 348.65 L 579.19 355.45 L 582.84 355.45 C 583.02 355.45 583.19 355.54 583.3 355.68 C 583.4 355.83 583.44 356.02 583.38 356.19 L 580.13 366.34 Z M 593.53 354.12 L 579.25 368.88 C 579.14 368.99 578.99 369.05 578.84 369.05 C 578.74 369.05 578.63 369.03 578.54 368.97 C 578.32 368.84 578.21 368.57 578.29 368.32 L 582.05 356.59 L 578.26 356.59 C 578.07 356.59 577.88 356.48 577.78 356.32 C 577.67 356.15 577.66 355.94 577.75 355.77 L 581.75 347.83 C 581.85 347.64 582.05 347.52 582.26 347.52 L 590.84 347.52 C 591.02 347.52 591.2 347.61 591.31 347.77 C 591.42 347.92 591.44 348.12 591.37 348.29 L 589.42 353.16 L 593.12 353.16 C 593.35 353.16 593.56 353.3 593.65 353.51 C 593.74 353.72 593.69 353.96 593.53 354.12 Z M 568.24 371.81 C 569.05 372.27 570.07 372.65 571.27 372.95 L 571.55 371.85 C 570.46 371.58 569.51 371.23 568.8 370.83 Z M 571.27 363.89 L 571.55 362.79 C 570.46 362.51 569.51 362.16 568.8 361.76 L 568.24 362.75 C 569.05 363.2 570.07 363.59 571.27 363.89 Z M 568.24 353.68 L 568.8 352.69 C 569.51 353.09 570.46 353.45 571.55 353.72 L 571.27 354.82 C 570.07 354.52 569.05 354.13 568.24 353.68 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="560" y="300" width="160" height="80" fill="none" stroke="#45a364" stroke-width="2" pointer-events="none"/><rect x="780" y="140" width="160" height="40" fill="#d86613" stroke="#d86613" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="22px"><text x="859.5" y="173.5">preproduction</text></g><rect x="780" y="260" width="160" height="40" fill="#3d1d05" stroke="#d86613" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="859.5" y="286">for QA purposes</text></g><rect x="780" y="180" width="160" height="40" fill="#d86613" stroke="#d86613" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="859.5" y="198.5">environment</text></g><rect x="780" y="220" width="160" height="40" fill="#3d1d05" stroke="#d86613" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-weight="bold" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="859.5" y="246">REQUIRED</text></g><path d="M 780 300 L 820 300 L 820 340 L 780 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 793.16 334.86 L 786.07 334.86 L 793.91 318.45 L 797.47 325.77 Z M 794.43 316.89 C 794.33 316.69 794.13 316.57 793.91 316.57 L 793.91 316.57 C 793.69 316.57 793.49 316.69 793.39 316.89 L 784.64 335.18 C 784.56 335.36 784.57 335.57 784.67 335.73 C 784.78 335.9 784.96 336 785.16 336 L 793.52 336 C 793.75 336 793.95 335.87 794.04 335.67 L 798.62 326.02 C 798.7 325.86 798.7 325.68 798.62 325.52 Z M 814.3 334.86 L 807.25 334.86 L 795.94 311.18 C 795.84 310.98 795.64 310.86 795.42 310.86 L 790.81 310.86 L 790.81 305.14 L 799.85 305.14 L 811.11 328.82 C 811.21 329.02 811.41 329.14 811.63 329.14 L 814.3 329.14 Z M 814.87 328 L 811.99 328 L 800.73 304.33 C 800.64 304.13 800.44 304 800.22 304 L 790.24 304 C 789.93 304 789.67 304.26 789.67 304.57 L 789.66 311.43 C 789.66 311.58 789.72 311.73 789.83 311.83 C 789.94 311.94 790.08 312 790.24 312 L 795.06 312 L 806.37 335.67 C 806.47 335.87 806.67 336 806.89 336 L 814.87 336 C 815.19 336 815.44 335.74 815.44 335.43 L 815.44 328.57 C 815.44 328.26 815.19 328 814.87 328 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 860 300 L 900 300 L 900 340 L 860 340 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 876.61 328.94 L 878.29 328.94 L 878.29 327.79 L 876.61 327.79 Z M 879.43 328.94 L 881.14 328.94 L 881.14 327.79 L 879.43 327.79 Z M 872.58 305.53 L 865.16 309.21 L 865.16 332.11 L 872.58 334.62 Z M 873.72 312.82 L 873.72 327.79 L 875.43 327.79 L 875.43 328.94 L 873.72 328.94 L 873.72 335.42 C 873.72 335.61 873.63 335.78 873.48 335.89 C 873.38 335.96 873.27 336 873.15 336 C 873.09 336 873.03 335.99 872.97 335.97 L 864.4 333.07 C 864.17 333 864.01 332.78 864.01 332.53 L 864.01 308.86 C 864.01 308.64 864.14 308.44 864.33 308.34 L 872.9 304.09 C 873.07 304 873.28 304.01 873.45 304.12 C 873.62 304.22 873.72 304.41 873.72 304.6 L 873.72 311.67 L 875.43 311.67 L 875.43 312.82 Z M 882.28 328.94 L 884 328.94 L 884 327.79 L 882.28 327.79 Z M 882.32 312.82 L 884 312.82 L 884 311.67 L 882.32 311.67 Z M 879.47 312.82 L 881.14 312.82 L 881.14 311.67 L 879.47 311.67 Z M 876.61 312.82 L 878.29 312.82 L 878.29 311.67 L 876.61 311.67 Z M 894.84 309.21 L 887.42 305.53 L 887.42 334.62 L 894.84 332.11 Z M 895.99 332.53 C 895.99 332.78 895.83 333 895.6 333.07 L 887.03 335.97 C 886.97 335.99 886.91 336 886.85 336 C 886.73 336 886.62 335.96 886.52 335.89 C 886.37 335.78 886.28 335.61 886.28 335.42 L 886.28 328.94 L 885.18 328.94 L 885.18 327.79 L 886.28 327.79 L 886.28 312.82 L 885.18 312.82 L 885.18 311.67 L 886.28 311.67 L 886.28 304.6 C 886.28 304.41 886.38 304.22 886.55 304.12 C 886.72 304.01 886.93 304 887.1 304.09 L 895.67 308.34 C 895.86 308.44 895.99 308.64 895.99 308.86 Z M 881.68 316.48 L 880.61 316.07 L 877.75 323.55 L 878.82 323.96 Z M 885.54 320.13 C 885.77 319.91 885.77 319.54 885.54 319.32 L 883.26 317.02 L 882.45 317.83 L 884.33 319.73 L 882.45 321.62 L 883.26 322.44 Z M 876.74 322.44 L 874.46 320.13 C 874.23 319.91 874.23 319.54 874.46 319.32 L 876.74 317.02 L 877.55 317.83 L 875.67 319.73 L 877.55 321.62 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 820 300 L 860 300 L 860 340 L 820 340 Z" fill="url(#mx-gradient-ff4f8b-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 847.8 334.86 C 846.58 334.86 845.58 333.86 845.58 332.62 C 845.58 331.39 846.58 330.39 847.8 330.39 C 849.03 330.39 850.02 331.39 850.02 332.62 C 850.02 333.86 849.03 334.86 847.8 334.86 Z M 842.93 325.14 L 837.03 325.14 L 834.07 320 L 837.03 314.86 L 842.93 314.86 L 845.89 320 Z M 832.93 309.61 C 831.7 309.61 830.7 308.61 830.7 307.38 C 830.7 306.14 831.7 305.14 832.93 305.14 C 834.15 305.14 835.15 306.14 835.15 307.38 C 835.15 308.61 834.15 309.61 832.93 309.61 Z M 847.8 329.25 C 847.38 329.25 846.98 329.33 846.61 329.47 L 844.19 325.38 L 844.07 325.45 L 847.03 320.29 C 847.14 320.11 847.14 319.89 847.03 319.71 L 843.75 314 C 843.65 313.82 843.46 313.71 843.26 313.71 L 837.29 313.71 L 837.31 313.7 L 835.1 309.95 C 835.82 309.33 836.28 308.4 836.28 307.38 C 836.28 305.51 834.78 304 832.93 304 C 831.08 304 829.57 305.51 829.57 307.38 C 829.57 309.24 831.08 310.75 832.93 310.75 C 833.35 310.75 833.75 310.67 834.12 310.53 L 836.19 314.03 L 832.93 319.71 C 832.82 319.89 832.82 320.11 832.93 320.29 L 836.21 326 C 836.31 326.18 836.5 326.29 836.7 326.29 L 843.26 326.29 C 843.31 326.29 843.35 326.28 843.4 326.27 L 845.63 330.05 C 844.91 330.67 844.45 331.6 844.45 332.62 C 844.45 334.49 845.95 336 847.8 336 C 849.66 336 851.16 334.49 851.16 332.62 C 851.16 330.76 849.66 329.25 847.8 329.25 Z M 851.19 315.49 C 849.97 315.49 848.97 314.49 848.97 313.25 C 848.97 312.02 849.97 311.02 851.19 311.02 C 852.42 311.02 853.41 312.02 853.41 313.25 C 853.41 314.49 852.42 315.49 851.19 315.49 Z M 855.35 319.71 L 853.2 315.96 C 854.02 315.34 854.55 314.36 854.55 313.25 C 854.55 311.39 853.04 309.88 851.19 309.88 C 850.72 309.88 850.27 309.98 849.86 310.15 L 848.1 307.09 C 848 306.91 847.82 306.81 847.61 306.81 L 840.57 306.81 L 840.57 307.95 L 847.28 307.95 L 848.91 310.78 C 848.25 311.4 847.83 312.28 847.83 313.25 C 847.83 315.12 849.34 316.63 851.19 316.63 C 851.54 316.63 851.87 316.58 852.18 316.48 L 854.2 320 L 851.37 324.94 L 852.35 325.51 L 855.35 320.29 C 855.45 320.11 855.45 319.89 855.35 319.71 Z M 829.27 328.71 C 828.05 328.71 827.05 327.71 827.05 326.48 C 827.05 325.25 828.05 324.25 829.27 324.25 C 830.5 324.25 831.5 325.25 831.5 326.48 C 831.5 327.71 830.5 328.71 829.27 328.71 Z M 831.13 329.29 C 832.03 328.68 832.63 327.65 832.63 326.48 C 832.63 324.62 831.12 323.1 829.27 323.1 C 828.74 323.1 828.23 323.23 827.78 323.46 L 825.8 320 L 829.09 314.27 L 828.1 313.7 L 824.65 319.71 C 824.55 319.89 824.55 320.11 824.65 320.29 L 826.86 324.14 C 826.28 324.75 825.92 325.57 825.92 326.48 C 825.92 328.34 827.42 329.86 829.27 329.86 C 829.55 329.86 829.82 329.82 830.08 329.75 L 831.9 332.91 C 832 333.09 832.18 333.19 832.39 333.19 L 839.43 333.19 L 839.43 332.05 L 832.72 332.05 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 820 340 L 860 340 L 860 380 L 820 380 Z" fill="url(#mx-gradient-60a337-1-277116-1-s-0)" stroke="none" pointer-events="none"/><path d="M 851.94 361.65 L 852.16 360.11 C 854.18 361.32 854.21 361.82 854.21 361.83 C 854.2 361.84 853.86 362.13 851.94 361.65 Z M 850.83 361.34 C 847.33 360.29 842.46 358.05 840.49 357.12 C 840.49 357.11 840.49 357.11 840.49 357.1 C 840.49 356.34 839.88 355.72 839.12 355.72 C 838.36 355.72 837.75 356.34 837.75 357.1 C 837.75 357.85 838.36 358.47 839.12 358.47 C 839.45 358.47 839.75 358.35 839.99 358.15 C 842.31 359.25 847.14 361.45 850.67 362.49 L 849.27 372.32 C 849.27 372.35 849.27 372.37 849.27 372.4 C 849.27 373.27 845.43 374.86 839.17 374.86 C 832.84 374.86 828.97 373.27 828.97 372.4 C 828.97 372.37 828.97 372.35 828.97 372.32 L 826.05 351.06 C 828.57 352.8 833.99 353.71 839.18 353.71 C 844.35 353.71 849.76 352.8 852.29 351.07 Z M 825.75 348.84 C 825.79 348.09 830.11 345.14 839.18 345.14 C 848.24 345.14 852.56 348.09 852.6 348.84 L 852.6 349.1 C 852.11 350.79 846.51 352.57 839.18 352.57 C 831.83 352.57 826.23 350.78 825.75 349.09 Z M 853.75 348.86 C 853.75 346.88 848.07 344 839.18 344 C 830.28 344 824.6 346.88 824.6 348.86 L 824.66 349.29 L 827.83 372.44 C 827.9 375.03 834.81 376 839.17 376 C 844.59 376 850.34 374.76 850.41 372.45 L 851.78 362.79 C 852.54 362.97 853.17 363.07 853.67 363.07 C 854.35 363.07 854.8 362.9 855.08 362.57 C 855.31 362.3 855.4 361.97 855.33 361.62 C 855.18 360.83 854.24 359.98 852.33 358.89 L 853.69 349.31 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 900 300 L 940 300 L 940 340 L 900 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 927.53 330.06 L 927.53 327.02 L 929.41 326.26 L 929.41 329.3 Z M 924.39 326.26 L 926.27 327.02 L 926.27 330.06 L 924.39 329.3 Z M 920.63 334.45 L 920.63 331.41 L 922.51 330.65 L 922.51 333.69 Z M 917.49 330.65 L 919.37 331.41 L 919.37 334.45 L 917.49 333.69 Z M 913.73 330.06 L 913.73 327.02 L 915.61 326.26 L 915.61 329.3 Z M 910.59 326.26 L 912.47 327.02 L 912.47 330.06 L 910.59 329.3 Z M 913.1 324.76 L 914.55 325.34 L 913.1 325.92 L 911.65 325.34 Z M 920 329.15 L 921.45 329.73 L 920 330.31 L 918.55 329.73 Z M 926.9 324.76 L 928.35 325.34 L 926.9 325.92 L 925.45 325.34 Z M 930.27 324.76 L 927.13 323.5 C 926.98 323.44 926.82 323.44 926.67 323.5 L 923.53 324.76 C 923.29 324.85 923.14 325.08 923.14 325.34 L 923.14 329.05 L 920.23 327.89 C 920.08 327.83 919.92 327.83 919.77 327.89 L 916.86 329.05 L 916.86 325.34 C 916.86 325.08 916.71 324.85 916.47 324.76 L 913.33 323.5 C 913.18 323.44 913.02 323.44 912.87 323.5 L 909.73 324.76 C 909.49 324.85 909.34 325.08 909.34 325.34 L 909.34 329.73 C 909.34 329.98 909.49 330.21 909.73 330.31 L 912.87 331.57 C 912.94 331.59 913.02 331.61 913.1 331.61 C 913.18 331.61 913.26 331.59 913.33 331.57 L 916.24 330.4 L 916.24 334.12 C 916.24 334.37 916.39 334.61 916.63 334.7 L 919.77 335.96 C 919.84 335.98 919.92 336 920 336 C 920.08 336 920.16 335.98 920.23 335.96 L 923.37 334.7 C 923.61 334.61 923.76 334.37 923.76 334.12 L 923.76 330.4 L 926.67 331.57 C 926.74 331.59 926.82 331.61 926.9 331.61 C 926.98 331.61 927.06 331.59 927.13 331.57 L 930.27 330.31 C 930.51 330.21 930.66 329.98 930.66 329.73 L 930.66 325.34 C 930.66 325.08 930.51 324.85 930.27 324.76 Z M 935.68 317.15 C 935.68 320.81 927.6 322.79 920 322.79 C 912.4 322.79 904.32 320.81 904.32 317.15 C 904.32 315.4 906.26 313.85 909.79 312.81 L 910.14 314.01 C 907.33 314.85 905.57 316.05 905.57 317.15 C 905.57 319.22 911.5 321.54 920 321.54 C 928.5 321.54 934.43 319.22 934.43 317.15 C 934.43 316.05 932.67 314.85 929.86 314.01 L 930.21 312.81 C 933.74 313.85 935.68 315.4 935.68 317.15 Z M 920 305.31 L 926.41 307.78 L 920 310.24 L 913.59 307.78 Z M 926.64 317.71 C 925.45 318.24 923.47 318.86 920.63 318.94 L 920.63 311.34 L 927.53 308.69 L 927.53 316.34 C 927.53 316.93 927.18 317.47 926.64 317.71 Z M 912.47 316.34 L 912.47 308.69 L 919.37 311.34 L 919.37 318.94 C 916.53 318.86 914.55 318.24 913.36 317.71 C 912.82 317.47 912.47 316.93 912.47 316.34 Z M 912.85 318.86 C 914.23 319.48 916.59 320.21 920 320.21 C 923.41 320.21 925.77 319.48 927.15 318.86 C 928.14 318.42 928.78 317.43 928.78 316.34 L 928.78 307.78 C 928.78 307.52 928.62 307.28 928.38 307.19 L 920.23 304.06 C 920.08 304 919.92 304 919.77 304.06 L 911.62 307.19 C 911.38 307.28 911.22 307.52 911.22 307.78 L 911.22 316.34 C 911.22 317.43 911.86 318.42 912.85 318.86 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 900 340 L 940 340 L 940 380 L 900 380 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 928.64 366.93 C 928.64 365.98 927.87 365.21 926.93 365.21 C 925.98 365.21 925.21 365.98 925.21 366.93 C 925.21 367.87 925.98 368.64 926.93 368.64 C 927.87 368.64 928.64 367.87 928.64 366.93 Z M 929.78 366.93 C 929.78 368.5 928.5 369.78 926.93 369.78 C 925.35 369.78 924.07 368.5 924.07 366.93 C 924.07 365.35 925.35 364.07 926.93 364.07 C 928.5 364.07 929.78 365.35 929.78 366.93 Z M 914.51 358.68 C 914.51 357.74 913.74 356.97 912.8 356.97 C 911.85 356.97 911.08 357.74 911.08 358.68 C 911.08 359.63 911.85 360.4 912.8 360.4 C 913.74 360.4 914.51 359.63 914.51 358.68 Z M 915.65 358.68 C 915.65 360.26 914.37 361.54 912.8 361.54 C 911.22 361.54 909.94 360.26 909.94 358.68 C 909.94 357.11 911.22 355.82 912.8 355.82 C 914.37 355.82 915.65 357.11 915.65 358.68 Z M 919.85 349.72 C 919.85 350.66 920.61 351.43 921.56 351.43 C 922.51 351.43 923.27 350.66 923.27 349.72 C 923.27 348.77 922.51 348 921.56 348 C 920.61 348 919.85 348.77 919.85 349.72 Z M 918.7 349.72 C 918.7 348.14 919.99 346.86 921.56 346.86 C 923.14 346.86 924.42 348.14 924.42 349.72 C 924.42 351.29 923.14 352.58 921.56 352.58 C 919.99 352.58 918.7 351.29 918.7 349.72 Z M 934.86 360 C 934.86 354.7 932.02 349.8 927.44 347.15 C 926.61 347.31 925.82 347.54 924.83 347.9 L 924.44 346.82 C 924.96 346.64 925.42 346.49 925.87 346.36 C 924.03 345.56 922.03 345.14 920 345.14 C 919.03 345.14 918.09 345.24 917.16 345.42 C 917.83 345.82 918.43 346.21 919 346.65 L 918.31 347.56 C 917.5 346.94 916.65 346.42 915.54 345.83 C 909.93 347.6 905.89 352.55 905.25 358.36 C 906.42 358.12 907.55 357.99 908.81 357.96 L 908.84 359.1 C 907.52 359.13 906.39 359.27 905.16 359.55 C 905.15 359.7 905.14 359.85 905.14 360 C 905.14 364.95 907.59 369.51 911.62 372.26 C 910.9 370.12 910.54 368.11 910.54 366.14 C 910.54 365.02 910.74 364.1 910.94 363.12 C 910.99 362.9 911.04 362.67 911.08 362.43 L 912.2 362.65 C 912.16 362.89 912.11 363.13 912.06 363.36 C 911.86 364.31 911.69 365.14 911.69 366.14 C 911.69 368.37 912.18 370.68 913.17 373.19 C 915.3 374.29 917.59 374.86 920 374.86 C 921.57 374.86 923.11 374.61 924.58 374.12 C 925.15 372.99 925.58 371.92 925.94 370.69 L 927.03 371 C 926.77 371.9 926.48 372.72 926.12 373.53 C 927.04 373.11 927.91 372.6 928.73 372 C 928.54 371.52 928.32 371.04 928.09 370.57 L 929.11 370.06 C 929.31 370.46 929.49 370.86 929.67 371.27 C 932.97 368.44 934.86 364.38 934.86 360 Z M 936 360 C 936 364.99 933.73 369.6 929.78 372.66 C 928.81 373.42 927.74 374.05 926.62 374.56 C 926.15 374.77 925.66 374.97 925.16 375.14 C 923.52 375.71 921.78 376 920 376 C 917.37 376 914.76 375.35 912.45 374.11 C 907.24 371.32 904 365.91 904 360 C 904 359.61 904.01 359.31 904.03 359.03 C 904.42 352.36 909 346.58 915.43 344.67 C 916.89 344.22 918.43 344 920 344 C 922.75 344 925.45 344.71 927.82 346.05 C 932.86 348.87 936 354.22 936 360 Z M 918.47 351.69 L 917.71 350.83 C 916.43 351.95 915.44 353.14 914.27 354.93 L 915.23 355.55 C 916.33 353.85 917.27 352.74 918.47 351.69 Z M 916.73 359.1 L 916.36 360.18 C 918.98 361.08 921.27 362.52 923.56 364.71 L 924.35 363.88 C 921.94 361.58 919.51 360.06 916.73 359.1 Z M 924.37 352.38 C 926.51 355.65 927.72 359.24 927.96 363.05 L 926.82 363.12 C 926.59 359.51 925.45 356.11 923.41 353.01 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 860 340 L 900 340 L 900 380 L 860 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 865.95 345.14 L 871.26 350.45 L 870.45 351.26 L 865.14 345.95 L 865.14 350.29 L 864 350.29 L 864 344.57 C 864 344.26 864.26 344 864.57 344 L 870.29 344 L 870.29 345.14 Z M 896 344.57 L 896 350.29 L 894.86 350.29 L 894.86 345.95 L 889.55 351.26 L 888.74 350.45 L 894.05 345.14 L 889.71 345.14 L 889.71 344 L 895.43 344 C 895.74 344 896 344.26 896 344.57 Z M 894.86 369.71 L 896 369.71 L 896 375.43 C 896 375.74 895.74 376 895.43 376 L 889.71 376 L 889.71 374.86 L 894.05 374.86 L 888.74 369.55 L 889.55 368.74 L 894.86 374.05 Z M 894.57 359.55 C 894.57 357.65 892.38 355.78 888.71 354.54 L 889.08 353.46 C 893.3 354.88 895.71 357.1 895.71 359.55 C 895.71 362 893.3 364.22 889.08 365.65 L 888.71 364.56 C 892.38 363.32 894.57 361.45 894.57 359.55 Z M 865.46 359.55 C 865.46 361.37 867.51 363.19 870.94 364.43 L 870.56 365.51 C 866.59 364.07 864.32 361.9 864.32 359.55 C 864.32 357.2 866.59 355.03 870.56 353.6 L 870.94 354.67 C 867.51 355.91 865.46 357.73 865.46 359.55 Z M 871.26 369.55 L 865.95 374.86 L 870.29 374.86 L 870.29 376 L 864.57 376 C 864.26 376 864 375.74 864 375.43 L 864 369.71 L 865.14 369.71 L 865.14 374.05 L 870.45 368.74 Z M 880 355.02 C 875.92 355.02 873.71 353.97 873.71 353.53 C 873.71 353.1 875.92 352.05 880 352.05 C 884.08 352.05 886.29 353.1 886.29 353.53 C 886.29 353.97 884.08 355.02 880 355.02 Z M 880.02 359.45 C 876.11 359.45 873.71 358.38 873.71 357.8 L 873.71 355.02 C 875.12 355.8 877.62 356.16 880 356.16 C 882.38 356.16 884.88 355.8 886.29 355.02 L 886.29 357.8 C 886.29 358.38 883.91 359.45 880.02 359.45 Z M 880.02 363.81 C 876.11 363.81 873.71 362.74 873.71 362.16 L 873.71 359.35 C 875.1 360.17 877.57 360.59 880.02 360.59 C 882.45 360.59 884.9 360.17 886.29 359.35 L 886.29 362.16 C 886.29 362.74 883.91 363.81 880.02 363.81 Z M 880 367.72 C 875.93 367.72 873.71 366.63 873.71 366.07 L 873.71 363.71 C 875.1 364.53 877.57 364.95 880.02 364.95 C 882.45 364.95 884.9 364.53 886.29 363.72 L 886.29 366.07 C 886.29 366.63 884.07 367.72 880 367.72 Z M 880 350.91 C 876.42 350.91 872.57 351.73 872.57 353.53 L 872.57 366.07 C 872.57 367.91 876.31 368.87 880 368.87 C 883.69 368.87 887.43 367.91 887.43 366.07 L 887.43 353.53 C 887.43 351.73 883.58 350.91 880 350.91 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 780 340 L 820 340 L 820 380 L 780 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 806.88 368.49 C 804.98 370.03 800.98 370.84 797.15 370.84 C 793.32 370.84 789.31 370.03 787.41 368.49 L 787.41 371.59 L 787.41 371.59 C 787.41 373.14 791.41 374.87 797.15 374.87 C 802.88 374.87 806.88 373.14 806.88 371.59 Z M 806.88 362.58 L 808.03 362.58 L 808.03 362.58 C 808.03 363.27 807.68 363.92 807.01 364.51 C 807.82 365.23 808.03 365.93 808.03 366.43 C 808.03 366.44 808.03 366.44 808.03 366.44 L 808.03 371.59 L 808.03 371.59 C 808.03 374.45 802.42 376 797.15 376 C 791.88 376 786.29 374.46 786.27 371.61 C 786.27 371.61 786.26 371.61 786.26 371.6 L 786.26 366.43 C 786.26 366.43 786.26 366.43 786.26 366.43 C 786.27 365.93 786.47 365.22 787.28 364.51 C 786.48 363.79 786.27 363.09 786.26 362.6 L 786.26 362.6 C 786.26 362.59 786.26 362.59 786.26 362.59 L 786.26 357.42 C 786.26 357.42 786.26 357.42 786.26 357.41 C 786.27 356.91 786.47 356.21 787.29 355.5 C 786.48 354.78 786.27 354.08 786.26 353.58 L 786.26 353.58 C 786.26 353.58 786.26 353.58 786.26 353.58 L 786.26 348.41 C 786.26 348.41 786.26 348.4 786.26 348.4 C 786.27 345.54 791.88 344 797.15 344 C 800.12 344 802.98 344.47 804.99 345.3 L 804.56 346.35 C 802.68 345.58 799.98 345.13 797.15 345.13 C 791.41 345.13 787.41 346.86 787.41 348.41 C 787.41 349.96 791.41 351.69 797.15 351.69 C 797.3 351.69 797.45 351.69 797.61 351.68 L 797.65 352.81 C 797.48 352.82 797.32 352.82 797.15 352.82 C 793.32 352.82 789.31 352 787.41 350.46 L 787.41 353.57 L 787.41 353.57 L 787.41 353.58 C 787.41 354.17 788.02 354.69 788.53 355.02 C 790.07 356 792.82 356.67 795.9 356.81 L 795.84 357.94 C 792.73 357.8 790.01 357.16 788.25 356.17 C 787.82 356.49 787.41 356.93 787.41 357.42 C 787.41 358.97 791.41 360.7 797.15 360.7 C 797.71 360.7 798.27 360.68 798.81 360.64 L 798.89 361.77 C 798.32 361.81 797.74 361.83 797.15 361.83 C 793.32 361.83 789.31 361.02 787.41 359.47 L 787.41 362.58 L 787.41 362.58 C 787.41 363.19 788.02 363.7 788.53 364.03 C 790.29 365.16 793.59 365.85 797.15 365.85 L 797.4 365.85 L 797.4 366.99 L 797.15 366.99 C 793.54 366.99 790.25 366.32 788.25 365.18 C 787.82 365.51 787.41 365.94 787.41 366.43 C 787.41 367.98 791.41 369.71 797.15 369.71 C 802.88 369.71 806.88 367.99 806.88 366.44 L 806.88 366.43 L 806.88 366.43 C 806.88 365.94 806.47 365.5 806.04 365.18 C 805.76 365.34 805.46 365.49 805.12 365.63 L 804.69 364.58 C 805.1 364.41 805.46 364.23 805.76 364.04 C 806.27 363.7 806.88 363.17 806.88 362.58 Z M 811.78 354.3 L 808.58 354.3 C 808.39 354.3 808.21 354.2 808.1 354.05 C 808 353.89 807.98 353.69 808.05 353.52 L 809.99 348.65 L 802.62 348.65 L 799.19 355.45 L 802.84 355.45 C 803.02 355.45 803.19 355.54 803.3 355.68 C 803.4 355.83 803.44 356.02 803.38 356.19 L 800.13 366.34 Z M 813.53 354.12 L 799.25 368.88 C 799.14 368.99 798.99 369.05 798.84 369.05 C 798.74 369.05 798.63 369.03 798.54 368.97 C 798.32 368.84 798.21 368.57 798.29 368.32 L 802.05 356.59 L 798.26 356.59 C 798.07 356.59 797.88 356.48 797.78 356.32 C 797.67 356.15 797.66 355.94 797.75 355.77 L 801.75 347.83 C 801.85 347.64 802.05 347.52 802.26 347.52 L 810.84 347.52 C 811.02 347.52 811.2 347.61 811.31 347.77 C 811.42 347.92 811.44 348.12 811.37 348.29 L 809.42 353.16 L 813.12 353.16 C 813.35 353.16 813.56 353.3 813.65 353.51 C 813.74 353.72 813.69 353.96 813.53 354.12 Z M 788.24 371.81 C 789.05 372.27 790.07 372.65 791.27 372.95 L 791.55 371.85 C 790.46 371.58 789.51 371.23 788.8 370.83 Z M 791.27 363.89 L 791.55 362.79 C 790.46 362.51 789.51 362.16 788.8 361.76 L 788.24 362.75 C 789.05 363.2 790.07 363.59 791.27 363.89 Z M 788.24 353.68 L 788.8 352.69 C 789.51 353.09 790.46 353.45 791.55 353.72 L 791.27 354.82 C 790.07 354.52 789.05 354.13 788.24 353.68 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="780" y="300" width="160" height="80" fill="none" stroke="#d86613" stroke-width="2" pointer-events="none"/><rect x="1000" y="140" width="160" height="40" fill="#ff0080" stroke="#ff0080" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="22px"><text x="1079.5" y="173.5">production</text></g><rect x="1000" y="260" width="160" height="40" fill="#6b0036" stroke="#ff0080" stroke-width="2" pointer-events="none"/><g fill="#F8E7F5" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="1079.5" y="286">stable release</text></g><rect x="1000" y="180" width="160" height="40" fill="#ff0080" stroke="#ff0080" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="1079.5" y="198.5">environment</text></g><rect x="1000" y="220" width="160" height="40" fill="#6b0036" stroke="#ff0080" stroke-width="2" pointer-events="none"/><g fill="#F8E7F5" font-family="Rubik" font-weight="bold" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="1079.5" y="246">REQUIRED</text></g><path d="M 1000 300 L 1040 300 L 1040 340 L 1000 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1013.16 334.86 L 1006.07 334.86 L 1013.91 318.45 L 1017.47 325.77 Z M 1014.43 316.89 C 1014.33 316.69 1014.13 316.57 1013.91 316.57 L 1013.91 316.57 C 1013.69 316.57 1013.49 316.69 1013.39 316.89 L 1004.64 335.18 C 1004.56 335.36 1004.57 335.57 1004.67 335.73 C 1004.78 335.9 1004.96 336 1005.16 336 L 1013.52 336 C 1013.75 336 1013.95 335.87 1014.04 335.67 L 1018.62 326.02 C 1018.7 325.86 1018.7 325.68 1018.62 325.52 Z M 1034.3 334.86 L 1027.25 334.86 L 1015.94 311.18 C 1015.84 310.98 1015.64 310.86 1015.42 310.86 L 1010.81 310.86 L 1010.81 305.14 L 1019.85 305.14 L 1031.11 328.82 C 1031.21 329.02 1031.41 329.14 1031.63 329.14 L 1034.3 329.14 Z M 1034.87 328 L 1031.99 328 L 1020.73 304.33 C 1020.64 304.13 1020.44 304 1020.22 304 L 1010.24 304 C 1009.93 304 1009.67 304.26 1009.67 304.57 L 1009.66 311.43 C 1009.66 311.58 1009.72 311.73 1009.83 311.83 C 1009.94 311.94 1010.08 312 1010.24 312 L 1015.06 312 L 1026.37 335.67 C 1026.47 335.87 1026.67 336 1026.89 336 L 1034.87 336 C 1035.19 336 1035.44 335.74 1035.44 335.43 L 1035.44 328.57 C 1035.44 328.26 1035.19 328 1034.87 328 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1080 300 L 1120 300 L 1120 340 L 1080 340 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1096.61 328.94 L 1098.29 328.94 L 1098.29 327.79 L 1096.61 327.79 Z M 1099.43 328.94 L 1101.14 328.94 L 1101.14 327.79 L 1099.43 327.79 Z M 1092.58 305.53 L 1085.16 309.21 L 1085.16 332.11 L 1092.58 334.62 Z M 1093.72 312.82 L 1093.72 327.79 L 1095.43 327.79 L 1095.43 328.94 L 1093.72 328.94 L 1093.72 335.42 C 1093.72 335.61 1093.63 335.78 1093.48 335.89 C 1093.38 335.96 1093.27 336 1093.15 336 C 1093.09 336 1093.03 335.99 1092.97 335.97 L 1084.4 333.07 C 1084.17 333 1084.01 332.78 1084.01 332.53 L 1084.01 308.86 C 1084.01 308.64 1084.14 308.44 1084.33 308.34 L 1092.9 304.09 C 1093.07 304 1093.28 304.01 1093.45 304.12 C 1093.62 304.22 1093.72 304.41 1093.72 304.6 L 1093.72 311.67 L 1095.43 311.67 L 1095.43 312.82 Z M 1102.28 328.94 L 1104 328.94 L 1104 327.79 L 1102.28 327.79 Z M 1102.32 312.82 L 1104 312.82 L 1104 311.67 L 1102.32 311.67 Z M 1099.47 312.82 L 1101.14 312.82 L 1101.14 311.67 L 1099.47 311.67 Z M 1096.61 312.82 L 1098.29 312.82 L 1098.29 311.67 L 1096.61 311.67 Z M 1114.84 309.21 L 1107.42 305.53 L 1107.42 334.62 L 1114.84 332.11 Z M 1115.99 332.53 C 1115.99 332.78 1115.83 333 1115.6 333.07 L 1107.03 335.97 C 1106.97 335.99 1106.91 336 1106.85 336 C 1106.73 336 1106.62 335.96 1106.52 335.89 C 1106.37 335.78 1106.28 335.61 1106.28 335.42 L 1106.28 328.94 L 1105.18 328.94 L 1105.18 327.79 L 1106.28 327.79 L 1106.28 312.82 L 1105.18 312.82 L 1105.18 311.67 L 1106.28 311.67 L 1106.28 304.6 C 1106.28 304.41 1106.38 304.22 1106.55 304.12 C 1106.72 304.01 1106.93 304 1107.1 304.09 L 1115.67 308.34 C 1115.86 308.44 1115.99 308.64 1115.99 308.86 Z M 1101.68 316.48 L 1100.61 316.07 L 1097.75 323.55 L 1098.82 323.96 Z M 1105.54 320.13 C 1105.77 319.91 1105.77 319.54 1105.54 319.32 L 1103.26 317.02 L 1102.45 317.83 L 1104.33 319.73 L 1102.45 321.62 L 1103.26 322.44 Z M 1096.74 322.44 L 1094.46 320.13 C 1094.23 319.91 1094.23 319.54 1094.46 319.32 L 1096.74 317.02 L 1097.55 317.83 L 1095.67 319.73 L 1097.55 321.62 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1040 300 L 1080 300 L 1080 340 L 1040 340 Z" fill="url(#mx-gradient-ff4f8b-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1067.8 334.86 C 1066.58 334.86 1065.58 333.86 1065.58 332.62 C 1065.58 331.39 1066.58 330.39 1067.8 330.39 C 1069.03 330.39 1070.02 331.39 1070.02 332.62 C 1070.02 333.86 1069.03 334.86 1067.8 334.86 Z M 1062.93 325.14 L 1057.03 325.14 L 1054.07 320 L 1057.03 314.86 L 1062.93 314.86 L 1065.89 320 Z M 1052.93 309.61 C 1051.7 309.61 1050.7 308.61 1050.7 307.38 C 1050.7 306.14 1051.7 305.14 1052.93 305.14 C 1054.15 305.14 1055.15 306.14 1055.15 307.38 C 1055.15 308.61 1054.15 309.61 1052.93 309.61 Z M 1067.8 329.25 C 1067.38 329.25 1066.98 329.33 1066.61 329.47 L 1064.19 325.38 L 1064.07 325.45 L 1067.03 320.29 C 1067.14 320.11 1067.14 319.89 1067.03 319.71 L 1063.75 314 C 1063.65 313.82 1063.46 313.71 1063.26 313.71 L 1057.29 313.71 L 1057.31 313.7 L 1055.1 309.95 C 1055.82 309.33 1056.28 308.4 1056.28 307.38 C 1056.28 305.51 1054.78 304 1052.93 304 C 1051.08 304 1049.57 305.51 1049.57 307.38 C 1049.57 309.24 1051.08 310.75 1052.93 310.75 C 1053.35 310.75 1053.75 310.67 1054.12 310.53 L 1056.19 314.03 L 1052.93 319.71 C 1052.82 319.89 1052.82 320.11 1052.93 320.29 L 1056.21 326 C 1056.31 326.18 1056.5 326.29 1056.7 326.29 L 1063.26 326.29 C 1063.31 326.29 1063.35 326.28 1063.4 326.27 L 1065.63 330.05 C 1064.91 330.67 1064.45 331.6 1064.45 332.62 C 1064.45 334.49 1065.95 336 1067.8 336 C 1069.66 336 1071.16 334.49 1071.16 332.62 C 1071.16 330.76 1069.66 329.25 1067.8 329.25 Z M 1071.19 315.49 C 1069.97 315.49 1068.97 314.49 1068.97 313.25 C 1068.97 312.02 1069.97 311.02 1071.19 311.02 C 1072.42 311.02 1073.41 312.02 1073.41 313.25 C 1073.41 314.49 1072.42 315.49 1071.19 315.49 Z M 1075.35 319.71 L 1073.2 315.96 C 1074.02 315.34 1074.55 314.36 1074.55 313.25 C 1074.55 311.39 1073.04 309.88 1071.19 309.88 C 1070.72 309.88 1070.27 309.98 1069.86 310.15 L 1068.1 307.09 C 1068 306.91 1067.82 306.81 1067.61 306.81 L 1060.57 306.81 L 1060.57 307.95 L 1067.28 307.95 L 1068.91 310.78 C 1068.25 311.4 1067.83 312.28 1067.83 313.25 C 1067.83 315.12 1069.34 316.63 1071.19 316.63 C 1071.54 316.63 1071.87 316.58 1072.18 316.48 L 1074.2 320 L 1071.37 324.94 L 1072.35 325.51 L 1075.35 320.29 C 1075.45 320.11 1075.45 319.89 1075.35 319.71 Z M 1049.27 328.71 C 1048.05 328.71 1047.05 327.71 1047.05 326.48 C 1047.05 325.25 1048.05 324.25 1049.27 324.25 C 1050.5 324.25 1051.5 325.25 1051.5 326.48 C 1051.5 327.71 1050.5 328.71 1049.27 328.71 Z M 1051.13 329.29 C 1052.03 328.68 1052.63 327.65 1052.63 326.48 C 1052.63 324.62 1051.12 323.1 1049.27 323.1 C 1048.74 323.1 1048.23 323.23 1047.78 323.46 L 1045.8 320 L 1049.09 314.27 L 1048.1 313.7 L 1044.65 319.71 C 1044.55 319.89 1044.55 320.11 1044.65 320.29 L 1046.86 324.14 C 1046.28 324.75 1045.92 325.57 1045.92 326.48 C 1045.92 328.34 1047.42 329.86 1049.27 329.86 C 1049.55 329.86 1049.82 329.82 1050.08 329.75 L 1051.9 332.91 C 1052 333.09 1052.18 333.19 1052.39 333.19 L 1059.43 333.19 L 1059.43 332.05 L 1052.72 332.05 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1040 340 L 1080 340 L 1080 380 L 1040 380 Z" fill="url(#mx-gradient-60a337-1-277116-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1071.94 361.65 L 1072.16 360.11 C 1074.18 361.32 1074.21 361.82 1074.21 361.83 C 1074.2 361.84 1073.86 362.13 1071.94 361.65 Z M 1070.83 361.34 C 1067.33 360.29 1062.46 358.05 1060.49 357.12 C 1060.49 357.11 1060.49 357.11 1060.49 357.1 C 1060.49 356.34 1059.88 355.72 1059.12 355.72 C 1058.36 355.72 1057.75 356.34 1057.75 357.1 C 1057.75 357.85 1058.36 358.47 1059.12 358.47 C 1059.45 358.47 1059.75 358.35 1059.99 358.15 C 1062.31 359.25 1067.14 361.45 1070.67 362.49 L 1069.27 372.32 C 1069.27 372.35 1069.27 372.37 1069.27 372.4 C 1069.27 373.27 1065.43 374.86 1059.17 374.86 C 1052.84 374.86 1048.97 373.27 1048.97 372.4 C 1048.97 372.37 1048.97 372.35 1048.97 372.32 L 1046.05 351.06 C 1048.57 352.8 1053.99 353.71 1059.18 353.71 C 1064.35 353.71 1069.76 352.8 1072.29 351.07 Z M 1045.75 348.84 C 1045.79 348.09 1050.11 345.14 1059.18 345.14 C 1068.24 345.14 1072.56 348.09 1072.6 348.84 L 1072.6 349.1 C 1072.11 350.79 1066.51 352.57 1059.18 352.57 C 1051.83 352.57 1046.23 350.78 1045.75 349.09 Z M 1073.75 348.86 C 1073.75 346.88 1068.07 344 1059.18 344 C 1050.28 344 1044.6 346.88 1044.6 348.86 L 1044.66 349.29 L 1047.83 372.44 C 1047.9 375.03 1054.81 376 1059.17 376 C 1064.59 376 1070.34 374.76 1070.41 372.45 L 1071.78 362.79 C 1072.54 362.97 1073.17 363.07 1073.67 363.07 C 1074.35 363.07 1074.8 362.9 1075.08 362.57 C 1075.31 362.3 1075.4 361.97 1075.33 361.62 C 1075.18 360.83 1074.24 359.98 1072.33 358.89 L 1073.69 349.31 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1120 300 L 1160 300 L 1160 340 L 1120 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1147.53 330.06 L 1147.53 327.02 L 1149.41 326.26 L 1149.41 329.3 Z M 1144.39 326.26 L 1146.27 327.02 L 1146.27 330.06 L 1144.39 329.3 Z M 1140.63 334.45 L 1140.63 331.41 L 1142.51 330.65 L 1142.51 333.69 Z M 1137.49 330.65 L 1139.37 331.41 L 1139.37 334.45 L 1137.49 333.69 Z M 1133.73 330.06 L 1133.73 327.02 L 1135.61 326.26 L 1135.61 329.3 Z M 1130.59 326.26 L 1132.47 327.02 L 1132.47 330.06 L 1130.59 329.3 Z M 1133.1 324.76 L 1134.55 325.34 L 1133.1 325.92 L 1131.65 325.34 Z M 1140 329.15 L 1141.45 329.73 L 1140 330.31 L 1138.55 329.73 Z M 1146.9 324.76 L 1148.35 325.34 L 1146.9 325.92 L 1145.45 325.34 Z M 1150.27 324.76 L 1147.13 323.5 C 1146.98 323.44 1146.82 323.44 1146.67 323.5 L 1143.53 324.76 C 1143.29 324.85 1143.14 325.08 1143.14 325.34 L 1143.14 329.05 L 1140.23 327.89 C 1140.08 327.83 1139.92 327.83 1139.77 327.89 L 1136.86 329.05 L 1136.86 325.34 C 1136.86 325.08 1136.71 324.85 1136.47 324.76 L 1133.33 323.5 C 1133.18 323.44 1133.02 323.44 1132.87 323.5 L 1129.73 324.76 C 1129.49 324.85 1129.34 325.08 1129.34 325.34 L 1129.34 329.73 C 1129.34 329.98 1129.49 330.21 1129.73 330.31 L 1132.87 331.57 C 1132.94 331.59 1133.02 331.61 1133.1 331.61 C 1133.18 331.61 1133.26 331.59 1133.33 331.57 L 1136.24 330.4 L 1136.24 334.12 C 1136.24 334.37 1136.39 334.61 1136.63 334.7 L 1139.77 335.96 C 1139.84 335.98 1139.92 336 1140 336 C 1140.08 336 1140.16 335.98 1140.23 335.96 L 1143.37 334.7 C 1143.61 334.61 1143.76 334.37 1143.76 334.12 L 1143.76 330.4 L 1146.67 331.57 C 1146.74 331.59 1146.82 331.61 1146.9 331.61 C 1146.98 331.61 1147.06 331.59 1147.13 331.57 L 1150.27 330.31 C 1150.51 330.21 1150.66 329.98 1150.66 329.73 L 1150.66 325.34 C 1150.66 325.08 1150.51 324.85 1150.27 324.76 Z M 1155.68 317.15 C 1155.68 320.81 1147.6 322.79 1140 322.79 C 1132.4 322.79 1124.32 320.81 1124.32 317.15 C 1124.32 315.4 1126.26 313.85 1129.79 312.81 L 1130.14 314.01 C 1127.33 314.85 1125.57 316.05 1125.57 317.15 C 1125.57 319.22 1131.5 321.54 1140 321.54 C 1148.5 321.54 1154.43 319.22 1154.43 317.15 C 1154.43 316.05 1152.67 314.85 1149.86 314.01 L 1150.21 312.81 C 1153.74 313.85 1155.68 315.4 1155.68 317.15 Z M 1140 305.31 L 1146.41 307.78 L 1140 310.24 L 1133.59 307.78 Z M 1146.64 317.71 C 1145.45 318.24 1143.47 318.86 1140.63 318.94 L 1140.63 311.34 L 1147.53 308.69 L 1147.53 316.34 C 1147.53 316.93 1147.18 317.47 1146.64 317.71 Z M 1132.47 316.34 L 1132.47 308.69 L 1139.37 311.34 L 1139.37 318.94 C 1136.53 318.86 1134.55 318.24 1133.36 317.71 C 1132.82 317.47 1132.47 316.93 1132.47 316.34 Z M 1132.85 318.86 C 1134.23 319.48 1136.59 320.21 1140 320.21 C 1143.41 320.21 1145.77 319.48 1147.15 318.86 C 1148.14 318.42 1148.78 317.43 1148.78 316.34 L 1148.78 307.78 C 1148.78 307.52 1148.62 307.28 1148.38 307.19 L 1140.23 304.06 C 1140.08 304 1139.92 304 1139.77 304.06 L 1131.62 307.19 C 1131.38 307.28 1131.22 307.52 1131.22 307.78 L 1131.22 316.34 C 1131.22 317.43 1131.86 318.42 1132.85 318.86 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1120 340 L 1160 340 L 1160 380 L 1120 380 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1148.64 366.93 C 1148.64 365.98 1147.87 365.21 1146.93 365.21 C 1145.98 365.21 1145.21 365.98 1145.21 366.93 C 1145.21 367.87 1145.98 368.64 1146.93 368.64 C 1147.87 368.64 1148.64 367.87 1148.64 366.93 Z M 1149.78 366.93 C 1149.78 368.5 1148.5 369.78 1146.93 369.78 C 1145.35 369.78 1144.07 368.5 1144.07 366.93 C 1144.07 365.35 1145.35 364.07 1146.93 364.07 C 1148.5 364.07 1149.78 365.35 1149.78 366.93 Z M 1134.51 358.68 C 1134.51 357.74 1133.74 356.97 1132.8 356.97 C 1131.85 356.97 1131.08 357.74 1131.08 358.68 C 1131.08 359.63 1131.85 360.4 1132.8 360.4 C 1133.74 360.4 1134.51 359.63 1134.51 358.68 Z M 1135.65 358.68 C 1135.65 360.26 1134.37 361.54 1132.8 361.54 C 1131.22 361.54 1129.94 360.26 1129.94 358.68 C 1129.94 357.11 1131.22 355.82 1132.8 355.82 C 1134.37 355.82 1135.65 357.11 1135.65 358.68 Z M 1139.85 349.72 C 1139.85 350.66 1140.61 351.43 1141.56 351.43 C 1142.51 351.43 1143.27 350.66 1143.27 349.72 C 1143.27 348.77 1142.51 348 1141.56 348 C 1140.61 348 1139.85 348.77 1139.85 349.72 Z M 1138.7 349.72 C 1138.7 348.14 1139.99 346.86 1141.56 346.86 C 1143.14 346.86 1144.42 348.14 1144.42 349.72 C 1144.42 351.29 1143.14 352.58 1141.56 352.58 C 1139.99 352.58 1138.7 351.29 1138.7 349.72 Z M 1154.86 360 C 1154.86 354.7 1152.02 349.8 1147.44 347.15 C 1146.61 347.31 1145.82 347.54 1144.83 347.9 L 1144.44 346.82 C 1144.96 346.64 1145.42 346.49 1145.87 346.36 C 1144.03 345.56 1142.03 345.14 1140 345.14 C 1139.03 345.14 1138.09 345.24 1137.16 345.42 C 1137.83 345.82 1138.43 346.21 1139 346.65 L 1138.31 347.56 C 1137.5 346.94 1136.65 346.42 1135.54 345.83 C 1129.93 347.6 1125.89 352.55 1125.25 358.36 C 1126.42 358.12 1127.55 357.99 1128.81 357.96 L 1128.84 359.1 C 1127.52 359.13 1126.39 359.27 1125.16 359.55 C 1125.15 359.7 1125.14 359.85 1125.14 360 C 1125.14 364.95 1127.59 369.51 1131.62 372.26 C 1130.9 370.12 1130.54 368.11 1130.54 366.14 C 1130.54 365.02 1130.74 364.1 1130.94 363.12 C 1130.99 362.9 1131.04 362.67 1131.08 362.43 L 1132.2 362.65 C 1132.16 362.89 1132.11 363.13 1132.06 363.36 C 1131.86 364.31 1131.69 365.14 1131.69 366.14 C 1131.69 368.37 1132.18 370.68 1133.17 373.19 C 1135.3 374.29 1137.59 374.86 1140 374.86 C 1141.57 374.86 1143.11 374.61 1144.58 374.12 C 1145.15 372.99 1145.58 371.92 1145.94 370.69 L 1147.03 371 C 1146.77 371.9 1146.48 372.72 1146.12 373.53 C 1147.04 373.11 1147.91 372.6 1148.73 372 C 1148.54 371.52 1148.32 371.04 1148.09 370.57 L 1149.11 370.06 C 1149.31 370.46 1149.49 370.86 1149.67 371.27 C 1152.97 368.44 1154.86 364.38 1154.86 360 Z M 1156 360 C 1156 364.99 1153.73 369.6 1149.78 372.66 C 1148.81 373.42 1147.74 374.05 1146.62 374.56 C 1146.15 374.77 1145.66 374.97 1145.16 375.14 C 1143.52 375.71 1141.78 376 1140 376 C 1137.37 376 1134.76 375.35 1132.45 374.11 C 1127.24 371.32 1124 365.91 1124 360 C 1124 359.61 1124.01 359.31 1124.03 359.03 C 1124.42 352.36 1129 346.58 1135.43 344.67 C 1136.89 344.22 1138.43 344 1140 344 C 1142.75 344 1145.45 344.71 1147.82 346.05 C 1152.86 348.87 1156 354.22 1156 360 Z M 1138.47 351.69 L 1137.71 350.83 C 1136.43 351.95 1135.44 353.14 1134.27 354.93 L 1135.23 355.55 C 1136.33 353.85 1137.27 352.74 1138.47 351.69 Z M 1136.73 359.1 L 1136.36 360.18 C 1138.98 361.08 1141.27 362.52 1143.56 364.71 L 1144.35 363.88 C 1141.94 361.58 1139.51 360.06 1136.73 359.1 Z M 1144.37 352.38 C 1146.51 355.65 1147.72 359.24 1147.96 363.05 L 1146.82 363.12 C 1146.59 359.51 1145.45 356.11 1143.41 353.01 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1080 340 L 1120 340 L 1120 380 L 1080 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1085.95 345.14 L 1091.26 350.45 L 1090.45 351.26 L 1085.14 345.95 L 1085.14 350.29 L 1084 350.29 L 1084 344.57 C 1084 344.26 1084.26 344 1084.57 344 L 1090.29 344 L 1090.29 345.14 Z M 1116 344.57 L 1116 350.29 L 1114.86 350.29 L 1114.86 345.95 L 1109.55 351.26 L 1108.74 350.45 L 1114.05 345.14 L 1109.71 345.14 L 1109.71 344 L 1115.43 344 C 1115.74 344 1116 344.26 1116 344.57 Z M 1114.86 369.71 L 1116 369.71 L 1116 375.43 C 1116 375.74 1115.74 376 1115.43 376 L 1109.71 376 L 1109.71 374.86 L 1114.05 374.86 L 1108.74 369.55 L 1109.55 368.74 L 1114.86 374.05 Z M 1114.57 359.55 C 1114.57 357.65 1112.38 355.78 1108.71 354.54 L 1109.08 353.46 C 1113.3 354.88 1115.71 357.1 1115.71 359.55 C 1115.71 362 1113.3 364.22 1109.08 365.65 L 1108.71 364.56 C 1112.38 363.32 1114.57 361.45 1114.57 359.55 Z M 1085.46 359.55 C 1085.46 361.37 1087.51 363.19 1090.94 364.43 L 1090.56 365.51 C 1086.59 364.07 1084.32 361.9 1084.32 359.55 C 1084.32 357.2 1086.59 355.03 1090.56 353.6 L 1090.94 354.67 C 1087.51 355.91 1085.46 357.73 1085.46 359.55 Z M 1091.26 369.55 L 1085.95 374.86 L 1090.29 374.86 L 1090.29 376 L 1084.57 376 C 1084.26 376 1084 375.74 1084 375.43 L 1084 369.71 L 1085.14 369.71 L 1085.14 374.05 L 1090.45 368.74 Z M 1100 355.02 C 1095.92 355.02 1093.71 353.97 1093.71 353.53 C 1093.71 353.1 1095.92 352.05 1100 352.05 C 1104.08 352.05 1106.29 353.1 1106.29 353.53 C 1106.29 353.97 1104.08 355.02 1100 355.02 Z M 1100.02 359.45 C 1096.11 359.45 1093.71 358.38 1093.71 357.8 L 1093.71 355.02 C 1095.12 355.8 1097.62 356.16 1100 356.16 C 1102.38 356.16 1104.88 355.8 1106.29 355.02 L 1106.29 357.8 C 1106.29 358.38 1103.91 359.45 1100.02 359.45 Z M 1100.02 363.81 C 1096.11 363.81 1093.71 362.74 1093.71 362.16 L 1093.71 359.35 C 1095.1 360.17 1097.57 360.59 1100.02 360.59 C 1102.45 360.59 1104.9 360.17 1106.29 359.35 L 1106.29 362.16 C 1106.29 362.74 1103.91 363.81 1100.02 363.81 Z M 1100 367.72 C 1095.93 367.72 1093.71 366.63 1093.71 366.07 L 1093.71 363.71 C 1095.1 364.53 1097.57 364.95 1100.02 364.95 C 1102.45 364.95 1104.9 364.53 1106.29 363.72 L 1106.29 366.07 C 1106.29 366.63 1104.07 367.72 1100 367.72 Z M 1100 350.91 C 1096.42 350.91 1092.57 351.73 1092.57 353.53 L 1092.57 366.07 C 1092.57 367.91 1096.31 368.87 1100 368.87 C 1103.69 368.87 1107.43 367.91 1107.43 366.07 L 1107.43 353.53 C 1107.43 351.73 1103.58 350.91 1100 350.91 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1000 340 L 1040 340 L 1040 380 L 1000 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1026.88 368.49 C 1024.98 370.03 1020.98 370.84 1017.15 370.84 C 1013.32 370.84 1009.31 370.03 1007.41 368.49 L 1007.41 371.59 L 1007.41 371.59 C 1007.41 373.14 1011.41 374.87 1017.15 374.87 C 1022.88 374.87 1026.88 373.14 1026.88 371.59 Z M 1026.88 362.58 L 1028.03 362.58 L 1028.03 362.58 C 1028.03 363.27 1027.68 363.92 1027.01 364.51 C 1027.82 365.23 1028.03 365.93 1028.03 366.43 C 1028.03 366.44 1028.03 366.44 1028.03 366.44 L 1028.03 371.59 L 1028.03 371.59 C 1028.03 374.45 1022.42 376 1017.15 376 C 1011.88 376 1006.29 374.46 1006.27 371.61 C 1006.27 371.61 1006.26 371.61 1006.26 371.6 L 1006.26 366.43 C 1006.26 366.43 1006.26 366.43 1006.26 366.43 C 1006.27 365.93 1006.47 365.22 1007.28 364.51 C 1006.48 363.79 1006.27 363.09 1006.26 362.6 L 1006.26 362.6 C 1006.26 362.59 1006.26 362.59 1006.26 362.59 L 1006.26 357.42 C 1006.26 357.42 1006.26 357.42 1006.26 357.41 C 1006.27 356.91 1006.47 356.21 1007.29 355.5 C 1006.48 354.78 1006.27 354.08 1006.26 353.58 L 1006.26 353.58 C 1006.26 353.58 1006.26 353.58 1006.26 353.58 L 1006.26 348.41 C 1006.26 348.41 1006.26 348.4 1006.26 348.4 C 1006.27 345.54 1011.88 344 1017.15 344 C 1020.12 344 1022.98 344.47 1024.99 345.3 L 1024.56 346.35 C 1022.68 345.58 1019.98 345.13 1017.15 345.13 C 1011.41 345.13 1007.41 346.86 1007.41 348.41 C 1007.41 349.96 1011.41 351.69 1017.15 351.69 C 1017.3 351.69 1017.45 351.69 1017.61 351.68 L 1017.65 352.81 C 1017.48 352.82 1017.32 352.82 1017.15 352.82 C 1013.32 352.82 1009.31 352 1007.41 350.46 L 1007.41 353.57 L 1007.41 353.57 L 1007.41 353.58 C 1007.41 354.17 1008.02 354.69 1008.53 355.02 C 1010.07 356 1012.82 356.67 1015.9 356.81 L 1015.84 357.94 C 1012.73 357.8 1010.01 357.16 1008.25 356.17 C 1007.82 356.49 1007.41 356.93 1007.41 357.42 C 1007.41 358.97 1011.41 360.7 1017.15 360.7 C 1017.71 360.7 1018.27 360.68 1018.81 360.64 L 1018.89 361.77 C 1018.32 361.81 1017.74 361.83 1017.15 361.83 C 1013.32 361.83 1009.31 361.02 1007.41 359.47 L 1007.41 362.58 L 1007.41 362.58 C 1007.41 363.19 1008.02 363.7 1008.53 364.03 C 1010.29 365.16 1013.59 365.85 1017.15 365.85 L 1017.4 365.85 L 1017.4 366.99 L 1017.15 366.99 C 1013.54 366.99 1010.25 366.32 1008.25 365.18 C 1007.82 365.51 1007.41 365.94 1007.41 366.43 C 1007.41 367.98 1011.41 369.71 1017.15 369.71 C 1022.88 369.71 1026.88 367.99 1026.88 366.44 L 1026.88 366.43 L 1026.88 366.43 C 1026.88 365.94 1026.47 365.5 1026.04 365.18 C 1025.76 365.34 1025.46 365.49 1025.12 365.63 L 1024.69 364.58 C 1025.1 364.41 1025.46 364.23 1025.76 364.04 C 1026.27 363.7 1026.88 363.17 1026.88 362.58 Z M 1031.78 354.3 L 1028.58 354.3 C 1028.39 354.3 1028.21 354.2 1028.1 354.05 C 1028 353.89 1027.98 353.69 1028.05 353.52 L 1029.99 348.65 L 1022.62 348.65 L 1019.19 355.45 L 1022.84 355.45 C 1023.02 355.45 1023.19 355.54 1023.3 355.68 C 1023.4 355.83 1023.44 356.02 1023.38 356.19 L 1020.13 366.34 Z M 1033.53 354.12 L 1019.25 368.88 C 1019.14 368.99 1018.99 369.05 1018.84 369.05 C 1018.74 369.05 1018.63 369.03 1018.54 368.97 C 1018.32 368.84 1018.21 368.57 1018.29 368.32 L 1022.05 356.59 L 1018.26 356.59 C 1018.07 356.59 1017.88 356.48 1017.78 356.32 C 1017.67 356.15 1017.66 355.94 1017.75 355.77 L 1021.75 347.83 C 1021.85 347.64 1022.05 347.52 1022.26 347.52 L 1030.84 347.52 C 1031.02 347.52 1031.2 347.61 1031.31 347.77 C 1031.42 347.92 1031.44 348.12 1031.37 348.29 L 1029.42 353.16 L 1033.12 353.16 C 1033.35 353.16 1033.56 353.3 1033.65 353.51 C 1033.74 353.72 1033.69 353.96 1033.53 354.12 Z M 1008.24 371.81 C 1009.05 372.27 1010.07 372.65 1011.27 372.95 L 1011.55 371.85 C 1010.46 371.58 1009.51 371.23 1008.8 370.83 Z M 1011.27 363.89 L 1011.55 362.79 C 1010.46 362.51 1009.51 362.16 1008.8 361.76 L 1008.24 362.75 C 1009.05 363.2 1010.07 363.59 1011.27 363.89 Z M 1008.24 353.68 L 1008.8 352.69 C 1009.51 353.09 1010.46 353.45 1011.55 353.72 L 1011.27 354.82 C 1010.07 354.52 1009.05 354.13 1008.24 353.68 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="1000" y="300" width="160" height="80" fill="none" stroke="#ff0080" stroke-width="2" pointer-events="none"/><path d="M 1000 400 L 1160 400" fill="none" stroke="#5c5c5c" stroke-width="2" stroke-miterlimit="10" stroke-dasharray="6 6" pointer-events="none"/><path d="M 200 640 L 1153.63 640" fill="none" stroke="#e5ccff" stroke-miterlimit="10" pointer-events="none"/><path d="M 200 636 L 200 644" fill="none" stroke="#e5ccff" stroke-miterlimit="10" pointer-events="none"/><path d="M 1158.88 640 L 1151.88 643.5 L 1153.63 640 L 1151.88 636.5 Z" fill="#e5ccff" stroke="#e5ccff" stroke-miterlimit="10" pointer-events="none"/><g fill="#E5CCFF" font-family="Rubik" font-style="italic" pointer-events="none" font-size="16px"><text x="201.5" y="677">Environment Deployment Pipeline Order</text></g><path d="M 0 40 L 1180 40" fill="none" stroke="#90a6c2" stroke-miterlimit="10" pointer-events="none"/><g fill="#90A6C2" font-family="Rubik" pointer-events="none" font-size="23px"><text x="1.5" y="25">3x Accounts</text></g><path d="M 20 300 L 60 300 L 60 340 L 20 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 33.16 334.86 L 26.07 334.86 L 33.91 318.45 L 37.47 325.77 Z M 34.43 316.89 C 34.33 316.69 34.13 316.57 33.91 316.57 L 33.91 316.57 C 33.69 316.57 33.49 316.69 33.39 316.89 L 24.64 335.18 C 24.56 335.36 24.57 335.57 24.67 335.73 C 24.78 335.9 24.96 336 25.16 336 L 33.52 336 C 33.75 336 33.95 335.87 34.04 335.67 L 38.62 326.02 C 38.7 325.86 38.7 325.68 38.62 325.52 Z M 54.3 334.86 L 47.25 334.86 L 35.94 311.18 C 35.84 310.98 35.64 310.86 35.42 310.86 L 30.81 310.86 L 30.81 305.14 L 39.85 305.14 L 51.11 328.82 C 51.21 329.02 51.41 329.14 51.63 329.14 L 54.3 329.14 Z M 54.87 328 L 51.99 328 L 40.73 304.33 C 40.64 304.13 40.44 304 40.22 304 L 30.24 304 C 29.93 304 29.67 304.26 29.67 304.57 L 29.66 311.43 C 29.66 311.58 29.72 311.73 29.83 311.83 C 29.94 311.94 30.08 312 30.24 312 L 35.06 312 L 46.37 335.67 C 46.47 335.87 46.67 336 46.89 336 L 54.87 336 C 55.19 336 55.44 335.74 55.44 335.43 L 55.44 328.57 C 55.44 328.26 55.19 328 54.87 328 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 100 300 L 140 300 L 140 340 L 100 340 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 116.61 328.94 L 118.29 328.94 L 118.29 327.79 L 116.61 327.79 Z M 119.43 328.94 L 121.14 328.94 L 121.14 327.79 L 119.43 327.79 Z M 112.58 305.53 L 105.16 309.21 L 105.16 332.11 L 112.58 334.62 Z M 113.72 312.82 L 113.72 327.79 L 115.43 327.79 L 115.43 328.94 L 113.72 328.94 L 113.72 335.42 C 113.72 335.61 113.63 335.78 113.48 335.89 C 113.38 335.96 113.27 336 113.15 336 C 113.09 336 113.03 335.99 112.97 335.97 L 104.4 333.07 C 104.17 333 104.01 332.78 104.01 332.53 L 104.01 308.86 C 104.01 308.64 104.14 308.44 104.33 308.34 L 112.9 304.09 C 113.07 304 113.28 304.01 113.45 304.12 C 113.62 304.22 113.72 304.41 113.72 304.6 L 113.72 311.67 L 115.43 311.67 L 115.43 312.82 Z M 122.28 328.94 L 124 328.94 L 124 327.79 L 122.28 327.79 Z M 122.32 312.82 L 124 312.82 L 124 311.67 L 122.32 311.67 Z M 119.47 312.82 L 121.14 312.82 L 121.14 311.67 L 119.47 311.67 Z M 116.61 312.82 L 118.29 312.82 L 118.29 311.67 L 116.61 311.67 Z M 134.84 309.21 L 127.42 305.53 L 127.42 334.62 L 134.84 332.11 Z M 135.99 332.53 C 135.99 332.78 135.83 333 135.6 333.07 L 127.03 335.97 C 126.97 335.99 126.91 336 126.85 336 C 126.73 336 126.62 335.96 126.52 335.89 C 126.37 335.78 126.28 335.61 126.28 335.42 L 126.28 328.94 L 125.18 328.94 L 125.18 327.79 L 126.28 327.79 L 126.28 312.82 L 125.18 312.82 L 125.18 311.67 L 126.28 311.67 L 126.28 304.6 C 126.28 304.41 126.38 304.22 126.55 304.12 C 126.72 304.01 126.93 304 127.1 304.09 L 135.67 308.34 C 135.86 308.44 135.99 308.64 135.99 308.86 Z M 121.68 316.48 L 120.61 316.07 L 117.75 323.55 L 118.82 323.96 Z M 125.54 320.13 C 125.77 319.91 125.77 319.54 125.54 319.32 L 123.26 317.02 L 122.45 317.83 L 124.33 319.73 L 122.45 321.62 L 123.26 322.44 Z M 116.74 322.44 L 114.46 320.13 C 114.23 319.91 114.23 319.54 114.46 319.32 L 116.74 317.02 L 117.55 317.83 L 115.67 319.73 L 117.55 321.62 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 60 300 L 100 300 L 100 340 L 60 340 Z" fill="url(#mx-gradient-ff4f8b-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 87.8 334.86 C 86.58 334.86 85.58 333.86 85.58 332.62 C 85.58 331.39 86.58 330.39 87.8 330.39 C 89.03 330.39 90.02 331.39 90.02 332.62 C 90.02 333.86 89.03 334.86 87.8 334.86 Z M 82.93 325.14 L 77.03 325.14 L 74.07 320 L 77.03 314.86 L 82.93 314.86 L 85.89 320 Z M 72.93 309.61 C 71.7 309.61 70.7 308.61 70.7 307.38 C 70.7 306.14 71.7 305.14 72.93 305.14 C 74.15 305.14 75.15 306.14 75.15 307.38 C 75.15 308.61 74.15 309.61 72.93 309.61 Z M 87.8 329.25 C 87.38 329.25 86.98 329.33 86.61 329.47 L 84.19 325.38 L 84.07 325.45 L 87.03 320.29 C 87.14 320.11 87.14 319.89 87.03 319.71 L 83.75 314 C 83.65 313.82 83.46 313.71 83.26 313.71 L 77.29 313.71 L 77.31 313.7 L 75.1 309.95 C 75.82 309.33 76.28 308.4 76.28 307.38 C 76.28 305.51 74.78 304 72.93 304 C 71.08 304 69.57 305.51 69.57 307.38 C 69.57 309.24 71.08 310.75 72.93 310.75 C 73.35 310.75 73.75 310.67 74.12 310.53 L 76.19 314.03 L 72.93 319.71 C 72.82 319.89 72.82 320.11 72.93 320.29 L 76.21 326 C 76.31 326.18 76.5 326.29 76.7 326.29 L 83.26 326.29 C 83.31 326.29 83.35 326.28 83.4 326.27 L 85.63 330.05 C 84.91 330.67 84.45 331.6 84.45 332.62 C 84.45 334.49 85.95 336 87.8 336 C 89.66 336 91.16 334.49 91.16 332.62 C 91.16 330.76 89.66 329.25 87.8 329.25 Z M 91.19 315.49 C 89.97 315.49 88.97 314.49 88.97 313.25 C 88.97 312.02 89.97 311.02 91.19 311.02 C 92.42 311.02 93.41 312.02 93.41 313.25 C 93.41 314.49 92.42 315.49 91.19 315.49 Z M 95.35 319.71 L 93.2 315.96 C 94.02 315.34 94.55 314.36 94.55 313.25 C 94.55 311.39 93.04 309.88 91.19 309.88 C 90.72 309.88 90.27 309.98 89.86 310.15 L 88.1 307.09 C 88 306.91 87.82 306.81 87.61 306.81 L 80.57 306.81 L 80.57 307.95 L 87.28 307.95 L 88.91 310.78 C 88.25 311.4 87.83 312.28 87.83 313.25 C 87.83 315.12 89.34 316.63 91.19 316.63 C 91.54 316.63 91.87 316.58 92.18 316.48 L 94.2 320 L 91.37 324.94 L 92.35 325.51 L 95.35 320.29 C 95.45 320.11 95.45 319.89 95.35 319.71 Z M 69.27 328.71 C 68.05 328.71 67.05 327.71 67.05 326.48 C 67.05 325.25 68.05 324.25 69.27 324.25 C 70.5 324.25 71.5 325.25 71.5 326.48 C 71.5 327.71 70.5 328.71 69.27 328.71 Z M 71.13 329.29 C 72.03 328.68 72.63 327.65 72.63 326.48 C 72.63 324.62 71.12 323.1 69.27 323.1 C 68.74 323.1 68.23 323.23 67.78 323.46 L 65.8 320 L 69.09 314.27 L 68.1 313.7 L 64.65 319.71 C 64.55 319.89 64.55 320.11 64.65 320.29 L 66.86 324.14 C 66.28 324.75 65.92 325.57 65.92 326.48 C 65.92 328.34 67.42 329.86 69.27 329.86 C 69.55 329.86 69.82 329.82 70.08 329.75 L 71.9 332.91 C 72 333.09 72.18 333.19 72.39 333.19 L 79.43 333.19 L 79.43 332.05 L 72.72 332.05 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 60 340 L 100 340 L 100 380 L 60 380 Z" fill="url(#mx-gradient-60a337-1-277116-1-s-0)" stroke="none" pointer-events="none"/><path d="M 91.94 361.65 L 92.16 360.11 C 94.18 361.32 94.21 361.82 94.21 361.83 C 94.2 361.84 93.86 362.13 91.94 361.65 Z M 90.83 361.34 C 87.33 360.29 82.46 358.05 80.49 357.12 C 80.49 357.11 80.49 357.11 80.49 357.1 C 80.49 356.34 79.88 355.72 79.12 355.72 C 78.36 355.72 77.75 356.34 77.75 357.1 C 77.75 357.85 78.36 358.47 79.12 358.47 C 79.45 358.47 79.75 358.35 79.99 358.15 C 82.31 359.25 87.14 361.45 90.67 362.49 L 89.27 372.32 C 89.27 372.35 89.27 372.37 89.27 372.4 C 89.27 373.27 85.43 374.86 79.17 374.86 C 72.84 374.86 68.97 373.27 68.97 372.4 C 68.97 372.37 68.97 372.35 68.97 372.32 L 66.05 351.06 C 68.57 352.8 73.99 353.71 79.18 353.71 C 84.35 353.71 89.76 352.8 92.29 351.07 Z M 65.75 348.84 C 65.79 348.09 70.11 345.14 79.18 345.14 C 88.24 345.14 92.56 348.09 92.6 348.84 L 92.6 349.1 C 92.11 350.79 86.51 352.57 79.18 352.57 C 71.83 352.57 66.23 350.78 65.75 349.09 Z M 93.75 348.86 C 93.75 346.88 88.07 344 79.18 344 C 70.28 344 64.6 346.88 64.6 348.86 L 64.66 349.29 L 67.83 372.44 C 67.9 375.03 74.81 376 79.17 376 C 84.59 376 90.34 374.76 90.41 372.45 L 91.78 362.79 C 92.54 362.97 93.17 363.07 93.67 363.07 C 94.35 363.07 94.8 362.9 95.08 362.57 C 95.31 362.3 95.4 361.97 95.33 361.62 C 95.18 360.83 94.24 359.98 92.33 358.89 L 93.69 349.31 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 140 300 L 180 300 L 180 340 L 140 340 Z" fill="url(#mx-gradient-f78e04-1-d05c17-1-s-0)" stroke="none" pointer-events="none"/><path d="M 167.53 330.06 L 167.53 327.02 L 169.41 326.26 L 169.41 329.3 Z M 164.39 326.26 L 166.27 327.02 L 166.27 330.06 L 164.39 329.3 Z M 160.63 334.45 L 160.63 331.41 L 162.51 330.65 L 162.51 333.69 Z M 157.49 330.65 L 159.37 331.41 L 159.37 334.45 L 157.49 333.69 Z M 153.73 330.06 L 153.73 327.02 L 155.61 326.26 L 155.61 329.3 Z M 150.59 326.26 L 152.47 327.02 L 152.47 330.06 L 150.59 329.3 Z M 153.1 324.76 L 154.55 325.34 L 153.1 325.92 L 151.65 325.34 Z M 160 329.15 L 161.45 329.73 L 160 330.31 L 158.55 329.73 Z M 166.9 324.76 L 168.35 325.34 L 166.9 325.92 L 165.45 325.34 Z M 170.27 324.76 L 167.13 323.5 C 166.98 323.44 166.82 323.44 166.67 323.5 L 163.53 324.76 C 163.29 324.85 163.14 325.08 163.14 325.34 L 163.14 329.05 L 160.23 327.89 C 160.08 327.83 159.92 327.83 159.77 327.89 L 156.86 329.05 L 156.86 325.34 C 156.86 325.08 156.71 324.85 156.47 324.76 L 153.33 323.5 C 153.18 323.44 153.02 323.44 152.87 323.5 L 149.73 324.76 C 149.49 324.85 149.34 325.08 149.34 325.34 L 149.34 329.73 C 149.34 329.98 149.49 330.21 149.73 330.31 L 152.87 331.57 C 152.94 331.59 153.02 331.61 153.1 331.61 C 153.18 331.61 153.26 331.59 153.33 331.57 L 156.24 330.4 L 156.24 334.12 C 156.24 334.37 156.39 334.61 156.63 334.7 L 159.77 335.96 C 159.84 335.98 159.92 336 160 336 C 160.08 336 160.16 335.98 160.23 335.96 L 163.37 334.7 C 163.61 334.61 163.76 334.37 163.76 334.12 L 163.76 330.4 L 166.67 331.57 C 166.74 331.59 166.82 331.61 166.9 331.61 C 166.98 331.61 167.06 331.59 167.13 331.57 L 170.27 330.31 C 170.51 330.21 170.66 329.98 170.66 329.73 L 170.66 325.34 C 170.66 325.08 170.51 324.85 170.27 324.76 Z M 175.68 317.15 C 175.68 320.81 167.6 322.79 160 322.79 C 152.4 322.79 144.32 320.81 144.32 317.15 C 144.32 315.4 146.26 313.85 149.79 312.81 L 150.14 314.01 C 147.33 314.85 145.57 316.05 145.57 317.15 C 145.57 319.22 151.5 321.54 160 321.54 C 168.5 321.54 174.43 319.22 174.43 317.15 C 174.43 316.05 172.67 314.85 169.86 314.01 L 170.21 312.81 C 173.74 313.85 175.68 315.4 175.68 317.15 Z M 160 305.31 L 166.41 307.78 L 160 310.24 L 153.59 307.78 Z M 166.64 317.71 C 165.45 318.24 163.47 318.86 160.63 318.94 L 160.63 311.34 L 167.53 308.69 L 167.53 316.34 C 167.53 316.93 167.18 317.47 166.64 317.71 Z M 152.47 316.34 L 152.47 308.69 L 159.37 311.34 L 159.37 318.94 C 156.53 318.86 154.55 318.24 153.36 317.71 C 152.82 317.47 152.47 316.93 152.47 316.34 Z M 152.85 318.86 C 154.23 319.48 156.59 320.21 160 320.21 C 163.41 320.21 165.77 319.48 167.15 318.86 C 168.14 318.42 168.78 317.43 168.78 316.34 L 168.78 307.78 C 168.78 307.52 168.62 307.28 168.38 307.19 L 160.23 304.06 C 160.08 304 159.92 304 159.77 304.06 L 151.62 307.19 C 151.38 307.28 151.22 307.52 151.22 307.78 L 151.22 316.34 C 151.22 317.43 151.86 318.42 152.85 318.86 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 140 340 L 180 340 L 180 380 L 140 380 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 168.64 366.93 C 168.64 365.98 167.87 365.21 166.93 365.21 C 165.98 365.21 165.21 365.98 165.21 366.93 C 165.21 367.87 165.98 368.64 166.93 368.64 C 167.87 368.64 168.64 367.87 168.64 366.93 Z M 169.78 366.93 C 169.78 368.5 168.5 369.78 166.93 369.78 C 165.35 369.78 164.07 368.5 164.07 366.93 C 164.07 365.35 165.35 364.07 166.93 364.07 C 168.5 364.07 169.78 365.35 169.78 366.93 Z M 154.51 358.68 C 154.51 357.74 153.74 356.97 152.8 356.97 C 151.85 356.97 151.08 357.74 151.08 358.68 C 151.08 359.63 151.85 360.4 152.8 360.4 C 153.74 360.4 154.51 359.63 154.51 358.68 Z M 155.65 358.68 C 155.65 360.26 154.37 361.54 152.8 361.54 C 151.22 361.54 149.94 360.26 149.94 358.68 C 149.94 357.11 151.22 355.82 152.8 355.82 C 154.37 355.82 155.65 357.11 155.65 358.68 Z M 159.85 349.72 C 159.85 350.66 160.61 351.43 161.56 351.43 C 162.51 351.43 163.27 350.66 163.27 349.72 C 163.27 348.77 162.51 348 161.56 348 C 160.61 348 159.85 348.77 159.85 349.72 Z M 158.7 349.72 C 158.7 348.14 159.99 346.86 161.56 346.86 C 163.14 346.86 164.42 348.14 164.42 349.72 C 164.42 351.29 163.14 352.58 161.56 352.58 C 159.99 352.58 158.7 351.29 158.7 349.72 Z M 174.86 360 C 174.86 354.7 172.02 349.8 167.44 347.15 C 166.61 347.31 165.82 347.54 164.83 347.9 L 164.44 346.82 C 164.96 346.64 165.42 346.49 165.87 346.36 C 164.03 345.56 162.03 345.14 160 345.14 C 159.03 345.14 158.09 345.24 157.16 345.42 C 157.83 345.82 158.43 346.21 159 346.65 L 158.31 347.56 C 157.5 346.94 156.65 346.42 155.54 345.83 C 149.93 347.6 145.89 352.55 145.25 358.36 C 146.42 358.12 147.55 357.99 148.81 357.96 L 148.84 359.1 C 147.52 359.13 146.39 359.27 145.16 359.55 C 145.15 359.7 145.14 359.85 145.14 360 C 145.14 364.95 147.59 369.51 151.62 372.26 C 150.9 370.12 150.54 368.11 150.54 366.14 C 150.54 365.02 150.74 364.1 150.94 363.12 C 150.99 362.9 151.04 362.67 151.08 362.43 L 152.2 362.65 C 152.16 362.89 152.11 363.13 152.06 363.36 C 151.86 364.31 151.69 365.14 151.69 366.14 C 151.69 368.37 152.18 370.68 153.17 373.19 C 155.3 374.29 157.59 374.86 160 374.86 C 161.57 374.86 163.11 374.61 164.58 374.12 C 165.15 372.99 165.58 371.92 165.94 370.69 L 167.03 371 C 166.77 371.9 166.48 372.72 166.12 373.53 C 167.04 373.11 167.91 372.6 168.73 372 C 168.54 371.52 168.32 371.04 168.09 370.57 L 169.11 370.06 C 169.31 370.46 169.49 370.86 169.67 371.27 C 172.97 368.44 174.86 364.38 174.86 360 Z M 176 360 C 176 364.99 173.73 369.6 169.78 372.66 C 168.81 373.42 167.74 374.05 166.62 374.56 C 166.15 374.77 165.66 374.97 165.16 375.14 C 163.52 375.71 161.78 376 160 376 C 157.37 376 154.76 375.35 152.45 374.11 C 147.24 371.32 144 365.91 144 360 C 144 359.61 144.01 359.31 144.03 359.03 C 144.42 352.36 149 346.58 155.43 344.67 C 156.89 344.22 158.43 344 160 344 C 162.75 344 165.45 344.71 167.82 346.05 C 172.86 348.87 176 354.22 176 360 Z M 158.47 351.69 L 157.71 350.83 C 156.43 351.95 155.44 353.14 154.27 354.93 L 155.23 355.55 C 156.33 353.85 157.27 352.74 158.47 351.69 Z M 156.73 359.1 L 156.36 360.18 C 158.98 361.08 161.27 362.52 163.56 364.71 L 164.35 363.88 C 161.94 361.58 159.51 360.06 156.73 359.1 Z M 164.37 352.38 C 166.51 355.65 167.72 359.24 167.96 363.05 L 166.82 363.12 C 166.59 359.51 165.45 356.11 163.41 353.01 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 100 340 L 140 340 L 140 380 L 100 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 105.95 345.14 L 111.26 350.45 L 110.45 351.26 L 105.14 345.95 L 105.14 350.29 L 104 350.29 L 104 344.57 C 104 344.26 104.26 344 104.57 344 L 110.29 344 L 110.29 345.14 Z M 136 344.57 L 136 350.29 L 134.86 350.29 L 134.86 345.95 L 129.55 351.26 L 128.74 350.45 L 134.05 345.14 L 129.71 345.14 L 129.71 344 L 135.43 344 C 135.74 344 136 344.26 136 344.57 Z M 134.86 369.71 L 136 369.71 L 136 375.43 C 136 375.74 135.74 376 135.43 376 L 129.71 376 L 129.71 374.86 L 134.05 374.86 L 128.74 369.55 L 129.55 368.74 L 134.86 374.05 Z M 134.57 359.55 C 134.57 357.65 132.38 355.78 128.71 354.54 L 129.08 353.46 C 133.3 354.88 135.71 357.1 135.71 359.55 C 135.71 362 133.3 364.22 129.08 365.65 L 128.71 364.56 C 132.38 363.32 134.57 361.45 134.57 359.55 Z M 105.46 359.55 C 105.46 361.37 107.51 363.19 110.94 364.43 L 110.56 365.51 C 106.59 364.07 104.32 361.9 104.32 359.55 C 104.32 357.2 106.59 355.03 110.56 353.6 L 110.94 354.67 C 107.51 355.91 105.46 357.73 105.46 359.55 Z M 111.26 369.55 L 105.95 374.86 L 110.29 374.86 L 110.29 376 L 104.57 376 C 104.26 376 104 375.74 104 375.43 L 104 369.71 L 105.14 369.71 L 105.14 374.05 L 110.45 368.74 Z M 120 355.02 C 115.92 355.02 113.71 353.97 113.71 353.53 C 113.71 353.1 115.92 352.05 120 352.05 C 124.08 352.05 126.29 353.1 126.29 353.53 C 126.29 353.97 124.08 355.02 120 355.02 Z M 120.02 359.45 C 116.11 359.45 113.71 358.38 113.71 357.8 L 113.71 355.02 C 115.12 355.8 117.62 356.16 120 356.16 C 122.38 356.16 124.88 355.8 126.29 355.02 L 126.29 357.8 C 126.29 358.38 123.91 359.45 120.02 359.45 Z M 120.02 363.81 C 116.11 363.81 113.71 362.74 113.71 362.16 L 113.71 359.35 C 115.1 360.17 117.57 360.59 120.02 360.59 C 122.45 360.59 124.9 360.17 126.29 359.35 L 126.29 362.16 C 126.29 362.74 123.91 363.81 120.02 363.81 Z M 120 367.72 C 115.93 367.72 113.71 366.63 113.71 366.07 L 113.71 363.71 C 115.1 364.53 117.57 364.95 120.02 364.95 C 122.45 364.95 124.9 364.53 126.29 363.72 L 126.29 366.07 C 126.29 366.63 124.07 367.72 120 367.72 Z M 120 350.91 C 116.42 350.91 112.57 351.73 112.57 353.53 L 112.57 366.07 C 112.57 367.91 116.31 368.87 120 368.87 C 123.69 368.87 127.43 367.91 127.43 366.07 L 127.43 353.53 C 127.43 351.73 123.58 350.91 120 350.91 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 20 340 L 60 340 L 60 380 L 20 380 Z" fill="url(#mx-gradient-4d72f3-1-3334b9-1-s-0)" stroke="none" pointer-events="none"/><path d="M 46.88 368.49 C 44.98 370.03 40.98 370.84 37.15 370.84 C 33.32 370.84 29.31 370.03 27.41 368.49 L 27.41 371.59 L 27.41 371.59 C 27.41 373.14 31.41 374.87 37.15 374.87 C 42.88 374.87 46.88 373.14 46.88 371.59 Z M 46.88 362.58 L 48.03 362.58 L 48.03 362.58 C 48.03 363.27 47.68 363.92 47.01 364.51 C 47.82 365.23 48.03 365.93 48.03 366.43 C 48.03 366.44 48.03 366.44 48.03 366.44 L 48.03 371.59 L 48.03 371.59 C 48.03 374.45 42.42 376 37.15 376 C 31.88 376 26.29 374.46 26.27 371.61 C 26.27 371.61 26.26 371.61 26.26 371.6 L 26.26 366.43 C 26.26 366.43 26.26 366.43 26.26 366.43 C 26.27 365.93 26.47 365.22 27.28 364.51 C 26.48 363.79 26.27 363.09 26.26 362.6 L 26.26 362.6 C 26.26 362.59 26.26 362.59 26.26 362.59 L 26.26 357.42 C 26.26 357.42 26.26 357.42 26.26 357.41 C 26.27 356.91 26.47 356.21 27.29 355.5 C 26.48 354.78 26.27 354.08 26.26 353.58 L 26.26 353.58 C 26.26 353.58 26.26 353.58 26.26 353.58 L 26.26 348.41 C 26.26 348.41 26.26 348.4 26.26 348.4 C 26.27 345.54 31.88 344 37.15 344 C 40.12 344 42.98 344.47 44.99 345.3 L 44.56 346.35 C 42.68 345.58 39.98 345.13 37.15 345.13 C 31.41 345.13 27.41 346.86 27.41 348.41 C 27.41 349.96 31.41 351.69 37.15 351.69 C 37.3 351.69 37.45 351.69 37.61 351.68 L 37.65 352.81 C 37.48 352.82 37.32 352.82 37.15 352.82 C 33.32 352.82 29.31 352 27.41 350.46 L 27.41 353.57 L 27.41 353.57 L 27.41 353.58 C 27.41 354.17 28.02 354.69 28.53 355.02 C 30.07 356 32.82 356.67 35.9 356.81 L 35.84 357.94 C 32.73 357.8 30.01 357.16 28.25 356.17 C 27.82 356.49 27.41 356.93 27.41 357.42 C 27.41 358.97 31.41 360.7 37.15 360.7 C 37.71 360.7 38.27 360.68 38.81 360.64 L 38.89 361.77 C 38.32 361.81 37.74 361.83 37.15 361.83 C 33.32 361.83 29.31 361.02 27.41 359.47 L 27.41 362.58 L 27.41 362.58 C 27.41 363.19 28.02 363.7 28.53 364.03 C 30.29 365.16 33.59 365.85 37.15 365.85 L 37.4 365.85 L 37.4 366.99 L 37.15 366.99 C 33.54 366.99 30.25 366.32 28.25 365.18 C 27.82 365.51 27.41 365.94 27.41 366.43 C 27.41 367.98 31.41 369.71 37.15 369.71 C 42.88 369.71 46.88 367.99 46.88 366.44 L 46.88 366.43 L 46.88 366.43 C 46.88 365.94 46.47 365.5 46.04 365.18 C 45.76 365.34 45.46 365.49 45.12 365.63 L 44.69 364.58 C 45.1 364.41 45.46 364.23 45.76 364.04 C 46.27 363.7 46.88 363.17 46.88 362.58 Z M 51.78 354.3 L 48.58 354.3 C 48.39 354.3 48.21 354.2 48.1 354.05 C 48 353.89 47.98 353.69 48.05 353.52 L 49.99 348.65 L 42.62 348.65 L 39.19 355.45 L 42.84 355.45 C 43.02 355.45 43.19 355.54 43.3 355.68 C 43.4 355.83 43.44 356.02 43.38 356.19 L 40.13 366.34 Z M 53.53 354.12 L 39.25 368.88 C 39.14 368.99 38.99 369.05 38.84 369.05 C 38.74 369.05 38.63 369.03 38.54 368.97 C 38.32 368.84 38.21 368.57 38.29 368.32 L 42.05 356.59 L 38.26 356.59 C 38.07 356.59 37.88 356.48 37.78 356.32 C 37.67 356.15 37.66 355.94 37.75 355.77 L 41.75 347.83 C 41.85 347.64 42.05 347.52 42.26 347.52 L 50.84 347.52 C 51.02 347.52 51.2 347.61 51.31 347.77 C 51.42 347.92 51.44 348.12 51.37 348.29 L 49.42 353.16 L 53.12 353.16 C 53.35 353.16 53.56 353.3 53.65 353.51 C 53.74 353.72 53.69 353.96 53.53 354.12 Z M 28.24 371.81 C 29.05 372.27 30.07 372.65 31.27 372.95 L 31.55 371.85 C 30.46 371.58 29.51 371.23 28.8 370.83 Z M 31.27 363.89 L 31.55 362.79 C 30.46 362.51 29.51 362.16 28.8 361.76 L 28.24 362.75 C 29.05 363.2 30.07 363.59 31.27 363.89 Z M 28.24 353.68 L 28.8 352.69 C 29.51 353.09 30.46 353.45 31.55 353.72 L 31.27 354.82 C 30.07 354.52 29.05 354.13 28.24 353.68 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="20" y="300" width="160" height="80" fill="none" stroke="#90a6c2" stroke-width="2" pointer-events="none"/><rect x="20" y="140" width="160" height="40" fill="#90a6c2" stroke="#90a6c2" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="22px"><text x="99.5" y="173.5">development</text></g><rect x="20" y="220" width="160" height="40" fill="#39414d" stroke="#90a6c2" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="99.5" y="246">OPTIONAL</text></g><rect x="20" y="260" width="160" height="40" fill="#39414d" stroke="#90a6c2" stroke-width="2" pointer-events="none"/><g fill="#FFFFFF" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="16px"><text x="99.5" y="286">long-lived</text></g><rect x="20" y="180" width="160" height="40" fill="#90a6c2" stroke="#90a6c2" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px" opacity="0.5"><text x="99.5" y="198.5">environment</text></g><rect x="290" y="420" width="160" height="40" fill="#5c5c5c" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px"><text x="369.5" y="446.5">Account Resources</text></g><rect x="290" y="500" width="160" height="40" fill="#333333" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><g fill="#F8E7F5" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="14px"><text x="369.5" y="525">shared between envs</text></g><path d="M 290 540 L 330 540 L 330 580 L 290 580 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 321.91 561.36 L 318.77 560.1 L 318.77 571.46 C 319.69 571.37 320.43 571.07 320.95 570.54 C 321.92 569.56 321.91 568.11 321.91 568.1 Z M 317.63 571.47 L 317.63 560.1 L 314.5 561.36 L 314.5 568.09 C 314.51 568.21 314.64 571.14 317.63 571.47 Z M 323.04 568.09 C 323.05 568.15 323.08 569.99 321.77 571.33 C 320.92 572.2 319.72 572.64 318.2 572.64 C 314.46 572.64 313.4 569.67 313.36 568.1 L 313.36 560.97 C 313.36 560.74 313.51 560.53 313.72 560.44 L 317.99 558.73 C 318.13 558.68 318.28 558.68 318.42 558.73 L 322.69 560.44 C 322.9 560.53 323.04 560.74 323.04 560.97 Z M 324.75 566.97 L 324.75 559.36 L 318.2 556.74 L 311.65 559.36 L 311.65 566.95 C 311.65 567 311.58 570.5 313.67 572.65 C 314.77 573.78 316.29 574.35 318.2 574.35 C 320.13 574.35 321.66 573.78 322.76 572.64 C 324.85 570.48 324.76 567 324.75 566.97 Z M 323.58 573.43 C 322.26 574.8 320.45 575.49 318.2 575.49 C 315.97 575.49 314.17 574.8 312.84 573.43 C 310.42 570.93 310.51 567.09 310.52 566.93 L 310.52 558.98 C 310.52 558.74 310.66 558.53 310.87 558.45 L 317.99 555.6 C 318.13 555.55 318.28 555.55 318.42 555.6 L 325.53 558.45 C 325.75 558.53 325.89 558.74 325.89 558.98 L 325.89 566.95 C 325.9 567.09 326 570.92 323.58 573.43 Z M 300.3 564.67 L 308.81 564.67 L 308.81 565.81 L 300.3 565.81 C 296.83 565.81 294.19 563.5 294.01 560.32 C 294 560.19 294 560.04 294 559.89 C 294 555.98 296.74 554.54 298.33 554.03 C 298.32 553.85 298.31 553.66 298.31 553.48 C 298.31 550.37 300.53 547.12 303.47 545.92 C 306.91 544.51 310.55 545.19 313.19 547.75 C 314.08 548.61 314.76 549.54 315.25 550.56 C 315.93 549.97 316.76 549.65 317.65 549.65 C 319.53 549.65 321.52 551.13 321.87 553.96 C 323.11 554.27 324.67 554.94 325.77 556.35 L 324.87 557.05 C 323.86 555.75 322.33 555.2 321.22 554.98 C 320.97 554.93 320.78 554.71 320.77 554.45 C 320.62 551.94 319.05 550.79 317.65 550.79 C 316.82 550.79 316.08 551.18 315.52 551.93 C 315.39 552.09 315.19 552.18 314.98 552.14 C 314.77 552.11 314.6 551.97 314.53 551.78 C 314.09 550.59 313.39 549.54 312.4 548.56 C 310.09 546.33 306.91 545.74 303.9 546.97 C 301.36 548.01 299.45 550.81 299.45 553.48 C 299.45 553.79 299.47 554.09 299.51 554.38 C 299.54 554.67 299.36 554.93 299.08 555 C 297.61 555.37 295.14 556.49 295.14 559.89 C 295.14 560.01 295.14 560.12 295.15 560.24 C 295.29 562.82 297.46 564.67 300.3 564.67 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 370 540 L 410 540 L 410 580 L 370 580 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 384.39 571.89 L 394.38 571.89 L 394.38 568.6 C 394.38 568.31 394.07 568.07 393.69 568.07 L 385.08 568.07 C 384.7 568.07 384.39 568.31 384.39 568.6 Z M 397.36 573.76 L 397.36 575.82 L 397.36 576 L 396.24 576 L 396.24 575.82 L 396.24 573.76 C 396.24 573.32 395.98 573.01 395.75 573.01 L 383.02 573.01 C 382.79 573.01 382.53 573.32 382.53 573.76 L 382.53 575.82 L 382.53 576 L 381.41 576 L 381.41 575.82 L 381.41 573.76 C 381.41 572.73 382.13 571.89 383.02 571.89 L 383.27 571.89 L 383.27 568.6 C 383.27 567.69 384.08 566.95 385.08 566.95 L 393.69 566.95 C 394.69 566.95 395.5 567.69 395.5 568.6 L 395.5 571.89 L 395.75 571.89 C 396.64 571.89 397.36 572.73 397.36 573.76 Z M 393.09 559.54 C 393.8 559.54 394.38 558.96 394.38 558.25 C 394.38 557.53 393.8 556.95 393.09 556.95 C 392.38 556.95 391.8 557.53 391.8 558.25 C 391.8 558.96 392.38 559.54 393.09 559.54 Z M 392.53 566.28 L 392.53 560.59 C 391.47 560.33 390.68 559.38 390.68 558.25 C 390.68 556.92 391.76 555.83 393.09 555.83 C 394.42 555.83 395.5 556.92 395.5 558.25 C 395.5 559.38 394.71 560.33 393.65 560.59 L 393.65 566.28 Z M 390.64 553.92 C 390.64 553.21 390.06 552.63 389.34 552.63 C 388.63 552.63 388.05 553.21 388.05 553.92 C 388.05 554.64 388.63 555.22 389.34 555.22 C 390.06 555.22 390.64 554.64 390.64 553.92 Z M 391.76 553.92 C 391.76 555.05 390.98 555.98 389.94 556.25 L 389.94 566.28 L 388.83 566.28 L 388.83 556.28 C 387.74 556.04 386.93 555.08 386.93 553.92 C 386.93 552.59 388.01 551.51 389.34 551.51 C 390.67 551.51 391.76 552.59 391.76 553.92 Z M 385.68 556.95 C 384.97 556.95 384.39 557.53 384.39 558.25 C 384.39 558.96 384.97 559.54 385.68 559.54 C 386.39 559.54 386.97 558.96 386.97 558.25 C 386.97 557.53 386.39 556.95 385.68 556.95 Z M 385.68 555.83 C 387.01 555.83 388.09 556.92 388.09 558.25 C 388.09 559.38 387.3 560.33 386.24 560.59 L 386.24 566.28 L 385.12 566.28 L 385.12 560.59 C 384.06 560.33 383.27 559.38 383.27 558.25 C 383.27 556.92 384.35 555.83 385.68 555.83 Z M 405.67 558.85 C 405.67 563.14 402.42 564.66 399.38 564.66 L 395 564.66 L 395 563.54 L 399.38 563.54 C 400.59 563.54 404.55 563.2 404.55 558.85 C 404.55 555.7 402.09 554.55 400.02 554.13 C 399.77 554.08 399.58 553.87 399.57 553.62 C 399.42 551.13 397.97 550.25 396.77 550.25 C 395.96 550.25 395.2 550.64 394.69 551.31 C 394.56 551.47 394.36 551.55 394.16 551.52 C 393.95 551.49 393.78 551.36 393.71 551.16 C 393.36 550.2 392.73 548.85 391.74 547.9 C 389.57 545.78 386.6 545.21 383.79 546.36 C 381.5 547.3 379.63 550.17 379.63 552.76 C 379.63 553.04 379.65 553.33 379.68 553.61 C 379.72 553.89 379.54 554.15 379.26 554.22 C 378.11 554.5 375.45 555.51 375.45 558.81 C 375.45 558.92 375.45 559.04 375.46 559.15 C 375.59 561.57 377.87 563.54 380.53 563.54 L 383.75 563.54 L 383.75 564.66 L 380.53 564.66 C 377.29 564.66 374.51 562.22 374.34 559.22 C 374.33 559.08 374.33 558.94 374.33 558.81 C 374.33 556.12 375.89 554.08 378.53 553.26 C 378.52 553.1 378.51 552.93 378.51 552.76 C 378.51 550.08 380.33 546.57 383.36 545.33 C 386.6 544 390.02 544.66 392.52 547.09 C 393.4 547.94 394.02 549.02 394.44 549.97 C 395.1 549.43 395.91 549.13 396.77 549.13 C 398.5 549.13 400.32 550.37 400.65 553.13 C 403.89 553.9 405.67 555.93 405.67 558.85 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 330 540 L 370 540 L 370 580 L 330 580 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 354.96 560.42 C 355.38 560.81 355.59 561.33 355.59 561.99 C 355.59 562.7 355.33 563.27 354.82 563.7 C 354.31 564.12 353.62 564.34 352.75 564.34 C 352.07 564.34 351.39 564.19 350.72 563.9 L 350.72 563.03 C 351.51 563.29 352.19 563.42 352.75 563.42 C 353.3 563.42 353.73 563.29 354.03 563.05 C 354.33 562.8 354.48 562.45 354.48 561.99 C 354.48 561.11 353.92 560.67 352.81 560.67 C 352.46 560.67 352.11 560.69 351.77 560.72 L 351.77 560 L 354.06 557.5 L 350.83 557.5 L 350.83 556.61 L 355.27 556.61 L 355.27 557.47 L 353.02 559.85 C 353.06 559.84 353.1 559.84 353.13 559.84 L 353.24 559.84 C 353.96 559.84 354.53 560.03 354.96 560.42 M 348.62 560.23 C 349.06 560.65 349.28 561.22 349.28 561.94 C 349.28 562.66 349.02 563.24 348.51 563.68 C 347.99 564.12 347.31 564.34 346.47 564.34 C 345.73 564.34 345.03 564.19 344.38 563.9 L 344.38 563.03 C 345.19 563.29 345.88 563.42 346.46 563.42 C 347.01 563.42 347.43 563.29 347.73 563.04 C 348.02 562.79 348.17 562.43 348.17 561.96 C 348.17 561.44 348.03 561.06 347.75 560.83 C 347.48 560.6 347.03 560.48 346.4 560.48 C 345.95 560.48 345.39 560.52 344.71 560.59 L 344.71 559.87 L 344.92 556.61 L 348.9 556.61 L 348.9 557.5 L 345.83 557.5 L 345.69 559.72 C 346.09 559.65 346.45 559.61 346.77 559.61 C 347.56 559.61 348.17 559.82 348.62 560.23 M 356.82 568.23 C 354.05 568.73 351.63 569.86 350 570.78 C 348.37 569.86 345.95 568.73 343.18 568.23 C 342.4 568.09 338.52 567.28 338.52 565.04 C 338.52 564 338.89 563.31 339.61 562.08 C 340.46 560.6 341.53 558.77 341.53 556.13 C 341.53 554.25 341.03 552.44 340.06 550.75 C 340.17 550.61 340.29 550.47 340.4 550.32 C 341.85 551.04 343.36 551.41 344.89 551.41 C 346.76 551.41 348.47 550.92 350 549.95 C 351.52 550.92 353.24 551.41 355.11 551.41 C 356.64 551.41 358.15 551.04 359.6 550.32 C 359.71 550.47 359.83 550.61 359.94 550.75 C 358.97 552.44 358.47 554.25 358.47 556.13 C 358.47 558.77 359.54 560.6 360.39 562.08 C 361.11 563.31 361.48 564 361.48 565.04 C 361.48 567.28 357.6 568.09 356.82 568.23 M 359.61 556.13 C 359.61 554.33 360.12 552.61 361.12 551 C 361.25 550.8 361.24 550.53 361.08 550.34 C 360.79 549.99 360.49 549.61 360.19 549.24 C 360.01 549.02 359.71 548.97 359.47 549.1 C 358.06 549.88 356.6 550.27 355.11 550.27 C 353.32 550.27 351.75 549.79 350.32 548.8 C 350.13 548.66 349.87 548.66 349.68 548.8 C 348.25 549.79 346.68 550.27 344.89 550.27 C 343.4 550.27 341.94 549.88 340.53 549.1 C 340.29 548.97 339.99 549.02 339.81 549.24 C 339.51 549.61 339.21 549.99 338.92 550.34 C 338.76 550.53 338.75 550.8 338.88 551 C 339.88 552.61 340.39 554.33 340.39 556.13 C 340.39 558.47 339.41 560.15 338.62 561.51 C 337.85 562.83 337.38 563.71 337.38 565.04 C 337.38 568.11 341.67 569.12 342.98 569.36 C 345.75 569.85 348.17 571.03 349.71 571.93 C 349.8 571.98 349.9 572 350 572 C 350.1 572 350.2 571.98 350.29 571.93 C 351.83 571.03 354.25 569.85 357.02 569.36 C 358.33 569.12 362.62 568.11 362.62 565.04 C 362.62 563.71 362.15 562.83 361.38 561.51 C 360.59 560.15 359.61 558.47 359.61 556.13 M 357.41 571.53 C 353.91 572.16 350.98 574.04 350 574.73 C 349.02 574.04 346.09 572.16 342.59 571.53 C 335.71 570.29 335.18 566.25 335.18 565.04 C 335.18 563.05 335.96 561.7 336.71 560.4 C 337.43 559.16 338.18 557.87 338.18 556.13 C 338.18 553.38 336.59 551.44 335.81 550.65 C 336.63 549.65 338.71 547.12 339.74 545.79 C 341.29 547.26 343.1 548.06 344.89 548.06 C 346.87 548.06 348.51 547.25 350 545.53 C 351.49 547.25 353.13 548.06 355.11 548.06 C 356.9 548.06 358.71 547.26 360.26 545.79 C 361.29 547.12 363.37 549.65 364.19 550.65 C 363.41 551.44 361.82 553.38 361.82 556.13 C 361.82 557.87 362.57 559.16 363.29 560.4 C 364.04 561.7 364.82 563.05 364.82 565.04 C 364.82 566.25 364.29 570.29 357.41 571.53 M 364.27 559.83 C 363.57 558.61 362.96 557.56 362.96 556.13 C 362.96 553.12 365.31 551.17 365.33 551.15 C 365.45 551.05 365.52 550.91 365.54 550.76 C 365.55 550.61 365.51 550.46 365.41 550.34 C 365.37 550.3 361.64 545.77 360.78 544.59 C 360.68 544.45 360.52 544.37 360.35 544.36 C 360.18 544.35 360.02 544.41 359.9 544.54 C 358.47 546.07 356.77 546.92 355.11 546.92 C 353.29 546.92 351.85 546.11 350.45 544.28 C 350.24 544 349.76 544 349.55 544.28 C 348.15 546.11 346.71 546.92 344.89 546.92 C 343.23 546.92 341.53 546.07 340.1 544.54 C 339.98 544.41 339.82 544.34 339.65 544.36 C 339.48 544.37 339.32 544.45 339.22 544.59 C 338.36 545.77 334.63 550.3 334.59 550.34 C 334.49 550.46 334.45 550.61 334.46 550.76 C 334.48 550.91 334.55 551.05 334.67 551.15 C 334.69 551.17 337.04 553.12 337.04 556.13 C 337.04 557.56 336.43 558.61 335.73 559.83 C 334.93 561.19 334.04 562.74 334.04 565.04 C 334.04 568.87 337.16 571.71 342.39 572.65 C 346.33 573.36 349.62 575.86 349.65 575.88 C 349.75 575.96 349.88 576 350 576 C 350.12 576 350.24 575.96 350.35 575.88 C 350.38 575.86 353.66 573.36 357.61 572.65 C 362.84 571.71 365.96 568.87 365.96 565.04 C 365.96 562.74 365.07 561.19 364.27 559.83" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 410 540 L 450 540 L 450 580 L 410 580 Z" fill="url(#mx-gradient-f34482-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 428.6 550.18 L 430.84 550.18 L 430.84 549.05 L 428.6 549.05 Z M 424.67 550.18 L 426.91 550.18 L 426.91 549.05 L 424.67 549.05 Z M 420.74 550.18 L 422.98 550.18 L 422.98 549.05 L 420.74 549.05 Z M 444.15 566.09 C 443.98 566.49 443.62 566.79 443.19 566.93 L 443.19 563.76 C 443.53 563.88 443.83 564.1 444.04 564.41 C 444.36 564.9 444.4 565.51 444.15 566.09 Z M 415.85 566.09 C 415.6 565.51 415.64 564.9 415.96 564.41 C 416.17 564.1 416.47 563.88 416.81 563.76 L 416.81 566.93 C 416.38 566.79 416.02 566.49 415.85 566.09 Z M 444.98 563.79 C 444.56 563.16 443.92 562.74 443.19 562.59 L 443.19 561.59 C 443.19 559.63 441.68 558.04 439.82 558.04 L 429.16 558.04 L 429.16 559.16 L 439.82 559.16 C 441.06 559.16 442.07 560.25 442.07 561.59 L 442.07 569.08 C 442.07 570.42 441.06 571.51 439.82 571.51 L 420.18 571.51 C 418.94 571.51 417.93 570.42 417.93 569.08 L 417.93 561.59 C 417.93 560.25 418.94 559.16 420.18 559.16 L 422.98 559.16 L 422.98 558.04 L 420.18 558.04 C 418.32 558.04 416.81 559.63 416.81 561.59 L 416.81 562.59 C 416.08 562.74 415.44 563.16 415.02 563.79 C 414.49 564.6 414.41 565.6 414.82 566.54 C 415.17 567.35 415.92 567.92 416.81 568.09 L 416.81 569.08 C 416.81 571.04 418.32 572.63 420.18 572.63 L 426.91 572.63 L 426.91 576 L 428.04 576 L 428.04 572.63 L 431.4 572.63 L 431.4 576 L 432.53 576 L 432.53 572.63 L 439.82 572.63 C 441.68 572.63 443.19 571.04 443.19 569.08 L 443.19 568.09 C 444.08 567.92 444.83 567.35 445.18 566.54 C 445.59 565.6 445.51 564.6 444.98 563.79 Z M 425.23 565.33 C 425.23 566.26 424.47 567.02 423.54 567.02 C 422.62 567.02 421.86 566.26 421.86 565.33 C 421.86 564.4 422.62 563.65 423.54 563.65 C 424.47 563.65 425.23 564.4 425.23 565.33 Z M 420.74 565.33 C 420.74 566.88 422 568.14 423.54 568.14 C 425.09 568.14 426.35 566.88 426.35 565.33 C 426.35 563.79 425.09 562.53 423.54 562.53 C 422 562.53 420.74 563.79 420.74 565.33 Z M 434.77 565.33 C 434.77 564.4 435.53 563.65 436.46 563.65 C 437.38 563.65 438.14 564.4 438.14 565.33 C 438.14 566.26 437.38 567.02 436.46 567.02 C 435.53 567.02 434.77 566.26 434.77 565.33 Z M 439.26 565.33 C 439.26 563.79 438 562.53 436.46 562.53 C 434.91 562.53 433.65 563.79 433.65 565.33 C 433.65 566.88 434.91 568.14 436.46 568.14 C 438 568.14 439.26 566.88 439.26 565.33 Z M 418.49 545.6 C 418.49 545.34 418.71 545.12 418.97 545.12 L 433.09 545.12 L 433.09 554.17 C 433.09 554.44 432.86 554.67 432.59 554.67 L 426.91 554.67 C 426.6 554.67 426.35 554.92 426.35 555.23 L 426.35 558.14 L 423.87 554.89 C 423.76 554.75 423.6 554.67 423.42 554.67 L 418.97 554.67 C 418.71 554.67 418.49 554.45 418.49 554.19 Z M 418.97 555.79 L 423.15 555.79 L 426.47 560.14 C 426.57 560.28 426.74 560.36 426.91 560.36 C 426.97 560.36 427.03 560.35 427.09 560.33 C 427.32 560.26 427.47 560.04 427.47 559.8 L 427.47 555.79 L 432.59 555.79 C 433.48 555.79 434.21 555.06 434.21 554.17 L 434.21 544.86 C 434.21 544.38 433.83 544 433.35 544 L 418.97 544 C 418.09 544 417.37 544.72 417.37 545.6 L 417.37 554.19 C 417.37 555.07 418.09 555.79 418.97 555.79 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="290" y="540" width="160" height="40" fill="none" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><rect x="290" y="460" width="160" height="40" fill="#333333" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><g fill="#F8E7F5" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="14px"><text x="369.5" y="485">own deploy lifecycle</text></g><rect x="780" y="420" width="160" height="40" fill="#5c5c5c" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px"><text x="859.5" y="446.5">Account Resources</text></g><rect x="780" y="500" width="160" height="40" fill="#333333" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><g fill="#F8E7F5" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="14px"><text x="859.5" y="525">shared between envs</text></g><path d="M 780 540 L 820 540 L 820 580 L 780 580 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 811.91 561.36 L 808.77 560.1 L 808.77 571.46 C 809.69 571.37 810.43 571.07 810.95 570.54 C 811.92 569.56 811.91 568.11 811.91 568.1 Z M 807.63 571.47 L 807.63 560.1 L 804.5 561.36 L 804.5 568.09 C 804.51 568.21 804.64 571.14 807.63 571.47 Z M 813.04 568.09 C 813.05 568.15 813.08 569.99 811.77 571.33 C 810.92 572.2 809.72 572.64 808.2 572.64 C 804.46 572.64 803.4 569.67 803.36 568.1 L 803.36 560.97 C 803.36 560.74 803.51 560.53 803.72 560.44 L 807.99 558.73 C 808.13 558.68 808.28 558.68 808.42 558.73 L 812.69 560.44 C 812.9 560.53 813.04 560.74 813.04 560.97 Z M 814.75 566.97 L 814.75 559.36 L 808.2 556.74 L 801.65 559.36 L 801.65 566.95 C 801.65 567 801.58 570.5 803.67 572.65 C 804.77 573.78 806.29 574.35 808.2 574.35 C 810.13 574.35 811.66 573.78 812.76 572.64 C 814.85 570.48 814.76 567 814.75 566.97 Z M 813.58 573.43 C 812.26 574.8 810.45 575.49 808.2 575.49 C 805.97 575.49 804.17 574.8 802.84 573.43 C 800.42 570.93 800.51 567.09 800.52 566.93 L 800.52 558.98 C 800.52 558.74 800.66 558.53 800.87 558.45 L 807.99 555.6 C 808.13 555.55 808.28 555.55 808.42 555.6 L 815.53 558.45 C 815.75 558.53 815.89 558.74 815.89 558.98 L 815.89 566.95 C 815.9 567.09 816 570.92 813.58 573.43 Z M 790.3 564.67 L 798.81 564.67 L 798.81 565.81 L 790.3 565.81 C 786.83 565.81 784.19 563.5 784.01 560.32 C 784 560.19 784 560.04 784 559.89 C 784 555.98 786.74 554.54 788.33 554.03 C 788.32 553.85 788.31 553.66 788.31 553.48 C 788.31 550.37 790.53 547.12 793.47 545.92 C 796.91 544.51 800.55 545.19 803.19 547.75 C 804.08 548.61 804.76 549.54 805.25 550.56 C 805.93 549.97 806.76 549.65 807.65 549.65 C 809.53 549.65 811.52 551.13 811.87 553.96 C 813.11 554.27 814.67 554.94 815.77 556.35 L 814.87 557.05 C 813.86 555.75 812.33 555.2 811.22 554.98 C 810.97 554.93 810.78 554.71 810.77 554.45 C 810.62 551.94 809.05 550.79 807.65 550.79 C 806.82 550.79 806.08 551.18 805.52 551.93 C 805.39 552.09 805.19 552.18 804.98 552.14 C 804.77 552.11 804.6 551.97 804.53 551.78 C 804.09 550.59 803.39 549.54 802.4 548.56 C 800.09 546.33 796.91 545.74 793.9 546.97 C 791.36 548.01 789.45 550.81 789.45 553.48 C 789.45 553.79 789.47 554.09 789.51 554.38 C 789.54 554.67 789.36 554.93 789.08 555 C 787.61 555.37 785.14 556.49 785.14 559.89 C 785.14 560.01 785.14 560.12 785.15 560.24 C 785.29 562.82 787.46 564.67 790.3 564.67 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 860 540 L 900 540 L 900 580 L 860 580 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 874.39 571.89 L 884.38 571.89 L 884.38 568.6 C 884.38 568.31 884.07 568.07 883.69 568.07 L 875.08 568.07 C 874.7 568.07 874.39 568.31 874.39 568.6 Z M 887.36 573.76 L 887.36 575.82 L 887.36 576 L 886.24 576 L 886.24 575.82 L 886.24 573.76 C 886.24 573.32 885.98 573.01 885.75 573.01 L 873.02 573.01 C 872.79 573.01 872.53 573.32 872.53 573.76 L 872.53 575.82 L 872.53 576 L 871.41 576 L 871.41 575.82 L 871.41 573.76 C 871.41 572.73 872.13 571.89 873.02 571.89 L 873.27 571.89 L 873.27 568.6 C 873.27 567.69 874.08 566.95 875.08 566.95 L 883.69 566.95 C 884.69 566.95 885.5 567.69 885.5 568.6 L 885.5 571.89 L 885.75 571.89 C 886.64 571.89 887.36 572.73 887.36 573.76 Z M 883.09 559.54 C 883.8 559.54 884.38 558.96 884.38 558.25 C 884.38 557.53 883.8 556.95 883.09 556.95 C 882.38 556.95 881.8 557.53 881.8 558.25 C 881.8 558.96 882.38 559.54 883.09 559.54 Z M 882.53 566.28 L 882.53 560.59 C 881.47 560.33 880.68 559.38 880.68 558.25 C 880.68 556.92 881.76 555.83 883.09 555.83 C 884.42 555.83 885.5 556.92 885.5 558.25 C 885.5 559.38 884.71 560.33 883.65 560.59 L 883.65 566.28 Z M 880.64 553.92 C 880.64 553.21 880.06 552.63 879.34 552.63 C 878.63 552.63 878.05 553.21 878.05 553.92 C 878.05 554.64 878.63 555.22 879.34 555.22 C 880.06 555.22 880.64 554.64 880.64 553.92 Z M 881.76 553.92 C 881.76 555.05 880.98 555.98 879.94 556.25 L 879.94 566.28 L 878.83 566.28 L 878.83 556.28 C 877.74 556.04 876.93 555.08 876.93 553.92 C 876.93 552.59 878.01 551.51 879.34 551.51 C 880.67 551.51 881.76 552.59 881.76 553.92 Z M 875.68 556.95 C 874.97 556.95 874.39 557.53 874.39 558.25 C 874.39 558.96 874.97 559.54 875.68 559.54 C 876.39 559.54 876.97 558.96 876.97 558.25 C 876.97 557.53 876.39 556.95 875.68 556.95 Z M 875.68 555.83 C 877.01 555.83 878.09 556.92 878.09 558.25 C 878.09 559.38 877.3 560.33 876.24 560.59 L 876.24 566.28 L 875.12 566.28 L 875.12 560.59 C 874.06 560.33 873.27 559.38 873.27 558.25 C 873.27 556.92 874.35 555.83 875.68 555.83 Z M 895.67 558.85 C 895.67 563.14 892.42 564.66 889.38 564.66 L 885 564.66 L 885 563.54 L 889.38 563.54 C 890.59 563.54 894.55 563.2 894.55 558.85 C 894.55 555.7 892.09 554.55 890.02 554.13 C 889.77 554.08 889.58 553.87 889.57 553.62 C 889.42 551.13 887.97 550.25 886.77 550.25 C 885.96 550.25 885.2 550.64 884.69 551.31 C 884.56 551.47 884.36 551.55 884.16 551.52 C 883.95 551.49 883.78 551.36 883.71 551.16 C 883.36 550.2 882.73 548.85 881.74 547.9 C 879.57 545.78 876.6 545.21 873.79 546.36 C 871.5 547.3 869.63 550.17 869.63 552.76 C 869.63 553.04 869.65 553.33 869.68 553.61 C 869.72 553.89 869.54 554.15 869.26 554.22 C 868.11 554.5 865.45 555.51 865.45 558.81 C 865.45 558.92 865.45 559.04 865.46 559.15 C 865.59 561.57 867.87 563.54 870.53 563.54 L 873.75 563.54 L 873.75 564.66 L 870.53 564.66 C 867.29 564.66 864.51 562.22 864.34 559.22 C 864.33 559.08 864.33 558.94 864.33 558.81 C 864.33 556.12 865.89 554.08 868.53 553.26 C 868.52 553.1 868.51 552.93 868.51 552.76 C 868.51 550.08 870.33 546.57 873.36 545.33 C 876.6 544 880.02 544.66 882.52 547.09 C 883.4 547.94 884.02 549.02 884.44 549.97 C 885.1 549.43 885.91 549.13 886.77 549.13 C 888.5 549.13 890.32 550.37 890.65 553.13 C 893.89 553.9 895.67 555.93 895.67 558.85 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 820 540 L 860 540 L 860 580 L 820 580 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 844.96 560.42 C 845.38 560.81 845.59 561.33 845.59 561.99 C 845.59 562.7 845.33 563.27 844.82 563.7 C 844.31 564.12 843.62 564.34 842.75 564.34 C 842.07 564.34 841.39 564.19 840.72 563.9 L 840.72 563.03 C 841.51 563.29 842.19 563.42 842.75 563.42 C 843.3 563.42 843.73 563.29 844.03 563.05 C 844.33 562.8 844.48 562.45 844.48 561.99 C 844.48 561.11 843.92 560.67 842.81 560.67 C 842.46 560.67 842.11 560.69 841.77 560.72 L 841.77 560 L 844.06 557.5 L 840.83 557.5 L 840.83 556.61 L 845.27 556.61 L 845.27 557.47 L 843.02 559.85 C 843.06 559.84 843.1 559.84 843.13 559.84 L 843.24 559.84 C 843.96 559.84 844.53 560.03 844.96 560.42 M 838.62 560.23 C 839.06 560.65 839.28 561.22 839.28 561.94 C 839.28 562.66 839.02 563.24 838.51 563.68 C 837.99 564.12 837.31 564.34 836.47 564.34 C 835.73 564.34 835.03 564.19 834.38 563.9 L 834.38 563.03 C 835.19 563.29 835.88 563.42 836.46 563.42 C 837.01 563.42 837.43 563.29 837.73 563.04 C 838.02 562.79 838.17 562.43 838.17 561.96 C 838.17 561.44 838.03 561.06 837.75 560.83 C 837.48 560.6 837.03 560.48 836.4 560.48 C 835.95 560.48 835.39 560.52 834.71 560.59 L 834.71 559.87 L 834.92 556.61 L 838.9 556.61 L 838.9 557.5 L 835.83 557.5 L 835.69 559.72 C 836.09 559.65 836.45 559.61 836.77 559.61 C 837.56 559.61 838.17 559.82 838.62 560.23 M 846.82 568.23 C 844.05 568.73 841.63 569.86 840 570.78 C 838.37 569.86 835.95 568.73 833.18 568.23 C 832.4 568.09 828.52 567.28 828.52 565.04 C 828.52 564 828.89 563.31 829.61 562.08 C 830.46 560.6 831.53 558.77 831.53 556.13 C 831.53 554.25 831.03 552.44 830.06 550.75 C 830.17 550.61 830.29 550.47 830.4 550.32 C 831.85 551.04 833.36 551.41 834.89 551.41 C 836.76 551.41 838.47 550.92 840 549.95 C 841.52 550.92 843.24 551.41 845.11 551.41 C 846.64 551.41 848.15 551.04 849.6 550.32 C 849.71 550.47 849.83 550.61 849.94 550.75 C 848.97 552.44 848.47 554.25 848.47 556.13 C 848.47 558.77 849.54 560.6 850.39 562.08 C 851.11 563.31 851.48 564 851.48 565.04 C 851.48 567.28 847.6 568.09 846.82 568.23 M 849.61 556.13 C 849.61 554.33 850.12 552.61 851.12 551 C 851.25 550.8 851.24 550.53 851.08 550.34 C 850.79 549.99 850.49 549.61 850.19 549.24 C 850.01 549.02 849.71 548.97 849.47 549.1 C 848.06 549.88 846.6 550.27 845.11 550.27 C 843.32 550.27 841.75 549.79 840.32 548.8 C 840.13 548.66 839.87 548.66 839.68 548.8 C 838.25 549.79 836.68 550.27 834.89 550.27 C 833.4 550.27 831.94 549.88 830.53 549.1 C 830.29 548.97 829.99 549.02 829.81 549.24 C 829.51 549.61 829.21 549.99 828.92 550.34 C 828.76 550.53 828.75 550.8 828.88 551 C 829.88 552.61 830.39 554.33 830.39 556.13 C 830.39 558.47 829.41 560.15 828.62 561.51 C 827.85 562.83 827.38 563.71 827.38 565.04 C 827.38 568.11 831.67 569.12 832.98 569.36 C 835.75 569.85 838.17 571.03 839.71 571.93 C 839.8 571.98 839.9 572 840 572 C 840.1 572 840.2 571.98 840.29 571.93 C 841.83 571.03 844.25 569.85 847.02 569.36 C 848.33 569.12 852.62 568.11 852.62 565.04 C 852.62 563.71 852.15 562.83 851.38 561.51 C 850.59 560.15 849.61 558.47 849.61 556.13 M 847.41 571.53 C 843.91 572.16 840.98 574.04 840 574.73 C 839.02 574.04 836.09 572.16 832.59 571.53 C 825.71 570.29 825.18 566.25 825.18 565.04 C 825.18 563.05 825.96 561.7 826.71 560.4 C 827.43 559.16 828.18 557.87 828.18 556.13 C 828.18 553.38 826.59 551.44 825.81 550.65 C 826.63 549.65 828.71 547.12 829.74 545.79 C 831.29 547.26 833.1 548.06 834.89 548.06 C 836.87 548.06 838.51 547.25 840 545.53 C 841.49 547.25 843.13 548.06 845.11 548.06 C 846.9 548.06 848.71 547.26 850.26 545.79 C 851.29 547.12 853.37 549.65 854.19 550.65 C 853.41 551.44 851.82 553.38 851.82 556.13 C 851.82 557.87 852.57 559.16 853.29 560.4 C 854.04 561.7 854.82 563.05 854.82 565.04 C 854.82 566.25 854.29 570.29 847.41 571.53 M 854.27 559.83 C 853.57 558.61 852.96 557.56 852.96 556.13 C 852.96 553.12 855.31 551.17 855.33 551.15 C 855.45 551.05 855.52 550.91 855.54 550.76 C 855.55 550.61 855.51 550.46 855.41 550.34 C 855.37 550.3 851.64 545.77 850.78 544.59 C 850.68 544.45 850.52 544.37 850.35 544.36 C 850.18 544.35 850.02 544.41 849.9 544.54 C 848.47 546.07 846.77 546.92 845.11 546.92 C 843.29 546.92 841.85 546.11 840.45 544.28 C 840.24 544 839.76 544 839.55 544.28 C 838.15 546.11 836.71 546.92 834.89 546.92 C 833.23 546.92 831.53 546.07 830.1 544.54 C 829.98 544.41 829.82 544.34 829.65 544.36 C 829.48 544.37 829.32 544.45 829.22 544.59 C 828.36 545.77 824.63 550.3 824.59 550.34 C 824.49 550.46 824.45 550.61 824.46 550.76 C 824.48 550.91 824.55 551.05 824.67 551.15 C 824.69 551.17 827.04 553.12 827.04 556.13 C 827.04 557.56 826.43 558.61 825.73 559.83 C 824.93 561.19 824.04 562.74 824.04 565.04 C 824.04 568.87 827.16 571.71 832.39 572.65 C 836.33 573.36 839.62 575.86 839.65 575.88 C 839.75 575.96 839.88 576 840 576 C 840.12 576 840.24 575.96 840.35 575.88 C 840.38 575.86 843.66 573.36 847.61 572.65 C 852.84 571.71 855.96 568.87 855.96 565.04 C 855.96 562.74 855.07 561.19 854.27 559.83" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 900 540 L 940 540 L 940 580 L 900 580 Z" fill="url(#mx-gradient-f34482-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 918.6 550.18 L 920.84 550.18 L 920.84 549.05 L 918.6 549.05 Z M 914.67 550.18 L 916.91 550.18 L 916.91 549.05 L 914.67 549.05 Z M 910.74 550.18 L 912.98 550.18 L 912.98 549.05 L 910.74 549.05 Z M 934.15 566.09 C 933.98 566.49 933.62 566.79 933.19 566.93 L 933.19 563.76 C 933.53 563.88 933.83 564.1 934.04 564.41 C 934.36 564.9 934.4 565.51 934.15 566.09 Z M 905.85 566.09 C 905.6 565.51 905.64 564.9 905.96 564.41 C 906.17 564.1 906.47 563.88 906.81 563.76 L 906.81 566.93 C 906.38 566.79 906.02 566.49 905.85 566.09 Z M 934.98 563.79 C 934.56 563.16 933.92 562.74 933.19 562.59 L 933.19 561.59 C 933.19 559.63 931.68 558.04 929.82 558.04 L 919.16 558.04 L 919.16 559.16 L 929.82 559.16 C 931.06 559.16 932.07 560.25 932.07 561.59 L 932.07 569.08 C 932.07 570.42 931.06 571.51 929.82 571.51 L 910.18 571.51 C 908.94 571.51 907.93 570.42 907.93 569.08 L 907.93 561.59 C 907.93 560.25 908.94 559.16 910.18 559.16 L 912.98 559.16 L 912.98 558.04 L 910.18 558.04 C 908.32 558.04 906.81 559.63 906.81 561.59 L 906.81 562.59 C 906.08 562.74 905.44 563.16 905.02 563.79 C 904.49 564.6 904.41 565.6 904.82 566.54 C 905.17 567.35 905.92 567.92 906.81 568.09 L 906.81 569.08 C 906.81 571.04 908.32 572.63 910.18 572.63 L 916.91 572.63 L 916.91 576 L 918.04 576 L 918.04 572.63 L 921.4 572.63 L 921.4 576 L 922.53 576 L 922.53 572.63 L 929.82 572.63 C 931.68 572.63 933.19 571.04 933.19 569.08 L 933.19 568.09 C 934.08 567.92 934.83 567.35 935.18 566.54 C 935.59 565.6 935.51 564.6 934.98 563.79 Z M 915.23 565.33 C 915.23 566.26 914.47 567.02 913.54 567.02 C 912.62 567.02 911.86 566.26 911.86 565.33 C 911.86 564.4 912.62 563.65 913.54 563.65 C 914.47 563.65 915.23 564.4 915.23 565.33 Z M 910.74 565.33 C 910.74 566.88 912 568.14 913.54 568.14 C 915.09 568.14 916.35 566.88 916.35 565.33 C 916.35 563.79 915.09 562.53 913.54 562.53 C 912 562.53 910.74 563.79 910.74 565.33 Z M 924.77 565.33 C 924.77 564.4 925.53 563.65 926.46 563.65 C 927.38 563.65 928.14 564.4 928.14 565.33 C 928.14 566.26 927.38 567.02 926.46 567.02 C 925.53 567.02 924.77 566.26 924.77 565.33 Z M 929.26 565.33 C 929.26 563.79 928 562.53 926.46 562.53 C 924.91 562.53 923.65 563.79 923.65 565.33 C 923.65 566.88 924.91 568.14 926.46 568.14 C 928 568.14 929.26 566.88 929.26 565.33 Z M 908.49 545.6 C 908.49 545.34 908.71 545.12 908.97 545.12 L 923.09 545.12 L 923.09 554.17 C 923.09 554.44 922.86 554.67 922.59 554.67 L 916.91 554.67 C 916.6 554.67 916.35 554.92 916.35 555.23 L 916.35 558.14 L 913.87 554.89 C 913.76 554.75 913.6 554.67 913.42 554.67 L 908.97 554.67 C 908.71 554.67 908.49 554.45 908.49 554.19 Z M 908.97 555.79 L 913.15 555.79 L 916.47 560.14 C 916.57 560.28 916.74 560.36 916.91 560.36 C 916.97 560.36 917.03 560.35 917.09 560.33 C 917.32 560.26 917.47 560.04 917.47 559.8 L 917.47 555.79 L 922.59 555.79 C 923.48 555.79 924.21 555.06 924.21 554.17 L 924.21 544.86 C 924.21 544.38 923.83 544 923.35 544 L 908.97 544 C 908.09 544 907.37 544.72 907.37 545.6 L 907.37 554.19 C 907.37 555.07 908.09 555.79 908.97 555.79 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="780" y="540" width="160" height="40" fill="none" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><rect x="780" y="460" width="160" height="40" fill="#333333" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><g fill="#F8E7F5" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="14px"><text x="859.5" y="485">own deploy lifecycle</text></g><rect x="1000" y="420" width="160" height="40" fill="#5c5c5c" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><g fill="#ffffff" font-family="Rubik" pointer-events="none" text-anchor="middle" font-size="16px"><text x="1079.5" y="446.5">Account Resources</text></g><rect x="1000" y="500" width="160" height="40" fill="#333333" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><g fill="#F8E7F5" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="14px"><text x="1079.5" y="525">shared between envs</text></g><path d="M 1000 540 L 1040 540 L 1040 580 L 1000 580 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1031.91 561.36 L 1028.77 560.1 L 1028.77 571.46 C 1029.69 571.37 1030.43 571.07 1030.95 570.54 C 1031.92 569.56 1031.91 568.11 1031.91 568.1 Z M 1027.63 571.47 L 1027.63 560.1 L 1024.5 561.36 L 1024.5 568.09 C 1024.51 568.21 1024.64 571.14 1027.63 571.47 Z M 1033.04 568.09 C 1033.05 568.15 1033.08 569.99 1031.77 571.33 C 1030.92 572.2 1029.72 572.64 1028.2 572.64 C 1024.46 572.64 1023.4 569.67 1023.36 568.1 L 1023.36 560.97 C 1023.36 560.74 1023.51 560.53 1023.72 560.44 L 1027.99 558.73 C 1028.13 558.68 1028.28 558.68 1028.42 558.73 L 1032.69 560.44 C 1032.9 560.53 1033.04 560.74 1033.04 560.97 Z M 1034.75 566.97 L 1034.75 559.36 L 1028.2 556.74 L 1021.65 559.36 L 1021.65 566.95 C 1021.65 567 1021.58 570.5 1023.67 572.65 C 1024.77 573.78 1026.29 574.35 1028.2 574.35 C 1030.13 574.35 1031.66 573.78 1032.76 572.64 C 1034.85 570.48 1034.76 567 1034.75 566.97 Z M 1033.58 573.43 C 1032.26 574.8 1030.45 575.49 1028.2 575.49 C 1025.97 575.49 1024.17 574.8 1022.84 573.43 C 1020.42 570.93 1020.51 567.09 1020.52 566.93 L 1020.52 558.98 C 1020.52 558.74 1020.66 558.53 1020.87 558.45 L 1027.99 555.6 C 1028.13 555.55 1028.28 555.55 1028.42 555.6 L 1035.53 558.45 C 1035.75 558.53 1035.89 558.74 1035.89 558.98 L 1035.89 566.95 C 1035.9 567.09 1036 570.92 1033.58 573.43 Z M 1010.3 564.67 L 1018.81 564.67 L 1018.81 565.81 L 1010.3 565.81 C 1006.83 565.81 1004.19 563.5 1004.01 560.32 C 1004 560.19 1004 560.04 1004 559.89 C 1004 555.98 1006.74 554.54 1008.33 554.03 C 1008.32 553.85 1008.31 553.66 1008.31 553.48 C 1008.31 550.37 1010.53 547.12 1013.47 545.92 C 1016.91 544.51 1020.55 545.19 1023.19 547.75 C 1024.08 548.61 1024.76 549.54 1025.25 550.56 C 1025.93 549.97 1026.76 549.65 1027.65 549.65 C 1029.53 549.65 1031.52 551.13 1031.87 553.96 C 1033.11 554.27 1034.67 554.94 1035.77 556.35 L 1034.87 557.05 C 1033.86 555.75 1032.33 555.2 1031.22 554.98 C 1030.97 554.93 1030.78 554.71 1030.77 554.45 C 1030.62 551.94 1029.05 550.79 1027.65 550.79 C 1026.82 550.79 1026.08 551.18 1025.52 551.93 C 1025.39 552.09 1025.19 552.18 1024.98 552.14 C 1024.77 552.11 1024.6 551.97 1024.53 551.78 C 1024.09 550.59 1023.39 549.54 1022.4 548.56 C 1020.09 546.33 1016.91 545.74 1013.9 546.97 C 1011.36 548.01 1009.45 550.81 1009.45 553.48 C 1009.45 553.79 1009.47 554.09 1009.51 554.38 C 1009.54 554.67 1009.36 554.93 1009.08 555 C 1007.61 555.37 1005.14 556.49 1005.14 559.89 C 1005.14 560.01 1005.14 560.12 1005.15 560.24 C 1005.29 562.82 1007.46 564.67 1010.3 564.67 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1080 540 L 1120 540 L 1120 580 L 1080 580 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1094.39 571.89 L 1104.38 571.89 L 1104.38 568.6 C 1104.38 568.31 1104.07 568.07 1103.69 568.07 L 1095.08 568.07 C 1094.7 568.07 1094.39 568.31 1094.39 568.6 Z M 1107.36 573.76 L 1107.36 575.82 L 1107.36 576 L 1106.24 576 L 1106.24 575.82 L 1106.24 573.76 C 1106.24 573.32 1105.98 573.01 1105.75 573.01 L 1093.02 573.01 C 1092.79 573.01 1092.53 573.32 1092.53 573.76 L 1092.53 575.82 L 1092.53 576 L 1091.41 576 L 1091.41 575.82 L 1091.41 573.76 C 1091.41 572.73 1092.13 571.89 1093.02 571.89 L 1093.27 571.89 L 1093.27 568.6 C 1093.27 567.69 1094.08 566.95 1095.08 566.95 L 1103.69 566.95 C 1104.69 566.95 1105.5 567.69 1105.5 568.6 L 1105.5 571.89 L 1105.75 571.89 C 1106.64 571.89 1107.36 572.73 1107.36 573.76 Z M 1103.09 559.54 C 1103.8 559.54 1104.38 558.96 1104.38 558.25 C 1104.38 557.53 1103.8 556.95 1103.09 556.95 C 1102.38 556.95 1101.8 557.53 1101.8 558.25 C 1101.8 558.96 1102.38 559.54 1103.09 559.54 Z M 1102.53 566.28 L 1102.53 560.59 C 1101.47 560.33 1100.68 559.38 1100.68 558.25 C 1100.68 556.92 1101.76 555.83 1103.09 555.83 C 1104.42 555.83 1105.5 556.92 1105.5 558.25 C 1105.5 559.38 1104.71 560.33 1103.65 560.59 L 1103.65 566.28 Z M 1100.64 553.92 C 1100.64 553.21 1100.06 552.63 1099.34 552.63 C 1098.63 552.63 1098.05 553.21 1098.05 553.92 C 1098.05 554.64 1098.63 555.22 1099.34 555.22 C 1100.06 555.22 1100.64 554.64 1100.64 553.92 Z M 1101.76 553.92 C 1101.76 555.05 1100.98 555.98 1099.94 556.25 L 1099.94 566.28 L 1098.83 566.28 L 1098.83 556.28 C 1097.74 556.04 1096.93 555.08 1096.93 553.92 C 1096.93 552.59 1098.01 551.51 1099.34 551.51 C 1100.67 551.51 1101.76 552.59 1101.76 553.92 Z M 1095.68 556.95 C 1094.97 556.95 1094.39 557.53 1094.39 558.25 C 1094.39 558.96 1094.97 559.54 1095.68 559.54 C 1096.39 559.54 1096.97 558.96 1096.97 558.25 C 1096.97 557.53 1096.39 556.95 1095.68 556.95 Z M 1095.68 555.83 C 1097.01 555.83 1098.09 556.92 1098.09 558.25 C 1098.09 559.38 1097.3 560.33 1096.24 560.59 L 1096.24 566.28 L 1095.12 566.28 L 1095.12 560.59 C 1094.06 560.33 1093.27 559.38 1093.27 558.25 C 1093.27 556.92 1094.35 555.83 1095.68 555.83 Z M 1115.67 558.85 C 1115.67 563.14 1112.42 564.66 1109.38 564.66 L 1105 564.66 L 1105 563.54 L 1109.38 563.54 C 1110.59 563.54 1114.55 563.2 1114.55 558.85 C 1114.55 555.7 1112.09 554.55 1110.02 554.13 C 1109.77 554.08 1109.58 553.87 1109.57 553.62 C 1109.42 551.13 1107.97 550.25 1106.77 550.25 C 1105.96 550.25 1105.2 550.64 1104.69 551.31 C 1104.56 551.47 1104.36 551.55 1104.16 551.52 C 1103.95 551.49 1103.78 551.36 1103.71 551.16 C 1103.36 550.2 1102.73 548.85 1101.74 547.9 C 1099.57 545.78 1096.6 545.21 1093.79 546.36 C 1091.5 547.3 1089.63 550.17 1089.63 552.76 C 1089.63 553.04 1089.65 553.33 1089.68 553.61 C 1089.72 553.89 1089.54 554.15 1089.26 554.22 C 1088.11 554.5 1085.45 555.51 1085.45 558.81 C 1085.45 558.92 1085.45 559.04 1085.46 559.15 C 1085.59 561.57 1087.87 563.54 1090.53 563.54 L 1093.75 563.54 L 1093.75 564.66 L 1090.53 564.66 C 1087.29 564.66 1084.51 562.22 1084.34 559.22 C 1084.33 559.08 1084.33 558.94 1084.33 558.81 C 1084.33 556.12 1085.89 554.08 1088.53 553.26 C 1088.52 553.1 1088.51 552.93 1088.51 552.76 C 1088.51 550.08 1090.33 546.57 1093.36 545.33 C 1096.6 544 1100.02 544.66 1102.52 547.09 C 1103.4 547.94 1104.02 549.02 1104.44 549.97 C 1105.1 549.43 1105.91 549.13 1106.77 549.13 C 1108.5 549.13 1110.32 550.37 1110.65 553.13 C 1113.89 553.9 1115.67 555.93 1115.67 558.85 Z" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1040 540 L 1080 540 L 1080 580 L 1040 580 Z" fill="url(#mx-gradient-945df2-1-5a30b5-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1064.96 560.42 C 1065.38 560.81 1065.59 561.33 1065.59 561.99 C 1065.59 562.7 1065.33 563.27 1064.82 563.7 C 1064.31 564.12 1063.62 564.34 1062.75 564.34 C 1062.07 564.34 1061.39 564.19 1060.72 563.9 L 1060.72 563.03 C 1061.51 563.29 1062.19 563.42 1062.75 563.42 C 1063.3 563.42 1063.73 563.29 1064.03 563.05 C 1064.33 562.8 1064.48 562.45 1064.48 561.99 C 1064.48 561.11 1063.92 560.67 1062.81 560.67 C 1062.46 560.67 1062.11 560.69 1061.77 560.72 L 1061.77 560 L 1064.06 557.5 L 1060.83 557.5 L 1060.83 556.61 L 1065.27 556.61 L 1065.27 557.47 L 1063.02 559.85 C 1063.06 559.84 1063.1 559.84 1063.13 559.84 L 1063.24 559.84 C 1063.96 559.84 1064.53 560.03 1064.96 560.42 M 1058.62 560.23 C 1059.06 560.65 1059.28 561.22 1059.28 561.94 C 1059.28 562.66 1059.02 563.24 1058.51 563.68 C 1057.99 564.12 1057.31 564.34 1056.47 564.34 C 1055.73 564.34 1055.03 564.19 1054.38 563.9 L 1054.38 563.03 C 1055.19 563.29 1055.88 563.42 1056.46 563.42 C 1057.01 563.42 1057.43 563.29 1057.73 563.04 C 1058.02 562.79 1058.17 562.43 1058.17 561.96 C 1058.17 561.44 1058.03 561.06 1057.75 560.83 C 1057.48 560.6 1057.03 560.48 1056.4 560.48 C 1055.95 560.48 1055.39 560.52 1054.71 560.59 L 1054.71 559.87 L 1054.92 556.61 L 1058.9 556.61 L 1058.9 557.5 L 1055.83 557.5 L 1055.69 559.72 C 1056.09 559.65 1056.45 559.61 1056.77 559.61 C 1057.56 559.61 1058.17 559.82 1058.62 560.23 M 1066.82 568.23 C 1064.05 568.73 1061.63 569.86 1060 570.78 C 1058.37 569.86 1055.95 568.73 1053.18 568.23 C 1052.4 568.09 1048.52 567.28 1048.52 565.04 C 1048.52 564 1048.89 563.31 1049.61 562.08 C 1050.46 560.6 1051.53 558.77 1051.53 556.13 C 1051.53 554.25 1051.03 552.44 1050.06 550.75 C 1050.17 550.61 1050.29 550.47 1050.4 550.32 C 1051.85 551.04 1053.36 551.41 1054.89 551.41 C 1056.76 551.41 1058.47 550.92 1060 549.95 C 1061.52 550.92 1063.24 551.41 1065.11 551.41 C 1066.64 551.41 1068.15 551.04 1069.6 550.32 C 1069.71 550.47 1069.83 550.61 1069.94 550.75 C 1068.97 552.44 1068.47 554.25 1068.47 556.13 C 1068.47 558.77 1069.54 560.6 1070.39 562.08 C 1071.11 563.31 1071.48 564 1071.48 565.04 C 1071.48 567.28 1067.6 568.09 1066.82 568.23 M 1069.61 556.13 C 1069.61 554.33 1070.12 552.61 1071.12 551 C 1071.25 550.8 1071.24 550.53 1071.08 550.34 C 1070.79 549.99 1070.49 549.61 1070.19 549.24 C 1070.01 549.02 1069.71 548.97 1069.47 549.1 C 1068.06 549.88 1066.6 550.27 1065.11 550.27 C 1063.32 550.27 1061.75 549.79 1060.32 548.8 C 1060.13 548.66 1059.87 548.66 1059.68 548.8 C 1058.25 549.79 1056.68 550.27 1054.89 550.27 C 1053.4 550.27 1051.94 549.88 1050.53 549.1 C 1050.29 548.97 1049.99 549.02 1049.81 549.24 C 1049.51 549.61 1049.21 549.99 1048.92 550.34 C 1048.76 550.53 1048.75 550.8 1048.88 551 C 1049.88 552.61 1050.39 554.33 1050.39 556.13 C 1050.39 558.47 1049.41 560.15 1048.62 561.51 C 1047.85 562.83 1047.38 563.71 1047.38 565.04 C 1047.38 568.11 1051.67 569.12 1052.98 569.36 C 1055.75 569.85 1058.17 571.03 1059.71 571.93 C 1059.8 571.98 1059.9 572 1060 572 C 1060.1 572 1060.2 571.98 1060.29 571.93 C 1061.83 571.03 1064.25 569.85 1067.02 569.36 C 1068.33 569.12 1072.62 568.11 1072.62 565.04 C 1072.62 563.71 1072.15 562.83 1071.38 561.51 C 1070.59 560.15 1069.61 558.47 1069.61 556.13 M 1067.41 571.53 C 1063.91 572.16 1060.98 574.04 1060 574.73 C 1059.02 574.04 1056.09 572.16 1052.59 571.53 C 1045.71 570.29 1045.18 566.25 1045.18 565.04 C 1045.18 563.05 1045.96 561.7 1046.71 560.4 C 1047.43 559.16 1048.18 557.87 1048.18 556.13 C 1048.18 553.38 1046.59 551.44 1045.81 550.65 C 1046.63 549.65 1048.71 547.12 1049.74 545.79 C 1051.29 547.26 1053.1 548.06 1054.89 548.06 C 1056.87 548.06 1058.51 547.25 1060 545.53 C 1061.49 547.25 1063.13 548.06 1065.11 548.06 C 1066.9 548.06 1068.71 547.26 1070.26 545.79 C 1071.29 547.12 1073.37 549.65 1074.19 550.65 C 1073.41 551.44 1071.82 553.38 1071.82 556.13 C 1071.82 557.87 1072.57 559.16 1073.29 560.4 C 1074.04 561.7 1074.82 563.05 1074.82 565.04 C 1074.82 566.25 1074.29 570.29 1067.41 571.53 M 1074.27 559.83 C 1073.57 558.61 1072.96 557.56 1072.96 556.13 C 1072.96 553.12 1075.31 551.17 1075.33 551.15 C 1075.45 551.05 1075.52 550.91 1075.54 550.76 C 1075.55 550.61 1075.51 550.46 1075.41 550.34 C 1075.37 550.3 1071.64 545.77 1070.78 544.59 C 1070.68 544.45 1070.52 544.37 1070.35 544.36 C 1070.18 544.35 1070.02 544.41 1069.9 544.54 C 1068.47 546.07 1066.77 546.92 1065.11 546.92 C 1063.29 546.92 1061.85 546.11 1060.45 544.28 C 1060.24 544 1059.76 544 1059.55 544.28 C 1058.15 546.11 1056.71 546.92 1054.89 546.92 C 1053.23 546.92 1051.53 546.07 1050.1 544.54 C 1049.98 544.41 1049.82 544.34 1049.65 544.36 C 1049.48 544.37 1049.32 544.45 1049.22 544.59 C 1048.36 545.77 1044.63 550.3 1044.59 550.34 C 1044.49 550.46 1044.45 550.61 1044.46 550.76 C 1044.48 550.91 1044.55 551.05 1044.67 551.15 C 1044.69 551.17 1047.04 553.12 1047.04 556.13 C 1047.04 557.56 1046.43 558.61 1045.73 559.83 C 1044.93 561.19 1044.04 562.74 1044.04 565.04 C 1044.04 568.87 1047.16 571.71 1052.39 572.65 C 1056.33 573.36 1059.62 575.86 1059.65 575.88 C 1059.75 575.96 1059.88 576 1060 576 C 1060.12 576 1060.24 575.96 1060.35 575.88 C 1060.38 575.86 1063.66 573.36 1067.61 572.65 C 1072.84 571.71 1075.96 568.87 1075.96 565.04 C 1075.96 562.74 1075.07 561.19 1074.27 559.83" fill="#ffffff" stroke="none" pointer-events="none"/><path d="M 1120 540 L 1160 540 L 1160 580 L 1120 580 Z" fill="url(#mx-gradient-f34482-1-bc1356-1-s-0)" stroke="none" pointer-events="none"/><path d="M 1138.6 550.18 L 1140.84 550.18 L 1140.84 549.05 L 1138.6 549.05 Z M 1134.67 550.18 L 1136.91 550.18 L 1136.91 549.05 L 1134.67 549.05 Z M 1130.74 550.18 L 1132.98 550.18 L 1132.98 549.05 L 1130.74 549.05 Z M 1154.15 566.09 C 1153.98 566.49 1153.62 566.79 1153.19 566.93 L 1153.19 563.76 C 1153.53 563.88 1153.83 564.1 1154.04 564.41 C 1154.36 564.9 1154.4 565.51 1154.15 566.09 Z M 1125.85 566.09 C 1125.6 565.51 1125.64 564.9 1125.96 564.41 C 1126.17 564.1 1126.47 563.88 1126.81 563.76 L 1126.81 566.93 C 1126.38 566.79 1126.02 566.49 1125.85 566.09 Z M 1154.98 563.79 C 1154.56 563.16 1153.92 562.74 1153.19 562.59 L 1153.19 561.59 C 1153.19 559.63 1151.68 558.04 1149.82 558.04 L 1139.16 558.04 L 1139.16 559.16 L 1149.82 559.16 C 1151.06 559.16 1152.07 560.25 1152.07 561.59 L 1152.07 569.08 C 1152.07 570.42 1151.06 571.51 1149.82 571.51 L 1130.18 571.51 C 1128.94 571.51 1127.93 570.42 1127.93 569.08 L 1127.93 561.59 C 1127.93 560.25 1128.94 559.16 1130.18 559.16 L 1132.98 559.16 L 1132.98 558.04 L 1130.18 558.04 C 1128.32 558.04 1126.81 559.63 1126.81 561.59 L 1126.81 562.59 C 1126.08 562.74 1125.44 563.16 1125.02 563.79 C 1124.49 564.6 1124.41 565.6 1124.82 566.54 C 1125.17 567.35 1125.92 567.92 1126.81 568.09 L 1126.81 569.08 C 1126.81 571.04 1128.32 572.63 1130.18 572.63 L 1136.91 572.63 L 1136.91 576 L 1138.04 576 L 1138.04 572.63 L 1141.4 572.63 L 1141.4 576 L 1142.53 576 L 1142.53 572.63 L 1149.82 572.63 C 1151.68 572.63 1153.19 571.04 1153.19 569.08 L 1153.19 568.09 C 1154.08 567.92 1154.83 567.35 1155.18 566.54 C 1155.59 565.6 1155.51 564.6 1154.98 563.79 Z M 1135.23 565.33 C 1135.23 566.26 1134.47 567.02 1133.54 567.02 C 1132.62 567.02 1131.86 566.26 1131.86 565.33 C 1131.86 564.4 1132.62 563.65 1133.54 563.65 C 1134.47 563.65 1135.23 564.4 1135.23 565.33 Z M 1130.74 565.33 C 1130.74 566.88 1132 568.14 1133.54 568.14 C 1135.09 568.14 1136.35 566.88 1136.35 565.33 C 1136.35 563.79 1135.09 562.53 1133.54 562.53 C 1132 562.53 1130.74 563.79 1130.74 565.33 Z M 1144.77 565.33 C 1144.77 564.4 1145.53 563.65 1146.46 563.65 C 1147.38 563.65 1148.14 564.4 1148.14 565.33 C 1148.14 566.26 1147.38 567.02 1146.46 567.02 C 1145.53 567.02 1144.77 566.26 1144.77 565.33 Z M 1149.26 565.33 C 1149.26 563.79 1148 562.53 1146.46 562.53 C 1144.91 562.53 1143.65 563.79 1143.65 565.33 C 1143.65 566.88 1144.91 568.14 1146.46 568.14 C 1148 568.14 1149.26 566.88 1149.26 565.33 Z M 1128.49 545.6 C 1128.49 545.34 1128.71 545.12 1128.97 545.12 L 1143.09 545.12 L 1143.09 554.17 C 1143.09 554.44 1142.86 554.67 1142.59 554.67 L 1136.91 554.67 C 1136.6 554.67 1136.35 554.92 1136.35 555.23 L 1136.35 558.14 L 1133.87 554.89 C 1133.76 554.75 1133.6 554.67 1133.42 554.67 L 1128.97 554.67 C 1128.71 554.67 1128.49 554.45 1128.49 554.19 Z M 1128.97 555.79 L 1133.15 555.79 L 1136.47 560.14 C 1136.57 560.28 1136.74 560.36 1136.91 560.36 C 1136.97 560.36 1137.03 560.35 1137.09 560.33 C 1137.32 560.26 1137.47 560.04 1137.47 559.8 L 1137.47 555.79 L 1142.59 555.79 C 1143.48 555.79 1144.21 555.06 1144.21 554.17 L 1144.21 544.86 C 1144.21 544.38 1143.83 544 1143.35 544 L 1128.97 544 C 1128.09 544 1127.37 544.72 1127.37 545.6 L 1127.37 554.19 C 1127.37 555.07 1128.09 555.79 1128.97 555.79 Z" fill="#ffffff" stroke="none" pointer-events="none"/><rect x="1000" y="540" width="160" height="40" fill="none" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><rect x="1000" y="460" width="160" height="40" fill="#333333" stroke="#5c5c5c" stroke-width="2" pointer-events="none"/><g fill="#F8E7F5" font-family="Rubik" font-style="italic" pointer-events="none" text-anchor="middle" font-size="14px"><text x="1079.5" y="485">own deploy lifecycle</text></g></g></svg>
@@ -0,0 +1 @@
1
+ <mxfile host="Electron" modified="2022-08-11T13:55:15.670Z" agent="5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/15.7.3 Chrome/91.0.4472.164 Electron/13.6.1 Safari/537.36" etag="wVBX2-edF69KoK32ahBh" version="15.7.3" type="device" pages="3"><diagram name="1x" id="uFjs57e3jOekW_dEIfcn">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</diagram><diagram id="Qsk9rzIUu03gKV18Ktm-" name="2x">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</diagram><diagram name="3x" id="wg3zOe1cu7gEPdYx5Pz-">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</diagram></mxfile>
Binary file
@@ -0,0 +1,61 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg width="100%" height="100%" viewBox="0 0 1700 850" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
4
+ <g id="Artboard1" transform="matrix(2.45374,0,0,1.0625,-1700,-637.5)">
5
+ <rect x="692.82" y="600" width="692.82" height="800" style="fill:none;"/>
6
+ <g transform="matrix(0.407529,0,0,0.943502,427.837,56.4983)">
7
+ <g id="bg" transform="matrix(1,0,0,0.997506,-0.179682,2.49377)">
8
+ <path d="M692.82,800L1039.23,600L1385.64,800.008L1385.64,1200L1039.23,1400L692.827,1200L692.82,800Z" style="fill:rgb(140,43,229);"/>
9
+ </g>
10
+ <g transform="matrix(0.866051,-0.498768,1.00003,0.575927,-0.210168,2.4645)">
11
+ <rect x="-400" y="1039.23" width="400" height="346.41" style="fill:rgb(140,43,229);"/>
12
+ </g>
13
+ <g transform="matrix(0.866051,-0.498768,5.55128e-17,1.15185,-0.210168,2.4645)">
14
+ <rect x="1200" y="1385.64" width="400" height="346.41" style="fill:rgb(179,43,229);"/>
15
+ </g>
16
+ <g transform="matrix(0.866051,0.498768,-5.55128e-17,1.15185,-0.210168,2.4645)">
17
+ <rect x="800" y="346.41" width="400" height="346.41" style="fill:rgb(124,16,187);"/>
18
+ </g>
19
+ </g>
20
+ <g transform="matrix(1.76471,2.35294,1.94833e-17,4.70588,738.34,924.699)">
21
+ <path d="M0,5.68L0.003,0L22.561,0.045L22.636,22.621L0,22.618L0.033,8.46L16.996,8.493L16.954,5.632L0,5.68ZM16.987,16.968L16.99,14.074L5.667,14.11L5.685,16.959L16.987,16.968Z" style="fill:white;"/>
22
+ <path d="M25.367,31.059L25.367,25.379L47.925,25.424L48,48L25.364,47.997L25.4,33.839L42.357,33.872L42.315,31.011L25.367,31.059ZM42.348,42.347L42.354,39.453L31.033,39.492L31.051,42.338L42.348,42.347Z" style="fill:white;"/>
23
+ <path d="M31.058,0.008L31.096,16.964L48,16.963L47.989,22.614L25.373,22.621L25.364,0L31.058,0.008Z" style="fill:white;fill-rule:nonzero;"/>
24
+ <path d="M22.636,25.379L22.598,47.966L17.011,48L16.918,30.972L14.212,30.972L14.14,48L8.472,48L8.5,30.972L5.741,30.972L5.703,48L0.022,48L0,25.393L22.636,25.379Z" style="fill:white;fill-rule:nonzero;"/>
25
+ </g>
26
+ <g transform="matrix(0.279914,-0.373219,1.55384e-17,0.746438,390.454,250.733)">
27
+ <g transform="matrix(186.362,0,0,186.362,1689.35,2136.98)">
28
+ <path d="M0.567,-0.286C0.544,-0.183 0.476,-0.135 0.391,-0.135C0.285,-0.135 0.2,-0.221 0.2,-0.335C0.2,-0.449 0.285,-0.534 0.391,-0.534C0.477,-0.534 0.545,-0.487 0.566,-0.387L0.728,-0.428C0.696,-0.587 0.556,-0.685 0.391,-0.685C0.192,-0.685 0.035,-0.531 0.035,-0.335C0.035,-0.138 0.192,0.015 0.391,0.015C0.563,0.015 0.698,-0.083 0.729,-0.251L0.567,-0.286Z" style="fill:rgb(235,235,235);fill-rule:nonzero;"/>
29
+ </g>
30
+ <g transform="matrix(186.362,0,0,186.362,1831.73,2136.98)">
31
+ <path d="M0.058,-0.67L0.058,-0L0.323,-0C0.544,-0 0.69,-0.136 0.69,-0.335C0.69,-0.534 0.544,-0.67 0.323,-0.67L0.058,-0.67ZM0.223,-0.143L0.223,-0.527L0.317,-0.527C0.442,-0.527 0.524,-0.451 0.524,-0.335C0.524,-0.219 0.442,-0.143 0.317,-0.143L0.223,-0.143Z" style="fill:rgb(235,235,235);fill-rule:nonzero;"/>
32
+ </g>
33
+ <g transform="matrix(186.362,0,0,186.362,1966.84,2136.98)">
34
+ <path d="M0.717,-0L0.448,-0.383L0.689,-0.67L0.502,-0.67L0.223,-0.339L0.223,-0.67L0.058,-0.67L0.058,-0L0.223,-0L0.223,-0.115L0.341,-0.256L0.517,-0L0.717,-0Z" style="fill:rgb(235,235,235);fill-rule:nonzero;"/>
35
+ </g>
36
+ </g>
37
+ <g transform="matrix(0.470588,0,0,0.941176,605.334,634.916)">
38
+ <g transform="matrix(192,0,0,192,906.958,452.221)">
39
+ <path d="M0.058,-0.67L0.058,-0L0.223,-0L0.223,-0.205L0.381,-0.205C0.536,-0.205 0.634,-0.298 0.634,-0.439C0.634,-0.577 0.539,-0.67 0.388,-0.67L0.058,-0.67ZM0.223,-0.343L0.223,-0.529L0.369,-0.529C0.433,-0.529 0.472,-0.491 0.472,-0.437C0.472,-0.38 0.433,-0.343 0.369,-0.343L0.223,-0.343Z" style="fill:rgb(179,43,229);fill-rule:nonzero;"/>
40
+ </g>
41
+ <g transform="matrix(192,0,0,192,1034.45,452.221)">
42
+ <path d="M0.391,-0.509C0.309,-0.509 0.254,-0.466 0.218,-0.406L0.218,-0.502L0.058,-0.502L0.058,-0L0.218,-0L0.218,-0.157C0.218,-0.287 0.279,-0.345 0.391,-0.345L0.42,-0.345L0.427,-0.505C0.415,-0.508 0.405,-0.509 0.391,-0.509Z" style="fill:rgb(179,43,229);fill-rule:nonzero;"/>
43
+ </g>
44
+ <g transform="matrix(192,0,0,192,1117.85,452.221)">
45
+ <path d="M0.303,-0.515C0.151,-0.515 0.025,-0.409 0.025,-0.251C0.025,-0.092 0.151,0.014 0.303,0.014C0.452,0.014 0.578,-0.092 0.578,-0.251C0.578,-0.409 0.452,-0.515 0.303,-0.515ZM0.303,-0.121C0.238,-0.121 0.179,-0.172 0.179,-0.251C0.179,-0.329 0.238,-0.381 0.303,-0.381C0.365,-0.381 0.424,-0.329 0.424,-0.251C0.424,-0.172 0.365,-0.121 0.303,-0.121Z" style="fill:rgb(179,43,229);fill-rule:nonzero;"/>
46
+ </g>
47
+ <g transform="matrix(192,0,0,192,1233.63,452.221)">
48
+ <path d="M0.157,-0.741C0.103,-0.741 0.065,-0.699 0.065,-0.65C0.065,-0.599 0.103,-0.561 0.157,-0.561C0.211,-0.561 0.25,-0.599 0.25,-0.65C0.25,-0.699 0.211,-0.741 0.157,-0.741ZM-0.027,0.229C0,0.24 0.032,0.25 0.078,0.25C0.175,0.25 0.238,0.186 0.238,0.089L0.238,-0.502L0.079,-0.502L0.079,0.071C0.079,0.095 0.062,0.111 0.037,0.111C0.027,0.111 0.013,0.108 -0.003,0.103L-0.027,0.229Z" style="fill:rgb(179,43,229);fill-rule:nonzero;"/>
49
+ </g>
50
+ <g transform="matrix(192,0,0,192,1291.8,452.221)">
51
+ <path d="M0.55,-0.251C0.547,-0.415 0.433,-0.517 0.291,-0.517C0.145,-0.517 0.025,-0.409 0.025,-0.251C0.025,-0.092 0.145,0.015 0.29,0.015C0.405,0.015 0.496,-0.036 0.539,-0.142L0.397,-0.171C0.37,-0.122 0.327,-0.113 0.29,-0.113C0.236,-0.113 0.195,-0.15 0.182,-0.21L0.55,-0.21L0.55,-0.251ZM0.291,-0.387C0.337,-0.387 0.377,-0.362 0.392,-0.308L0.185,-0.308C0.2,-0.359 0.246,-0.387 0.291,-0.387Z" style="fill:rgb(179,43,229);fill-rule:nonzero;"/>
52
+ </g>
53
+ <g transform="matrix(192,0,0,192,1402.2,452.221)">
54
+ <path d="M0.299,-0.125C0.227,-0.125 0.179,-0.177 0.179,-0.251C0.179,-0.324 0.227,-0.377 0.299,-0.377C0.35,-0.377 0.391,-0.349 0.405,-0.288L0.555,-0.324C0.527,-0.442 0.421,-0.517 0.299,-0.517C0.149,-0.517 0.025,-0.409 0.025,-0.251C0.025,-0.092 0.149,0.015 0.299,0.015C0.424,0.015 0.53,-0.062 0.555,-0.181L0.408,-0.213C0.391,-0.152 0.35,-0.125 0.299,-0.125Z" style="fill:rgb(179,43,229);fill-rule:nonzero;"/>
55
+ </g>
56
+ <g transform="matrix(192,0,0,192,1513.56,452.221)">
57
+ <path d="M0.393,-0.148C0.372,-0.136 0.342,-0.128 0.32,-0.128C0.278,-0.128 0.253,-0.149 0.253,-0.201L0.253,-0.375L0.401,-0.375L0.401,-0.502L0.253,-0.502L0.253,-0.67L0.093,-0.67L0.093,-0.502L0.002,-0.502L0.002,-0.375L0.093,-0.375L0.093,-0.185C0.093,-0.053 0.168,0.015 0.293,0.015C0.35,0.015 0.391,-0.001 0.43,-0.022L0.393,-0.148Z" style="fill:rgb(179,43,229);fill-rule:nonzero;"/>
58
+ </g>
59
+ </g>
60
+ </g>
61
+ </svg>