@magmamath/students-features 0.6.12-rc.0 → 0.6.13

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 (185) hide show
  1. package/dist/commonjs/features/exampleSolution/ExampleSolutionModal.js +31 -0
  2. package/dist/commonjs/features/exampleSolution/ExampleSolutionModal.js.map +1 -0
  3. package/dist/commonjs/features/exampleSolution/assets/grid.png +0 -0
  4. package/dist/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.js +97 -0
  5. package/dist/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.js.map +1 -0
  6. package/dist/commonjs/features/exampleSolution/components/LavaIcon.js +44 -0
  7. package/dist/commonjs/features/exampleSolution/components/LavaIcon.js.map +1 -0
  8. package/dist/commonjs/features/exampleSolution/components/MessageBlock.js +61 -0
  9. package/dist/commonjs/features/exampleSolution/components/MessageBlock.js.map +1 -0
  10. package/dist/commonjs/features/exampleSolution/components/QuestionSection.js +68 -0
  11. package/dist/commonjs/features/exampleSolution/components/QuestionSection.js.map +1 -0
  12. package/dist/commonjs/features/exampleSolution/components/SolutionSection.js +75 -0
  13. package/dist/commonjs/features/exampleSolution/components/SolutionSection.js.map +1 -0
  14. package/dist/commonjs/features/exampleSolution/constants.js +13 -0
  15. package/dist/commonjs/features/exampleSolution/constants.js.map +1 -0
  16. package/dist/commonjs/features/exampleSolution/hooks/useExampleSolution.js +61 -0
  17. package/dist/commonjs/features/exampleSolution/hooks/useExampleSolution.js.map +1 -0
  18. package/dist/commonjs/features/exampleSolution/index.js +39 -0
  19. package/dist/commonjs/features/exampleSolution/index.js.map +1 -0
  20. package/dist/commonjs/features/exampleSolution/model/ExampleSolution.model.js +22 -0
  21. package/dist/commonjs/features/exampleSolution/model/ExampleSolution.model.js.map +1 -0
  22. package/dist/commonjs/features/exampleSolution/model/ExampleSolutionApi.js +32 -0
  23. package/dist/commonjs/features/exampleSolution/model/ExampleSolutionApi.js.map +1 -0
  24. package/dist/commonjs/features/exampleSolution/model/ExampleSolutionCache.js +18 -0
  25. package/dist/commonjs/features/exampleSolution/model/ExampleSolutionCache.js.map +1 -0
  26. package/dist/commonjs/features/exampleSolution/types.js +6 -0
  27. package/dist/commonjs/features/exampleSolution/types.js.map +1 -0
  28. package/dist/commonjs/features/problemSelector/components/ProblemSelectorButton.js +1 -1
  29. package/dist/commonjs/features/problemSelector/components/ProblemSelectorButton.js.map +1 -1
  30. package/dist/commonjs/index.js +24 -0
  31. package/dist/commonjs/index.js.map +1 -1
  32. package/dist/commonjs/shared/icons/ExcitedLavaIcon.js +681 -0
  33. package/dist/commonjs/shared/icons/ExcitedLavaIcon.js.map +1 -0
  34. package/dist/commonjs/shared/icons/LavaIconInGlasses.js +616 -0
  35. package/dist/commonjs/shared/icons/LavaIconInGlasses.js.map +1 -0
  36. package/dist/commonjs/shared/icons/index.js +204 -0
  37. package/dist/commonjs/shared/icons/index.js.map +1 -0
  38. package/dist/commonjs/shared/translation/localization/ca.json +6 -0
  39. package/dist/commonjs/shared/translation/localization/en.json +6 -0
  40. package/dist/commonjs/shared/translation/localization/gb.json +6 -0
  41. package/dist/commonjs/shared/translation/localization/sct.json +6 -0
  42. package/dist/commonjs/shared/translation/localization/sw.json +6 -0
  43. package/dist/module/features/exampleSolution/ExampleSolutionModal.js +25 -0
  44. package/dist/module/features/exampleSolution/ExampleSolutionModal.js.map +1 -0
  45. package/dist/module/features/exampleSolution/assets/grid.png +0 -0
  46. package/dist/module/features/exampleSolution/components/ExampleSolutionModalContent.js +91 -0
  47. package/dist/module/features/exampleSolution/components/ExampleSolutionModalContent.js.map +1 -0
  48. package/dist/module/features/exampleSolution/components/LavaIcon.js +36 -0
  49. package/dist/module/features/exampleSolution/components/LavaIcon.js.map +1 -0
  50. package/dist/module/features/exampleSolution/components/MessageBlock.js +53 -0
  51. package/dist/module/features/exampleSolution/components/MessageBlock.js.map +1 -0
  52. package/dist/module/features/exampleSolution/components/QuestionSection.js +60 -0
  53. package/dist/module/features/exampleSolution/components/QuestionSection.js.map +1 -0
  54. package/dist/module/features/exampleSolution/components/SolutionSection.js +67 -0
  55. package/dist/module/features/exampleSolution/components/SolutionSection.js.map +1 -0
  56. package/dist/module/features/exampleSolution/constants.js +9 -0
  57. package/dist/module/features/exampleSolution/constants.js.map +1 -0
  58. package/dist/module/features/exampleSolution/hooks/useExampleSolution.js +56 -0
  59. package/dist/module/features/exampleSolution/hooks/useExampleSolution.js.map +1 -0
  60. package/dist/module/features/exampleSolution/index.js +6 -0
  61. package/dist/module/features/exampleSolution/index.js.map +1 -0
  62. package/dist/module/features/exampleSolution/model/ExampleSolution.model.js +17 -0
  63. package/dist/module/features/exampleSolution/model/ExampleSolution.model.js.map +1 -0
  64. package/dist/module/features/exampleSolution/model/ExampleSolutionApi.js +27 -0
  65. package/dist/module/features/exampleSolution/model/ExampleSolutionApi.js.map +1 -0
  66. package/dist/module/features/exampleSolution/model/ExampleSolutionCache.js +13 -0
  67. package/dist/module/features/exampleSolution/model/ExampleSolutionCache.js.map +1 -0
  68. package/dist/module/features/exampleSolution/types.js +4 -0
  69. package/dist/module/features/exampleSolution/types.js.map +1 -0
  70. package/dist/module/features/problemSelector/components/ProblemSelectorButton.js +1 -1
  71. package/dist/module/features/problemSelector/components/ProblemSelectorButton.js.map +1 -1
  72. package/dist/module/index.js +2 -0
  73. package/dist/module/index.js.map +1 -1
  74. package/dist/module/shared/icons/ExcitedLavaIcon.js +673 -0
  75. package/dist/module/shared/icons/ExcitedLavaIcon.js.map +1 -0
  76. package/dist/module/shared/icons/LavaIconInGlasses.js +608 -0
  77. package/dist/module/shared/icons/LavaIconInGlasses.js.map +1 -0
  78. package/dist/module/shared/icons/index.js +21 -0
  79. package/dist/module/shared/icons/index.js.map +1 -0
  80. package/dist/module/shared/translation/localization/ca.json +6 -0
  81. package/dist/module/shared/translation/localization/en.json +6 -0
  82. package/dist/module/shared/translation/localization/gb.json +6 -0
  83. package/dist/module/shared/translation/localization/sct.json +6 -0
  84. package/dist/module/shared/translation/localization/sw.json +6 -0
  85. package/dist/typescript/commonjs/features/exampleSolution/ExampleSolutionModal.d.ts +11 -0
  86. package/dist/typescript/commonjs/features/exampleSolution/ExampleSolutionModal.d.ts.map +1 -0
  87. package/dist/typescript/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.d.ts +4 -0
  88. package/dist/typescript/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.d.ts.map +1 -0
  89. package/dist/typescript/commonjs/features/exampleSolution/components/LavaIcon.d.ts +10 -0
  90. package/dist/typescript/commonjs/features/exampleSolution/components/LavaIcon.d.ts.map +1 -0
  91. package/dist/typescript/commonjs/features/exampleSolution/components/MessageBlock.d.ts +10 -0
  92. package/dist/typescript/commonjs/features/exampleSolution/components/MessageBlock.d.ts.map +1 -0
  93. package/dist/typescript/commonjs/features/exampleSolution/components/QuestionSection.d.ts +9 -0
  94. package/dist/typescript/commonjs/features/exampleSolution/components/QuestionSection.d.ts.map +1 -0
  95. package/dist/typescript/commonjs/features/exampleSolution/components/SolutionSection.d.ts +9 -0
  96. package/dist/typescript/commonjs/features/exampleSolution/components/SolutionSection.d.ts.map +1 -0
  97. package/dist/typescript/commonjs/features/exampleSolution/constants.d.ts +6 -0
  98. package/dist/typescript/commonjs/features/exampleSolution/constants.d.ts.map +1 -0
  99. package/dist/typescript/commonjs/features/exampleSolution/hooks/useExampleSolution.d.ts +9 -0
  100. package/dist/typescript/commonjs/features/exampleSolution/hooks/useExampleSolution.d.ts.map +1 -0
  101. package/dist/typescript/commonjs/features/exampleSolution/index.d.ts +4 -0
  102. package/dist/typescript/commonjs/features/exampleSolution/index.d.ts.map +1 -0
  103. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolution.model.d.ts +9 -0
  104. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolution.model.d.ts.map +1 -0
  105. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionApi.d.ts +13 -0
  106. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionApi.d.ts.map +1 -0
  107. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionCache.d.ts +11 -0
  108. package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionCache.d.ts.map +1 -0
  109. package/dist/typescript/commonjs/features/exampleSolution/types.d.ts +26 -0
  110. package/dist/typescript/commonjs/features/exampleSolution/types.d.ts.map +1 -0
  111. package/dist/typescript/commonjs/index.d.ts +2 -0
  112. package/dist/typescript/commonjs/index.d.ts.map +1 -1
  113. package/dist/typescript/commonjs/shared/icons/ExcitedLavaIcon.d.ts +4 -0
  114. package/dist/typescript/commonjs/shared/icons/ExcitedLavaIcon.d.ts.map +1 -0
  115. package/dist/typescript/commonjs/shared/icons/LavaIconInGlasses.d.ts +4 -0
  116. package/dist/typescript/commonjs/shared/icons/LavaIconInGlasses.d.ts.map +1 -0
  117. package/dist/typescript/commonjs/shared/icons/index.d.ts +19 -0
  118. package/dist/typescript/commonjs/shared/icons/index.d.ts.map +1 -0
  119. package/dist/typescript/commonjs/shared/translation/constants.d.ts +30 -0
  120. package/dist/typescript/commonjs/shared/translation/constants.d.ts.map +1 -1
  121. package/dist/typescript/commonjs/shared/translation/model.d.ts +12 -0
  122. package/dist/typescript/commonjs/shared/translation/model.d.ts.map +1 -1
  123. package/dist/typescript/module/features/exampleSolution/ExampleSolutionModal.d.ts +11 -0
  124. package/dist/typescript/module/features/exampleSolution/ExampleSolutionModal.d.ts.map +1 -0
  125. package/dist/typescript/module/features/exampleSolution/components/ExampleSolutionModalContent.d.ts +4 -0
  126. package/dist/typescript/module/features/exampleSolution/components/ExampleSolutionModalContent.d.ts.map +1 -0
  127. package/dist/typescript/module/features/exampleSolution/components/LavaIcon.d.ts +10 -0
  128. package/dist/typescript/module/features/exampleSolution/components/LavaIcon.d.ts.map +1 -0
  129. package/dist/typescript/module/features/exampleSolution/components/MessageBlock.d.ts +10 -0
  130. package/dist/typescript/module/features/exampleSolution/components/MessageBlock.d.ts.map +1 -0
  131. package/dist/typescript/module/features/exampleSolution/components/QuestionSection.d.ts +9 -0
  132. package/dist/typescript/module/features/exampleSolution/components/QuestionSection.d.ts.map +1 -0
  133. package/dist/typescript/module/features/exampleSolution/components/SolutionSection.d.ts +9 -0
  134. package/dist/typescript/module/features/exampleSolution/components/SolutionSection.d.ts.map +1 -0
  135. package/dist/typescript/module/features/exampleSolution/constants.d.ts +6 -0
  136. package/dist/typescript/module/features/exampleSolution/constants.d.ts.map +1 -0
  137. package/dist/typescript/module/features/exampleSolution/hooks/useExampleSolution.d.ts +9 -0
  138. package/dist/typescript/module/features/exampleSolution/hooks/useExampleSolution.d.ts.map +1 -0
  139. package/dist/typescript/module/features/exampleSolution/index.d.ts +4 -0
  140. package/dist/typescript/module/features/exampleSolution/index.d.ts.map +1 -0
  141. package/dist/typescript/module/features/exampleSolution/model/ExampleSolution.model.d.ts +9 -0
  142. package/dist/typescript/module/features/exampleSolution/model/ExampleSolution.model.d.ts.map +1 -0
  143. package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionApi.d.ts +13 -0
  144. package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionApi.d.ts.map +1 -0
  145. package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionCache.d.ts +11 -0
  146. package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionCache.d.ts.map +1 -0
  147. package/dist/typescript/module/features/exampleSolution/types.d.ts +26 -0
  148. package/dist/typescript/module/features/exampleSolution/types.d.ts.map +1 -0
  149. package/dist/typescript/module/index.d.ts +2 -0
  150. package/dist/typescript/module/index.d.ts.map +1 -1
  151. package/dist/typescript/module/shared/icons/ExcitedLavaIcon.d.ts +4 -0
  152. package/dist/typescript/module/shared/icons/ExcitedLavaIcon.d.ts.map +1 -0
  153. package/dist/typescript/module/shared/icons/LavaIconInGlasses.d.ts +4 -0
  154. package/dist/typescript/module/shared/icons/LavaIconInGlasses.d.ts.map +1 -0
  155. package/dist/typescript/module/shared/icons/index.d.ts +19 -0
  156. package/dist/typescript/module/shared/icons/index.d.ts.map +1 -0
  157. package/dist/typescript/module/shared/translation/constants.d.ts +30 -0
  158. package/dist/typescript/module/shared/translation/constants.d.ts.map +1 -1
  159. package/dist/typescript/module/shared/translation/model.d.ts +12 -0
  160. package/dist/typescript/module/shared/translation/model.d.ts.map +1 -1
  161. package/package.json +7 -3
  162. package/src/features/exampleSolution/ExampleSolutionModal.tsx +29 -0
  163. package/src/features/exampleSolution/assets/grid.png +0 -0
  164. package/src/features/exampleSolution/components/ExampleSolutionModalContent.tsx +71 -0
  165. package/src/features/exampleSolution/components/LavaIcon.tsx +35 -0
  166. package/src/features/exampleSolution/components/MessageBlock.tsx +67 -0
  167. package/src/features/exampleSolution/components/QuestionSection.tsx +56 -0
  168. package/src/features/exampleSolution/components/SolutionSection.tsx +69 -0
  169. package/src/features/exampleSolution/constants.ts +5 -0
  170. package/src/features/exampleSolution/hooks/useExampleSolution.ts +66 -0
  171. package/src/features/exampleSolution/index.ts +3 -0
  172. package/src/features/exampleSolution/model/ExampleSolution.model.ts +12 -0
  173. package/src/features/exampleSolution/model/ExampleSolutionApi.ts +33 -0
  174. package/src/features/exampleSolution/model/ExampleSolutionCache.ts +20 -0
  175. package/src/features/exampleSolution/types.ts +26 -0
  176. package/src/features/problemSelector/components/ProblemSelectorButton.tsx +1 -1
  177. package/src/index.ts +2 -0
  178. package/src/shared/icons/ExcitedLavaIcon.tsx +541 -0
  179. package/src/shared/icons/LavaIconInGlasses.tsx +489 -0
  180. package/src/shared/icons/index.ts +18 -0
  181. package/src/shared/translation/localization/ca.json +6 -0
  182. package/src/shared/translation/localization/en.json +6 -0
  183. package/src/shared/translation/localization/gb.json +6 -0
  184. package/src/shared/translation/localization/sct.json +6 -0
  185. package/src/shared/translation/localization/sw.json +6 -0
@@ -0,0 +1,541 @@
1
+ import React from 'react'
2
+ import Svg, { Defs, LinearGradient, Path, Stop, G, RadialGradient } from 'react-native-svg'
3
+ import { IconProps } from './icon.types'
4
+
5
+ export const ExcitedLavaIcon = ({ width = 80, height = 100 }: IconProps) => {
6
+ return (
7
+ <Svg width={width} height={height} viewBox="0 0 388 557" fill="none">
8
+ <Path
9
+ d="M379.929 297.928c-2.36 5.62-5.13 11.11-8.12 16.56-13.34 24.33-26.89 44.61-19.11 83.72 7.77 39.11 3.77 107.34-57.34 137.78-11.64 5.8-24.81 10.21-38.81 13.43-4.12.95-8.32 1.8-12.57 2.55-4.9.86-9.87 1.6-14.88 2.2-9.54 1.17-19.25 1.89-28.92 2.22-6.65.23-13.28.28-19.84.15-26.57-.49-51.87-3.72-71.8-8.52-8.02-1.93-15.17-4.11-21.18-6.47-.12-.05-.24-.09-.36-.14-43.44-17.2-88.3-56.56-86.97-146.53 1.33-90.22 51.11-122.22 87.78-134 36.66-11.78 77.11-36.67 78.44-85.11.87-31.56-8.73-49.63-10.25-71.96-.81-11.96.7-25.14 7.36-42.26 2.44-5.65 5-10.82 7.65-15.55 1.92-3.42 3.88-6.62 5.87-9.59 23.93-35.63 52.86-39.94 66.48-34.42.41.17.82.34 1.21.53.23.1.46.21.69.32.67.32 1.31.66 1.92 1.03.29.17.58.35.86.53.28.17.56.36.82.54.27.19.53.37.79.57.77.57 1.48 1.16 2.15 1.79.22.2.44.4.64.61 3.18 3.16 5.15 6.76 6.37 10.01.16.41.3.83.43 1.23.29.87.53 1.71.71 2.49.25 1.15-1.27 1.84-1.94.85-.59-.89-1.3-1.83-2.12-2.76-.19-.22-.39-.45-.61-.67-.1-.13-.23-.25-.35-.37-.16-.17-.33-.34-.5-.5-.41-.41-.85-.8-1.32-1.19-.26-.22-.53-.43-.81-.64-.49-.36-1-.72-1.54-1.05-.15-.1-.31-.19-.47-.28-.22-.13-.45-.26-.68-.38-.25-.14-.5-.26-.76-.39-.14-.07-.28-.13-.43-.19a3.9 3.9 0 00-.47-.2c-.17-.08-.35-.15-.53-.22-.66-.25-1.34-.48-2.06-.66-11.22-2.89-36 21.67-38.66 57.78-.2 2.69-.14 5.31.14 7.86.68 6.13 2.67 11.88 5.6 17.29 12.25 22.67 40.93 39.16 58.37 50.74 23.33 15.5 38.33 27.33 47.16 49.33.46 1.15.9 2.29 1.31 3.42 2.48 6.77 4.08 13.16 4.76 19.57 1.39 12.98-1.01 26-7.57 42.18-10.33 25.5 9 42 26.34 18.33 2.76-3.77 5.4-7.98 7.76-12.52 1.78-3.42 3.4-7.02 4.78-10.74 3.11-8.42 4.98-17.48 4.75-26.5-.01-.36-.02-.72-.04-1.08-.01-.35-.03-.71-.06-1.07-.02-.36-.05-.72-.08-1.08-.06-.79-.15-1.58-.25-2.36-.06-.47-.12-.94-.2-1.4-.05-.34-.1-.68-.17-1.02-.08-.49-.18-.98-.28-1.48-.1-.49-.21-.98-.32-1.47-.06-.26-.12-.51-.19-.76-.06-.26-.13-.53-.21-.8-.21-.8-.45-1.59-.71-2.39-.08-.26-.17-.51-.26-.77l-.33-.93c-.17-.45-.34-.9-.52-1.35-.15-.38-.31-.75-.47-1.12-.1-.24-.2-.47-.31-.7l-.01-.02c-.19-.45-.4-.89-.62-1.33-.08-.17-.16-.34-.25-.51-.08-.17-.17-.34-.26-.51-.39-.77-.81-1.54-1.26-2.29-.22-.38-.44-.75-.68-1.13-.17-.28-.35-.56-.53-.83-.36-.57-.74-1.12-1.13-1.67-.19-.28-.38-.55-.58-.82-.02-.02-.03-.04-.04-.05-.27-.36-.54-.72-.81-1.07-.77-.99-1.58-1.96-2.44-2.92-1.66-1.85.5-4.63 2.69-3.47.26.14.52.28.78.43 1.41.79 2.89 1.68 4.41 2.68.46.31.92.62 1.38.94.3.2.6.42.89.63 1.04.75 2.1 1.55 3.15 2.4.35.28.71.57 1.06.87.19.15.37.31.55.47 2.18 1.86 4.35 3.96 6.46 6.32.27.31.55.62.82.94.3.34.59.68.87 1.03.35.42.7.85 1.04 1.29 1.22 1.55 2.4 3.19 3.52 4.93.16.24.31.47.46.71.32.5.63 1.02.94 1.54.15.26.31.52.46.78.16.27.31.53.45.8.15.26.3.54.44.81.31.55.6 1.11.88 1.68a66.915 66.915 0 012.01 4.34c.13.31.26.61.38.92a82.877 82.877 0 011.08 2.82c9.57 26.77 6.29 47.82-1.88 67.27z"
10
+ fill="url(#paint0_linear_653_516)"
11
+ />
12
+ <G opacity={0.37}>
13
+ <Path
14
+ d="M270.92 250.768c-.22 1.11-.44 2.19-.66 3.25-1.44-1.87-4.19-7.5-4.68-23.59-.66-21.98-5.76-32.2-10.43-40.86.18.55 3.47 10.42 2.66 21.92 0 0-4-10.5-10.17-7.33-6.17 3.16-3.5 13.5-3.5 13.5s10.5 34.16 2.83 62.33c-7.66 28.15-18.99 25-21.65 14.52.27.44 4.01 6.29 9.15-3.35 5.34-10 14.17-54-5.33-96.34-19.5-42.33-30.33-40.83-37.33-67.66-6.54-25.09-3.62-39.53-3.22-41.31-.42 1.42-3.23 10.42-8.45 11.64-5.67 1.33-9.17-2.33-9.17-2.33s-6.44 13.62-14.97 8.65c-.81-11.96.7-25.14 7.36-42.26 2.44-5.65 5-10.82 7.65-15.55-4.52 12.69-11.41 37.19-.54 44.66 14.89 10.22 26-42.23 26-42.23s4 4.89-1.11 24.67-6.22 44.67 11.34 69.11c17.55 24.45 28 38.89 32.66 54.22 0 0 2-10.44-2-22 0 0 10.22 6 13.34 12.89 0 0 1.55-7.55-5.77-21.76.41.26 12.92 8.35 22.23 35.92.57 2.68 1.31 5.3 1.98 7.4 0 0 6.22 19.22 1.78 41.89z"
15
+ fill="url(#paint1_radial_653_516)"
16
+ />
17
+ <Path
18
+ d="M206.14 247.818c-1.48 17.07-14.37 31.92-14.77 32.38 7.33-10.67 13.1-39.54 7.77-41.54-1.18-.44-2.55.3-4.13 1.99l-.01.01c-3.42 2.83-8.95 9.58-16.53 25.66-4.26 9.04-9.82 17.66-16.06 25.2-14.19 15.07-29.49 14.25-29.49 14.25 27.55-12 42.22-41.56 42.66-49.78.45-8.22-9.11-8-9.11-8-6.66 6.22-17.33 8.89-17.33 8.89s11.78-6.45 23.11-37.11c11.33-30.67.89-69.78.89-69.78 14.5 10.83 17.17 43.5 9 68.83-8.17 25.34-1 24.17-1 24.17 14-18.83 26.5-12.5 25 4.83z"
19
+ fill="url(#paint2_radial_653_516)"
20
+ />
21
+ <Path
22
+ d="M332.709 288.958c-.22.13-.44.24-.66.35.22-.12.44-.23.66-.35z"
23
+ fill="url(#paint3_radial_653_516)"
24
+ />
25
+ <Path
26
+ d="M334.509 287.858c-.54.37-1.09.71-1.63 1.01.54-.31 1.08-.64 1.63-1.01z"
27
+ fill="url(#paint4_radial_653_516)"
28
+ />
29
+ <Path
30
+ d="M369.139 250.878s3.11 44.89-4 52.44c-6.34 6.74-9.5-26.94-9.79-47.09-1.38 3.72-3 7.32-4.78 10.74.91 19.91-4.49 52-29.76 59.02-30 8.33-34.67-33.67-14.34-61.67 14.54-20.02 17.12-38.91 17.57-45.34 0 0-8.01 33.68-24.68 40.34 0 0 6-61.55-24.66-89.77 0 0 20.66 29.11 14.44 69.77-6.08 39.73-9.61 49.13-9.77 49.55.23-.35 4.98-7.23 8.88-3.55 4 3.78-2 17.78 1.33 30.45 3.24 12.26 10.42 17.87 10.87 18.21-.38-.16-6.73-2.69-9.75 3.34-3.12 6.23 12.66 18.67 26.22 15.11 13.55-3.55 1.33-12.88 1.33-12.88s16.45.88 25.11-16.23c8.67-17.11 9.11-26.22 9.11-26.22s1.34 18.67 7.56 20c6.22 1.33 20.89-13.33 9.11-66.22zm-51.58 85.19c-12.5.25-18.67-7.83-18.67-7.83s7.17 5.25 18.25 4.75 19.42-6.92 19.42-6.92c-.84 1.84-6.5 9.75-19 10z"
31
+ fill="url(#paint5_radial_653_516)"
32
+ />
33
+ <Path
34
+ d="M167.14 329.318s-.01.02-.04.05l.06.12s-.01-.11-.02-.17zm27.78 19.34c11.55-.67 22.89-12 23.55-31.67 0 0 0 .01-.01.03 0 .02-.01.05-.02.08-.41 1.77-6.01 24.17-23.3 22.89-16.83-1.24-16.76-17.06-2.51-37.91-2.49 2.59-19.54 20.97-20.16 37.24 0 0-1.27-.7-2.58-2.5-.89 2.59-2.35 8.17-.97 14.17 1.89 8.22 14.55 15.34 29.55 3.67 0 0-18 2.89-18.89-16.23 0 0 3.78 10.89 15.34 10.23zm-9.45 8.31s-4.65 1.92-9.93-.68c-5.27-2.61-5.07-10.27-5.07-10.27s2.54 4.93 6.65 7.6 8.35 3.35 8.35 3.35z"
35
+ fill="url(#paint6_radial_653_516)"
36
+ />
37
+ <Path
38
+ d="M113.579 271.358c-16.4.84-40.17 14.62-61.45 38.61a94.666 94.666 0 00-17.18 27.87c1.79-8.62 7.33-26.62 23.49-39.5-.69.31-11.85 5.47-18.63 15.48 0 0-6-7.5-4.34-13.5 1.67-6 8.34-9.16 12.17-9.66s5.5.33 5.5.33 9.67-8.83 32.67-15.67c14.32-4.25 23.15-4.43 27.77-3.96z"
39
+ fill="url(#paint7_radial_653_516)"
40
+ />
41
+ </G>
42
+ <G opacity={0.4}>
43
+ <Path
44
+ d="M17.81 409.548l-4-23.56s-5.11 12.22-1.11 36.89 15.78 37.33 26 42.22c10.22 4.89 18.67-.89 18.67-.89s-2.89 14.67-20.89 7.56c0 0 6.22 16 23.11 9.56 16.89-6.44 19.11-31.33-4.89-49.56 0 0 6.89 16.67-7.11 18.22-14 1.55-25.56-17.56-29.78-40.44z"
45
+ fill="url(#paint8_radial_653_516)"
46
+ />
47
+ <Path
48
+ d="M108.539 548.018c-8.02-1.93-15.17-4.11-21.18-6.47-.12-.05-.24-.09-.36-.14 8.21-8.41-2.03-24-13.42-23.64-14.22.44-25.77-6.22-25.77-6.22s11.77 2.22 26-2.67c13.92-4.79 10.8-17.46 10.67-17.98 9.99 11.34 9.77 36.87 9.77 36.87 8.77-30.27-12.54-58.59-13.1-59.33.53.38 17.43 12.83 24.43 37.11 5.22 18.09 4.22 34.14 2.96 42.47z"
49
+ fill="url(#paint9_radial_653_516)"
50
+ />
51
+ <Path
52
+ d="M354.239 449.788c-2.21 2.89-6.109 6.16-12.599 6.7-12 1-10.33-12 1.33-23.33 6.38-6.2 9.72-16.34 11.44-24.25 1.53 12.27 1.809 26.4-.171 40.88z"
53
+ fill="url(#paint10_radial_653_516)"
54
+ />
55
+ <Path
56
+ d="M351.989 462.218c-1.79 7.84-4.32 15.66-7.74 23.23-5.92.16-16.86 1.23-26.78 6.37-14.5 7.5-23.5 8-28-1s1.17-20.5 13.67-31.5 17.17-22.16 19.17-32.5c0 0 1.33 7.84-1 17.34-1.43 5.8 1.62 7.06 4.93 5.53-.36 2.86.04 5.47 1.23 7.8 3.45 6.74 12.15 12.67 24.52 4.73z"
57
+ fill="url(#paint11_radial_653_516)"
58
+ />
59
+ <Path
60
+ d="M317.129 507.998c-.19.42-6.51 13.83-23.32 14.24-16.78.41-29.04-9.38-29.49-9.73.14.24 1.74 3.19-.01 4.06-1.76.88-9.01-7.86-9.64-8.61.34.67 3.63 7.25 1.97 8.2-1.75 1-6.67-5.09-7.25-5.67-.58-.58-1.58 4.92-.33 8.92 0 0-1.5-1.09-2.67-4 0 0-4.33 9.66.42 20.83 2.42 5.68 6.41 10.16 9.74 13.18-4.12.95-8.32 1.8-12.57 2.55-2.68-3.1-7.7-9.94-10.59-20.31-4.08-14.67-.08-26-.08-26s2.33 14.08 6.83 21.66c0 0-.33-10.66 1.83-14 2.17-3.33 3.42-1.66 3.42-1.66s-.17-5.17 2.58-4.92c0 0-.33-3.17.25-5.25.59-2.08 1.67-1.33 1.67-1.33s-3.17-13.67 5-24.75c8.17-11.09 17.33-13.34 28.08-19.25 10.29-5.66 15.69-9.65 16.14-9.97-.62.61-10.75 10.56-24.8 18.47-14.5 8.16-20.34 23.5-14.5 36.33 5.83 12.83 31.32 21.5 57.32 7.01z"
61
+ fill="url(#paint12_radial_653_516)"
62
+ />
63
+ <Path
64
+ opacity={0.6}
65
+ d="M242.47 470.988c-9.16 15.83-29.33 33.83-24.5 57 2.97 14.24 7.83 22.18 11.13 26.18-9.54 1.17-19.25 1.89-28.92 2.22-6.65.23-13.28.28-19.84.15-2.27-8.36.84-15.95 5.79-22.21 2.89-3.66 6.4-6.86 9.84-9.51 12.34-9.5 15.5-9.83 24-24.33 8.5-14.5.67-32.17 8-45.5 7.34-13.33 23.67.17 14.5 16z"
66
+ fill="url(#paint13_radial_653_516)"
67
+ />
68
+ <Path
69
+ opacity={0.5}
70
+ d="M170.229 399.798s17.17 9.31 25.94 29.22c8.77 19.91 8.77 22.1 8.77 22.1s-5.3-5.3-10.96-2.19c-5.66 3.1-7.85 4.2-7.49 9.31.36 5.11-.73 15.16-.73 15.16s-2.07-27.82-12.3-42.8c-10.23-14.98-14.61-13.52-13.15-24.11 1.46-10.59 9.92-6.7 9.92-6.7v.01z"
71
+ fill="url(#paint14_radial_653_516)"
72
+ />
73
+ </G>
74
+ <G opacity={0.6}>
75
+ <Path
76
+ d="M350.569 266.969c-2.36 4.54-5 8.75-7.76 12.52-17.34 23.67-36.67 7.17-26.34-18.33 6.56-16.18 8.96-29.2 7.57-42.18-.45 6.43-3.03 25.32-17.57 45.34-20.33 28-15.66 70 14.34 61.67 25.27-7.02 30.67-39.11 29.76-59.02zm-39.21 33.24c-8.89-3.55-5.55-22-2.22-28.89 0 0-1.56 15.34 4.67 21.11 6.07 5.64 13.2 3.66 13.54 3.57-.35.38-7.33 7.68-15.99 4.21z"
77
+ fill="url(#paint15_linear_653_516)"
78
+ />
79
+ <Path
80
+ d="M209.579 183.548s28.89 65.78 9.33 101.33c-19.56 35.55-21.11 41.11-16.11 42.78 5 1.67 12.67-3.33 15.67-10.67 0 0-5.33 24.33-23.33 23-18-1.33-16.67-19.33.67-42.33 17.34-23 28.56-58.22 13.78-114.11h-.01z"
81
+ fill="url(#paint16_radial_653_516)"
82
+ />
83
+ <Path
84
+ d="M199.139 238.659s-2 14-17 42.33-40.83 44.67-60.17 44c-19.33-.67-25.5-13.001-17.5-25.171 8-12.16 19.17-15.659 20.17-19.829s-7-4-7-4 1 2.83-.33 6.17c-1.34 3.33-11.84 4.5-30.84 18-8.8 6.26-19.97 18.699-29.05 33.439 7.41-30.83 36.05-49.78 36.05-49.78s-21.16 9.34-34 31.34c-9.67 16.59-11.1 30.24-11.22 35.95-5.37 12.41-8.44 25.321-7.11 36.881 3.67 32 20.67 48.33 15.67 57-5 8.67-22 9.669-33-11.331s-10-47.669-10-47.669 3.33 20 12.66 38.33c9.34 18.34 17.67 11.67 14.67 1.67-1.57-5.23-8.21-20.24-11.43-38.94-4.78-27.73 3.75-56.031 22.42-77.081 21.97-24.76 46.59-38.65 63.01-38.65 20.67 0 16.78 10.111 4.67 18.891-11.79 8.55-22.67 26.45-2.34 28.11 20.34 1.67 47.34-23.001 61-52.001 13.67-29 20.67-27.659 20.67-27.659z"
85
+ fill="url(#paint17_radial_653_516)"
86
+ />
87
+ <Path
88
+ d="M269.138 208.878s6.22 19.22 1.78 41.89c-4.44 22.67-9.44 34.89-11.11 42.56-1.67 7.67.56 17.22.56 17.22s1.89-8.33 11.11-25.67c9.22-17.34 13-46.11 11.56-63.44-1.44-17.33-4.67-32.78-12.22-33.78-7.55-1-4.11 13.56-1.67 21.22h-.01z"
89
+ fill="url(#paint18_radial_653_516)"
90
+ />
91
+ </G>
92
+ <Path
93
+ d="M258.009 22.488c-.59-.89-1.3-1.83-2.12-2.76-.19-.22-.39-.45-.61-.67-.1-.13-.23-.25-.35-.37-.16-.18-.33-.34-.5-.5-.41-.41-.85-.8-1.32-1.19-.26-.22-.53-.43-.81-.64-.49-.36-1-.72-1.54-1.05-.15-.1-.31-.19-.47-.28-.22-.13-.45-.26-.68-.38-.25-.14-.5-.26-.76-.39-.14-.07-.28-.13-.43-.19a3.9 3.9 0 00-.47-.2c-.17-.08-.35-.15-.53-.22-.66-.25-1.34-.48-2.06-.66-11.22-2.89-36 21.67-38.66 57.78-.2 2.69-.14 5.31.14 7.86-5.77-31.19 13.88-50.3 1.86-56.86-10.32-5.63-24.39 6.79-31.82 14.64 23.93-35.63 52.86-39.94 66.48-34.42.41.17.82.34 1.21.53.23.1.46.21.69.32.67.32 1.31.66 1.92 1.03.29.17.58.35.86.53.28.17.56.36.82.54.27.19.53.37.79.57.77.57 1.48 1.16 2.15 1.79.22.2.44.4.64.61 3.18 3.16 5.15 6.76 6.37 10.01.16.41.3.83.43 1.23.29.87.53 1.71.71 2.49.25 1.15-1.27 1.84-1.94.85z"
94
+ fill="url(#paint19_radial_653_516)"
95
+ />
96
+ <Path
97
+ d="M317.969 195.988c.46 1.15.9 2.29 1.31 3.42-.29-.54-.55-1.08-.81-1.64-11.11-24-32.44-34.67-50.66-37.34-18.23-2.66-28.89-15.11-52.89-59.55-.91-1.68-1.73-3.33-2.48-4.96 12.25 22.67 40.93 39.16 58.37 50.74 23.33 15.5 38.33 27.33 47.16 49.33z"
98
+ fill="url(#paint20_radial_653_516)"
99
+ />
100
+ <Path
101
+ d="M382.028 291.098c13.78-34.67-5.78-70.22-13.78-69.78-8 .45-8 8.45-8 8.45s-.05-.01-.15-.04c-.01-.36-.02-.72-.04-1.08-.02-.36-.03-.71-.06-1.07-.02-.36-.05-.719-.08-1.079-.06-.79-.15-1.581-.25-2.361-.06-.47-.12-.93-.2-1.4-.05-.34-.1-.679-.17-1.019-.08-.49-.17-.991-.28-1.481-.1-.49-.21-.98-.32-1.47-.06-.26-.12-.51-.19-.76l-.21-.8a43.24 43.24 0 00-.97-3.16l-.33-.93a42.229 42.229 0 00-.99-2.47c-.09-.23-.2-.47-.31-.7l-.01-.02c-.19-.45-.4-.89-.62-1.33-.08-.17-.16-.339-.25-.509-.08-.17-.17-.341-.26-.511-.39-.77-.81-1.54-1.26-2.29-.22-.38-.44-.759-.68-1.129-.17-.28-.34-.561-.53-.831-.36-.57-.74-1.119-1.13-1.669-.19-.28-.38-.55-.58-.82-.02-.02-.03-.041-.04-.051a54.695 54.695 0 00-3.25-3.99c-1.66-1.85.5-4.63 2.69-3.47.26.14.52.28.78.43 1.41.79 2.89 1.681 4.41 2.681.46.31.92.62 1.38.94.3.2.6.419.89.629 1.04.75 2.1 1.551 3.15 2.401.35.28.71.57 1.06.87.19.15.37.31.55.47a67.017 67.017 0 016.46 6.319c.27.31.55.62.82.94.3.34.59.68.87 1.03.35.42.7.85 1.04 1.29 1.22 1.55 2.4 3.19 3.52 4.93a57.18 57.18 0 011.4 2.25c.15.26.31.52.46.78.16.27.31.53.45.8.15.26.3.54.44.81.31.55.6 1.11.88 1.68a66.915 66.915 0 012.01 4.34c.13.31.26.611.38.921a82.968 82.968 0 011.08 2.82c9.57 26.77 6.29 47.819-1.88 67.269.47-2.2 1.16-4.48 2.1-6.83z"
102
+ fill="url(#paint21_radial_653_516)"
103
+ />
104
+ <Path
105
+ opacity={0.4}
106
+ d="M204.14 543.429c-5.89.33-1.93-10.59-1.79-10.99-.3.19-6.31 4.08-5.99 11.66.2 4.58 2.21 9.23 3.82 12.29-6.65.23-13.28.28-19.84.15-2.27-8.36.84-15.95 5.79-22.21 5.25-4.98 13.91-11.61 18.9-8.34 7.44 4.89 5.11 17.11-.89 17.44z"
107
+ fill="url(#paint22_radial_653_516)"
108
+ />
109
+ <Path
110
+ d="M219.141 434.259c-.16 0-.31-.03-.46-.09-3.57-1.48-15.19-8.17-15.1-32.29.12-28.82 14.51-46.41 14.66-46.58 20.66-24.79 48.57-28.49 63.37-28.49 4.52 0 8.09.33 10.29.61 9.22 1.17 10.47 5.05 11.07 9.62.43 3.25-.59 5.5-1.23 6.56-.41.65-.56 1.46-.41 2.28 3.47 18.55 2.33 44.04-2.71 60.6-3.82 12.55-8.21 17.73-9.93 19.37-.22.21-.51.32-.82.32-.12 0-.24-.02-.36-.05-2.9-.84-11.16-2.8-25.26-2.8-2.78 0-5.68.08-8.61.23-20.07 1.03-30.93 8.26-33.78 10.46-.21.17-.47.26-.73.26l.01-.01zM134.009 434.259c-.26 0-.51-.09-.72-.25-2.86-2.2-13.72-9.43-33.79-10.46-2.94-.15-5.83-.23-8.61-.23-14.1 0-22.36 1.96-25.26 2.8-.12.03-.24.05-.36.05-.31 0-.6-.11-.81-.32-1.71-1.64-6.11-6.82-9.93-19.37-5.04-16.56-6.19-42.04-2.71-60.6.15-.82 0-1.64-.42-2.3-.64-1.04-1.65-3.29-1.22-6.54.6-4.57 1.85-8.45 11.07-9.62 2.2-.28 5.77-.61 10.29-.61 14.8 0 42.72 3.7 63.37 28.49.15.17 14.54 17.76 14.66 46.58.09 24.11-11.53 30.81-15.09 32.28-.16.07-.31.1-.47.1z"
111
+ fill="#fff"
112
+ />
113
+ <Path
114
+ d="M302.58 362.428c-.11-3.33-1.11-10.22-2.33-12.78-1.22-2.56-7.33-10.56-7.33-10.56s-14.89-1.78-17.22-1.78c-2.33 0-4-.22-16.22 0-9.35.17-12.52 1.77-15.49 3.26 6.76 14.2 14.02 28.49 19 43.34 21.84-4.35 37.15.73 37.15.73s1.44-5.33 1.89-8.11c.44-2.78.67-10.78.56-14.11l-.01.01z"
115
+ fill="url(#paint23_linear_653_516)"
116
+ />
117
+ <Path
118
+ d="M231.7 347.519c-4.96 4.06-11.32 10.889-18.78 22.689-13.78 21.78-6.67 45.891-6.67 45.891 14.83-14.94 29.7-23.56 43.09-28.37-4.68-13.77-11.36-27.02-17.64-40.2v-.01z"
119
+ fill="url(#paint24_linear_653_516)"
120
+ />
121
+ <Path
122
+ d="M302.321 345.698c-.1-.54-.02-1.11.28-1.58.68-1.11 1.85-3.6 1.37-7.21-.66-5-2.27-9.25-11.94-10.48-9.67-1.22-47.89-3.77-74.56 28.23 0 0-14.77 17.66-14.89 47.22-.09 24.58 11.73 31.56 15.71 33.21.73.31 1.57.2 2.19-.29 2.99-2.3 13.53-9.24 33.22-10.25 19.32-1 30.2 1.56 33.54 2.53.76.22 1.58.04 2.15-.51 1.96-1.88 6.36-7.21 10.19-19.8 5.03-16.51 6.3-42.05 2.74-61.07zm-4.07 38.85c-1.81 17.02-9.02 31.39-12.06 35.51-.23.3-.6.43-.96.35-4.96-1.12-40.99-8.4-66.18 10.89-.29.22-.69.26-1.01.08-2.62-1.47-13.72-9.08-9.79-31.28 4.45-25.11 16.78-41.55 37.22-51.89 20.45-10.33 43-9 47.56-2.55 4.55 6.44 7.11 21.11 5.22 38.89z"
123
+ fill="#4C2549"
124
+ />
125
+ <Path
126
+ d="M235.341 424.678c5.19-2.62 10.72-3.27 16.47-3.51 4.71-.2 9.34-.24 13.95.21 7.17-7.95 11.83-20.81 11.83-35.33 0-24.15-12.88-43.72-28.78-43.72s-28.78 19.58-28.78 43.72c0 16.75 6.2 31.3 15.31 38.64v-.01z"
127
+ fill="#4C2549"
128
+ />
129
+ <Path
130
+ d="M235.641 422.318c-8.42-7.46-13.61-21.21-13.61-36.28 0-23.01 12.01-41.72 26.78-41.72 14.77 0 26.78 18.72 26.78 41.72 0 13.01-3.97 25.34-10.67 33.25-2.19-.18-4.5-.27-7.03-.27-1.85 0-3.86.05-6.16.15-5.22.22-10.75.77-16.08 3.15h-.01z"
131
+ fill="url(#paint25_linear_653_516)"
132
+ />
133
+ <Path
134
+ d="M250.7 389.318c8.345 0 15.11-6.765 15.11-15.11 0-8.345-6.765-15.11-15.11-15.11-8.345 0-15.11 6.765-15.11 15.11 0 8.345 6.765 15.11 15.11 15.11zM225.92 409.768c6.445 0 11.67-5.225 11.67-11.67s-5.225-11.67-11.67-11.67-11.67 5.225-11.67 11.67 5.225 11.67 11.67 11.67zM235.81 364.428l-1.97.69c-.82.29-1.44.98-1.64 1.83l-.84 3.59-.84-3.59c-.2-.85-.82-1.54-1.64-1.83l-1.98-.69 1.98-.69c.82-.29 1.44-.98 1.64-1.83l.84-3.59.84 3.59c.2.85.82 1.54 1.64 1.83l1.97.69zM264.721 403.098l-2.62.92c-1.09.38-1.91 1.3-2.18 2.43l-1.12 4.76-1.11-4.76a3.383 3.383 0 00-2.18-2.43l-2.63-.92 2.63-.92c1.09-.38 1.91-1.3 2.18-2.43l1.11-4.76 1.12 4.76a3.383 3.383 0 002.18 2.43l2.62.92zM273.201 392.658l-2.05.72a2.67 2.67 0 00-1.7 1.9l-.87 3.72-.87-3.72a2.67 2.67 0 00-1.7-1.9l-2.05-.72 2.05-.72a2.67 2.67 0 001.7-1.9l.87-3.72.87 3.72c.21.88.85 1.6 1.7 1.9l2.05.72z"
135
+ fill="#fff"
136
+ />
137
+ <Path
138
+ d="M50.56 362.428c.11-3.33 1.11-10.22 2.33-12.78 1.22-2.56 7.33-10.56 7.33-10.56s14.89-1.78 17.22-1.78c2.33 0 4-.22 16.22 0 9.351.17 12.521 1.77 15.491 3.26-6.76 14.2-14.02 28.49-19 43.34-21.84-4.35-37.15.73-37.15.73s-1.44-5.33-1.89-8.11c-.44-2.78-.67-10.78-.56-14.11l.01.01z"
139
+ fill="url(#paint26_linear_653_516)"
140
+ />
141
+ <Path
142
+ d="M121.451 347.519c4.96 4.06 11.32 10.889 18.78 22.689 13.78 21.78 6.67 45.891 6.67 45.891-14.83-14.94-29.7-23.56-43.09-28.37 4.68-13.77 11.36-27.02 17.64-40.2v-.01z"
143
+ fill="url(#paint27_linear_653_516)"
144
+ />
145
+ <Path
146
+ d="M53.57 406.768c3.83 12.59 8.23 17.92 10.19 19.8.57.55 1.39.73 2.15.51 3.34-.97 14.22-3.53 33.54-2.53 19.69 1.01 30.23 7.95 33.22 10.25.62.49 1.46.6 2.19.29 3.98-1.65 15.8-8.63 15.71-33.21-.12-29.56-14.89-47.22-14.89-47.22-26.67-32-64.89-29.45-74.56-28.23-9.67 1.23-11.28 5.48-11.94 10.48-.48 3.61.69 6.1 1.37 7.21.3.47.38 1.04.28 1.58-3.56 19.02-2.29 44.56 2.74 61.07zm6.55-61.11c4.56-6.45 27.11-7.78 47.56 2.55 20.44 10.34 32.77 26.78 37.22 51.89 3.93 22.2-7.17 29.81-9.79 31.28-.32.18-.72.14-1.01-.08-25.19-19.29-61.22-12.01-66.18-10.89a.942.942 0 01-.96-.35c-3.04-4.12-10.25-18.49-12.06-35.51-1.89-17.78.67-32.45 5.22-38.89z"
147
+ fill="#4C2549"
148
+ />
149
+ <Path
150
+ d="M117.811 424.678c-5.19-2.62-10.72-3.27-16.47-3.51-4.71-.2-9.34-.24-13.95.21-7.17-7.95-11.83-20.81-11.83-35.33 0-24.15 12.88-43.72 28.78-43.72s28.78 19.58 28.78 43.72c0 16.75-6.2 31.3-15.31 38.64v-.01z"
151
+ fill="#4C2549"
152
+ />
153
+ <Path
154
+ d="M117.499 422.318c8.42-7.46 13.61-21.21 13.61-36.28 0-23.01-12.01-41.72-26.78-41.72-14.77 0-26.78 18.72-26.78 41.72 0 13.01 3.97 25.34 10.67 33.25 2.19-.18 4.5-.27 7.03-.27 1.85 0 3.86.05 6.16.15 5.22.22 10.75.77 16.08 3.15h.01z"
155
+ fill="url(#paint28_linear_653_516)"
156
+ />
157
+ <Path
158
+ d="M108.059 389.318c8.345 0 15.11-6.765 15.11-15.11 0-8.345-6.765-15.11-15.11-15.11-8.345 0-15.11 6.765-15.11 15.11 0 8.345 6.765 15.11 15.11 15.11zM83.28 409.768c6.445 0 11.67-5.225 11.67-11.67s-5.225-11.67-11.67-11.67c-6.446 0-11.67 5.225-11.67 11.67s5.224 11.67 11.67 11.67zM93.18 364.428l-1.97.69c-.82.29-1.44.98-1.64 1.83l-.84 3.59-.84-3.59c-.2-.85-.82-1.54-1.64-1.83l-1.98-.69 1.98-.69c.82-.29 1.44-.98 1.64-1.83l.84-3.59.84 3.59c.2.85.82 1.54 1.64 1.83l1.97.69zM122.08 403.098l-2.62.92c-1.09.38-1.91 1.3-2.18 2.43l-1.12 4.76-1.11-4.76a3.383 3.383 0 00-2.18-2.43l-2.63-.92 2.63-.92c1.09-.38 1.91-1.3 2.18-2.43l1.11-4.76 1.12 4.76a3.383 3.383 0 002.18 2.43l2.62.92zM130.56 392.658l-2.05.72a2.67 2.67 0 00-1.7 1.9l-.87 3.72-.87-3.72a2.67 2.67 0 00-1.7-1.9l-2.05-.72 2.05-.72a2.67 2.67 0 001.7-1.9l.87-3.72.87 3.72c.21.88.85 1.6 1.7 1.9l2.05.72z"
159
+ fill="#fff"
160
+ />
161
+ <Path
162
+ d="M172.7 465.989c17.11 0 18.22-17.78 35.56-19.33 17.34-1.55 31.33 26.67 18.44 51.11-12.89 24.44-49.11 42.22-79.11 24s-28.89-52.22-22-63.33c6.89-11.11 19.39-10.94 26.22-3.94 6.83 7 13.78 11.5 20.89 11.5v-.01z"
163
+ fill="#37072E"
164
+ />
165
+ <Path
166
+ d="M148.619 520.059c4 2.43 8.19 4.24 12.54 5.44C167.106 519.666 177.4 503 171 483c-6.4-20-32.027-23.634-44.041-22.951-3.01 5.36-4.85 16.2-1.98 28.15 2.23 9.34 8.15 22.45 23.64 31.86z"
167
+ fill="url(#paint29_linear_653_516)"
168
+ />
169
+ <Path
170
+ d="M223.561 494.198c-.24.51-.49 1.01-.76 1.52-8.63 16.38-27.25 28.04-45.95 29.05a27.798 27.798 0 01-3.04-12.7c0-15.51 12.57-28.08 28.08-28.08 8.72 0 16.52 3.98 21.67 10.21z"
171
+ fill="url(#paint30_radial_653_516)"
172
+ />
173
+ <Defs>
174
+ <LinearGradient
175
+ id="paint0_linear_653_516"
176
+ x1={193.829}
177
+ y1={297.318}
178
+ x2={193.829}
179
+ y2={469.328}
180
+ gradientUnits="userSpaceOnUse"
181
+ >
182
+ <Stop stopColor="#FD7518" />
183
+ <Stop offset={1} stopColor="#F6255C" />
184
+ </LinearGradient>
185
+ <RadialGradient
186
+ id="paint1_radial_653_516"
187
+ cx={0}
188
+ cy={0}
189
+ r={1}
190
+ gradientUnits="userSpaceOnUse"
191
+ gradientTransform="translate(195.9 165.768) scale(177.16)"
192
+ >
193
+ <Stop stopColor="#F7FF9B" />
194
+ <Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
195
+ </RadialGradient>
196
+ <RadialGradient
197
+ id="paint2_radial_653_516"
198
+ cx={0}
199
+ cy={0}
200
+ r={1}
201
+ gradientUnits="userSpaceOnUse"
202
+ gradientTransform="matrix(-37.33102 143.11116 -83.00448 -21.65199 206.327 255.304)"
203
+ >
204
+ <Stop stopColor="#F7FF9B" />
205
+ <Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
206
+ </RadialGradient>
207
+ <RadialGradient
208
+ id="paint3_radial_653_516"
209
+ cx={0}
210
+ cy={0}
211
+ r={1}
212
+ gradientUnits="userSpaceOnUse"
213
+ gradientTransform="matrix(.68003 0 0 .68001 332.339 289.188)"
214
+ >
215
+ <Stop stopColor="#F7FF9B" />
216
+ <Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
217
+ </RadialGradient>
218
+ <RadialGradient
219
+ id="paint4_radial_653_516"
220
+ cx={0}
221
+ cy={0}
222
+ r={1}
223
+ gradientUnits="userSpaceOnUse"
224
+ gradientTransform="matrix(1.72001 0 0 1.72002 333.599 288.528)"
225
+ >
226
+ <Stop stopColor="#F7FF9B" />
227
+ <Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
228
+ </RadialGradient>
229
+ <RadialGradient
230
+ id="paint5_radial_653_516"
231
+ cx={0}
232
+ cy={0}
233
+ r={1}
234
+ gradientUnits="userSpaceOnUse"
235
+ gradientTransform="translate(318.469 291.988) scale(145.72)"
236
+ >
237
+ <Stop stopColor="#F7FF9B" />
238
+ <Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
239
+ </RadialGradient>
240
+ <RadialGradient
241
+ id="paint6_radial_653_516"
242
+ cx={0}
243
+ cy={0}
244
+ r={1}
245
+ gradientUnits="userSpaceOnUse"
246
+ gradientTransform="translate(204.89 321.318) scale(76.29)"
247
+ >
248
+ <Stop stopColor="#F7FF9B" />
249
+ <Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
250
+ </RadialGradient>
251
+ <RadialGradient
252
+ id="paint7_radial_653_516"
253
+ cx={0}
254
+ cy={0}
255
+ r={1}
256
+ gradientUnits="userSpaceOnUse"
257
+ gradientTransform="translate(51.59 292.198) scale(68.15)"
258
+ >
259
+ <Stop stopColor="#F7FF9B" />
260
+ <Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
261
+ </RadialGradient>
262
+ <RadialGradient
263
+ id="paint8_radial_653_516"
264
+ cx={0}
265
+ cy={0}
266
+ r={1}
267
+ gradientUnits="userSpaceOnUse"
268
+ gradientTransform="translate(56.25 414.658) scale(80.62)"
269
+ >
270
+ <Stop stopColor="#FFDBB2" />
271
+ <Stop offset={1} stopColor="#FFDBB2" stopOpacity={0} />
272
+ </RadialGradient>
273
+ <RadialGradient
274
+ id="paint9_radial_653_516"
275
+ cx={0}
276
+ cy={0}
277
+ r={1}
278
+ gradientUnits="userSpaceOnUse"
279
+ gradientTransform="translate(130.469 508.878) scale(102.88)"
280
+ >
281
+ <Stop stopColor="#FFDBB2" />
282
+ <Stop offset={1} stopColor="#FFDBB2" stopOpacity={0} />
283
+ </RadialGradient>
284
+ <RadialGradient
285
+ id="paint10_radial_653_516"
286
+ cx={0}
287
+ cy={0}
288
+ r={1}
289
+ gradientUnits="userSpaceOnUse"
290
+ gradientTransform="translate(369.14 504.878) scale(100.32)"
291
+ >
292
+ <Stop stopColor="#FFDBB2" />
293
+ <Stop offset={1} stopColor="#FFDBB2" stopOpacity={0} />
294
+ </RadialGradient>
295
+ <RadialGradient
296
+ id="paint11_radial_653_516"
297
+ cx={0}
298
+ cy={0}
299
+ r={1}
300
+ gradientUnits="userSpaceOnUse"
301
+ gradientTransform="translate(369.139 504.878) scale(100.32)"
302
+ >
303
+ <Stop stopColor="#FFDBB2" />
304
+ <Stop offset={1} stopColor="#FFDBB2" stopOpacity={0} />
305
+ </RadialGradient>
306
+ <RadialGradient
307
+ id="paint12_radial_653_516"
308
+ cx={0}
309
+ cy={0}
310
+ r={1}
311
+ gradientUnits="userSpaceOnUse"
312
+ gradientTransform="translate(277.139 570.658) scale(116.82)"
313
+ >
314
+ <Stop stopColor="#FFDBB2" />
315
+ <Stop offset={1} stopColor="#FFDBB2" stopOpacity={0} />
316
+ </RadialGradient>
317
+ <RadialGradient
318
+ id="paint13_radial_653_516"
319
+ cx={0}
320
+ cy={0}
321
+ r={1}
322
+ gradientUnits="userSpaceOnUse"
323
+ gradientTransform="translate(187.97 552.808) scale(105.33)"
324
+ >
325
+ <Stop stopColor="#FFDBB2" />
326
+ <Stop offset={1} stopColor="#FFDBB2" stopOpacity={0} />
327
+ </RadialGradient>
328
+ <RadialGradient
329
+ id="paint14_radial_653_516"
330
+ cx={0}
331
+ cy={0}
332
+ r={1}
333
+ gradientUnits="userSpaceOnUse"
334
+ gradientTransform="matrix(49.8 0 0 49.8 199.579 416.428)"
335
+ >
336
+ <Stop stopColor="#FFDBB2" />
337
+ <Stop offset={1} stopColor="#FFDBB2" stopOpacity={0} />
338
+ </RadialGradient>
339
+ <LinearGradient
340
+ id="paint15_linear_653_516"
341
+ x1={319.759}
342
+ y1={282.229}
343
+ x2={346.419}
344
+ y2={245.789}
345
+ gradientUnits="userSpaceOnUse"
346
+ >
347
+ <Stop stopColor="#DA5B50" />
348
+ <Stop offset={1} stopColor="#DA5B50" stopOpacity={0} />
349
+ </LinearGradient>
350
+ <RadialGradient
351
+ id="paint16_radial_653_516"
352
+ cx={0}
353
+ cy={0}
354
+ r={1}
355
+ gradientUnits="userSpaceOnUse"
356
+ gradientTransform="translate(186.469 331.098) scale(133.38)"
357
+ >
358
+ <Stop stopColor="#DA5B50" />
359
+ <Stop offset={0.16} stopColor="#DA5B50" stopOpacity={0.98} />
360
+ <Stop offset={0.3} stopColor="#DA5B50" stopOpacity={0.94} />
361
+ <Stop offset={0.43} stopColor="#DA5B50" stopOpacity={0.85} />
362
+ <Stop offset={0.55} stopColor="#DA5B50" stopOpacity={0.74} />
363
+ <Stop offset={0.67} stopColor="#DA5B50" stopOpacity={0.59} />
364
+ <Stop offset={0.79} stopColor="#DA5B50" stopOpacity={0.41} />
365
+ <Stop offset={0.91} stopColor="#DA5B50" stopOpacity={0.2} />
366
+ <Stop offset={1} stopColor="#DA5B50" stopOpacity={0} />
367
+ </RadialGradient>
368
+ <RadialGradient
369
+ id="paint17_radial_653_516"
370
+ cx={0}
371
+ cy={0}
372
+ r={1}
373
+ gradientUnits="userSpaceOnUse"
374
+ gradientTransform="translate(76.139 317.989) scale(151.46)"
375
+ >
376
+ <Stop stopColor="#DA5B50" />
377
+ <Stop offset={0.2} stopColor="#DA5B50" stopOpacity={0.99} />
378
+ <Stop offset={0.34} stopColor="#DA5B50" stopOpacity={0.94} />
379
+ <Stop offset={0.46} stopColor="#DA5B50" stopOpacity={0.87} />
380
+ <Stop offset={0.58} stopColor="#DA5B50" stopOpacity={0.77} />
381
+ <Stop offset={0.68} stopColor="#DA5B50" stopOpacity={0.64} />
382
+ <Stop offset={0.78} stopColor="#DA5B50" stopOpacity={0.48} />
383
+ <Stop offset={0.88} stopColor="#DA5B50" stopOpacity={0.29} />
384
+ <Stop offset={0.97} stopColor="#DA5B50" stopOpacity={0.07} />
385
+ <Stop offset={1} stopColor="#DA5B50" stopOpacity={0} />
386
+ </RadialGradient>
387
+ <RadialGradient
388
+ id="paint18_radial_653_516"
389
+ cx={0}
390
+ cy={0}
391
+ r={1}
392
+ gradientUnits="userSpaceOnUse"
393
+ gradientTransform="translate(267.808 301.768) scale(103.98)"
394
+ >
395
+ <Stop stopColor="#DA5B50" />
396
+ <Stop offset={0.25} stopColor="#DA5B50" stopOpacity={0.99} />
397
+ <Stop offset={0.4} stopColor="#DA5B50" stopOpacity={0.95} />
398
+ <Stop offset={0.51} stopColor="#DA5B50" stopOpacity={0.89} />
399
+ <Stop offset={0.61} stopColor="#DA5B50" stopOpacity={0.8} />
400
+ <Stop offset={0.71} stopColor="#DA5B50" stopOpacity={0.68} />
401
+ <Stop offset={0.79} stopColor="#DA5B50" stopOpacity={0.53} />
402
+ <Stop offset={0.87} stopColor="#DA5B50" stopOpacity={0.36} />
403
+ <Stop offset={0.95} stopColor="#DA5B50" stopOpacity={0.17} />
404
+ <Stop offset={1} stopColor="#DA5B50" stopOpacity={0} />
405
+ </RadialGradient>
406
+ <RadialGradient
407
+ id="paint19_radial_653_516"
408
+ cx={0}
409
+ cy={0}
410
+ r={1}
411
+ gradientUnits="userSpaceOnUse"
412
+ gradientTransform="translate(243.799 -51.342) scale(97.51)"
413
+ >
414
+ <Stop stopColor="#F7CE28" />
415
+ <Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
416
+ </RadialGradient>
417
+ <RadialGradient
418
+ id="paint20_radial_653_516"
419
+ cx={0}
420
+ cy={0}
421
+ r={1}
422
+ gradientUnits="userSpaceOnUse"
423
+ gradientTransform="translate(269.579 50.658) scale(129.97)"
424
+ >
425
+ <Stop stopColor="#F7CE28" />
426
+ <Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
427
+ </RadialGradient>
428
+ <RadialGradient
429
+ id="paint21_radial_653_516"
430
+ cx={0}
431
+ cy={0}
432
+ r={1}
433
+ gradientUnits="userSpaceOnUse"
434
+ gradientTransform="translate(313.398 146.378) scale(121.22)"
435
+ >
436
+ <Stop stopColor="#F7CE28" />
437
+ <Stop offset={1} stopColor="#F7FF9B" stopOpacity={0} />
438
+ </RadialGradient>
439
+ <RadialGradient
440
+ id="paint22_radial_653_516"
441
+ cx={0}
442
+ cy={0}
443
+ r={1}
444
+ gradientUnits="userSpaceOnUse"
445
+ gradientTransform="translate(165.64 565.819) scale(62.67)"
446
+ >
447
+ <Stop stopColor="#FFDBB2" />
448
+ <Stop offset={1} stopColor="#FFDBB2" stopOpacity={0} />
449
+ </RadialGradient>
450
+ <LinearGradient
451
+ id="paint23_linear_653_516"
452
+ x1={273.3}
453
+ y1={357.158}
454
+ x2={273.3}
455
+ y2={381.818}
456
+ gradientUnits="userSpaceOnUse"
457
+ >
458
+ <Stop stopColor="#F4D7F0" />
459
+ <Stop offset={1} stopColor="#F5D9F1" stopOpacity={0} />
460
+ </LinearGradient>
461
+ <LinearGradient
462
+ id="paint24_linear_653_516"
463
+ x1={218.64}
464
+ y1={380.089}
465
+ x2={226.97}
466
+ y2={399.249}
467
+ gradientUnits="userSpaceOnUse"
468
+ >
469
+ <Stop stopColor="#F4D7F0" />
470
+ <Stop offset={1} stopColor="#F5D9F1" stopOpacity={0} />
471
+ </LinearGradient>
472
+ <LinearGradient
473
+ id="paint25_linear_653_516"
474
+ x1={248.811}
475
+ y1={390.318}
476
+ x2={248.811}
477
+ y2={443.448}
478
+ gradientUnits="userSpaceOnUse"
479
+ >
480
+ <Stop stopColor="#621357" stopOpacity={0} />
481
+ <Stop offset={1} stopColor="#621357" />
482
+ </LinearGradient>
483
+ <LinearGradient
484
+ id="paint26_linear_653_516"
485
+ x1={79.8407}
486
+ y1={357.158}
487
+ x2={79.8407}
488
+ y2={381.818}
489
+ gradientUnits="userSpaceOnUse"
490
+ >
491
+ <Stop stopColor="#F4D7F0" />
492
+ <Stop offset={1} stopColor="#F5D9F1" stopOpacity={0} />
493
+ </LinearGradient>
494
+ <LinearGradient
495
+ id="paint27_linear_653_516"
496
+ x1={134.511}
497
+ y1={380.089}
498
+ x2={126.171}
499
+ y2={399.249}
500
+ gradientUnits="userSpaceOnUse"
501
+ >
502
+ <Stop stopColor="#F4D7F0" />
503
+ <Stop offset={1} stopColor="#F5D9F1" stopOpacity={0} />
504
+ </LinearGradient>
505
+ <LinearGradient
506
+ id="paint28_linear_653_516"
507
+ x1={104.339}
508
+ y1={390.318}
509
+ x2={104.339}
510
+ y2={443.448}
511
+ gradientUnits="userSpaceOnUse"
512
+ >
513
+ <Stop stopColor="#621357" stopOpacity={0} />
514
+ <Stop offset={1} stopColor="#621357" />
515
+ </LinearGradient>
516
+ <LinearGradient
517
+ id="paint29_linear_653_516"
518
+ x1={150}
519
+ y1={488.5}
520
+ x2={125}
521
+ y2={502.5}
522
+ gradientUnits="userSpaceOnUse"
523
+ >
524
+ <Stop stopColor="#621357" stopOpacity={0} />
525
+ <Stop offset={1} stopColor="#541049" />
526
+ </LinearGradient>
527
+ <RadialGradient
528
+ id="paint30_radial_653_516"
529
+ cx={0}
530
+ cy={0}
531
+ r={1}
532
+ gradientUnits="userSpaceOnUse"
533
+ gradientTransform="rotate(-39.718 795.883 -14.024) scale(26.5023 15.7704)"
534
+ >
535
+ <Stop stopColor="#FC438C" />
536
+ <Stop offset={1} stopColor="#D3154F" />
537
+ </RadialGradient>
538
+ </Defs>
539
+ </Svg>
540
+ )
541
+ }