@newskit-render/core 0.0.0-d55b7d88

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 (456) hide show
  1. package/.ci/trigger-circleci-workflow.sh +37 -0
  2. package/.eslintignore +23 -0
  3. package/.eslintrc +74 -0
  4. package/.prettierignore +19 -0
  5. package/.prettierrc +7 -0
  6. package/CHANGELOG.md +7638 -0
  7. package/Dockerfile +14 -0
  8. package/Dockerfile.withNewRelic +15 -0
  9. package/README.md +274 -0
  10. package/__tests__/pages/__snapshots__/brightcove.test.tsx.snap +20 -0
  11. package/__tests__/pages/__snapshots__/home.test.tsx.snap +1195 -0
  12. package/__tests__/pages/brightcove.test.tsx +34 -0
  13. package/__tests__/pages/empty.test.tsx +10 -0
  14. package/__tests__/pages/home.test.tsx +16 -0
  15. package/app-context/InstrumentationContextProvider.tsx +36 -0
  16. package/assets/fontFamily.ts +416 -0
  17. package/assets/fonts/Graphik-Black-App.ttf +0 -0
  18. package/assets/fonts/Graphik-BlackItalic-App.ttf +0 -0
  19. package/assets/fonts/Graphik-Bold-App.ttf +0 -0
  20. package/assets/fonts/Graphik-BoldItalic-App.ttf +0 -0
  21. package/assets/fonts/Graphik-Extralight-App.ttf +0 -0
  22. package/assets/fonts/Graphik-ExtralightItalic-App.ttf +0 -0
  23. package/assets/fonts/Graphik-Light-App.ttf +0 -0
  24. package/assets/fonts/Graphik-LightItalic-App.ttf +0 -0
  25. package/assets/fonts/Graphik-Medium-App.ttf +0 -0
  26. package/assets/fonts/Graphik-Medium-Web.woff2 +0 -0
  27. package/assets/fonts/Graphik-MediumItalic-App.ttf +0 -0
  28. package/assets/fonts/Graphik-Regular-App.ttf +0 -0
  29. package/assets/fonts/Graphik-Regular-Web.woff2 +0 -0
  30. package/assets/fonts/Graphik-RegularItalic-App.ttf +0 -0
  31. package/assets/fonts/Graphik-Semibold-App.ttf +0 -0
  32. package/assets/fonts/Graphik-Semibold-Web.woff2 +0 -0
  33. package/assets/fonts/Graphik-SemiboldItalic-App.ttf +0 -0
  34. package/assets/fonts/Graphik-Super-App.ttf +0 -0
  35. package/assets/fonts/Graphik-SuperItalic-App.ttf +0 -0
  36. package/assets/fonts/Graphik-Thin-App.ttf +0 -0
  37. package/assets/fonts/Graphik-ThinItalic-App.ttf +0 -0
  38. package/assets/fonts/Montserrat-Black.ttf +0 -0
  39. package/assets/fonts/Montserrat-BlackItalic.ttf +0 -0
  40. package/assets/fonts/Montserrat-Bold.ttf +0 -0
  41. package/assets/fonts/Montserrat-BoldItalic.ttf +0 -0
  42. package/assets/fonts/Montserrat-ExtraBold.ttf +0 -0
  43. package/assets/fonts/Montserrat-ExtraBoldItalic.ttf +0 -0
  44. package/assets/fonts/Montserrat-ExtraLight.ttf +0 -0
  45. package/assets/fonts/Montserrat-ExtraLightItalic.ttf +0 -0
  46. package/assets/fonts/Montserrat-Italic.ttf +0 -0
  47. package/assets/fonts/Montserrat-Light.ttf +0 -0
  48. package/assets/fonts/Montserrat-LightItalic.ttf +0 -0
  49. package/assets/fonts/Montserrat-Medium.ttf +0 -0
  50. package/assets/fonts/Montserrat-MediumItalic.ttf +0 -0
  51. package/assets/fonts/Montserrat-Regular.ttf +0 -0
  52. package/assets/fonts/Montserrat-SemiBold.ttf +0 -0
  53. package/assets/fonts/Montserrat-SemiBoldItalic.ttf +0 -0
  54. package/assets/fonts/Montserrat-Thin.ttf +0 -0
  55. package/assets/fonts/Montserrat-ThinItalic.ttf +0 -0
  56. package/assets/fonts/PublicoHeadline-Black-App.ttf +0 -0
  57. package/assets/fonts/PublicoHeadline-BlackItalic-App.ttf +0 -0
  58. package/assets/fonts/PublicoHeadline-Bold-App.ttf +0 -0
  59. package/assets/fonts/PublicoHeadline-Bold-Web.woff2 +0 -0
  60. package/assets/fonts/PublicoHeadline-BoldItalic-App.ttf +0 -0
  61. package/assets/fonts/PublicoHeadline-Extrabold-App.ttf +0 -0
  62. package/assets/fonts/PublicoHeadline-ExtraboldItalic-App.ttf +0 -0
  63. package/assets/fonts/PublicoHeadline-Italic-App.ttf +0 -0
  64. package/assets/fonts/PublicoHeadline-Light-App.ttf +0 -0
  65. package/assets/fonts/PublicoHeadline-LightItalic-App.ttf +0 -0
  66. package/assets/fonts/PublicoHeadline-Medium-App.ttf +0 -0
  67. package/assets/fonts/PublicoHeadline-MediumItalic-App.ttf +0 -0
  68. package/assets/fonts/PublicoHeadline-Roman-App.ttf +0 -0
  69. package/assets/fonts/PublicoHeadline-Roman-Web.woff2 +0 -0
  70. package/assets/fonts/PublicoText-Bold-App.ttf +0 -0
  71. package/assets/fonts/PublicoText-BoldItalic-App.ttf +0 -0
  72. package/assets/fonts/PublicoText-Italic-App.ttf +0 -0
  73. package/assets/fonts/PublicoText-Italic-Web.woff2 +0 -0
  74. package/assets/fonts/PublicoText-Roman-App.ttf +0 -0
  75. package/assets/fonts/PublicoText-Roman-Web.woff2 +0 -0
  76. package/assets/fonts/PublicoText-Semibold-App.ttf +0 -0
  77. package/assets/fonts/PublicoText-SemiboldItalic-App.ttf +0 -0
  78. package/assets/fonts/Roboto-Bold.ttf +0 -0
  79. package/assets/fonts/Roboto-Light.ttf +0 -0
  80. package/assets/fonts/Roboto-Medium.ttf +0 -0
  81. package/assets/fonts/Roboto-Regular.ttf +0 -0
  82. package/assets/fonts/TheSun-Bold.ttf +0 -0
  83. package/assets/fonts/TheSun-BoldItalic.ttf +0 -0
  84. package/assets/fonts/TheSun-HeavyCondensed.ttf +0 -0
  85. package/assets/fonts/TheSun-HeavyNarrow.ttf +0 -0
  86. package/assets/fonts/TheSun-Italic.ttf +0 -0
  87. package/assets/fonts/TheSun-Medium.ttf +0 -0
  88. package/assets/fonts/TheSun-MediumItalic.ttf +0 -0
  89. package/assets/fonts/TheSun-Regular.ttf +0 -0
  90. package/assets/fonts/TimesDigital-Bold.ttf +0 -0
  91. package/assets/fonts/TimesDigital-BoldItalic.ttf +0 -0
  92. package/assets/fonts/TimesDigital-BoldSC.ttf +0 -0
  93. package/assets/fonts/TimesDigital-Italic.ttf +0 -0
  94. package/assets/fonts/TimesDigital-Regular.ttf +0 -0
  95. package/assets/fonts/TimesDigital-RegularSC.ttf +0 -0
  96. package/assets/fonts/TimesDigitalW04-Bold.ttf +0 -0
  97. package/assets/fonts/TimesDigitalW04-BoldItalic.ttf +0 -0
  98. package/assets/fonts/TimesDigitalW04-BoldSC.ttf +0 -0
  99. package/assets/fonts/TimesDigitalW04-Italic.ttf +0 -0
  100. package/assets/fonts/TimesDigitalW04-Regular.ttf +0 -0
  101. package/assets/fonts/TimesDigitalW04-RegularSC.ttf +0 -0
  102. package/assets/fonts/TimesModern-Regular.otf +0 -0
  103. package/assets/fonts/attribuitions.mdx +35 -0
  104. package/assets/fonts/bitter-medium.woff +0 -0
  105. package/assets/fonts/bitter-medium.woff2 +0 -0
  106. package/assets/fonts/bitter-mediumitalic.woff +0 -0
  107. package/assets/fonts/bitter-mediumitalic.woff2 +0 -0
  108. package/assets/fonts/bitter-regular.woff +0 -0
  109. package/assets/fonts/bitter-regular.woff2 +0 -0
  110. package/assets/fonts/bitter-semibold.woff +0 -0
  111. package/assets/fonts/bitter-semibold.woff2 +0 -0
  112. package/assets/fonts/dmmono-medium.woff +0 -0
  113. package/assets/fonts/dmmono-medium.woff2 +0 -0
  114. package/assets/fonts/dmsans-bold-webfont.woff +0 -0
  115. package/assets/fonts/dmsans-bold-webfont.woff2 +0 -0
  116. package/assets/fonts/dmsans-bolditalic-webfont.woff +0 -0
  117. package/assets/fonts/dmsans-bolditalic-webfont.woff2 +0 -0
  118. package/assets/fonts/dmsans-italic-webfont.woff +0 -0
  119. package/assets/fonts/dmsans-italic-webfont.woff2 +0 -0
  120. package/assets/fonts/dmsans-medium-webfont.woff +0 -0
  121. package/assets/fonts/dmsans-medium-webfont.woff2 +0 -0
  122. package/assets/fonts/dmsans-mediumitalic-webfont.woff +0 -0
  123. package/assets/fonts/dmsans-mediumitalic-webfont.woff2 +0 -0
  124. package/assets/fonts/dmsans-regular-webfont.woff +0 -0
  125. package/assets/fonts/dmsans-regular-webfont.woff2 +0 -0
  126. package/assets/fonts/notosans-bold-webfont.woff +0 -0
  127. package/assets/fonts/notosans-bold-webfont.woff2 +0 -0
  128. package/assets/fonts/notosans-italic-webfont.woff +0 -0
  129. package/assets/fonts/notosans-italic-webfont.woff2 +0 -0
  130. package/assets/fonts/notosans-medium-webfont.woff +0 -0
  131. package/assets/fonts/notosans-medium-webfont.woff2 +0 -0
  132. package/assets/fonts/notosans-regular-webfont.woff +0 -0
  133. package/assets/fonts/notosans-regular-webfont.woff2 +0 -0
  134. package/assets/fonts/poppins-bold-webfont.woff +0 -0
  135. package/assets/fonts/poppins-bold-webfont.woff2 +0 -0
  136. package/assets/fonts/poppins-bolditalic-webfont.woff +0 -0
  137. package/assets/fonts/poppins-bolditalic-webfont.woff2 +0 -0
  138. package/assets/fonts/poppins-extrabold-webfont.woff +0 -0
  139. package/assets/fonts/poppins-extrabold-webfont.woff2 +0 -0
  140. package/assets/fonts/poppins-extrabolditalic-webfont.woff +0 -0
  141. package/assets/fonts/poppins-extrabolditalic-webfont.woff2 +0 -0
  142. package/assets/fonts/poppins-italic-webfont.woff +0 -0
  143. package/assets/fonts/poppins-italic-webfont.woff2 +0 -0
  144. package/assets/fonts/poppins-light-webfont.woff +0 -0
  145. package/assets/fonts/poppins-light-webfont.woff2 +0 -0
  146. package/assets/fonts/poppins-lightitalic-webfont.woff +0 -0
  147. package/assets/fonts/poppins-lightitalic-webfont.woff2 +0 -0
  148. package/assets/fonts/poppins-medium-webfont.woff +0 -0
  149. package/assets/fonts/poppins-medium-webfont.woff2 +0 -0
  150. package/assets/fonts/poppins-mediumitalic-webfont.woff +0 -0
  151. package/assets/fonts/poppins-mediumitalic-webfont.woff2 +0 -0
  152. package/assets/fonts/poppins-regular-webfont.woff +0 -0
  153. package/assets/fonts/poppins-regular-webfont.woff2 +0 -0
  154. package/assets/fonts/poppins-semibold-webfont.woff +0 -0
  155. package/assets/fonts/poppins-semibold-webfont.woff2 +0 -0
  156. package/assets/fonts/poppins-semibolditalic-webfont.woff +0 -0
  157. package/assets/fonts/poppins-semibolditalic-webfont.woff2 +0 -0
  158. package/assets/fonts/source-serif-pro-600.woff +0 -0
  159. package/assets/fonts/source-serif-pro-600.woff2 +0 -0
  160. package/assets/fonts/source-serif-pro-600italic.woff +0 -0
  161. package/assets/fonts/source-serif-pro-600italic.woff2 +0 -0
  162. package/assets/fonts/source-serif-pro-700.woff +0 -0
  163. package/assets/fonts/source-serif-pro-700.woff2 +0 -0
  164. package/assets/fonts/source-serif-pro-700italic.woff +0 -0
  165. package/assets/fonts/source-serif-pro-700italic.woff2 +0 -0
  166. package/assets/fonts/source-serif-pro-italic.woff +0 -0
  167. package/assets/fonts/source-serif-pro-italic.woff2 +0 -0
  168. package/assets/fonts/source-serif-pro-regular.woff +0 -0
  169. package/assets/fonts/source-serif-pro-regular.woff2 +0 -0
  170. package/components/AccountDropdown/AccountDropdown.tsx +65 -0
  171. package/components/AccountDropdown/__tests__/AcountDropdown.test.tsx +83 -0
  172. package/components/AccountDropdown/accounts.ts +47 -0
  173. package/components/AccountDropdown/index.tsx +2 -0
  174. package/components/AccountDropdown/utils.ts +21 -0
  175. package/components/ErrorPage/ErrorPage.tsx +135 -0
  176. package/components/ad/index.tsx +35 -0
  177. package/components/article/Highlights.tsx +77 -0
  178. package/components/article/MetaBox.tsx +50 -0
  179. package/components/article/RelatedArticles.tsx +53 -0
  180. package/components/article/RelatedTopics.tsx +59 -0
  181. package/components/article/ShareBarComponent.tsx +53 -0
  182. package/components/article/__tests__/__snapshots__/index.test.tsx.snap +1568 -0
  183. package/components/article/__tests__/index.test.tsx +171 -0
  184. package/components/article/__tests__/mocks.ts +105 -0
  185. package/components/article/index.tsx +320 -0
  186. package/components/common/BackToHomepage.tsx +37 -0
  187. package/components/common/NavLink.tsx +26 -0
  188. package/components/common/NewskitLogo.tsx +52 -0
  189. package/components/common/NewskitLogoShort.tsx +48 -0
  190. package/components/common/SectionTitleBar.tsx +57 -0
  191. package/components/common/ShareButton.tsx +18 -0
  192. package/components/common/ViewMoreButton.tsx +20 -0
  193. package/components/common/iconNavLink/IconNavLink.tsx +70 -0
  194. package/components/common/iconNavLink/__tests__/IconNavLink.test.tsx +35 -0
  195. package/components/common/iconNavLink/index.ts +3 -0
  196. package/components/common/iconNavLink/types.ts +24 -0
  197. package/components/common/icons/IconAccount.tsx +13 -0
  198. package/components/common/icons/IconFilledTwitter.tsx +14 -0
  199. package/components/common/icons/StyledIconFilledChevronRight.tsx +12 -0
  200. package/components/footer/__snapshots__/index.test.tsx.snap +192 -0
  201. package/components/footer/index.test.tsx +13 -0
  202. package/components/footer/index.tsx +151 -0
  203. package/components/header/banner-messages.ts +39 -0
  204. package/components/header/index.tsx +52 -0
  205. package/components/header/navigation-links.ts +20 -0
  206. package/components/layout/Gutter.tsx +11 -0
  207. package/components/layout/LayoutTemplate.tsx +26 -0
  208. package/components/layout/MainGrid.tsx +66 -0
  209. package/components/layout/index.tsx +3 -0
  210. package/components/layout/layoutTypes.ts +13 -0
  211. package/components/section/ArticleSlice.tsx +35 -0
  212. package/components/section/CollectionBlock.tsx +54 -0
  213. package/components/section/SectionContext.tsx +9 -0
  214. package/components/section/__tests__/ArticleSlice.test.tsx +128 -0
  215. package/components/section/__tests__/CollectionBlock.test.tsx +83 -0
  216. package/components/section/__tests__/pageBlock.test.tsx +24 -0
  217. package/components/section/__tests__/sectionUtils.test.ts +94 -0
  218. package/components/section/index.tsx +39 -0
  219. package/components/section/layouts/Block.tsx +79 -0
  220. package/components/section/layouts/FallBack.tsx +24 -0
  221. package/components/section/layouts/Lead.tsx +43 -0
  222. package/components/section/layouts/Rows.tsx +82 -0
  223. package/components/section/layouts/SectionTitle.tsx +57 -0
  224. package/components/section/layouts/__tests__/Lead.test.tsx +37 -0
  225. package/components/section/layouts/__tests__/Rows.test.tsx +40 -0
  226. package/components/section/layouts/__tests__/SectionTitle.test.tsx +37 -0
  227. package/components/section/layouts/__tests__/__snapshots__/Lead.test.tsx.snap +180 -0
  228. package/components/section/layouts/__tests__/__snapshots__/SectionTitle.test.tsx.snap +354 -0
  229. package/components/section/layouts/gridUtils.ts +21 -0
  230. package/components/section/layouts/index.tsx +4 -0
  231. package/components/section/layouts/types.ts +13 -0
  232. package/components/section/pageBlock.tsx +23 -0
  233. package/components/section/sectionUtils.ts +61 -0
  234. package/components/teaser/index.test.tsx +50 -0
  235. package/components/teaser/index.tsx +64 -0
  236. package/components/teaser/teaserVariants.ts +33 -0
  237. package/components/teaser/variant-types.ts +49 -0
  238. package/components/teaser/variants/featureVariant.ts +42 -0
  239. package/components/teaser/variants/horizontal.ts +14 -0
  240. package/components/teaser/variants/titleTeaserVariant.ts +32 -0
  241. package/components/teaser/variants/titleVertical.ts +24 -0
  242. package/components/utils/index.test.ts +12 -0
  243. package/components/utils/index.ts +6 -0
  244. package/config/__tests__/index.test.ts +54 -0
  245. package/config/environment.ts +80 -0
  246. package/config/index.ts +2 -0
  247. package/config/multiTenancy.ts +11 -0
  248. package/constants/index.ts +2 -0
  249. package/context/app-context/AppContext.test.tsx +56 -0
  250. package/context/app-context/holidayStopListContextOverrides.ts +18 -0
  251. package/context/app-context/index.tsx +34 -0
  252. package/context/app-context/paymentMethodContext.tsx +70 -0
  253. package/context/index.tsx +2 -0
  254. package/context/multi-tenancy/MultiTenancy.test.tsx +48 -0
  255. package/context/multi-tenancy/index.tsx +32 -0
  256. package/css/index.ts +15 -0
  257. package/cypress/axe/terminal-log.js +19 -0
  258. package/cypress/config/visual.config.ts +11 -0
  259. package/cypress/config/visual.skip.config.ts +10 -0
  260. package/cypress/e2e/account/accessibility.cy.js +88 -0
  261. package/cypress/e2e/account/banners.cy.js +169 -0
  262. package/cypress/e2e/account/cancellation.cy.js +219 -0
  263. package/cypress/e2e/account/holiday-stops.cy.js +109 -0
  264. package/cypress/e2e/account/main-api.cy.js +102 -0
  265. package/cypress/e2e/account/newsletters-and-alerts.cy.js +149 -0
  266. package/cypress/e2e/account/newsletters-page.cy.js +69 -0
  267. package/cypress/e2e/account/payment-page.cy.js +98 -0
  268. package/cypress/e2e/account/personal-details.cy.js +1161 -0
  269. package/cypress/e2e/account/subscription-and-billing.cy.js +434 -0
  270. package/cypress/e2e/checkout/account-creation.cy.js +8 -0
  271. package/cypress/e2e/checkout/payment-details.cy.js +19 -0
  272. package/cypress/e2e/core/home-page.cy.js +6 -0
  273. package/cypress/e2e/help-hub/accessibility.cy.js +35 -0
  274. package/cypress/e2e/help-hub/article-page.cy.js +115 -0
  275. package/cypress/e2e/help-hub/landing-page.cy.js +94 -0
  276. package/cypress/e2e/help-hub/result-page.cy.js +117 -0
  277. package/cypress/fixtures/empty.html +10 -0
  278. package/cypress/fixtures/example.json +5 -0
  279. package/cypress/fixtures/holiday-stops.json +40 -0
  280. package/cypress/fixtures/paymentFailure.js +24 -0
  281. package/cypress/fixtures/testDates.js +26 -0
  282. package/cypress/support/commands.js +125 -0
  283. package/cypress/support/consentValues.js +5839 -0
  284. package/cypress/support/e2e.js +22 -0
  285. package/cypress/support/users.js +58 -0
  286. package/cypress/visual/account/print-visual-regression.cy.js +9 -0
  287. package/cypress/visual/account/visual-regression.cy.js +40 -0
  288. package/cypress/visual/empty/empty.cy.js +5 -0
  289. package/cypress.config.ts +38 -0
  290. package/helpers/__tests__/getUser.test.ts +45 -0
  291. package/helpers/__tests__/logger.test.ts +62 -0
  292. package/helpers/__tests__/useThemeDropdownObject.test.ts +49 -0
  293. package/helpers/a11y.ts +7 -0
  294. package/helpers/addCacheHeaders.ts +8 -0
  295. package/helpers/getUser.ts +37 -0
  296. package/helpers/getYear.ts +1 -0
  297. package/helpers/global-types.ts +186 -0
  298. package/helpers/logger/getWinstonLogger.ts +19 -0
  299. package/helpers/logger/index.ts +20 -0
  300. package/helpers/logger/replaceConsoleWithLogger.ts +14 -0
  301. package/helpers/mocks/articleMock.ts +50 -0
  302. package/helpers/mocks/getPageMock.ts +369 -0
  303. package/helpers/mocks/getRadioPostMock.ts +71 -0
  304. package/helpers/mocks/getRadioPostsMock.ts +26 -0
  305. package/helpers/mocks/getRecommendationsMock.ts +20 -0
  306. package/helpers/mocks/index.ts +7 -0
  307. package/helpers/multiTenancy.ts +19 -0
  308. package/helpers/setupTests.ts +5 -0
  309. package/helpers/test-utils.tsx +33 -0
  310. package/helpers/useThemeDropdownObject.tsx +73 -0
  311. package/infrastructure/.circleci/config.yml +1187 -0
  312. package/infrastructure/INFRASTRUCTURE.md +142 -0
  313. package/infrastructure/build_and_deploy.png +0 -0
  314. package/infrastructure/helm/Chart.yaml +21 -0
  315. package/infrastructure/helm/templates/_helpers.tpl +87 -0
  316. package/infrastructure/helm/templates/deployment.yaml +45 -0
  317. package/infrastructure/helm/templates/horizontalpodautoscaler.yaml +21 -0
  318. package/infrastructure/helm/templates/ingress.yaml +31 -0
  319. package/infrastructure/helm/templates/networkpolicy.yaml +26 -0
  320. package/infrastructure/helm/templates/secret.yaml +12 -0
  321. package/infrastructure/helm/templates/service.yaml +15 -0
  322. package/infrastructure/helm/values-dev.yaml +39 -0
  323. package/infrastructure/helm/values-local.yaml +30 -0
  324. package/infrastructure/helm/values-pr.yaml +40 -0
  325. package/infrastructure/helm/values-prod.yaml +39 -0
  326. package/infrastructure/helm/values-staging.yaml +39 -0
  327. package/infrastructure/helm/values.yaml +44 -0
  328. package/infrastructure/pull_request.png +0 -0
  329. package/infrastructure/release-documentation-cli.config.json +18 -0
  330. package/infrastructure/remove_pr.png +0 -0
  331. package/infrastructure/terraform-ecr/dev.tfvars +3 -0
  332. package/infrastructure/terraform-ecr/ecr.tf +69 -0
  333. package/infrastructure/terraform-ecr/main.tf +3 -0
  334. package/infrastructure/terraform-ecr/variables.tf +19 -0
  335. package/infrastructure/terraform-ecr/versions.tf +12 -0
  336. package/infrastructure/terraform-newrelic/alerts.tf +290 -0
  337. package/infrastructure/terraform-newrelic/dashboards.tf +347 -0
  338. package/infrastructure/terraform-newrelic/dev.tfvars +3 -0
  339. package/infrastructure/terraform-newrelic/lighthouse-script-dev.js +53 -0
  340. package/infrastructure/terraform-newrelic/lighthouse-script-prod.js +54 -0
  341. package/infrastructure/terraform-newrelic/lighthouse-script-stage.js +54 -0
  342. package/infrastructure/terraform-newrelic/main.tf +11 -0
  343. package/infrastructure/terraform-newrelic/monitors.tf +11 -0
  344. package/infrastructure/terraform-newrelic/prod.tfvars +3 -0
  345. package/infrastructure/terraform-newrelic/staging.tfvars +3 -0
  346. package/infrastructure/terraform-newrelic/variables.tf +33 -0
  347. package/infrastructure/terraform-newrelic/versions.tf +18 -0
  348. package/jest.config.js +40 -0
  349. package/jest.config.pact.js +18 -0
  350. package/newrelic.js +86 -0
  351. package/next-env.d.ts +5 -0
  352. package/next.config.js +95 -0
  353. package/package.json +127 -0
  354. package/pages/_app.tsx +117 -0
  355. package/pages/_document.tsx +112 -0
  356. package/pages/_error.tsx +68 -0
  357. package/pages/account/add/[field].tsx +34 -0
  358. package/pages/account/cancellation/index.tsx +22 -0
  359. package/pages/account/delete/confirm/index.tsx +16 -0
  360. package/pages/account/delete/error/index.tsx +16 -0
  361. package/pages/account/delete/index.tsx +16 -0
  362. package/pages/account/delete/success/index.tsx +16 -0
  363. package/pages/account/dream-team/index.tsx +19 -0
  364. package/pages/account/edit/[field].tsx +45 -0
  365. package/pages/account/family/index.tsx +19 -0
  366. package/pages/account/holiday-stop/index.tsx +19 -0
  367. package/pages/account/holiday-stop/previous-holiday-stops.tsx +19 -0
  368. package/pages/account/holiday-stop/upcoming-holiday-stops.tsx +19 -0
  369. package/pages/account/index.tsx +33 -0
  370. package/pages/account/newsletters/index.tsx +19 -0
  371. package/pages/account/newsletters-and-alerts/index.tsx +24 -0
  372. package/pages/account/payment/[paymentMethod].tsx +37 -0
  373. package/pages/account/payment/index.tsx +23 -0
  374. package/pages/account/payment-methods/index.tsx +21 -0
  375. package/pages/account/subscription-and-billing/index.tsx +29 -0
  376. package/pages/api/account/get-session/index.ts +33 -0
  377. package/pages/api/account/invoice/index.ts +35 -0
  378. package/pages/api/account/mutate/index.ts +8 -0
  379. package/pages/api/account/query/index.ts +7 -0
  380. package/pages/api/auth/[...nextauth].ts +11 -0
  381. package/pages/api/competitions-sitemap.ts +19 -0
  382. package/pages/api/feed.ts +23 -0
  383. package/pages/api/health-check.ts +7 -0
  384. package/pages/api/news-sitemap.ts +18 -0
  385. package/pages/api/pages-sitemap.ts +27 -0
  386. package/pages/api/robots.ts +19 -0
  387. package/pages/api/sitemap.ts +24 -0
  388. package/pages/checkout/account-creation/index.tsx +13 -0
  389. package/pages/checkout/payment-details/index.tsx +10 -0
  390. package/pages/empty.tsx +6 -0
  391. package/pages/help-hub/article/[title]/index.tsx +25 -0
  392. package/pages/help-hub/error.tsx +23 -0
  393. package/pages/help-hub/index.tsx +51 -0
  394. package/pages/help-hub/results.tsx +25 -0
  395. package/pages/index.tsx +19 -0
  396. package/pages/player/brightcove.tsx +19 -0
  397. package/pages/rss/create/index.tsx +18 -0
  398. package/pages/rss/feed/[feedId]/index.tsx +21 -0
  399. package/pages/rss/index.tsx +18 -0
  400. package/public/ads.min.js +8175 -0
  401. package/public/assets/display-base-header.svg +25 -0
  402. package/public/assets/display-personalDetails-header-sun.svg +55 -0
  403. package/public/assets/display-personalDetails-header-times.svg +90 -0
  404. package/public/assets/display-personalDetails-header-vr.svg +46 -0
  405. package/public/assets/dream-team.svg +10 -0
  406. package/public/assets/navigationPrimary-brandMark-sun.svg +9 -0
  407. package/public/assets/navigationPrimary-brandMark-times.svg +18 -0
  408. package/public/assets/navigationPrimary-brandMark-vr.svg +10 -0
  409. package/public/assets/newsletters/bestoftimes-101.png +0 -0
  410. package/public/assets/newsletters/books-115.png +0 -0
  411. package/public/assets/newsletters/environment-140.png +0 -0
  412. package/public/assets/newsletters/fashion-108.png +0 -0
  413. package/public/assets/newsletters/food-106.png +0 -0
  414. package/public/assets/newsletters/football-111.png +0 -0
  415. package/public/assets/newsletters/ireland-152.png +0 -0
  416. package/public/assets/newsletters/law-121.png +0 -0
  417. package/public/assets/newsletters/money-107.png +0 -0
  418. package/public/assets/newsletters/moneymentor-150.png +0 -0
  419. package/public/assets/newsletters/placeholder.png +0 -0
  420. package/public/assets/newsletters/politics-119.png +0 -0
  421. package/public/assets/newsletters/property-113.png +0 -0
  422. package/public/assets/newsletters/puzzles-125.png +0 -0
  423. package/public/assets/newsletters/scotland-134.png +0 -0
  424. package/public/assets/newsletters/theatre-127.png +0 -0
  425. package/public/assets/newsletters/travel-149.png +0 -0
  426. package/public/assets/newsletters/tv-133.png +0 -0
  427. package/public/assets/newsletters/us-153.png +0 -0
  428. package/public/assets/no-subscription.svg +15 -0
  429. package/public/assets/pending-activation.svg +16 -0
  430. package/public/assets/personal-details-header.svg +91 -0
  431. package/public/assets/plchldr150x100.png +0 -0
  432. package/public/assets/previous-subscription.svg +15 -0
  433. package/public/assets/primary-navigation-logo-white.svg +6 -0
  434. package/public/assets/primary-navigation-logo.svg +6 -0
  435. package/public/assets/tls-logo-white.svg +3 -0
  436. package/public/favicon.ico +0 -0
  437. package/public/icon.png +0 -0
  438. package/public/prebid.min.js +1 -0
  439. package/queries/getPage.ts +100 -0
  440. package/queries/getRadioPost.ts +61 -0
  441. package/queries/getRadioPosts.ts +16 -0
  442. package/queries/getUserSubscription.ts +9 -0
  443. package/queries/index.ts +3 -0
  444. package/scripts/k8s-local.sh +137 -0
  445. package/scripts/nr-exports.sh +7 -0
  446. package/temp/_app.tsx +15 -0
  447. package/temp/_document.tsx +61 -0
  448. package/temp/app-context-test.tsx +51 -0
  449. package/temp/app-context.tsx +25 -0
  450. package/temp/config-index.ts +1 -0
  451. package/temp/context-index.tsx +1 -0
  452. package/temp/header.tsx +45 -0
  453. package/temp/next.config.js +56 -0
  454. package/tsconfig.json +51 -0
  455. package/tsconfig.test.json +6 -0
  456. package/validation/index.tsx +24 -0
@@ -0,0 +1,25 @@
1
+ <svg width="560" height="315" viewBox="0 0 560 315" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="560" height="315" rx="4" fill="#FAFAFA"/>
3
+ <g filter="url(#filter0_d)">
4
+ <circle cx="280" cy="157" r="48" fill="white"/>
5
+ </g>
6
+ <g clip-path="url(#clip0)">
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M274.897 163.018L274.905 163.028C273.913 162.504 272.881 162.109 271.733 161.952C270.514 161.785 269.457 162.352 268.481 163.282L268.404 163.357C268.366 163.394 268.328 163.432 268.289 163.471L268.213 163.548L268.138 163.628C268.075 163.694 268.012 163.762 267.95 163.831L267.875 163.915L267.8 164L267.726 164.086C267.714 164.1 267.701 164.114 267.689 164.129L267.615 164.216C267.603 164.231 267.591 164.246 267.578 164.261L267.491 164.367C267.462 164.402 267.433 164.438 267.404 164.474L267.317 164.583C267.302 164.602 267.288 164.62 267.274 164.638L267.187 164.749L267.101 164.861L267.015 164.974L266.929 165.087L266.887 165.145L266.781 165.287L266.729 165.359L266.624 165.503L266.572 165.576L266.467 165.721L266.363 165.868L266.206 166.089L265.999 166.386L265.528 167.062L265.372 167.284L265.216 167.505L265.112 167.652L264.956 167.87L264.852 168.015L264.747 168.158L264.642 168.3L264.537 168.44L264.455 168.548L264.372 168.656L264.289 168.762L264.206 168.868L264.123 168.972L264.04 169.074L263.956 169.176L263.914 169.226L263.83 169.326L263.76 169.407L263.69 169.487L263.619 169.567C263.584 169.606 263.549 169.645 263.513 169.684L263.442 169.76L263.371 169.835C263.359 169.848 263.347 169.86 263.335 169.872L263.263 169.946C263.215 169.994 263.167 170.042 263.119 170.089L263.046 170.158C263.034 170.17 263.022 170.181 263.01 170.192L262.937 170.26C262.023 171.092 261.038 171.585 259.915 171.431C257.584 171.111 256.42 168.363 256.361 164.716L256.293 164.786C260.75 160.13 268.333 159.511 274.897 163.018Z" fill="#3358CC"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M285.743 168.44C283.735 168.129 282.084 167.445 280.617 166.63L280.485 166.555C280.44 166.53 280.397 166.505 280.353 166.48L280.222 166.405L280.059 166.309L279.899 166.213L279.771 166.135L279.612 166.037L279.455 165.939L279.33 165.86L279.205 165.781L279.02 165.661L278.776 165.501L278.58 165.372L278.387 165.242L278.098 165.048L277.434 164.599L277.246 164.472L277.012 164.315L276.779 164.16C276.157 163.749 275.539 163.362 274.906 163.028L274.898 163.018C268.4 159.546 260.903 160.118 256.428 164.647L256.362 164.716C256.222 156.085 262.275 142.42 273.707 143.989C275.71 144.264 277.315 144.908 278.718 145.692L278.843 145.763C278.885 145.787 278.926 145.81 278.967 145.834L279.09 145.906L279.152 145.943L279.273 146.016L279.394 146.089L279.513 146.163L279.573 146.201L279.721 146.294L279.867 146.389L279.984 146.465L280.099 146.541L280.214 146.618L280.329 146.695L280.442 146.772L280.555 146.85L280.667 146.927L280.85 147.055L280.941 147.119L281.122 147.247L281.302 147.375L282.1 147.947L282.275 148.073L282.451 148.197L282.67 148.351L282.889 148.502C283.253 148.752 283.618 148.991 283.99 149.214L284.129 149.296C291.503 153.742 298.985 151.463 302.869 148.044L302.973 147.951C302.935 156.538 296.787 169.956 285.743 168.44Z" fill="#577FFB"/>
9
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M299.52 141.122C301.872 141.445 302.99 144.249 302.974 147.951L302.985 147.94C299.127 151.424 291.529 153.807 284.064 149.275L284.072 149.263C285.172 149.913 286.335 150.414 287.702 150.602C289.377 150.831 290.723 149.803 291.944 148.346L292.031 148.241C292.045 148.223 292.059 148.206 292.074 148.188L292.16 148.081L292.246 147.973L292.332 147.864L292.417 147.753C292.431 147.735 292.446 147.716 292.46 147.697L292.545 147.585L292.629 147.472L292.732 147.333C292.749 147.31 292.766 147.286 292.783 147.263L292.91 147.087L293.037 146.909L293.139 146.765L293.239 146.621L293.34 146.476L293.491 146.258L293.749 145.881L294.061 145.425L294.256 145.141L294.403 144.929L294.55 144.719L294.648 144.58L294.746 144.442L294.844 144.305L294.943 144.17L295.042 144.036L295.121 143.93L295.2 143.825L295.28 143.72L295.36 143.618C295.373 143.6 295.387 143.583 295.4 143.567L295.48 143.465C295.494 143.449 295.507 143.432 295.52 143.415L295.601 143.316C295.641 143.267 295.682 143.218 295.722 143.17L295.804 143.074C295.845 143.027 295.885 142.98 295.926 142.934L296.009 142.842C297.051 141.69 298.178 140.938 299.52 141.122Z" fill="#AEBFFF"/>
10
+ </g>
11
+ <defs>
12
+ <filter id="filter0_d" x="228.182" y="107.091" width="103.637" height="103.637" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
13
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
14
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
15
+ <feOffset dy="1.90925"/>
16
+ <feGaussianBlur stdDeviation="1.90925"/>
17
+ <feColorMatrix type="matrix" values="0 0 0 0 0.0392157 0 0 0 0 0.0392157 0 0 0 0 0.0392157 0 0 0 0.08 0"/>
18
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
19
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
20
+ </filter>
21
+ <clipPath id="clip0">
22
+ <rect width="47.0621" height="31.2295" fill="white" transform="translate(256.113 140.392)"/>
23
+ </clipPath>
24
+ </defs>
25
+ </svg>
@@ -0,0 +1,55 @@
1
+ <svg width="560" height="315" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="560" height="315" rx="4" fill="#FAFAFA"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M303.777 84.36H109.405c-5.288 0-9.797 4.339-9.797 9.714V221.92h213.966V94.074c0-5.375-4.492-9.715-9.797-9.715z" fill="#fff" stroke="#000" stroke-width=".417"/>
4
+ <path d="M206.983 93.373a1.568 1.568 0 10-.001-3.135 1.568 1.568 0 00.001 3.135z" stroke="#000" stroke-width=".417"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M322.12 234.06H91.099c-12.01 0-20.099-4.121-20.099-5.873v-5.327c0-.527.523-.952 1.174-.952h268.871c.651 0 1.175.425 1.175.952v5.537c-.003 1.385-6.267 5.663-20.1 5.663z" fill="#fff" stroke="#000" stroke-width=".417"/>
6
+ <path d="M71.197 227.588h270.295" stroke="#000" stroke-width=".208" stroke-linecap="square"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M235.979 222.301v1.21c0 .862-1.698 1.123-2.984 1.123H180.26c-1.352 0-3.063-.261-3.063-1.123v-1.21" fill="#fff"/>
8
+ <path d="M235.979 222.301v1.21c0 .862-1.698 1.123-2.984 1.123H180.26c-1.352 0-3.063-.261-3.063-1.123v-1.21" stroke="#000" stroke-width=".208"/>
9
+ <path d="M304.586 99.643H108.227v114.431h196.359V99.643z" fill="#EB1701" stroke="#000" stroke-width=".208"/>
10
+ <mask id="a" maskUnits="userSpaceOnUse" x="109" y="100" width="195" height="114">
11
+ <path d="M303.554 100.082H109.068v113.381h194.486V100.082z" fill="#0072EE"/>
12
+ </mask>
13
+ <g mask="url(#a)">
14
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M285.362 40.523c-64.413 0-116.691 52.278-116.691 116.692 0 64.413 52.278 116.691 116.691 116.691 64.414 0 116.692-52.278 116.692-116.691 0-64.414-52.278-116.692-116.692-116.692zm74.214 173.053c-16.686-20.304-57.178-27.189-74.215-27.189-17.037 0-57.529 6.885-74.216 27.189-11.902-15.637-19.137-35.124-19.137-56.362 0-51.461 41.892-93.353 93.353-93.353 51.461 0 93.353 41.892 93.353 93.353 0 21.238-7.235 40.725-19.138 56.362zm-115.055-85.53a40.737 40.737 0 0140.842-40.842 40.738 40.738 0 0140.842 40.842 40.738 40.738 0 01-40.842 40.842 40.737 40.737 0 01-40.842-40.842z" fill="#fff"/>
15
+ </g>
16
+ <path d="M108.447 213.468V99.476h195.919v113.992H108.447z" stroke="#000" stroke-width=".44"/>
17
+ <g clip-path="url(#display-personalDetails-header__clip0)" fill="#fff">
18
+ <path d="M136.298 112.022c-1.111-1.967-3.926-3.043-7.962-3.043-4.828 0-7.761 1.5-7.761 3.998 0 1.575 1.364 2.626 4.233 3.303l1.254.293 1.218.292 1.253.292c.055.018.146.032.225.075.449.164.713.399.713.659 0 .531-.847.898-2.105.898-2.022 0-3.042-.367-3.61-1.279l-5.451.677c1.391 2.277 4.351 3.41 8.951 3.41 4.892 0 8.266-1.746 8.266-4.276 0-1.397-1.534-2.719-3.863-3.232l-1.084-.235-1.084-.253-1.084-.236a16.018 16.018 0 01-.847-.221c-.623-.164-.911-.384-.911-.695 0-.498.713-.808 1.825-.808 1.506 0 2.59.424 2.925 1.19l4.899-.809zm13.78 1.153h-4.849l-1.064 4.088c-.362 1.372-1.092 2.063-2.183 2.063-.568 0-.883-.221-.883-.62 0-.132 0-.235.153-.809l1.246-4.725h-4.927l-1.328 5.164c-.154.62-.261 1.143-.261 1.411 0 1.069 1.506 1.91 3.43 1.91 1.951 0 3.141-.488 4.331-1.764l-.413 1.543h4.619l2.129-8.261zm1.049-.002l-2.156 8.268h4.745l1.301-4.961c.237-.873.859-1.322 1.813-1.322.777 0 1.191.221 1.191.652 0 .114-.056.385-.127.67l-1.273 4.961h4.856l1.455-5.649c.083-.303.126-.588.126-.841 0-1.208-1.482-2.031-3.654-2.031-1.994 0-3.449.556-4.178 1.593l.363-1.34h-4.462zm-8.538-3.084h.922l.154-.62h-3.007l-.162.62h.895l-.54 2.081h1.21l.528-2.081zm3.358 1.005l-.28 1.076h1.203l.693-2.683h-1.21l-.252.987h-1.084l.252-.987h-1.202l-.694 2.683h1.203l.28-1.076h1.091zm4.592.463h-1.86l.126-.474h1.498l.154-.588h-1.498l.106-.424h1.786l.153-.588h-2.979l-.694 2.683h3.047l.161-.609z"/>
19
+ </g>
20
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M468.147 226.296c0 4.324-3.519 7.828-7.861 7.828h-47.903c-4.342 0-7.862-3.504-7.862-7.828V107.907c0-4.323 3.52-7.827 7.862-7.827h47.903c4.342 0 7.861 3.504 7.861 7.827v118.389z" fill="#fff" stroke="#000" stroke-width=".52"/>
21
+ <path d="M463.709 117.658h-54.782v97.438h54.782v-97.438z" fill="#EB1701" stroke="#000" stroke-width=".26"/>
22
+ <path clip-rule="evenodd" d="M442.208 112.642c0 .311-.215.562-.48.562h-9.838c-.265 0-.48-.251-.48-.562v-1.262c0-.311.215-.562.48-.562h9.838c.265 0 .48.251.48.562v1.262z" stroke="#000" stroke-width=".26"/>
23
+ <path d="M436.824 107.382a1.468 1.468 0 100-2.935 1.468 1.468 0 000 2.935zm-.469 121.871c2.714 0 4.914-2.192 4.914-4.895 0-2.704-2.2-4.895-4.914-4.895-2.714 0-4.914 2.191-4.914 4.895 0 2.703 2.2 4.895 4.914 4.895z" stroke="#000" stroke-width=".26"/>
24
+ <path d="M464.108 117.461h-55.449v96.829h55.449v-96.829z" fill="#EB1701" stroke="#000" stroke-width=".208"/>
25
+ <path d="M408.879 214.898v-97.217h55.009v97.217h-55.009z" stroke="#000" stroke-width=".44"/>
26
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M406.156 237.16h-96.524a6.074 6.074 0 01-6.075-6.073V82.981a6.073 6.073 0 016.075-6.073h96.524a6.073 6.073 0 016.075 6.073v148.106a6.073 6.073 0 01-6.075 6.073z" fill="#fff" stroke="#000" stroke-width=".538"/>
27
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M406.156 237.16h-96.524a6.074 6.074 0 01-6.075-6.073V82.981a6.073 6.073 0 016.075-6.073h96.524a6.073 6.073 0 016.075 6.073v148.106a6.073 6.073 0 01-6.075 6.073z" fill="#fff" stroke="#000" stroke-width=".538"/>
28
+ <path d="M404.14 93.05h-92.03v127.891h92.03V93.051z" fill="#EB1701" stroke="#000" stroke-width=".269"/>
29
+ <path d="M358.136 232.631a4.056 4.056 0 100-8.112 4.056 4.056 0 000 8.112zm-.523-145.66a1.512 1.512 0 100-3.024 1.512 1.512 0 000 3.024z" stroke="#000" stroke-width=".269"/>
30
+ <path d="M404.522 93.46h-92.691v126.623h92.691V93.461z" fill="#EB1701" stroke="#000" stroke-width=".208"/>
31
+ <mask id="b" maskUnits="userSpaceOnUse" x="311" y="93" width="94" height="128">
32
+ <path d="M404.522 93.46h-92.691v126.623h92.691V93.461z" fill="#0072EE"/>
33
+ </mask>
34
+ <g mask="url(#b)">
35
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M285.362 39.693c-64.413 0-116.691 52.278-116.691 116.692 0 64.413 52.278 116.691 116.691 116.691 64.414 0 116.692-52.278 116.692-116.691 0-64.414-52.278-116.692-116.692-116.692zm74.214 173.055c-16.686-20.304-57.178-27.189-74.215-27.189-17.037 0-57.529 6.885-74.216 27.189-11.902-15.636-19.137-35.124-19.137-56.362 0-51.46 41.892-93.353 93.353-93.353 51.461 0 93.353 41.893 93.353 93.353 0 21.238-7.235 40.726-19.138 56.362zm-115.055-85.534a40.737 40.737 0 0140.842-40.842 40.738 40.738 0 0140.842 40.842 40.738 40.738 0 01-40.842 40.842 40.737 40.737 0 01-40.842-40.842z" fill="#fff"/>
36
+ </g>
37
+ <path d="M312.051 220.691V93.681h92.251v127.01h-92.251z" stroke="#000" stroke-width=".44"/>
38
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M329.918 230.548c0 4.097-3.335 7.418-7.45 7.418h-45.395c-4.115 0-7.45-3.321-7.45-7.418V118.357c0-4.097 3.335-7.418 7.45-7.418h45.395c4.115 0 7.45 3.321 7.45 7.418v112.191z" fill="#fff" stroke="#000" stroke-width=".493"/>
39
+ <path d="M325.71 127.602h-51.914v92.337h51.914v-92.337z" fill="#EB1701" stroke="#000" stroke-width=".247"/>
40
+ <path clip-rule="evenodd" d="M305.337 122.846c0 .294-.204.532-.454.532h-9.324c-.251 0-.455-.238-.455-.532v-1.197c0-.294.204-.532.455-.532h9.324c.25 0 .454.238.454.532v1.197z" stroke="#000" stroke-width=".247"/>
41
+ <path d="M300.235 117.861a1.392 1.392 0 10.001-2.783 1.392 1.392 0 00-.001 2.783zm-.447 115.488c2.571 0 4.656-2.076 4.656-4.638s-2.085-4.639-4.656-4.639c-2.572 0-4.657 2.077-4.657 4.639 0 2.562 2.085 4.638 4.657 4.638z" stroke="#000" stroke-width=".247"/>
42
+ <path d="M325.899 127.391h-52.138v92.691h52.138v-92.691z" fill="#EB1701" stroke="#000" stroke-width=".208"/>
43
+ <mask id="c" maskUnits="userSpaceOnUse" x="273" y="127" width="53" height="94">
44
+ <path d="M325.899 127.391h-52.138v92.691h52.138v-92.691z" fill="#0072EE"/>
45
+ </mask>
46
+ <g mask="url(#c)">
47
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M285.362 39.693c-64.413 0-116.691 52.278-116.691 116.692 0 64.413 52.278 116.691 116.691 116.691 64.414 0 116.692-52.278 116.692-116.691 0-64.414-52.278-116.692-116.692-116.692zm74.214 173.055c-16.686-20.304-57.178-27.189-74.215-27.189-17.037 0-57.529 6.885-74.216 27.189-11.902-15.636-19.137-35.124-19.137-56.362 0-51.46 41.892-93.353 93.353-93.353 51.461 0 93.353 41.893 93.353 93.353 0 21.238-7.235 40.726-19.138 56.362zm-115.055-85.534a40.737 40.737 0 0140.842-40.842 40.738 40.738 0 0140.842 40.842 40.738 40.738 0 01-40.842 40.842 40.737 40.737 0 01-40.842-40.842z" fill="#fff"/>
48
+ </g>
49
+ <path d="M273.981 220.689v-93.078h51.698v93.078h-51.698z" stroke="#000" stroke-width=".44"/>
50
+ <defs>
51
+ <clipPath id="display-personalDetails-header__clip0">
52
+ <path fill="#fff" transform="translate(118.022 108.781)" d="M0 0h45.142v13.166H0z"/>
53
+ </clipPath>
54
+ </defs>
55
+ </svg>
@@ -0,0 +1,90 @@
1
+ <svg width="560" height="315" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="560" height="315" rx="4" fill="#F5F5F5"/>
3
+ <ellipse cx="282.623" cy="241.819" rx="137.962" ry="40.386" fill="#EEE"/>
4
+ <g opacity=".3">
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M385.789 115.327l-1.949 2.096 2.86.262 1.403 2.488 1.135-2.621 2.816-.557-2.159-1.881.337-2.834-2.468 1.458-2.608-1.193.633 2.782z" fill="#01000D"/>
6
+ <path d="M361.923 92.014c-2.619-.697-5.306.848-6.006 3.443-.7 2.596.85 5.268 3.469 5.965 2.619.698 5.306-.847 6.006-3.442.7-2.596-.85-5.269-3.469-5.966zm9.657 18.14a1.661 1.661 0 00-2.034 1.165 1.647 1.647 0 001.176 2.019 1.66 1.66 0 002.034-1.164 1.649 1.649 0 00-1.176-2.02z" stroke="#01000D"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M382.223 85.906l-4.262.616 3.084 2.987-.728 4.217 3.812-1.991 3.812 1.991-.728-4.217 3.085-2.987-4.263-.616-1.906-3.837-1.906 3.837z" fill="#01000D"/>
8
+ <ellipse rx="4.298" ry="4.322" transform="matrix(.2604 -.9655 -.96635 -.25725 371.55 69.594)" fill="#01000D"/>
9
+ </g>
10
+ <g opacity=".3">
11
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M153.891 187.154l.633-2.783-2.608 1.194-2.468-1.458.336 2.833-2.158 1.881 2.816.558 1.134 2.62 1.404-2.488 2.859-.262-1.948-2.095z" fill="#01000D"/>
12
+ <path d="M176.044 198.455a1.788 1.788 0 001.274-2.191 1.803 1.803 0 00-2.207-1.265 1.79 1.79 0 00-1.274 2.192 1.802 1.802 0 002.207 1.264zm-8.61-22.217a1.648 1.648 0 001.175-2.019 1.662 1.662 0 00-2.034-1.166 1.648 1.648 0 00-1.175 2.02 1.66 1.66 0 002.034 1.165z" stroke="#01000D"/>
13
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M194.786 176.615l3.381-2.65-4.174-1.055-1.492-4.014-2.299 3.618-4.304.17 2.753 3.29-1.168 4.119 4.001-1.584 3.582 2.376-.28-4.27z" fill="#01000D"/>
14
+ <ellipse rx="4.304" ry="4.316" transform="matrix(.26003 .96413 .9677 -.25761 196.957 204.403)" fill="#01000D"/>
15
+ </g>
16
+ <g filter="url(#display-personalDetails-header__filter0_i)">
17
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M218.65 49c0-7.732 6.268-14 14-14h96.057c7.732 0 14 6.268 14 14v190.233c0 7.732-6.268 14-14 14H232.65c-7.732 0-14-6.268-14-14V49z" fill="#2B80AA"/>
18
+ </g>
19
+ <g filter="url(#display-personalDetails-header__filter1_i)">
20
+ <ellipse cx="289.786" cy="45.743" rx="1.707" ry="1.696" fill="#069"/>
21
+ </g>
22
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M224.34 50.652c0-5.523 4.477-10 10-10h15.283a2 2 0 012 2v1.177a7 7 0 007 7h44.164a7 7 0 007-7v-1.177a2 2 0 012-2h15.228c5.523 0 10 4.477 10 10v186.926c0 5.523-4.477 10-10 10H234.34c-5.523 0-10-4.477-10-10V50.652z" fill="#EEE"/>
23
+ <g filter="url(#display-personalDetails-header__filter2_d)">
24
+ <rect x="228.895" y="61.01" width="103.57" height="166.219" rx="1" fill="#fff"/>
25
+ </g>
26
+ <g filter="url(#display-personalDetails-header__filter3_i)">
27
+ <rect x="269.865" y="44.047" width="15.934" height="3.392" rx="1.5" fill="#069"/>
28
+ </g>
29
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M243.106 150.336a1.696 1.696 0 100 3.392h74a1.696 1.696 0 100-3.392h-74zm-.002 9.044a1.696 1.696 0 000 3.392h56.929a1.696 1.696 0 100-3.392h-56.929zm-1.696 10.741c0-.937.76-1.697 1.696-1.697h63.758a1.696 1.696 0 010 3.393h-63.758c-.936 0-1.696-.76-1.696-1.696zm1.696 7.352a1.696 1.696 0 000 3.392h56.929a1.696 1.696 0 100-3.392h-56.929z" fill="#E4E4E4"/>
30
+ <ellipse opacity=".5" cx="280.444" cy="106.692" rx="24.47" ry="24.311" fill="#EEE"/>
31
+ <mask id="a" maskUnits="userSpaceOnUse" x="256" y="82" width="50" height="50">
32
+ <ellipse cx="280.682" cy="106.801" rx="24.47" ry="24.311" fill="#EEE"/>
33
+ </mask>
34
+ <g mask="url(#a)">
35
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M280.679 109.629c4.714 0 8.536-3.797 8.536-8.48 0-4.684-3.822-8.481-8.536-8.481-4.715 0-8.536 3.797-8.536 8.481 0 4.683 3.821 8.48 8.536 8.48zm.57 36.181c9.428 0 17.072-7.594 17.072-16.961 0-9.368-7.644-16.961-17.072-16.961-9.429 0-17.072 7.593-17.072 16.961 0 9.367 7.643 16.961 17.072 16.961z" fill="#01000D"/>
36
+ </g>
37
+ <g filter="url(#display-personalDetails-header__filter4_d)">
38
+ <circle cx="296.93" cy="124.979" r="8" fill="#fff"/>
39
+ </g>
40
+ <ellipse cx="334.716" cy="235.709" rx="31.299" ry="31.095" fill="#2B80AA"/>
41
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M348.817 226.238c1.287 1.191 1.287 3.124 0 4.315l-15.318 14.18c-1.931 1.788-5.061 1.788-6.992 0l-5.899-5.46c-1.287-1.192-1.287-3.124 0-4.316 1.287-1.192 3.375-1.192 4.662 0l4.733 4.381 14.152-13.1c1.287-1.192 3.374-1.192 4.662 0z" fill="#fff"/>
42
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M299.075 128.875h-4.043v-.092l1.128-.477v-5.866h-.009s-.333-.003-.639.068c-.147.045-.315.092-.545.28a87.607 87.607 0 00-1.431 1.293l-.13-.045.18-1.911h6.791l.225 1.911-.129.045s-1.202-1.104-1.431-1.293c-.23-.188-.398-.236-.545-.28-.306-.071-.571-.063-.571-.063l.001.004v5.857l1.145.47.003.099z" fill="#01000D"/>
43
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M299.075 128.778h-4.043v-.091l1.128-.471v-5.794h-.009s-.333-.003-.639.068c-.147.044-.315.09-.545.277a84.863 84.863 0 00-1.431 1.276l-.13-.044.18-1.888h6.791l.225 1.888-.129.044s-1.202-1.09-1.431-1.277c-.23-.186-.398-.233-.545-.276-.306-.07-.571-.063-.571-.063l.001.004v5.785l1.145.464.003.098z" fill="#000"/>
44
+ <defs>
45
+ <filter id="display-personalDetails-header__filter0_i" x="218.65" y="35" width="124.057" height="218.233" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
46
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
47
+ <feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
48
+ <feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
49
+ <feOffset dx="3"/>
50
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
51
+ <feColorMatrix values="0 0 0 0 0.854902 0 0 0 0 0.866667 0 0 0 0 0.890196 0 0 0 0.5 0"/>
52
+ <feBlend in2="shape" result="effect1_innerShadow"/>
53
+ </filter>
54
+ <filter id="display-personalDetails-header__filter1_i" x="288.079" y="44.047" width="3.414" height="3.392" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
55
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
56
+ <feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
57
+ <feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
58
+ <feOffset dx="1"/>
59
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
60
+ <feColorMatrix values="0 0 0 0 0.827451 0 0 0 0 0.835294 0 0 0 0 0.858824 0 0 0 0.5 0"/>
61
+ <feBlend in2="shape" result="effect1_innerShadow"/>
62
+ </filter>
63
+ <filter id="display-personalDetails-header__filter2_d" x="228.895" y="61.01" width="105.57" height="169.219" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
64
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
65
+ <feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
66
+ <feOffset dx="2" dy="3"/>
67
+ <feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.07 0"/>
68
+ <feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/>
69
+ <feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
70
+ </filter>
71
+ <filter id="display-personalDetails-header__filter3_i" x="269.865" y="44.047" width="15.934" height="3.392" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
72
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
73
+ <feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
74
+ <feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
75
+ <feOffset dx="1"/>
76
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
77
+ <feColorMatrix values="0 0 0 0 0.827451 0 0 0 0 0.835294 0 0 0 0 0.858824 0 0 0 0.5 0"/>
78
+ <feBlend in2="shape" result="effect1_innerShadow"/>
79
+ </filter>
80
+ <filter id="display-personalDetails-header__filter4_d" x="284.93" y="114.979" width="24" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
81
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
82
+ <feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
83
+ <feOffset dy="2"/>
84
+ <feGaussianBlur stdDeviation="2"/>
85
+ <feColorMatrix values="0 0 0 0 0.0392157 0 0 0 0 0.0392157 0 0 0 0 0.0392157 0 0 0 0.08 0"/>
86
+ <feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/>
87
+ <feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
88
+ </filter>
89
+ </defs>
90
+ </svg>
@@ -0,0 +1,46 @@
1
+ <svg width="560" height="316" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M559.37 314.957h-81.399c-.749-1.735-.384-3.609-.7-5.403-.828-4.634-1.321-9.347-2.376-13.931-1.104-4.792-1.735-9.909-4.999-13.843-6.339-7.661-13.004-14.996-21.158-20.872-4.042-2.909-8.114-5.097-13.251-4.309-1.538-.295-2.928.602-4.436.503-5.936-7.463-12.601-13.99-21.987-17.007.049-.73.424-1.282 1.104-1.528 3.648-1.332 5.975-4.496 9.16-6.488 3.756-2.356 7.197-5.334 11.17-7.207 3.934-1.864 4.338-4.437 2.524-7.917a2316.021 2316.021 0 01-19.708-38.817c-4.979-10.017-10.471-19.768-15.322-29.854-4.525-9.405-9.711-18.486-14.503-27.764-5.137-9.928-10.116-19.925-15.243-29.854a3881.92 3881.92 0 00-17.283-33.048c-2.238-4.23-3.993-8.726-6.803-12.65-.168-.335-.335-.67-.503-.996-.039-1.518-.877-2.593-2.001-3.49v-.503c-.533-1.666-1.055-3.332-2.495-4.495v-.503c-.217-1.302-.808-2.347-1.991-2.998-.207-.877-.355-1.784-.996-2.494.089-1.183-.493-1.962-1.499-2.494-.207-.878-.355-1.785-.995-2.495-.178-1.025-.513-1.952-1.499-2.494l-.503-1.499c-.355-1.34-.759-2.652-1.992-3.49-.187-1.173-.907-2.11-1.409-3.155-2.13-4.447-4.832-8.617-6.596-13.251.995-.02 1.991-.06 2.997-.06h230.975c4.151 0 3.757-.403 3.757 3.747-.03 103.553-.04 207.106-.04 310.659zm-422.493 0c-44.948 0-89.897-.01-134.836.049-1.706 0-2.041-.335-2.041-2.041C.04 208.821.04 104.686.04.542l19.984.06c-.088 1.064.503 1.902.927 2.8 2.041 4.337 4.111 8.656 6.083 13.014 2.998 6.615 5.916 13.27 8.894 19.906 2.198 4.89 4.426 9.77 6.645 14.66 1.843 4.053 3.677 8.105 5.53 12.147 1.41 3.076 2.87 6.143 4.28 9.229C55.242 78.597 58.15 84.81 60.9 91.1c1.854 4.25 4.062 8.351 5.798 12.61 2.602 6.369 5.777 12.453 8.44 18.782 3.49 8.302 7.551 16.357 11.278 24.55 2.919 6.399 5.65 12.876 8.558 19.285 2.021 4.437 4.27 8.775 6.281 13.221 2.869 6.33 5.56 12.729 8.439 19.049 2.879 6.32 5.926 12.561 8.824 18.88 2.968 6.468 5.827 12.975 8.775 19.453 4.427 9.711 8.943 19.383 13.31 29.124 3.56 7.947 7.286 15.805 11.457 23.456.651 1.193 1.331 1.597 2.544.996-.819 2.474-1.755 4.929-2.416 7.444-1.449 5.481-3.747 10.726-4.407 16.415-1.716-1.055-3.687-1.429-5.561-2.05-4.052-1.341-4.062-1.292-5.344 2.642z" fill="#FEC2C6"/>
3
+ <path d="M435.467 256.609c5.147-.789 9.209 1.39 13.251 4.309 8.164 5.876 14.819 13.211 21.158 20.872 3.264 3.944 3.895 9.051 4.999 13.842 1.055 4.585 1.558 9.288 2.376 13.932.316 1.794-.049 3.667.7 5.403H357.598c-.049-.415-.049-.838-.167-1.233a28790.724 28790.724 0 00-9.249-30.179c-.345-1.114-.719-2.209-1.577-3.067.079-4.762-2.258-8.912-3.53-13.31-1.893-6.576-4.19-13.034-6.576-19.452-1.696-4.555-2.889-9.317-5.265-13.616-1.252-4.249-2.455-8.518-4.565-12.443-.128-1.587-.68-3.046-1.203-4.535-2.297-6.556-4.919-12.994-6.822-19.679-1.873-6.576 1.134-11.654 7.818-13.291 2.159.286 3.254.069 2.781-2.8-.503-3.095-.74-6.467 1.419-9.307.306-.404.424-.946.01-1.37-3.421-3.51-3.806-7.888-3.628-12.433.937-2.475 1.617-5.048 3.323-7.178.453-.571.995-1.35.128-1.952-2.228-1.528-2.564-4.17-3.806-6.26-.099-.661-.197-1.322-.306-1.982.02-1.706.03-3.411.05-5.117l.236-1.962c.454-.878.75-1.883 1.381-2.603 3.204-3.648 4.121-7.897 3.519-12.59-.029-.247.01-.493.01-.74 4.506 1.745 7.858 4.92 11.23 8.292 5.985 5.985 4.24 15.321.207 20.428-.808 1.026-.71 1.558.059 2.505 1.41 1.715 3.076 3.46 3.352 5.708.602 4.95.316 9.81-3.371 13.754-.622.671-1.095 1.302-.464 2.169 2.416 3.313 1.765 6.981.947 10.51-.71 3.067-2.653 5.334-5.906 6.074-1.814.404-2.228 1.193-.937 2.593 2.475 2.691 3.56 6.103 4.989 9.346 1.834 4.161 3.757 8.282 5.679 12.403 2.051 4.408 4.23 8.755 6.152 13.212 1.41 3.273 2.909 6.487 4.605 9.613 2.78 5.156 5.6 10.293 8.291 15.489 2.396 4.624 4.713 9.297 7.661 13.616h-.01c.02.414.148.778.523 1.015.848.109 1.025.799 1.163 1.43 1.262 5.6 4.24 10.53 6.202 15.854 1.36 3.697 3.52 4.91 7.71 4.781-1.085-2.257-2.297-4.426-3.205-6.714-2.533-6.389-4.89-12.847-6.872-19.433-2.001-6.635-4.022-13.27-6.043-19.906.483-1.104 1.636-1.291 2.524-1.853 5.994-3.826 13.566-3.559 18.742 2.336.898 1.016 1.144 2.653 2.721 3.057 1.282 5.491 4.585 10.056 6.961 15.035 2.879 6.034 6.34 11.792 9.13 17.865 1.607 3.501 3.687 5.689 7.621 5.857.493.02 1.065.286 1.371-.207.335-.532-.207-.887-.513-1.252-3.51-4.131-5.797-9.031-8.548-13.636-2.455-4.111-4.555-8.429-6.724-12.699-2.169-4.279-4.22-8.617-6.33-12.935 2.504-2.041 5.472-2.179 8.499-2.031 9.386 3.017 16.051 9.544 21.976 17.007.01.582.158 1.114.464 1.637 3.944 6.763 7.937 13.507 11.762 20.34 2.189 3.924 3.628 4.841 8.42 4.515 0-.157.069-.364-.01-.473-4.752-6.261-8.637-13.093-12.797-19.728-1.253-2.13-3.007-4.171-3.343-6.833z" fill="#FDD4AF"/>
4
+ <path d="M331.265 234.101c2.376 4.298 3.569 9.06 5.265 13.615 2.386 6.419 4.683 12.887 6.576 19.453 1.262 4.397 3.609 8.548 3.53 13.31-1.479 1.193-2.81 2.475-2.998 4.516-3.578 2.967-4.909 7.315-6.773 11.279-2.761 5.896-3.076 12.265-2.711 18.673h-81.399c1.025-3.5 1.972-7.039 3.125-10.5.602-1.794.109-2.573-1.636-3.066-3.027-.858-5.995-1.893-8.992-2.85.187-1.695 1.272-3.046 1.785-4.614 2.05-6.379 4.15-12.748 6.221-19.117a6.592 6.592 0 011.498-2.544c5.354-5.669 10.688-11.348 16.032-17.027.67-.71 1.587-1.291 1.37-2.494 1.075-.05 2.159-.128 3.234-.128 13.872-.01 27.744.078 41.616-.05 5.857-.059 10.146-2.731 12.768-8.242 1.588-3.362 1.203-6.783 1.489-10.214z" fill="#FEBFC2"/>
5
+ <path d="M147.792 314.355c.661-5.689 2.958-10.944 4.407-16.416.661-2.524 1.607-4.969 2.426-7.443.049-.346.088-.691.138-1.026.926-.976 1.064-2.189 1.055-3.451.423-3.579 2.07-6.822 2.859-10.273.572-2.494 1.705-2.544 3.677-1.972 3.668 1.065 7.207 2.534 10.984 3.234 1.636.582 3.253 1.242 4.929 1.715 9.939 2.82 19.857 5.709 29.578 9.229-.779 4.289-2.346 8.351-3.51 12.531-1.35 4.831-3.302 9.495-4.002 14.493h-52.442c.246-.256.216-.453-.099-.621z" fill="#FEFEFE"/>
6
+ <path d="M200.303 314.957c.7-5.008 2.652-9.672 4.003-14.493 1.173-4.181 2.741-8.243 3.51-12.531 3.973.443 7.641 2.07 11.476 3.026 5.137 1.578 10.234 3.303 15.43 4.684 3.51.936 6.872 2.425 10.51 2.898 2.997.957 5.975 1.982 8.992 2.85 1.745.493 2.238 1.271 1.636 3.066-1.163 3.461-2.1 6.99-3.125 10.5h-52.432z" fill="#F5F5F5"/>
7
+ <path d="M20.024.601L.04.542C.148.394-.217.03.286.04c.66.02 1.33.01 2.001.01 185.11 0 370.229 0 555.338-.049 1.874 0 2.298.424 2.298 2.287-.05 103.474-.05 206.948-.079 310.422 0 .73.572 1.696-.474 2.248V4.289c0-4.151.395-3.747-3.756-3.747-76.992-.01-153.983 0-230.975 0-.996 0-1.992.04-2.997.06-.996-.02-1.992-.06-2.998-.06C220.1.532 121.556.532 23.012.532c-.996.01-1.992.05-2.988.07z" fill="#FEFEFE"/>
8
+ <path d="M334.144 314.958c-.365-6.409-.049-12.778 2.711-18.674 1.854-3.963 3.195-8.321 6.774-11.279.098.128.256.246.295.394 2.406 9.85 4.802 19.709 7.208 29.559h-16.988z" fill="#FDD4AF"/>
9
+ <path d="M351.121 314.958a14814.58 14814.58 0 00-7.207-29.559c-.04-.148-.197-.266-.296-.394.187-2.041 1.519-3.333 2.997-4.516.848.858 1.233 1.952 1.578 3.067 3.086 10.056 6.172 20.113 9.248 30.179.118.394.118.818.168 1.232-2.16-.009-4.319-.009-6.488-.009z" fill="#FEC08A"/>
10
+ <path d="M147.792 314.356c.316.168.345.365.069.602h-10.983c1.282-3.934 1.292-3.983 5.354-2.652 1.873.621 3.845.995 5.56 2.05z" fill="#FE3F4D"/>
11
+ <path d="M20.025.601c.995-.02 1.991-.059 2.997-.059 98.544 0 197.088 0 295.633.01.995 0 1.991.04 2.997.059 1.755 4.634 4.456 8.804 6.596 13.26.503 1.036 1.222 1.973 1.41 3.156-.543 1.853.68 2.701 1.991 3.49l.503 1.499c-.601 1.488.158 2.169 1.499 2.494.65.71.788 1.617.996 2.494.069 1.095.138 2.18 1.498 2.495.651.71.789 1.617.996 2.494.029 1.42.621 2.465 1.992 2.998v.502c-.03 1.972.621 3.57 2.494 4.496v.503c.158 1.46.394 2.87 2.001 3.49.168.336.336.67.503.996-.848 1.844.188 3.352.947 4.841 4.772 9.297 9.603 18.555 14.404 27.843 1.233 2.376 3.126 4.486-.217 7.128-1.35 1.065-2.307 2.702-4.17 2.978-1.371.207-1.952 1.222-2.603 2.12-.947 1.31-1.785 2.602-3.668 2.583-.503 0-.956.335-.956.946 0 .483.365.779.769.848.937.158 1.568.523 1.479 1.597-5.995-2.03-12.157-2.869-18.477-2.455-.019-19.62-.069-39.24-.039-58.87.01-5.58-1.282-10.648-4.979-14.947-.049-1.005-.749-1.084-1.518-1.045-2.998-1.804-6.34-2.475-9.741-2.484-14.385-.07-28.76-.01-43.145 0-12.561-.01-25.122-.09-37.682.03-3.136.029-6.291.58-8.982 2.494-4.733 3.371-6.172 8.32-6.212 13.714-.108 17.54-.059 35.08-.079 52.62-.542-.1-.926-.405-1.025-.957-.453-2.583-1.962-4.742-2.908-7.128-1.282-3.244-3.323-4.2-8.44-3.915-3.717.208-4.703.996-5.61 4.674-1.39 5.63-2.672 11.279-4.121 16.889-2.012 7.779-4.21 15.509-6.212 23.288-2.169 8.42-3.983 16.938-6.379 25.289-1.981 6.921-2.317 14.04-3.115 21.069-.779 6.863-1.952 13.596-4.003 20.153a36.623 36.623 0 00-1.647 9.238c-.236 4.802 1.203 9.317 1.982 13.951 1.075 6.448 2.761 12.778 3.362 19.315.661 7.089 3.017 14.049.247 21.306-1.992 5.245-3.333 10.756-4.615 16.238-1.005 4.279-2.957 8.282-3.45 12.679-3.767-.7-7.316-2.159-10.984-3.234-1.971-.571-3.105-.522-3.677 1.972-.789 3.451-2.426 6.695-2.859 10.274-1.44.818-1.174 2.159-1.055 3.45-.04.346-.089.691-.138 1.026-1.223.611-1.893.197-2.544-.996-4.18-7.651-7.907-15.509-11.457-23.455-4.357-9.741-8.883-19.413-13.31-29.125-2.948-6.478-5.807-12.995-8.775-19.452-2.898-6.31-5.955-12.551-8.824-18.881-2.879-6.32-5.57-12.729-8.439-19.048-2.012-4.447-4.26-8.775-6.28-13.222-2.91-6.399-5.65-12.886-8.559-19.285-3.727-8.193-7.789-16.258-11.279-24.549-2.662-6.33-5.846-12.413-8.44-18.783-1.745-4.259-3.943-8.37-5.797-12.61-2.75-6.29-5.659-12.501-8.518-18.742-1.41-3.086-2.86-6.143-4.28-9.229a2684.086 2684.086 0 01-5.53-12.146c-2.219-4.88-4.447-9.761-6.645-14.661-2.978-6.626-5.896-13.28-8.894-19.906-1.971-4.368-4.052-8.686-6.083-13.015-.434-.887-1.025-1.725-.936-2.79z" fill="#FEB9BD"/>
12
+ <path d="M350.125 95.842c.089-1.075-.542-1.44-1.479-1.597-.414-.07-.769-.365-.769-.848-.01-.611.444-.947.957-.947 1.873.02 2.711-1.271 3.667-2.583.651-.897 1.233-1.912 2.603-2.12 1.873-.285 2.83-1.912 4.171-2.977 3.342-2.642 1.439-4.752.217-7.128-4.802-9.278-9.633-18.546-14.405-27.843-.769-1.489-1.804-3.007-.946-4.841 2.81 3.924 4.564 8.42 6.803 12.65a3909.389 3909.389 0 0117.283 33.048c5.127 9.929 10.106 19.936 15.243 29.854 4.801 9.278 9.977 18.358 14.503 27.764 4.86 10.086 10.342 19.837 15.321 29.854a2386.272 2386.272 0 0019.709 38.817c1.814 3.49 1.41 6.063-2.524 7.917-3.973 1.873-7.404 4.851-11.171 7.207-3.184 1.991-5.511 5.156-9.159 6.487-.68.247-1.045.789-1.104 1.529-3.027-.148-5.995-.01-8.499 2.031-1.41.039-1.873 1.488-2.968 1.981-1.577-.404-1.824-2.041-2.721-3.056-5.166-5.896-12.738-6.162-18.743-2.337-.887.572-2.04.75-2.523 1.854-.908.513-1.479 1.311-1.824 2.258-1.065 2.957-.691 5.994-.484 9.031.276 4.052 2.288 7.69 2.83 11.673-2.948-4.318-5.265-8.991-7.661-13.616-2.691-5.195-5.511-10.332-8.291-15.489-1.686-3.135-3.185-6.349-4.605-9.612-1.922-4.457-4.111-8.805-6.152-13.212-1.913-4.121-3.845-8.242-5.679-12.403-1.43-3.244-2.514-6.655-4.989-9.347-1.291-1.41-.877-2.189.937-2.593 3.253-.729 5.196-3.007 5.906-6.073.818-3.54 1.469-7.197-.947-10.51-.631-.868-.158-1.499.464-2.169 3.687-3.944 3.973-8.805 3.371-13.754-.276-2.248-1.942-3.993-3.352-5.709-.779-.946-.877-1.479-.059-2.504 4.033-5.107 5.778-14.444-.207-20.428-3.372-3.372-6.724-6.547-11.23-8.292 0-.819-.01-1.637-.01-2.465 2.899-1.272 5.985-1.903 8.992-2.83 2.84-.877 5.709-1.883 8.095-3.766 2.307-1.814 4.279-3.983 4.397-7.118.069-2.386-1.518-4.082-2.968-5.788z" fill="#FEBEC1"/>
13
+ <path d="M435.468 256.61c.325 2.662 2.09 4.703 3.401 6.803 4.161 6.635 8.046 13.478 12.798 19.729.079.098.01.305.01.473-4.792.325-6.231-.592-8.42-4.516-3.826-6.832-7.819-13.576-11.762-20.34a3.394 3.394 0 01-.464-1.636c1.509.089 2.909-.819 4.437-.513z" fill="#FEC08A"/>
14
+ <path d="M341.636 39.97c-1.873-.916-2.524-2.523-2.494-4.495 1.429 1.163 1.962 2.84 2.494 4.495zm-9.996-19.463c-1.312-.799-2.544-1.637-1.992-3.49 1.242.838 1.637 2.149 1.992 3.49zm11.988 23.456c-1.607-.631-1.843-2.041-2.001-3.49 1.124.907 1.962 1.971 2.001 3.49zm-4.496-8.981c-1.37-.533-1.972-1.568-1.991-2.998 1.183.651 1.784 1.696 1.991 2.998zm-5.491-10.481c-1.331-.335-2.1-1.005-1.499-2.494.986.542 1.321 1.469 1.499 2.494zm2.494 4.989c-1.36-.316-1.429-1.4-1.498-2.495 1.005.532 1.587 1.311 1.498 2.494z" fill="#FEBEC1"/>
15
+ <path d="M326.493 184.143c-6.685 1.637-9.692 6.714-7.819 13.29 1.903 6.685 4.526 13.133 6.823 19.68.522 1.488 1.075 2.948 1.203 4.535-.247 4.072-1.104 4.89-5.147 4.89-24.776 0-49.553 0-74.33.01-.995 0-1.991.069-2.987.109a40.8 40.8 0 00-1.025-.198c-.266-2.474-1.183-4.772-1.943-7.108-1.626-4.969-3.174-9.968-4.752-14.957 2.357 2.889 5.452 3.648 9.071 3.638 20.803-.079 41.596-.039 62.4-.049 1.074 0 2.179 0 3.234-.187 4.742-.829 7.71-5.768 6.231-10.284-1.529-4.683-4.181-6.596-9.229-6.596-21.049-.01-42.099-.01-63.149 0-5.58 0-8.518 2.317-9.958 7.799-.848-.237-1.065-.976-1.291-1.686-1.874-5.738-3.717-11.476-5.62-17.195-1.134-3.401-1.854-6.95-3.727-10.076a.387.387 0 01-.454.03c.454-1.548.296-3.136.296-4.703.01-38.639.01-77.268.01-115.907 0-4.022 1.025-5.058 4.979-5.058 14.385-.01 28.77 0 43.154-.01 3.244 0 6.478-.078 9.722-.118.907.04 1.814.119 2.721.119 12.107.01 24.224 0 36.332.02.966 0 2.001-.287 2.888.384-.887.67-1.922.384-2.898.384-11.723.02-23.436.01-35.159.01-.66 0-1.331-.01-1.991.02-1.075.04-1.479.414-1.035 1.577 2.031 5.423 4.219 10.796 5.905 16.327 1.036 3.392 2.919 6.517 3.175 10.146-.513-.266-1.025-.523-1.518-.809-7.523-4.348-15.598-5.383-23.752-2.74-14.098 4.554-21.68 16.504-20.182 31.263.779 7.651 4.171 14.04 10.323 18.822 4.25 4.042 9.445 6.024 15.164 6.606 8.272.848 15.775-1.045 22.075-6.754 1.291-.769 2.277-1.844 3.293-2.948 2.849-3.096 4.338-6.941 6.201-10.589.286.493.661.956.858 1.489 2.228 6.152 4.595 12.265 6.557 18.506 1.035 3.293 2.967 6.32 3.046 9.909-.986.059-1.981.177-2.967.177-20.873.01-41.735.01-62.607.01-3.155 0-6.32-.03-9.475.01-2.997.029-3.826.887-3.845 3.874-.01 2.988-.01 5.985 0 8.972.01 3.658.621 4.329 4.377 4.329 24.609.019 49.218.01 73.827.01.335 0 .661 0 .996-.01 2.189-.069 3.401-1.055 3.303-3.392-.05-1.321.079-2.652.118-3.973.187.158.463.276.532.473 2.081 6.004 4.122 12.019 6.212 18.013.394 1.124.601 2.406 1.893 2.968l-.059 16.948zm-50.056-5.817c12.561 0 25.112.01 37.672-.01 3.047 0 3.629-.601 3.648-3.658.02-3.243-.059-6.487.02-9.721.059-2.307-.927-3.372-3.244-3.372-25.368.02-50.726.02-76.094.01-2.15 0-3.224.917-3.175 3.155.069 3.155.01 6.32.02 9.475 0 3.638.483 4.111 4.229 4.111 12.315.01 24.619.01 36.924.01z" fill="#FE3F4D"/>
16
+ <path d="M292.142 72.99c-.256-3.629-2.139-6.764-3.174-10.146-1.686-5.531-3.875-10.904-5.906-16.327-.434-1.163-.04-1.538 1.035-1.578.661-.02 1.331-.02 1.992-.02 11.722 0 23.435.01 35.158-.01.976 0 2.002.277 2.899-.384.414 0 .749.158.966.523.039.582.365.887.927.956.867.907.552 2.041.552 3.086.02 24.244.01 48.489.02 72.733 0 3.983.059 7.966.088 11.949l-.236 1.962c-1.252 1.696-1.183 3.402-.05 5.117.099.661.198 1.321.306 1.982v15.41c-.059 2.988-.108 5.975-.168 8.962-1.301-.562-1.508-1.843-1.893-2.967-2.08-6.005-4.131-12.009-6.211-18.013-.069-.198-.355-.316-.532-.474-.04-1.873-.089-3.746-.109-5.619-.029-3.284-.335-3.668-3.628-4.378-.079-3.579-2.011-6.616-3.047-9.909-1.962-6.241-4.328-12.353-6.556-18.506-.187-.532-.562-.995-.858-1.488 1.055-5.423 1.538-10.836.059-16.278-1.873-6.941-6.043-12.265-11.634-16.584z" fill="#FE011F"/>
17
+ <path d="M326.7 133.771c-.03-3.983-.089-7.966-.089-11.949-.01-24.244 0-48.489-.02-72.733 0-1.045.316-2.179-.552-3.086-.02-.601-.355-.897-.927-.956-.227-.355-.552-.523-.966-.523-.887-.67-1.923-.384-2.889-.384-12.107-.02-24.224-.01-36.332-.02-.907 0-1.814-.079-2.721-.118-.029-1.43-.71-2.662-1.193-3.964-1.183-3.194-2.691-6.28-3.372-9.642 2.071.266 4.082-.296 6.133-.404.69-.04 1.725.217 1.715-.858 0-1.124-1.045-1.085-1.863-1.095-2.465-.029-4.94-.029-7.404-.049.009-.67-.336-1.232-.533-1.843-1.094-3.392-3.046-6.478-3.46-10.096 14.384-.01 28.759-.07 43.144 0 3.402.02 6.744.68 9.741 2.484.335.602.868.907 1.518 1.045 3.698 4.309 4.989 9.377 4.979 14.947-.029 19.62.02 39.24.04 58.87-.02 7.326-.03 14.651-.049 21.977 0 .818.009 1.636.009 2.465-.009.246-.049.502-.009.739.611 4.693-.316 8.942-3.52 12.59-.631.71-.927 1.726-1.38 2.603z" fill="#FEFEFE"/>
18
+ <path d="M244.235 226.667c.996-.04 1.992-.109 2.988-.109 24.776-.01 49.553 0 74.329-.01 4.043 0 4.891-.818 5.147-4.89 2.11 3.934 3.313 8.193 4.565 12.443-.286 3.431.099 6.852-1.499 10.214-2.622 5.511-6.911 8.193-12.768 8.242-13.872.129-27.744.04-41.616.05-1.075 0-2.159.088-3.234.128-3.204-.04-6.418-.02-9.623-.148-3.273-.128-6.566.345-9.81-.365-.897-4.22-2.78-8.104-4.101-12.176-1.459-4.457-3.471-8.745-4.378-13.379zm31.146 18.427c5.235 0 10.481-.049 15.716.02 2.238.029 3.204-.898 3.106-3.126-.079-1.903-.03-3.825-.02-5.728.01-1.725-.799-2.642-2.554-2.642-10.806 0-21.611 0-32.427.009-1.627 0-2.445.858-2.465 2.475-.01 1.824-.02 3.658-.01 5.482.02 3.066.434 3.5 3.431 3.51 5.078.01 10.155 0 15.223 0z" fill="#ECECEC"/>
19
+ <path d="M374.113 263.541c-.552-3.984-2.554-7.622-2.83-11.674-.207-3.037-.582-6.073.483-9.031.345-.947.917-1.745 1.824-2.258 2.012 6.635 4.043 13.261 6.044 19.906 1.982 6.586 4.338 13.044 6.872 19.433.907 2.287 2.12 4.466 3.204 6.714-4.2.118-6.349-1.084-7.71-4.782-1.962-5.324-4.939-10.263-6.201-15.853-.148-.631-.326-1.331-1.164-1.43-.177-.335-.345-.68-.522-1.016v-.009zm23.465-19.433c1.104-.493 1.568-1.943 2.968-1.982 2.1 4.318 4.16 8.657 6.329 12.935 2.17 4.279 4.27 8.598 6.725 12.699 2.75 4.605 5.028 9.505 8.548 13.636.315.365.857.72.512 1.252-.305.483-.887.227-1.37.207-3.934-.168-6.014-2.356-7.621-5.856-2.791-6.074-6.251-11.832-9.13-17.866-2.376-4.969-5.679-9.534-6.961-15.025z" fill="#FEC08A"/>
20
+ <path d="M326.552 167.206c.059-2.988.109-5.975.168-8.963a4.22 4.22 0 01.355-.019c-.178 4.545.207 8.932 3.628 12.432.414.424.296.966-.01 1.371-2.159 2.849-1.932 6.211-1.419 9.307.473 2.869-.622 3.086-2.781 2.8l.059-16.928z" fill="#EDEAEA"/>
21
+ <path d="M327.075 158.223c-.119.01-.237.01-.355.02v-15.41c1.242 2.1 1.577 4.733 3.805 6.261.868.591.326 1.38-.128 1.952-1.696 2.129-2.386 4.703-3.322 7.177z" fill="#FEFEFE"/>
22
+ <path d="M326.424 140.85c-1.134-1.715-1.203-3.421.049-5.117-.02 1.706-.039 3.412-.049 5.117z" fill="#FE3F4D"/>
23
+ <path d="M374.104 263.54c.177.335.345.68.522 1.016-.375-.237-.503-.602-.522-1.016z" fill="#FEBEC1"/>
24
+ <path d="M252.705 252.222c3.244.71 6.537.246 9.81.365 3.205.118 6.419.098 9.623.147.217 1.203-.7 1.785-1.37 2.495-5.344 5.679-10.678 11.358-16.032 17.027a6.577 6.577 0 00-1.498 2.544c-2.071 6.379-4.161 12.738-6.221 19.117-.503 1.577-1.588 2.928-1.785 4.614-3.638-.473-7-1.962-10.51-2.899-5.186-1.38-10.293-3.105-15.43-4.683.759-5.127 3.273-9.682 4.811-14.552 2.505-7.957 7.296-15.371 5.669-24.284 7.651.05 15.292.079 22.933.109z" fill="#FEC08A"/>
25
+ <path d="M229.782 252.124c1.627 8.913-3.165 16.327-5.669 24.283-1.538 4.871-4.052 9.426-4.812 14.553-3.835-.957-7.503-2.583-11.476-3.027-9.721-3.52-19.64-6.399-29.578-9.228-1.666-.474-3.283-1.134-4.93-1.716.503-4.397 2.455-8.4 3.451-12.679 1.282-5.472 2.623-10.993 4.614-16.238 2.761-7.257.405-14.218-.246-21.306-.602-6.537-2.297-12.867-3.362-19.315-.769-4.644-2.219-9.149-1.982-13.951.158-3.165.69-6.182 1.647-9.238 2.05-6.557 3.224-13.291 4.002-20.153.799-7.039 1.134-14.158 3.116-21.069 2.396-8.351 4.21-16.869 6.379-25.289 2.001-7.779 4.2-15.509 6.211-23.288 1.45-5.61 2.731-11.27 4.122-16.89.907-3.667 1.893-4.465 5.61-4.673 5.117-.285 7.158.67 8.439 3.915.947 2.386 2.455 4.535 2.909 7.128.098.552.483.848 1.025.956.04 4.713 1.203 9.317 1.124 14.07-.069 4.002-1.173 7.857-1.114 11.831-1.085.167-1.016 1.163-1.37 1.863-1.499 2.978-.908 6.054-.7 9.199.423 6.34-.267 12.65-1.42 18.9-.552 2.317-.809 4.693-1.804 6.922-.375.828-.316 2.011-.079 2.928 1.271 4.782 2.662 9.534 4.032 14.286.217.759.611 1.38 1.578 1.242.67 1.272-.355 2.505.059 3.885 3.736 12.551 4.141 25.299 1.834 38.156-.848 4.722-2.702 9.336-2.041 14.217.611 4.565.246 9.12.453 13.685.335 7.197 2.682 13.172 9.978 16.041z" fill="#FDD4B0"/>
26
+ <path d="M154.753 289.461c-.108-1.292-.385-2.633 1.055-3.451.01 1.262-.128 2.474-1.055 3.451z" fill="#FEC2C6"/>
27
+ <path d="M219.272 110.819c-.06-3.983 1.054-7.828 1.114-11.831.078-4.762-1.085-9.366-1.124-14.07.01-17.54-.04-35.079.069-52.619.029-5.393 1.479-10.352 6.211-13.714 2.692-1.913 5.847-2.475 8.982-2.495 12.561-.108 25.122-.03 37.682-.03.415 3.62 2.367 6.715 3.461 10.097.197.611.542 1.173.532 1.844-2.908.01-5.817 0-8.725.039-.878.01-2.13-.128-2.051 1.163.069 1.164 1.282.74 2.041.79 3.382.226 6.803-.425 10.165.403.68 3.372 2.189 6.448 3.372 9.643.483 1.301 1.163 2.534 1.193 3.963-3.244.04-6.478.109-9.721.119-14.385.01-28.77 0-43.155.01-3.953 0-4.979 1.035-4.979 5.057-.01 38.64 0 77.268-.01 115.907 0 1.568.158 3.155-.295 4.703-1.026-.552-.927-1.657-1.272-2.544a2629.015 2629.015 0 00-3.067-8.016c-.128-6.487.257-12.984-.414-19.462 0-9.662 0-19.314-.009-28.957zm37.79-79.87c.819-.277 1.667-.8 1.598-2.002-.06-1.144-.76-1.863-1.913-1.873-1.252-.02-1.804.917-1.785 1.972.03 1.045.622 1.883 2.1 1.902z" fill="#EDEAEA"/>
28
+ <path d="M331.6 115.374c.019-7.325.029-14.651.049-21.976 6.32-.414 12.482.414 18.476 2.455 1.45 1.705 3.037 3.401 2.948 5.807-.118 3.145-2.09 5.304-4.397 7.118-2.376 1.873-5.245 2.889-8.095 3.766-2.997.917-6.093 1.548-8.981 2.83z" fill="#FEC08A"/>
29
+ <path d="M326.621 19.58c-.651-.147-1.183-.443-1.518-1.045.769-.03 1.469.04 1.518 1.046z" fill="#FEBEC1"/>
30
+ <path d="M292.143 72.99c5.6 4.318 9.76 9.642 11.644 16.583 1.478 5.442 1.005 10.855-.06 16.277-1.863 3.648-3.352 7.493-6.201 10.589-1.016 1.105-2.002 2.169-3.293 2.948-2.357-5.462-6.093-9.356-11.723-11.713-9.721-4.072-22.499 1.716-25.506 11.861-6.162-4.782-9.554-11.171-10.323-18.821-1.499-14.76 6.083-26.71 20.182-31.264 8.154-2.633 16.229-1.608 23.751 2.74.503.277 1.016.533 1.529.8zm-5.403 16.247c0-6.527-4.812-11.377-11.26-11.367-6.28.01-11.279 4.93-11.259 11.22.029 7.098 5.166 11.377 11.723 11.663 5.718.247 10.796-5.423 10.796-11.516zm-10.304 89.089h-36.923c-3.747 0-4.22-.473-4.23-4.111 0-3.155.049-6.32-.02-9.475-.049-2.238 1.026-3.165 3.175-3.155 25.368.01 50.726.01 76.095-.01 2.317 0 3.302 1.065 3.243 3.372-.079 3.244 0 6.478-.019 9.721-.02 3.057-.602 3.658-3.648 3.658h-37.673z" fill="#FEC1C5"/>
31
+ <path d="M314.188 135.743c3.283.71 3.599 1.095 3.628 4.378.02 1.873.069 3.746.109 5.62-.05 1.321-.178 2.652-.119 3.973.089 2.346-1.114 3.322-3.303 3.391-.335.01-.66.01-.995.01-24.609 0-49.218.01-73.827-.01-3.747 0-4.368-.67-4.378-4.328 0-2.987-.01-5.984 0-8.972.01-2.987.848-3.845 3.845-3.875 3.155-.029 6.32-.009 9.475-.009 20.872 0 41.735 0 62.607-.01.976.01 1.962-.099 2.958-.168zm-37.485 6.478c-9.061 0-18.122.029-27.192-.03-1.815-.01-2.948.138-2.919 2.485.03 2.159.818 2.612 2.79 2.603 18.211-.06 36.421-.06 54.621 0 1.982.009 2.761-.454 2.79-2.603.03-2.337-1.084-2.495-2.908-2.485-9.061.059-18.122.03-27.182.03z" fill="#FEBFC2"/>
32
+ <path d="M219.707 159.219c1.025 2.672 2.05 5.344 3.066 8.015.335.898.236 2.002 1.272 2.544a.42.42 0 00.453-.029c-.029 17.697-.059 35.385-.069 53.082 0 1.371.395 2.623 1.864 3.195.207.453.571.552 1.025.434 5.294 0 10.599.009 15.893.009.345.069.69.138 1.026.198.907 4.643 2.918 8.922 4.367 13.389 1.321 4.072 3.205 7.956 4.102 12.176-7.641-.03-15.282-.069-22.923-.099-7.296-2.869-9.643-8.844-9.968-16.021-.207-4.555.158-9.12-.454-13.685-.65-4.88 1.203-9.504 2.041-14.217 2.307-12.867 1.903-25.605-1.834-38.156-.414-1.39.612-2.613-.059-3.884.069-2.327.138-4.644.198-6.951z" fill="#FEFEFE"/>
33
+ <path d="M243.211 226.46c-5.295 0-10.599-.01-15.893-.01-.178-.542-.395-.966-1.026-.434-1.479-.562-1.873-1.814-1.863-3.194.01-17.698.039-35.385.069-53.083 1.873 3.126 2.593 6.675 3.727 10.077 1.903 5.728 3.746 11.466 5.62 17.194.236.71.443 1.45 1.291 1.686.01 2.002.414 3.914 1.39 5.679 1.578 4.989 3.126 9.988 4.753 14.957.749 2.366 1.666 4.653 1.932 7.128z" fill="#FE011F"/>
34
+ <path d="M257.004 119.525c3.007-10.145 15.795-15.923 25.506-11.861 5.63 2.356 9.366 6.261 11.723 11.713-6.3 5.699-13.803 7.602-22.075 6.754-5.709-.582-10.905-2.564-15.154-6.606z" fill="#FEFEFE"/>
35
+ <path d="M236.516 204.394c-.986-1.765-1.39-3.677-1.39-5.679 1.439-5.491 4.378-7.799 9.958-7.799 21.05 0 42.099-.009 63.149 0 5.048 0 7.7 1.913 9.228 6.596 1.47 4.526-1.498 9.465-6.231 10.284-1.055.187-2.149.187-3.234.187-20.803.01-41.596-.039-62.399.049-3.629.01-6.724-.749-9.081-3.638zm39.99 2.288c10.894 0 21.799.009 32.693 0 3.274 0 5.492-1.598 6.793-4.555 1.184-2.682.484-5.048-1.262-7.188-1.666-2.051-3.953-2.494-6.487-2.494-21.129.039-42.257.019-63.386.029-.749 0-1.498.01-2.238.119-2.623.364-4.427 1.902-5.373 4.269-2.002 5.008 1.41 9.77 7.059 9.81 10.737.059 21.464.01 32.201.01z" fill="#FEDCDE"/>
36
+ <path d="M325.112 45.037c.572.06.907.365.927.956-.562-.069-.887-.374-.927-.956z" fill="#FE3F4D"/>
37
+ <path d="M275.382 245.093c-5.068 0-10.145.01-15.213 0-2.997-.009-3.411-.443-3.431-3.509-.01-1.824-.01-3.658.01-5.482.01-1.617.838-2.475 2.465-2.475 10.805-.01 21.611-.01 32.427-.01 1.765 0 2.573.907 2.554 2.643-.01 1.912-.069 3.825.019 5.728.099 2.228-.867 3.165-3.105 3.125-5.255-.069-10.491-.02-15.726-.02z" fill="#FEFEFE"/>
38
+ <path d="M219.706 159.219l-.178 6.931c-.966.148-1.36-.483-1.577-1.242-1.371-4.752-2.761-9.504-4.033-14.286-.246-.917-.296-2.1.079-2.928.996-2.229 1.252-4.605 1.804-6.922 1.164-.345 2.337-.68 3.5-1.025.661 6.488.277 12.985.405 19.472z" fill="#FEC08A"/>
39
+ <path d="M219.292 139.757c-1.163.345-2.337.68-3.5 1.025 1.154-6.251 1.844-12.561 1.42-18.9-.207-3.146-.799-6.222.7-9.199.355-.7.286-1.706 1.37-1.864 0 9.643 0 19.295.01 28.938z" fill="#FEBEC1"/>
40
+ <path d="M286.739 89.238c0 6.093-5.077 11.762-10.786 11.516-6.556-.286-11.703-4.565-11.722-11.664-.02-6.29 4.978-11.21 11.259-11.22 6.438-.01 11.24 4.841 11.249 11.368zm-10.036 52.983c9.06 0 18.121.03 27.192-.029 1.824-.01 2.938.148 2.908 2.484-.029 2.16-.808 2.613-2.79 2.603-18.21-.059-36.42-.059-54.621 0-1.972.01-2.77-.443-2.79-2.603-.029-2.346 1.104-2.494 2.918-2.484 9.051.059 18.112.029 27.183.029z" fill="#FEFEFE"/>
41
+ <path d="M226.291 226.026c.631-.543.848-.109 1.025.433-.453.119-.818.01-1.025-.433z" fill="#FE3F4D"/>
42
+ <path d="M276.506 206.681c-10.727 0-21.464.05-32.191-.019-5.649-.04-9.061-4.802-7.059-9.81.946-2.367 2.75-3.905 5.373-4.27.739-.098 1.489-.118 2.238-.118 21.129-.01 42.257.01 63.386-.029 2.534 0 4.821.443 6.487 2.494 1.745 2.139 2.445 4.516 1.262 7.187-1.301 2.958-3.529 4.555-6.793 4.555-10.904.01-21.809.01-32.703.01z" fill="#FE4250"/>
43
+ <path d="M261.51 202.658c-.483 0-.956-.069-1.42-.197-.453-.138-.818-.305-1.094-.522l.483-1.075c.266.197.582.345.947.463.364.119.729.178 1.094.178.404 0 .71-.059.897-.178.197-.128.296-.285.296-.483a.45.45 0 00-.177-.364 1.18 1.18 0 00-.444-.237 7.577 7.577 0 00-.72-.197 9.763 9.763 0 01-1.153-.335 1.927 1.927 0 01-.779-.543c-.207-.246-.316-.572-.316-.986 0-.355.099-.68.296-.966.197-.296.483-.522.878-.7.394-.167.877-.256 1.439-.256.394 0 .779.049 1.154.138.374.098.709.227.985.404l-.443 1.085c-.572-.326-1.144-.484-1.706-.484-.404 0-.7.069-.887.198-.188.128-.286.295-.286.512 0 .207.108.375.325.474.227.098.562.197 1.016.295.473.109.857.227 1.153.336.296.108.552.286.769.532.217.237.326.572.326.976 0 .355-.099.68-.296.966-.197.286-.483.513-.878.69-.414.188-.887.276-1.459.276zm3.597-6.28h1.43v6.172h-1.43v-6.172zm7.06 2.998h1.302v2.504c-.335.257-.72.444-1.164.582a4.455 4.455 0 01-1.331.207c-.64 0-1.212-.138-1.725-.404a3.126 3.126 0 01-1.213-1.134 3.18 3.18 0 01-.433-1.647c0-.611.147-1.153.433-1.636.296-.483.7-.868 1.213-1.134.513-.276 1.094-.414 1.745-.414.542 0 1.035.089 1.469.276.444.177.809.444 1.114.789l-.917.848c-.443-.464-.976-.7-1.597-.7-.394 0-.739.078-1.045.246a1.735 1.735 0 00-.71.7 2.073 2.073 0 00-.256 1.035c0 .385.089.72.256 1.026.168.295.404.532.71.709.306.168.651.247 1.045.247a2.33 2.33 0 001.114-.266v-1.834h-.01zm8.292-2.998v6.172h-1.173l-3.076-3.747v3.747h-1.41v-6.172h1.183l3.066 3.746v-3.746h1.41zm3.964 0h1.429v6.172h-1.429v-6.172zm8.548 0v6.172h-1.173l-3.077-3.747v3.747h-1.409v-6.172h1.183l3.066 3.746v-3.746h1.41z" fill="#F5F5F5"/>
44
+ <path d="M285.418 30.189h-20.024a.99.99 0 01-.986-.986v-.227a.99.99 0 01.986-.986h20.024c.543 0 .986.444.986.986v.227a.982.982 0 01-.986.986zm-28.601.819a2.001 2.001 0 100-4.003 2.001 2.001 0 000 4.003z" fill="#FEC2C6"/>
45
+ <path d="M246.592 171.947a2.001 2.001 0 10.001-4.003 2.001 2.001 0 00-.001 4.003zm5.482 0a2.001 2.001 0 100-4.002 2.001 2.001 0 000 4.002zm5.472 0a2.001 2.001 0 10.001-4.003 2.001 2.001 0 00-.001 4.003zm5.482 0a2.001 2.001 0 100-4.002 2.001 2.001 0 000 4.002zm5.482 0a2.001 2.001 0 10.001-4.003 2.001 2.001 0 00-.001 4.003zm5.482 0a2.001 2.001 0 100-4.002 2.001 2.001 0 000 4.002zm5.471 0a2.001 2.001 0 10.001-4.003 2.001 2.001 0 00-.001 4.003zm5.483 0a2.001 2.001 0 100-4.002 2.001 2.001 0 000 4.002zm5.481 0a2.001 2.001 0 10.001-4.003 2.001 2.001 0 00-.001 4.003zm5.482 0a2.001 2.001 0 100-4.002 2.001 2.001 0 000 4.002zm5.472 0a2.001 2.001 0 10.001-4.003 2.001 2.001 0 00-.001 4.003zm5.482 0a2.001 2.001 0 100-4.002 2.001 2.001 0 000 4.002z" fill="#F5F5F5"/>
46
+ </svg>