diff --git a/src/lib/components/NavBar.svelte b/src/lib/components/NavBar.svelte
index 4d1ec4c9a614f603724121dd684fb2516d93b88d..4cb659377907899125da67fcb3a2ee2e7857de6b 100644
--- a/src/lib/components/NavBar.svelte
+++ b/src/lib/components/NavBar.svelte
@@ -24,6 +24,7 @@
   let searchResults: SearchResult[] = []
   let searchWorker: Worker | undefined = undefined
   const showTutorial = getContext("showTutorial") as Writable<boolean>
+  const welcomePage = getContext("welcomePage") as Writable<boolean>
 
   if (browser) {
     searchWorker = new WithLinkedVariablesSearchWorker()
@@ -83,31 +84,32 @@
   <div
     class="mx-auto bg-le-jaune-very-dark px-2 shadow-md md:h-12 md:px-3 2xl:h-14"
   >
-    <!-- Répartition des blocs sur la barre de navigation -->
-    <div class="hidden h-full justify-between md:flex">
-      <!-- Bloc gauche pour le logo AN et le logo "Simulateur LEXIMPACT" -->
-      <div
-        class="basis-1/3 h-full flex items-center justify-between gap-2 xl:gap-5"
-      >
-        <!-- Bouton accueil -->
-        <a
-          href={portalUrl}
-          class="flex h-full items-center px-2 gap-5 rounded-sm uppercase text-white hover:bg-gray-400 hover:bg-opacity-20 hover:text-white focus:outline-none"
+    {#if !$welcomePage}
+      <!-- Répartition des blocs sur la barre de navigation -->
+      <div class="hidden h-full justify-between md:flex">
+        <!-- Bloc gauche pour le logo AN et le logo "Simulateur LEXIMPACT" -->
+        <div
+          class="basis-1/3 h-full flex items-center justify-between gap-2 xl:gap-5"
         >
-          <img
-            class="w-12 items-start self-start 2xl:w-14"
-            src="/logo-assemblee-nationale-blanc-blanc.png"
-            alt="Logo de l'Assemblée nationale"
-          />
-          <span class="hidden xl:inline-flex flex-col items-center">
-            <span class="text-xs tracking-widest leading-4">Accueil</span>
-            <span class="text-xxs tracking-wider">Leximpact</span>
-          </span>
-        </a>
-
-        <!-- Logo -->
-        <a href="/" class="flex px-3">
-          <!-- PLF
+          <!-- Bouton accueil -->
+          <a
+            href={portalUrl}
+            class="flex h-full items-center px-2 gap-5 rounded-sm uppercase text-white hover:bg-gray-400 hover:bg-opacity-20 hover:text-white focus:outline-none"
+          >
+            <img
+              class="w-12 items-start self-start 2xl:w-14"
+              src="/logo-assemblee-nationale-blanc-blanc.png"
+              alt="Logo de l'Assemblée nationale"
+            />
+            <span class="hidden xl:inline-flex flex-col items-center">
+              <span class="text-xs tracking-widest leading-4">Accueil</span>
+              <span class="text-xxs tracking-wider">Leximpact</span>
+            </span>
+          </a>
+
+          <!-- Logo -->
+          <a href="/" class="flex px-3">
+            <!-- PLF
             <div
               class="m-1 flex -rotate-6 flex-col rounded-sm bg-white p-0.5 px-1 pt-0 text-[0.62rem] text-le-gris-dispositif-dark shadow-lg"
             >
@@ -116,99 +118,232 @@
               >
             </div>
           -->
-          <div
-            class="h-full flex flex-col justify-center items-end rounded p-1 text-white"
-          >
-            <span
-              class="text-sm uppercase font-light !leading-4 tracking-widest 2xl:text-lg"
+            <div
+              class="h-full flex flex-col justify-center items-end rounded p-1 text-white"
+            >
+              <span
+                class="text-sm uppercase font-light !leading-4 tracking-widest 2xl:text-lg"
+              >
+                Leximpact
+              </span>
+              <span
+                class="text-md uppercase leading-4 tracking-wider 2xl:text-xl"
+              >
+                Socio-Fiscal
+              </span>
+            </div>
+          </a>
+        </div>
+
+        <!-- Bloc centre pour la barre de recherche -->
+        <NavBarSearch isSearchActive={$isSearchActive} bind:searchQuery />
+
+        <!-- Bloc droite pour les commandes avancées-->
+        <ul class="basis-1/3 flex items-center justify-end gap-2 xl:gap-5 pr-2">
+          <!--Bouton tutoriel-->
+          <li>
+            <button
+              class="rounded-sm p-1 text-sm uppercase text-white hover:bg-gray-400 hover:bg-opacity-20 hover:text-white focus:outline-none"
+              on:click={help}
             >
-              Leximpact
+              <iconify-icon
+                class="mr-1 align-[-0.3rem] text-xl"
+                icon="ri-question-fill"
+              />
+              <span class="hidden xl:inline-flex">Tutoriel</span>
+            </button>
+          </li>
+          <!-- Bouton se connecter -->
+
+          {#if authenticationEnabled}
+            {#if user === undefined}
+              <li>
+                <button
+                  class="rounded-sm p-1 uppercase text-white hover:bg-gray-400 hover:bg-opacity-20 hover:text-white focus:outline-none"
+                  on:click={() => goto(loginUrl)}
+                >
+                  <iconify-icon
+                    class="mr-1 align-[-0.3rem] text-2xl"
+                    icon="ri-key-fill"
+                  />
+                </button>
+              </li>
+            {:else}
+              <!-- User profile + se déconnecter -->
+              <li>
+                <PersistentPopover
+                  bind:open={openUserMenu}
+                  initialPlacement="bottom-end"
+                >
+                  <button
+                    slot="activator"
+                    class="rounded py-1 px-2 text-sm capitalize text-white hover:bg-gray-400 hover:bg-opacity-20 hover:text-white focus:outline-none"
+                  >
+                    <iconify-icon
+                      class="align-[-0.4rem] text-2xl"
+                      icon="ri-account-circle-fill"
+                    />
+
+                    <span class="sr-only">Open user menu</span>
+                    <span class="hidden xl:flex">
+                      {user.preferred_username.split("@")[0]}
+                    </span>
+                  </button>
+
+                  <div
+                    slot="content"
+                    class="m-2 rounded bg-white shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none"
+                  >
+                    <button
+                      class="flex gap-1 rounded-sm border-b px-4 py-3 text-sm uppercase text-gray-600 hover:bg-gray-300 hover:bg-opacity-20 hover:text-black focus:outline-none"
+                      on:click={() => goto(logoutUrl)}
+                    >
+                      <span
+                        class="hidden whitespace-nowrap pl-1 md:inline-block"
+                        >Se déconnecter</span
+                      >
+
+                      <iconify-icon
+                        class="text-lg"
+                        icon="ri-logout-box-r-line"
+                      />
+                    </button>
+                  </div>
+                </PersistentPopover>
+              </li>
+            {/if}
+          {/if}
+        </ul>
+      </div>
+    {:else}
+      <div class="hidden h-full justify-between md:flex">
+        <!-- Bloc gauche pour le logo AN et le logo "Simulateur LEXIMPACT" -->
+        <div
+          class="basis-1/3 h-full flex items-center justify-between gap-2 xl:gap-5"
+        >
+          <!-- Bouton accueil -->
+          <a
+            href={portalUrl}
+            class="flex h-full items-center px-2 gap-5 rounded-sm uppercase text-white hover:bg-gray-400 hover:bg-opacity-20 hover:text-white focus:outline-none"
+          >
+            <img
+              class="w-12 items-start self-start 2xl:w-14"
+              src="/logo-assemblee-nationale-blanc-blanc.png"
+              alt="Logo de l'Assemblée nationale"
+            />
+            <span class="hidden xl:inline-flex flex-col items-center">
+              <span class="text-xs tracking-widest leading-4">Accueil</span>
             </span>
+          </a>
+
+          <!-- Logo -->
+          <a href="/" class="flex px-3">
+            <!-- PLF
+              <div
+                class="m-1 flex -rotate-6 flex-col rounded-sm bg-white p-0.5 px-1 pt-0 text-[0.62rem] text-le-gris-dispositif-dark shadow-lg"
+              >
+                <span class="leading-4">Prévisions</span><span
+                  class="text-[1.2rem] font-bold leading-4">2024</span
+                >
+              </div>
+            -->
+          </a>
+        </div>
+
+        <div
+          class="basis-1/3 h-full flex justify-center items-center gap-2 uppercase text-white"
+        >
+          <span class="text-2xl">Leximpact</span>
+          <div class="h-full flex flex-col justify-center rounded">
             <span
-              class="text-md uppercase leading-4 tracking-wider 2xl:text-xl"
+              class="text-xs font-light leading-3 tracking-widest 2xl:text-lg"
             >
+              Simulateur
+            </span>
+            <span class="text-sm leading-3 tracking-wider 2xl:text-xl">
               Socio-Fiscal
             </span>
           </div>
-        </a>
-      </div>
-
-      <!-- Bloc centre pour la barre de recherche -->
-      <NavBarSearch isSearchActive={$isSearchActive} bind:searchQuery />
+        </div>
 
-      <!-- Bloc droite pour les commandes avancées-->
-      <ul class="basis-1/3 flex items-center justify-end gap-2 xl:gap-5 pr-2">
-        <!--Bouton tutoriel-->
-        <li>
-          <button
-            class="rounded-sm p-1 text-sm uppercase text-white hover:bg-gray-400 hover:bg-opacity-20 hover:text-white focus:outline-none"
-            on:click={help}
-          >
-            <iconify-icon
-              class="mr-1 align-[-0.3rem] text-xl"
-              icon="ri-question-fill"
-            />
-            <span class="hidden xl:inline-flex">Tutoriel</span>
-          </button>
-        </li>
-        <!-- Bouton se connecter -->
+        <!-- Bloc droite pour les commandes avancées-->
+        <ul class="basis-1/3 flex items-center justify-end gap-2 xl:gap-5 pr-2">
+          <!--Bouton tutoriel-->
+          <li>
+            <button
+              class="rounded-sm p-1 text-sm uppercase text-white hover:bg-gray-400 hover:bg-opacity-20 hover:text-white focus:outline-none"
+              on:click={help}
+            >
+              <iconify-icon
+                class="mr-1 align-[-0.3rem] text-xl"
+                icon="ri-question-fill"
+              />
+              <span class="hidden xl:inline-flex">Tutoriel</span>
+            </button>
+          </li>
+          <!-- Bouton se connecter -->
 
-        {#if authenticationEnabled}
-          {#if user === undefined}
-            <li>
-              <button
-                class="rounded-sm p-1 uppercase text-white hover:bg-gray-400 hover:bg-opacity-20 hover:text-white focus:outline-none"
-                on:click={() => goto(loginUrl)}
-              >
-                <iconify-icon
-                  class="mr-1 align-[-0.3rem] text-2xl"
-                  icon="ri-key-fill"
-                />
-              </button>
-            </li>
-          {:else}
-            <!-- User profile + se déconnecter -->
-            <li>
-              <PersistentPopover
-                bind:open={openUserMenu}
-                initialPlacement="bottom-end"
-              >
+          {#if authenticationEnabled}
+            {#if user === undefined}
+              <li>
                 <button
-                  slot="activator"
-                  class="rounded py-1 px-2 text-sm capitalize text-white hover:bg-gray-400 hover:bg-opacity-20 hover:text-white focus:outline-none"
+                  class="rounded-sm p-1 uppercase text-white hover:bg-gray-400 hover:bg-opacity-20 hover:text-white focus:outline-none"
+                  on:click={() => goto(loginUrl)}
                 >
                   <iconify-icon
-                    class="align-[-0.4rem] text-2xl"
-                    icon="ri-account-circle-fill"
+                    class="mr-1 align-[-0.3rem] text-2xl"
+                    icon="ri-key-fill"
                   />
-
-                  <span class="sr-only">Open user menu</span>
-                  <span class="hidden xl:flex">
-                    {user.preferred_username.split("@")[0]}
-                  </span>
                 </button>
-
-                <div
-                  slot="content"
-                  class="m-2 rounded bg-white shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none"
+              </li>
+            {:else}
+              <!-- User profile + se déconnecter -->
+              <li>
+                <PersistentPopover
+                  bind:open={openUserMenu}
+                  initialPlacement="bottom-end"
                 >
                   <button
-                    class="flex gap-1 rounded-sm border-b px-4 py-3 text-sm uppercase text-gray-600 hover:bg-gray-300 hover:bg-opacity-20 hover:text-black focus:outline-none"
-                    on:click={() => goto(logoutUrl)}
+                    slot="activator"
+                    class="rounded py-1 px-2 text-sm capitalize text-white hover:bg-gray-400 hover:bg-opacity-20 hover:text-white focus:outline-none"
                   >
-                    <span class="hidden whitespace-nowrap pl-1 md:inline-block"
-                      >Se déconnecter</span
-                    >
+                    <iconify-icon
+                      class="align-[-0.4rem] text-2xl"
+                      icon="ri-account-circle-fill"
+                    />
 
-                    <iconify-icon class="text-lg" icon="ri-logout-box-r-line" />
+                    <span class="sr-only">Open user menu</span>
+                    <span class="hidden xl:flex">
+                      {user.preferred_username.split("@")[0]}
+                    </span>
                   </button>
-                </div>
-              </PersistentPopover>
-            </li>
+
+                  <div
+                    slot="content"
+                    class="m-2 rounded bg-white shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none"
+                  >
+                    <button
+                      class="flex gap-1 rounded-sm border-b px-4 py-3 text-sm uppercase text-gray-600 hover:bg-gray-300 hover:bg-opacity-20 hover:text-black focus:outline-none"
+                      on:click={() => goto(logoutUrl)}
+                    >
+                      <span
+                        class="hidden whitespace-nowrap pl-1 md:inline-block"
+                        >Se déconnecter</span
+                      >
+
+                      <iconify-icon
+                        class="text-lg"
+                        icon="ri-logout-box-r-line"
+                      />
+                    </button>
+                  </div>
+                </PersistentPopover>
+              </li>
+            {/if}
           {/if}
-        {/if}
-      </ul>
-    </div>
+        </ul>
+      </div>
+    {/if}
 
     <!--Menu écran téléphone-->
     <div class="flex flex-col md:hidden">
@@ -342,11 +477,11 @@
         {/if}
       </div>
 
-      <NavBarSearch isSearchActive={$isSearchActive} bind:searchQuery />
+      <NavBarSearch bind:searchQuery isSearchActive={$isSearchActive} />
     </div>
   </div>
 
-  {#if searchQuery.length > 0}
+  {#if searchQuery?.length > 0}
     <div
       class="absolute top-24 w-full overflow-hidden rounded-b-lg border bg-white shadow-lg md:left-[calc((100%-350px)/2)] md:top-12 md:w-[350px] lg:left-[calc((100%-500px)/2)] lg:w-[500px] 2xl:left-[calc((100%-600px)/2)] 2xl:top-14 2xl:w-[600px]"
     >
diff --git a/src/lib/components/search/WelcomeSearch.svelte b/src/lib/components/search/WelcomeSearch.svelte
new file mode 100644
index 0000000000000000000000000000000000000000..cc50009aa9b8bb480eac6fc54b00e0eceb710c6e
--- /dev/null
+++ b/src/lib/components/search/WelcomeSearch.svelte
@@ -0,0 +1,31 @@
+<script lang="ts">
+  export let isSearchActive: boolean
+  export let searchQuery: string
+</script>
+
+<div
+  class="flex gap-1.5 w-full overflow-hidden rounded-t-md border-2 border-neutral-200 border-b-4 border-b-[#A6A00C] bg-gray-100"
+>
+  <iconify-icon
+    class="ml-4 self-center p-1 text-xl text-black"
+    icon="ri-search-line"
+  />
+  <input
+    autocomplete="off"
+    class="w-full px-1 py-1.5 md:px-3 md:py-3 border-none bg-transparent text-lg text-gray-900 placeholder-gray-400 !ring-transparent focus:outline-none 2xl:text-xl"
+    id="navbar_search"
+    placeholder="impôt sur le revenu, CSG, ..."
+    type="search"
+    bind:value={searchQuery}
+  />
+  {#if isSearchActive}
+    <iconify-icon
+      class="md:mx-1 cursor-pointer self-center p-1 text-black"
+      icon="ri-close-line"
+      width="20"
+      height="20"
+      on:click={() => (searchQuery = "")}
+      on:keyup
+    />
+  {/if}
+</div>
diff --git a/src/lib/displays.ts b/src/lib/displays.ts
index a2da3bd84dc72c8d29d720274c4e987ca752f704..4bf096b006e2c4ff31ce2c6c1d3204ddc28f98f5 100644
--- a/src/lib/displays.ts
+++ b/src/lib/displays.ts
@@ -8,6 +8,6 @@ export interface DisplayMode {
   testCasesIndex: number[] // Contains at least the index of a single test case.
   variableName?: string
   waterfallName: string
-  tab: string
+  tab?: string
   parameterHash?: string
 }
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte
index b6e3dd70002cf81eb0adf43eea0063c137bb7472..3fbe33662546ea15d1735c5b4af719fff1e57d89 100644
--- a/src/routes/+layout.svelte
+++ b/src/routes/+layout.svelte
@@ -242,6 +242,9 @@
   let waterfall = writable(waterfalls[0])
   setContext("waterfall", waterfall)
 
+  const welcomePage = writable(false)
+  setContext("welcomePage", welcomePage)
+
   const year = writable(parseInt($date.split("-")[0]))
   setContext("year", year)
 
diff --git a/src/routes/welcome/+page.svelte b/src/routes/welcome/+page.svelte
new file mode 100644
index 0000000000000000000000000000000000000000..04cf751ed3304f4b117419f349484e72cb76ee08
--- /dev/null
+++ b/src/routes/welcome/+page.svelte
@@ -0,0 +1,182 @@
+<script lang="ts">
+  import { getContext } from "svelte"
+  import type { Writable } from "svelte/store"
+
+  import WelcomeSearch from "$lib/components/search/WelcomeSearch.svelte"
+  import { waterfalls } from "$lib/decompositions"
+  import type { DisplayMode } from "$lib/displays"
+  import { newSimulationUrl } from "$lib/urls"
+  import PictoBudgetEtatIr from "$lib/components/pictos/PictoBudgetEtatIr.svelte"
+  import PictoBudgetEtat from "$lib/components/pictos/PictoBudgetEtat.svelte"
+  import PictoFemme from "$lib/components/pictos/PictoFemme.svelte"
+  import PictoBigParent from "$lib/components/pictos/PictoBigParent.svelte"
+
+  const displayMode: DisplayMode = {
+    testCasesIndex: [0],
+    waterfallName: waterfalls[0].name,
+  }
+  const welcomePage = getContext("welcomePage") as Writable<boolean>
+
+  const suggestions = [
+    {
+      name: "csg_salaire",
+      label: "CSG",
+    },
+    {
+      name: "irpp_economique",
+      label: "Impôt sur le revenu",
+    },
+    {
+      name: "aide_logement",
+      label: "Aides au logement",
+    },
+    {
+      name: "etc",
+      label: "etc",
+    },
+  ]
+
+  $: $welcomePage = true
+</script>
+
+<main class="h-full bg-yellow-50">
+  <section
+    class="relative h-[78%] before:absolute before:top-0 before:inset-x-0 before:h-[50vh] before:bg-gradient-to-b before:from-[#9AAAB4] before:to-transparent"
+  >
+    <div class="h-full relative z-10 flex flex-col justify-evenly items-center">
+      <h3 class="font-serif text-3xl text-center">
+        Mesurer les <span class="highlight">impacts</span>
+        <br />
+        du droit en vigueur ou d’une réforme
+        <br />
+        du <span class="highlight">système socio-fiscal</span>
+      </h3>
+
+      <div class="flex flex-col gap-4">
+        <div>
+          <h5 class="font-bold text-3xl">
+            Commencer avec un impôt, une cotisation ou une prestation :
+          </h5>
+
+          <span>
+            En sélectionnant un dispositif, vous pourrez ensuite voir ses
+            impacts et même proposer un changement de la loi :
+          </span>
+        </div>
+
+        <WelcomeSearch />
+
+        <div class="flex gap-3 items-center">
+          {#each suggestions.slice(0, 3) as suggestion}
+            <a
+              class="px-3 py-1 bg-[#E3DFA9] hover:bg-opacity-80 active:bg-opacity-70 rounded-full"
+              href={newSimulationUrl({
+                ...displayMode,
+                parametersVariableName: suggestion.name,
+              })}
+            >
+              {suggestion.label}
+            </a>
+          {/each}
+          <a class="underline text-neutral-600 hover:text-black" href="#">
+            Voir les {suggestions.length} dispositifs couverts
+          </a>
+        </div>
+      </div>
+    </div>
+  </section>
+
+  <section class="h-[90%] grid grid-cols-3 gap-x-12 px-40 py-20 bg-[#E3E4D6]">
+    <div class="font-serif text-lg">
+      <h6 class="mb-6 font-sans text-2xl">
+        <span class="inline-flex gap-2">
+          Impacts budgétaires
+          <PictoBudgetEtat />
+        </span>
+        <br />
+        <span class="inline-flex items-center gap-2">
+          et sur cas types
+          <img alt="Picto cas type" class="w-7" src="/pictos/picto_femme.svg" />
+        </span>
+      </h6>
+
+      <span>
+        Le simulateur socio-fiscal LexImpact de l’Assemblée nationale permet de
+        voir les impacts de la loi sur des <b>ménages types</b> pour
+        <a class="underline" href="#">tous les dispositifs disponibles</a>.
+      </span>
+
+      <br />
+      <br />
+
+      <span>
+        L'<b>impact budgétaire</b> est calculable pour :
+      </span>
+      <ul class="list-disc pl-8">
+        <li><a class="underline" href="#">impôt sur le revenu (IR)</a> ;</li>
+        <li><a class="underline" href="#">CSG sur les salaires</a> ;</li>
+        <li><a class="underline" href="#">CSG sur les retraites</a> ;</li>
+        <li><a class="underline" href="#">Allocations familiales</a>.</li>
+      </ul>
+    </div>
+
+    <div class="font-serif text-lg">
+      <h6 class="mb-6 font-sans text-2xl">
+        <span class="inline-flex gap-2">
+          Consulter et modifier
+          <img alt="Picto stylo" class="w-7" src="/picto_pen.svg" />
+        </span>
+        <br />
+        <span>la loi</span>
+      </h6>
+
+      <span>Ce simulateur permet :</span>
+
+      <ul class="list-disc pl-8">
+        <li>de consulter le droit en vigueur ;</li>
+        <li>de consulter les projets de loi du Gouvernement ;</li>
+        <li>de modifier les paramètres pour voir les impacts d’une réforme.</li>
+      </ul>
+    </div>
+
+    <div class="font-serif text-lg">
+      <h6 class="mb-6 font-sans text-2xl">
+        <span>La fiche de paie & les&nbsp;prestations&nbsp;sociales</span>
+      </h6>
+
+      <span>Le périmètre du simulateur couvre :</span>
+
+      <ul class="list-disc pl-8">
+        <li>les cotisations salariales et patronales</li>
+        <li>les impôts</li>
+        <li>les prestations sociales.</li>
+      </ul>
+
+      <img class="mt-6 ml-20 w-28" src="/picto-affaires-sociales.svg" />
+    </div>
+
+    <div class="col-span-3 flex flex-col items-center gap-1">
+      <a
+        class="inline-flex items-center gap-2 text-[#343bff] uppercase font-semibold tracking-widest hover:underline"
+        href="#"
+      >
+        Choisir un cas type
+        <iconify-icon class="text-xl" icon="ri-arrow-right-line" />
+      </a>
+
+      <a
+        class="inline-flex items-center gap-2 text-[#343bff] uppercase font-semibold tracking-widest hover:underline"
+        href="#"
+      >
+        Simulateur budgétaire
+        <iconify-icon class="text-xl" icon="ri-arrow-right-line" />
+      </a>
+    </div>
+  </section>
+</main>
+
+<style lang="postcss">
+  .highlight {
+    @apply relative before:absolute before:-z-10 before:top-1 before:bottom-0 before:-left-1 before:-right-4 before:bg-yellow-400 before:bg-opacity-65;
+  }
+</style>
diff --git a/static/picto-affaires-sociales.svg b/static/picto-affaires-sociales.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ddc163d582d6936f54850ce2c67d73a3afba359e
--- /dev/null
+++ b/static/picto-affaires-sociales.svg
@@ -0,0 +1,499 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   width="141.0027"
+   height="94.000999"
+   viewBox="0 0 141.0027 94.000999"
+   fill="none"
+   version="1.1"
+   id="svg75"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg">
+  <g
+     filter="url(#filter0_d_48346_15237)"
+     id="g1"
+     transform="translate(-49.9973,-42.999)">
+    <path
+       d="M 149,50.7181 C 149,49.2169 150.209,48 151.7,48 h 32.6 c 1.491,0 2.7,1.2169 2.7,2.7181 v 9.5638 C 187,61.7831 185.791,63 184.3,63 h -32.6 c -1.491,0 -2.7,-1.2169 -2.7,-2.7181 z"
+       fill="#ded500"
+       id="path1" />
+  </g>
+  <path
+     d="m 71.9997,82.667 c 0,2.74 -1.083,5.369 -3.012,7.306 C 67.0587,91.911 64.4427,93 61.7147,93 H 10.2857 C 4.6054,93 0,88.156 0,72.333 V 10.3334 C 0,7.5928 1.0837,4.9645 3.0126,3.0266 4.9416,1.0887 7.5578,0 10.2857,0 h 51.429 c 2.728,0 5.344,1.0887 7.273,3.0266 1.929,1.9379 3.012,4.5662 3.012,7.3068 z"
+     fill="#e6e6e6"
+     id="path2" />
+  <path
+     d="m 6,24 h 58.9997 v 5 H 6 Z"
+     fill="#060c13"
+     id="path3" />
+  <path
+     d="m 6,55 h 58.9997 v 2 H 6 Z"
+     fill="#676767"
+     id="path4" />
+  <path
+     d="m 6,32 h 58.9997 v 2 H 6 Z"
+     fill="#676767"
+     id="path5" />
+  <path
+     d="M 6,36 H 23 V 51 H 6 Z"
+     fill="#ffffff"
+     id="path6" />
+  <path
+     d="M 6,59 H 23 V 76 H 6 Z"
+     fill="#ffffff"
+     id="path7" />
+  <path
+     d="M 24,36 H 53.9997 V 51 H 24 Z"
+     fill="#ffffff"
+     id="path8" />
+  <path
+     d="M 24,59 H 53.9997 V 76 H 24 Z"
+     fill="#ffffff"
+     id="path9" />
+  <path
+     d="m 55.9997,36 h 9 v 15 h -9 z"
+     fill="#ffffff"
+     id="path10" />
+  <path
+     d="m 55.9997,59 h 9 v 17 h -9 z"
+     fill="#ffffff"
+     id="path11" />
+  <path
+     d="m 64.9947,6.7041 v 2.4438 h -5.62 v 3.1958 h 4.304 v 2.3498 h -4.304 v 3.2615 h 5.62 v 2.4438 h -8.816 V 6.7041 Z"
+     fill="#000000"
+     id="path12" />
+  <path
+     d="m 53.6357,20.3988 h -3.195 V 6.7041 h 3.195 z"
+     fill="#000000"
+     id="path13" />
+  <path
+     d="m 49.0473,20.3988 h -2.4626 c -0.2757,0 -0.5044,-0.0627 -0.6861,-0.188 -0.1755,-0.1316 -0.2976,-0.2976 -0.3666,-0.4982 l -0.8083,-2.3874 h -5.2072 l -0.8083,2.3874 c -0.0627,0.1755 -0.1849,0.3353 -0.3666,0.4794 -0.1817,0.1379 -0.4041,0.2068 -0.6673,0.2068 H 35.1929 L 40.494,6.7041 h 3.2522 z m -8.7976,-5.2354 h 3.7409 L 42.7311,11.4131 C 42.6496,11.175 42.5525,10.8962 42.4397,10.5766 42.3332,10.2508 42.2266,9.8999 42.1201,9.5239 c -0.1002,0.3822 -0.2036,0.7363 -0.3102,1.0621 -0.1065,0.3258 -0.2067,0.6078 -0.3007,0.8459 z"
+     fill="#000000"
+     id="path14" />
+  <path
+     d="m 29.0859,15.8214 v 4.5774 h -3.177 V 6.7041 h 4.8312 c 0.965,0 1.7922,0.1159 2.4814,0.3478 0.6956,0.2256 1.2658,0.5389 1.7107,0.9399 0.4512,0.4011 0.7833,0.8741 0.9963,1.4193 0.2131,0.5452 0.3196,1.1342 0.3196,1.7671 0,0.683 -0.1097,1.3096 -0.329,1.8798 -0.2193,0.5702 -0.5545,1.059 -1.0057,1.4663 -0.4512,0.4073 -1.0245,0.7268 -1.7201,0.9587 -0.6892,0.2256 -1.507,0.3384 -2.4532,0.3384 z m 0,-2.3968 h 1.6542 c 0.8272,0 1.4225,-0.1974 1.7859,-0.5922 0.3634,-0.3948 0.5452,-0.9462 0.5452,-1.6542 0,-0.3134 -0.047,-0.5985 -0.141,-0.8554 C 32.8362,10.0659 32.6921,9.8466 32.4978,9.6649 32.3098,9.4769 32.0686,9.3328 31.7741,9.2325 31.4858,9.1323 31.1412,9.0821 30.7401,9.0821 h -1.6542 z"
+     fill="#000000"
+     id="path15" />
+  <path
+     d="m 8.0027,38.001 h 12 v 2 h -12 z"
+     fill="#060c13"
+     id="path16" />
+  <path
+     d="m 8.0027,65.001 h 12 v 2 h -12 z"
+     fill="#060c13"
+     id="path17" />
+  <path
+     d="m 8.0027,61.001 h 12 v 2 h -12 z"
+     fill="#060c13"
+     id="path18" />
+  <path
+     d="m 8.0027,42.001 h 8 v 2 h -8 z"
+     fill="#060c13"
+     id="path19" />
+  <path
+     d="m 8.0027,68.001 h 8 v 2 h -8 z"
+     fill="#060c13"
+     id="path20" />
+  <path
+     d="m 8.0027,44.001 h 14 v 2 h -14 z"
+     fill="#060c13"
+     id="path21" />
+  <path
+     d="m 8.0027,71.001 h 14 v 2 h -14 z"
+     fill="#060c13"
+     id="path22" />
+  <path
+     d="m 57.0027,47.001 h 7 v 2 h -7 z"
+     fill="#060c13"
+     id="path23" />
+  <path
+     d="m 27.0027,38.001 h 6 v 2 h -6 z"
+     fill="#060c13"
+     id="path24" />
+  <path
+     d="m 27.0027,61.001 h 6 v 2 h -6 z"
+     fill="#060c13"
+     id="path25" />
+  <path
+     d="m 27.0027,42.001 h 6 v 2 h -6 z"
+     fill="#060c13"
+     id="path26" />
+  <path
+     d="m 27.0027,65.001 h 6 v 2 h -6 z"
+     fill="#060c13"
+     id="path27" />
+  <path
+     d="m 27.0027,44.001 h 6 v 2 h -6 z"
+     fill="#060c13"
+     id="path28" />
+  <path
+     d="m 70.0617,93.001 h -59.059 c 8.7495,0 8.7495,-17.333 8.7495,-17.333 0,-2.299 0.9218,-4.503 2.5626,-6.129 1.6409,-1.625 3.8664,-2.538 6.1869,-2.538 h 43.747 c 4.832,0 8.75,4.333 8.75,8.667 0,0 0.547,17.333 -10.937,17.333 z"
+     fill="#adadad"
+     id="path29" />
+  <path
+     d="m 128.3457,16.4214 c 0,-0.145 0.026,-0.2799 0.078,-0.4048 0.057,-0.1249 0.131,-0.2336 0.224,-0.3263 0.097,-0.0926 0.209,-0.1651 0.338,-0.2175 0.129,-0.0564 0.27,-0.0846 0.423,-0.0846 0.149,0 0.288,0.0282 0.417,0.0846 0.129,0.0524 0.242,0.1249 0.339,0.2175 0.096,0.0927 0.171,0.2014 0.223,0.3263 0.056,0.1249 0.085,0.2598 0.085,0.4048 0,0.1451 -0.029,0.282 -0.085,0.4109 -0.052,0.1249 -0.127,0.2337 -0.223,0.3263 -0.097,0.0927 -0.21,0.1652 -0.339,0.2175 -0.129,0.0524 -0.268,0.0786 -0.417,0.0786 -0.153,0 -0.294,-0.0262 -0.423,-0.0786 -0.129,-0.0523 -0.241,-0.1248 -0.338,-0.2175 -0.093,-0.0926 -0.167,-0.2014 -0.224,-0.3263 -0.052,-0.1289 -0.078,-0.2658 -0.078,-0.4109 z"
+     fill="#515151"
+     id="path30" />
+  <path
+     d="m 124.2487,15.8958 c 0.282,0 0.532,-0.0242 0.75,-0.0725 0.217,-0.0483 0.423,-0.1128 0.616,-0.1934 v -1.3353 h -0.87 c -0.129,0 -0.23,-0.0343 -0.302,-0.1027 -0.073,-0.0685 -0.109,-0.1551 -0.109,-0.2599 v -1.1238 h 3.13 v 3.716 c -0.226,0.1652 -0.461,0.3082 -0.707,0.429 -0.242,0.1168 -0.502,0.2135 -0.78,0.2901 -0.273,0.0765 -0.568,0.1329 -0.882,0.1691 -0.31,0.0363 -0.644,0.0544 -1.003,0.0544 -0.644,0 -1.24,-0.1128 -1.788,-0.3384 -0.548,-0.2296 -1.023,-0.5438 -1.426,-0.9426 -0.399,-0.4028 -0.713,-0.8781 -0.943,-1.426 -0.225,-0.5518 -0.338,-1.15 -0.338,-1.7945 0,-0.6566 0.109,-1.2589 0.326,-1.8067 0.218,-0.5519 0.528,-1.0272 0.931,-1.426 0.406,-0.3988 0.896,-0.709 1.468,-0.9305 0.576,-0.2216 1.218,-0.3323 1.927,-0.3323 0.367,0 0.711,0.0302 1.034,0.0906 0.322,0.0604 0.618,0.143 0.888,0.2477 0.274,0.1048 0.524,0.2296 0.749,0.3746 0.226,0.1451 0.427,0.3022 0.604,0.4714 l -0.592,0.9003 c -0.056,0.0846 -0.125,0.151 -0.205,0.1994 -0.077,0.0483 -0.161,0.0725 -0.254,0.0725 -0.121,0 -0.246,-0.0403 -0.375,-0.1209 -0.161,-0.0967 -0.314,-0.1792 -0.459,-0.2477 -0.141,-0.0725 -0.286,-0.1309 -0.435,-0.1752 -0.149,-0.0444 -0.306,-0.0766 -0.471,-0.0967 -0.165,-0.0202 -0.351,-0.0302 -0.556,-0.0302 -0.383,0 -0.727,0.0684 -1.033,0.2054 -0.307,0.1329 -0.568,0.3223 -0.786,0.568 -0.213,0.2457 -0.379,0.5418 -0.495,0.8882 -0.117,0.3424 -0.176,0.7251 -0.176,1.1481 0,0.4672 0.065,0.8821 0.194,1.2447 0.129,0.3625 0.306,0.6687 0.531,0.9184 0.23,0.2498 0.5,0.4411 0.81,0.574 0.314,0.129 0.657,0.1934 1.027,0.1934 z"
+     fill="#515151"
+     id="path31" />
+  <path
+     d="m 118.4617,10.355 c -0.061,0.0966 -0.125,0.1692 -0.194,0.2175 -0.064,0.0483 -0.149,0.0725 -0.254,0.0725 -0.092,0 -0.193,-0.0282 -0.302,-0.0846 -0.104,-0.0604 -0.225,-0.1269 -0.362,-0.1994 -0.133,-0.0725 -0.286,-0.137 -0.46,-0.1933 -0.173,-0.0605 -0.37,-0.0907 -0.592,-0.0907 -0.382,0 -0.668,0.0826 -0.858,0.2478 -0.185,0.1611 -0.278,0.3806 -0.278,0.6586 0,0.1772 0.057,0.3242 0.17,0.4411 0.112,0.1168 0.259,0.2175 0.441,0.3021 0.185,0.0846 0.394,0.1631 0.628,0.2356 0.238,0.0685 0.479,0.1471 0.725,0.2357 0.246,0.0846 0.486,0.1853 0.719,0.3021 0.238,0.1168 0.447,0.2659 0.629,0.4471 0.185,0.1813 0.334,0.4029 0.447,0.6647 0.113,0.2578 0.169,0.57 0.169,0.9366 0,0.4068 -0.071,0.7875 -0.212,1.142 -0.141,0.3545 -0.346,0.6646 -0.616,0.9305 -0.266,0.2618 -0.596,0.4693 -0.991,0.6224 -0.391,0.149 -0.836,0.2235 -1.335,0.2235 -0.274,0 -0.554,-0.0282 -0.84,-0.0846 -0.282,-0.0564 -0.556,-0.1349 -0.822,-0.2356 -0.266,-0.1048 -0.515,-0.2276 -0.749,-0.3686 -0.234,-0.141 -0.437,-0.2981 -0.61,-0.4713 l 0.604,-0.9547 c 0.044,-0.0725 0.107,-0.1309 0.187,-0.1752 0.081,-0.0443 0.167,-0.0665 0.26,-0.0665 0.121,0 0.242,0.0383 0.363,0.1148 0.124,0.0765 0.263,0.1611 0.416,0.2538 0.158,0.0926 0.337,0.1772 0.538,0.2538 0.202,0.0765 0.439,0.1148 0.713,0.1148 0.371,0 0.659,-0.0806 0.864,-0.2417 0.206,-0.1652 0.308,-0.425 0.308,-0.7795 0,-0.2054 -0.056,-0.3726 -0.169,-0.5015 -0.113,-0.1289 -0.262,-0.2357 -0.447,-0.3203 -0.181,-0.0845 -0.389,-0.1591 -0.622,-0.2235 -0.234,-0.0645 -0.474,-0.135 -0.719,-0.2115 -0.246,-0.0806 -0.486,-0.1772 -0.719,-0.29 -0.234,-0.1169 -0.443,-0.2679 -0.629,-0.4532 -0.181,-0.1893 -0.328,-0.423 -0.441,-0.7009 -0.113,-0.282 -0.169,-0.6284 -0.169,-1.0393 0,-0.3303 0.066,-0.6526 0.199,-0.9668 0.133,-0.3142 0.329,-0.5942 0.586,-0.8399 0.258,-0.2457 0.575,-0.4411 0.949,-0.5861 0.375,-0.149 0.804,-0.2235 1.287,-0.2235 0.27,0 0.532,0.0221 0.786,0.0664 0.257,0.0403 0.501,0.1027 0.731,0.1873 0.229,0.0806 0.443,0.1793 0.64,0.2961 0.202,0.1128 0.381,0.2417 0.538,0.3867 z"
+     fill="#515151"
+     id="path32" />
+  <path
+     d="m 111.5277,15.0922 c 0.048,0 0.096,0.01 0.145,0.0302 0.048,0.0161 0.094,0.0463 0.139,0.0906 l 0.809,0.852 c -0.354,0.4632 -0.799,0.8137 -1.335,1.0514 -0.532,0.2336 -1.162,0.3504 -1.891,0.3504 -0.669,0 -1.269,-0.1128 -1.801,-0.3384 -0.528,-0.2296 -0.977,-0.5438 -1.347,-0.9426 -0.367,-0.4028 -0.649,-0.8781 -0.846,-1.426 -0.198,-0.5518 -0.296,-1.15 -0.296,-1.7945 0,-0.6566 0.112,-1.2589 0.338,-1.8067 0.226,-0.5519 0.54,-1.0272 0.943,-1.426 0.406,-0.3988 0.892,-0.709 1.456,-0.9305 0.564,-0.2216 1.186,-0.3323 1.867,-0.3323 0.33,0 0.64,0.0302 0.93,0.0906 0.294,0.0564 0.568,0.1369 0.822,0.2417 0.254,0.1007 0.488,0.2235 0.701,0.3686 0.214,0.141 0.403,0.2981 0.568,0.4713 l -0.689,0.9244 c -0.044,0.0564 -0.096,0.1088 -0.157,0.1571 -0.06,0.0444 -0.145,0.0665 -0.254,0.0665 -0.072,0 -0.141,-0.0161 -0.205,-0.0483 -0.065,-0.0323 -0.133,-0.0705 -0.206,-0.1148 -0.072,-0.0484 -0.153,-0.0987 -0.241,-0.1511 -0.085,-0.0564 -0.188,-0.1067 -0.308,-0.151 -0.117,-0.0484 -0.256,-0.0887 -0.417,-0.1209 -0.157,-0.0322 -0.343,-0.0483 -0.556,-0.0483 -0.371,0 -0.709,0.0664 -1.015,0.1994 -0.307,0.1289 -0.57,0.3162 -0.792,0.5619 -0.217,0.2417 -0.389,0.5358 -0.514,0.8822 -0.12,0.3464 -0.181,0.7351 -0.181,1.1662 0,0.4511 0.061,0.8519 0.181,1.2024 0.125,0.3504 0.293,0.6465 0.502,0.8882 0.214,0.2377 0.461,0.419 0.743,0.5438 0.282,0.1249 0.584,0.1873 0.907,0.1873 0.185,0 0.354,-0.008 0.507,-0.0241 0.153,-0.0202 0.294,-0.0524 0.423,-0.0967 0.133,-0.0443 0.258,-0.1007 0.375,-0.1692 0.121,-0.0725 0.241,-0.1611 0.362,-0.2659 0.049,-0.0402 0.101,-0.0725 0.157,-0.0966 0.057,-0.0282 0.115,-0.0423 0.176,-0.0423 z"
+     fill="#515151"
+     id="path33" />
+  <g
+     filter="url(#filter1_d_48346_15237)"
+     id="g34"
+     transform="translate(-49.9973,-42.999)">
+    <path
+       d="M 114,70.7308 C 114,69.2226 115.2,68 116.681,68 h 67.638 C 185.8,68 187,69.2226 187,70.7308 V 83.2692 C 187,84.7774 185.8,86 184.319,86 H 116.681 C 115.2,86 114,84.7774 114,83.2692 Z"
+       fill="#ded500"
+       id="path34" />
+  </g>
+  <path
+     d="m 130.0697,33.0533 c -0.049,0.0765 -0.101,0.1309 -0.158,0.1631 -0.052,0.0322 -0.12,0.0484 -0.205,0.0484 -0.089,0 -0.177,-0.0182 -0.266,-0.0544 -0.088,-0.0403 -0.185,-0.0826 -0.29,-0.1269 -0.101,-0.0443 -0.215,-0.0846 -0.344,-0.1209 -0.129,-0.0402 -0.276,-0.0604 -0.441,-0.0604 -0.238,0 -0.421,0.0463 -0.55,0.139 -0.125,0.0886 -0.188,0.2135 -0.188,0.3746 0,0.1168 0.041,0.2135 0.121,0.2901 0.085,0.0765 0.196,0.145 0.333,0.2054 0.137,0.0564 0.292,0.1108 0.465,0.1631 0.173,0.0524 0.35,0.1108 0.532,0.1753 0.181,0.0644 0.358,0.141 0.531,0.2296 0.174,0.0846 0.329,0.1913 0.466,0.3202 0.137,0.1249 0.245,0.278 0.326,0.4592 0.084,0.1813 0.127,0.3988 0.127,0.6526 0,0.3102 -0.057,0.5962 -0.169,0.858 -0.113,0.2619 -0.282,0.4874 -0.508,0.6768 -0.222,0.1893 -0.497,0.3363 -0.828,0.4411 -0.326,0.1047 -0.703,0.1571 -1.13,0.1571 -0.213,0 -0.427,-0.0202 -0.64,-0.0605 -0.214,-0.0402 -0.421,-0.0946 -0.623,-0.1631 -0.197,-0.0685 -0.38,-0.149 -0.549,-0.2417 -0.17,-0.0967 -0.315,-0.1994 -0.435,-0.3082 l 0.435,-0.6888 c 0.052,-0.0806 0.114,-0.143 0.187,-0.1873 0.072,-0.0483 0.167,-0.0725 0.284,-0.0725 0.109,0 0.205,0.0242 0.29,0.0725 0.089,0.0483 0.183,0.1007 0.284,0.1571 0.101,0.0564 0.217,0.1088 0.35,0.1571 0.137,0.0483 0.309,0.0725 0.514,0.0725 0.145,0 0.268,-0.0141 0.369,-0.0423 0.1,-0.0322 0.181,-0.0745 0.241,-0.1269 0.061,-0.0523 0.105,-0.1108 0.133,-0.1752 0.028,-0.0645 0.042,-0.1309 0.042,-0.1994 0,-0.1249 -0.042,-0.2276 -0.126,-0.3082 -0.085,-0.0805 -0.196,-0.149 -0.333,-0.2054 -0.137,-0.0604 -0.294,-0.1148 -0.471,-0.1631 -0.173,-0.0524 -0.35,-0.1108 -0.532,-0.1753 -0.181,-0.0644 -0.36,-0.141 -0.538,-0.2296 -0.173,-0.0926 -0.328,-0.2074 -0.465,-0.3444 -0.137,-0.141 -0.248,-0.3122 -0.332,-0.5136 -0.085,-0.2014 -0.127,-0.4451 -0.127,-0.7311 0,-0.2659 0.05,-0.5177 0.151,-0.7553 0.105,-0.2417 0.26,-0.4532 0.465,-0.6345 0.206,-0.1812 0.464,-0.3242 0.774,-0.429 0.31,-0.1087 0.672,-0.1631 1.087,-0.1631 0.226,0 0.443,0.0201 0.653,0.0604 0.213,0.0403 0.413,0.0967 0.598,0.1692 0.185,0.0725 0.355,0.1591 0.508,0.2598 0.153,0.0967 0.288,0.2034 0.405,0.3203 z"
+     fill="#515151"
+     id="path35" />
+  <path
+     d="m 119.2317,37.9476 v -6.2659 h 1.16 c 0.117,0 0.214,0.0261 0.29,0.0785 0.081,0.0524 0.137,0.1309 0.169,0.2357 l 0.109,0.3625 c 0.121,-0.1128 0.246,-0.2175 0.375,-0.3142 0.129,-0.0967 0.266,-0.1772 0.411,-0.2417 0.149,-0.0685 0.308,-0.1208 0.477,-0.1571 0.173,-0.0403 0.36,-0.0604 0.562,-0.0604 0.342,0 0.644,0.0604 0.906,0.1813 0.266,0.1168 0.49,0.2819 0.671,0.4954 0.181,0.2095 0.318,0.4613 0.411,0.7553 0.092,0.2901 0.139,0.6063 0.139,0.9487 v 3.9819 h -1.873 v -3.9819 c 0,-0.3062 -0.071,-0.5438 -0.212,-0.713 -0.141,-0.1732 -0.348,-0.2598 -0.622,-0.2598 -0.206,0 -0.399,0.0443 -0.58,0.1329 -0.181,0.0886 -0.355,0.2074 -0.52,0.3565 v 4.4653 z"
+     fill="#515151"
+     id="path36" />
+  <path
+     d="m 115.0137,31.585 c 0.476,0 0.909,0.0745 1.3,0.2236 0.39,0.149 0.725,0.3625 1.003,0.6404 0.282,0.278 0.499,0.6164 0.652,1.0152 0.157,0.3947 0.236,0.8398 0.236,1.3353 0,0.4995 -0.079,0.9507 -0.236,1.3535 -0.153,0.3988 -0.37,0.7392 -0.652,1.0212 -0.278,0.2779 -0.613,0.4934 -1.003,0.6465 -0.391,0.149 -0.824,0.2236 -1.3,0.2236 -0.479,0 -0.916,-0.0746 -1.311,-0.2236 -0.391,-0.1531 -0.729,-0.3686 -1.015,-0.6465 -0.282,-0.282 -0.501,-0.6224 -0.659,-1.0212 -0.153,-0.4028 -0.229,-0.854 -0.229,-1.3535 0,-0.4955 0.076,-0.9406 0.229,-1.3353 0.158,-0.3988 0.377,-0.7372 0.659,-1.0152 0.286,-0.2779 0.624,-0.4914 1.015,-0.6404 0.395,-0.1491 0.832,-0.2236 1.311,-0.2236 z m 0,5.0695 c 0.431,0 0.748,-0.151 0.949,-0.4532 0.206,-0.3061 0.308,-0.7693 0.308,-1.3897 0,-0.6203 -0.102,-1.0816 -0.308,-1.3837 -0.201,-0.3021 -0.518,-0.4532 -0.949,-0.4532 -0.443,0 -0.767,0.1511 -0.972,0.4532 -0.206,0.3021 -0.309,0.7634 -0.309,1.3837 0,0.6204 0.103,1.0836 0.309,1.3897 0.205,0.3022 0.529,0.4532 0.972,0.4532 z"
+     fill="#515151"
+     id="path37" />
+  <path
+     d="m 110.7107,31.6839 v 6.2659 h -1.873 v -6.2659 z m 0.217,-1.716 c 0,0.149 -0.03,0.29 -0.09,0.423 -0.061,0.1289 -0.143,0.2437 -0.248,0.3444 -0.105,0.0967 -0.228,0.1752 -0.369,0.2356 -0.137,0.0564 -0.284,0.0846 -0.441,0.0846 -0.153,0 -0.296,-0.0282 -0.429,-0.0846 -0.133,-0.0604 -0.251,-0.1389 -0.356,-0.2356 -0.101,-0.1007 -0.181,-0.2155 -0.242,-0.3444 -0.056,-0.133 -0.084,-0.274 -0.084,-0.423 0,-0.1531 0.028,-0.2961 0.084,-0.429 0.061,-0.1329 0.141,-0.2498 0.242,-0.3505 0.105,-0.1007 0.223,-0.1792 0.356,-0.2356 0.133,-0.0564 0.276,-0.0846 0.429,-0.0846 0.157,0 0.304,0.0282 0.441,0.0846 0.141,0.0564 0.264,0.1349 0.369,0.2356 0.105,0.1007 0.187,0.2176 0.248,0.3505 0.06,0.1329 0.09,0.2759 0.09,0.429 z"
+     fill="#515151"
+     id="path38" />
+  <path
+     d="m 106.1367,38.0461 c -0.298,0 -0.562,-0.0423 -0.791,-0.1269 -0.226,-0.0886 -0.417,-0.2115 -0.574,-0.3686 -0.154,-0.1611 -0.27,-0.3544 -0.351,-0.58 -0.08,-0.2256 -0.121,-0.4774 -0.121,-0.7553 v -3.2387 h -0.532 c -0.096,0 -0.179,-0.0302 -0.247,-0.0907 -0.069,-0.0644 -0.103,-0.1571 -0.103,-0.2779 v -0.7311 l 0.997,-0.1934 0.369,-1.5287 c 0.048,-0.1934 0.185,-0.29 0.41,-0.29 h 0.979 v 1.8308 h 1.523 v 1.281 h -1.523 v 3.1118 c 0,0.145 0.035,0.2659 0.103,0.3625 0.073,0.0927 0.175,0.139 0.308,0.139 0.069,0 0.125,-0.006 0.169,-0.0181 0.049,-0.0161 0.089,-0.0322 0.121,-0.0484 0.037,-0.0201 0.069,-0.0362 0.097,-0.0483 0.032,-0.0161 0.068,-0.0242 0.109,-0.0242 0.056,0 0.1,0.0141 0.133,0.0423 0.036,0.0242 0.072,0.0645 0.108,0.1209 l 0.568,0.8882 c -0.241,0.1813 -0.513,0.3182 -0.815,0.4109 -0.302,0.0886 -0.615,0.1329 -0.937,0.1329 z"
+     fill="#515151"
+     id="path39" />
+  <path
+     d="m 101.7467,37.9508 c -0.177,0 -0.312,-0.0242 -0.405,-0.0725 -0.088,-0.0484 -0.163,-0.1491 -0.223,-0.3022 l -0.133,-0.3444 c -0.157,0.133 -0.308,0.2498 -0.453,0.3505 -0.145,0.1007 -0.296,0.1873 -0.454,0.2598 -0.153,0.0685 -0.318,0.1188 -0.495,0.1511 -0.173,0.0362 -0.367,0.0543 -0.58,0.0543 -0.286,0 -0.546,-0.0362 -0.78,-0.1087 -0.233,-0.0766 -0.433,-0.1873 -0.598,-0.3324 -0.161,-0.145 -0.286,-0.3242 -0.374,-0.5377 -0.089,-0.2175 -0.133,-0.4673 -0.133,-0.7493 0,-0.2215 0.056,-0.4491 0.169,-0.6828 0.113,-0.2336 0.308,-0.4451 0.586,-0.6344 0.278,-0.1934 0.653,-0.3545 1.124,-0.4834 0.471,-0.1289 1.065,-0.2014 1.782,-0.2175 v -0.2659 c 0,-0.3666 -0.076,-0.6304 -0.229,-0.7915 -0.149,-0.1652 -0.363,-0.2478 -0.641,-0.2478 -0.221,0 -0.403,0.0242 -0.544,0.0725 -0.141,0.0484 -0.267,0.1028 -0.38,0.1632 -0.109,0.0604 -0.216,0.1148 -0.32,0.1631 -0.105,0.0484 -0.23,0.0725 -0.375,0.0725 -0.129,0 -0.24,-0.0302 -0.332,-0.0906 -0.089,-0.0645 -0.16,-0.143 -0.212,-0.2357 l -0.338,-0.5861 c 0.378,-0.3343 0.797,-0.582 1.257,-0.7432 0.463,-0.1651 0.958,-0.2477 1.486,-0.2477 0.379,0 0.719,0.0624 1.021,0.1873 0.306,0.1208 0.564,0.292 0.774,0.5136 0.213,0.2175 0.376,0.4773 0.489,0.7795 0.113,0.3021 0.169,0.6324 0.169,0.9909 v 3.9155 z m -2.151,-1.142 c 0.242,0 0.453,-0.0423 0.635,-0.1269 0.181,-0.0846 0.364,-0.2216 0.549,-0.4109 v -0.8701 c -0.374,0.0161 -0.682,0.0483 -0.924,0.0967 -0.242,0.0483 -0.433,0.1087 -0.574,0.1812 -0.141,0.0725 -0.24,0.1551 -0.296,0.2478 -0.053,0.0926 -0.079,0.1933 -0.079,0.3021 0,0.2135 0.059,0.3645 0.175,0.4532 0.117,0.0846 0.289,0.1269 0.514,0.1269 z"
+     fill="#515151"
+     id="path40" />
+  <path
+     d="m 95.9287,33.0533 c -0.048,0.0765 -0.1,0.1309 -0.157,0.1631 -0.052,0.0322 -0.121,0.0484 -0.205,0.0484 -0.089,0 -0.177,-0.0182 -0.266,-0.0544 -0.089,-0.0403 -0.185,-0.0826 -0.29,-0.1269 -0.101,-0.0443 -0.216,-0.0846 -0.344,-0.1209 -0.129,-0.0402 -0.276,-0.0604 -0.442,-0.0604 -0.237,0 -0.42,0.0463 -0.549,0.139 -0.125,0.0886 -0.188,0.2135 -0.188,0.3746 0,0.1168 0.041,0.2135 0.121,0.2901 0.085,0.0765 0.196,0.145 0.332,0.2054 0.137,0.0564 0.293,0.1108 0.466,0.1631 0.173,0.0524 0.35,0.1108 0.531,0.1753 0.182,0.0644 0.359,0.141 0.532,0.2296 0.173,0.0846 0.329,0.1913 0.465,0.3202 0.137,0.1249 0.246,0.278 0.327,0.4592 0.084,0.1813 0.127,0.3988 0.127,0.6526 0,0.3102 -0.057,0.5962 -0.17,0.858 -0.112,0.2619 -0.282,0.4874 -0.507,0.6768 -0.222,0.1893 -0.498,0.3363 -0.828,0.4411 -0.326,0.1047 -0.703,0.1571 -1.13,0.1571 -0.213,0 -0.427,-0.0202 -0.64,-0.0605 -0.214,-0.0402 -0.421,-0.0946 -0.623,-0.1631 -0.197,-0.0685 -0.38,-0.149 -0.55,-0.2417 -0.169,-0.0967 -0.314,-0.1994 -0.435,-0.3082 l 0.435,-0.6888 c 0.053,-0.0806 0.115,-0.143 0.188,-0.1873 0.072,-0.0483 0.167,-0.0725 0.284,-0.0725 0.109,0 0.205,0.0242 0.29,0.0725 0.088,0.0483 0.183,0.1007 0.284,0.1571 0.101,0.0564 0.217,0.1088 0.35,0.1571 0.137,0.0483 0.308,0.0725 0.514,0.0725 0.145,0 0.268,-0.0141 0.368,-0.0423 0.101,-0.0322 0.182,-0.0745 0.242,-0.1269 0.061,-0.0523 0.105,-0.1108 0.133,-0.1752 0.028,-0.0645 0.042,-0.1309 0.042,-0.1994 0,-0.1249 -0.042,-0.2276 -0.127,-0.3082 -0.084,-0.0805 -0.195,-0.149 -0.332,-0.2054 -0.137,-0.0604 -0.294,-0.1148 -0.471,-0.1631 -0.173,-0.0524 -0.351,-0.1108 -0.532,-0.1753 -0.181,-0.0644 -0.36,-0.141 -0.538,-0.2296 -0.173,-0.0926 -0.328,-0.2074 -0.465,-0.3444 -0.137,-0.141 -0.248,-0.3122 -0.332,-0.5136 -0.085,-0.2014 -0.127,-0.4451 -0.127,-0.7311 0,-0.2659 0.05,-0.5177 0.151,-0.7553 0.105,-0.2417 0.26,-0.4532 0.465,-0.6345 0.206,-0.1812 0.463,-0.3242 0.774,-0.429 0.31,-0.1087 0.672,-0.1631 1.087,-0.1631 0.226,0 0.443,0.0201 0.653,0.0604 0.213,0.0403 0.413,0.0967 0.598,0.1692 0.185,0.0725 0.354,0.1591 0.508,0.2598 0.153,0.0967 0.288,0.2034 0.404,0.3203 z"
+     fill="#515151"
+     id="path41" />
+  <path
+     d="m 90.5847,31.6839 v 6.2659 h -1.873 v -6.2659 z m 0.218,-1.716 c 0,0.149 -0.03,0.29 -0.091,0.423 -0.06,0.1289 -0.143,0.2437 -0.247,0.3444 -0.105,0.0967 -0.228,0.1752 -0.369,0.2356 -0.137,0.0564 -0.284,0.0846 -0.441,0.0846 -0.153,0 -0.296,-0.0282 -0.429,-0.0846 -0.133,-0.0604 -0.252,-0.1389 -0.357,-0.2356 -0.1,-0.1007 -0.181,-0.2155 -0.241,-0.3444 -0.057,-0.133 -0.085,-0.274 -0.085,-0.423 0,-0.1531 0.028,-0.2961 0.085,-0.429 0.06,-0.1329 0.141,-0.2498 0.241,-0.3505 0.105,-0.1007 0.224,-0.1792 0.357,-0.2356 0.133,-0.0564 0.276,-0.0846 0.429,-0.0846 0.157,0 0.304,0.0282 0.441,0.0846 0.141,0.0564 0.264,0.1349 0.369,0.2356 0.104,0.1007 0.187,0.2176 0.247,0.3505 0.061,0.1329 0.091,0.2759 0.091,0.429 z"
+     fill="#515151"
+     id="path42" />
+  <path
+     d="m 86.0117,38.0461 c -0.298,0 -0.562,-0.0423 -0.792,-0.1269 -0.226,-0.0886 -0.417,-0.2115 -0.574,-0.3686 -0.153,-0.1611 -0.27,-0.3544 -0.35,-0.58 -0.081,-0.2256 -0.121,-0.4774 -0.121,-0.7553 v -3.2387 h -0.532 c -0.097,0 -0.179,-0.0302 -0.248,-0.0907 -0.068,-0.0644 -0.102,-0.1571 -0.102,-0.2779 v -0.7311 l 0.997,-0.1934 0.368,-1.5287 c 0.048,-0.1934 0.185,-0.29 0.411,-0.29 h 0.979 v 1.8308 h 1.523 v 1.281 h -1.523 v 3.1118 c 0,0.145 0.034,0.2659 0.103,0.3625 0.072,0.0927 0.175,0.139 0.308,0.139 0.068,0 0.125,-0.006 0.169,-0.0181 0.048,-0.0161 0.089,-0.0322 0.121,-0.0484 0.036,-0.0201 0.068,-0.0362 0.096,-0.0483 0.033,-0.0161 0.069,-0.0242 0.109,-0.0242 0.057,0 0.101,0.0141 0.133,0.0423 0.036,0.0242 0.073,0.0645 0.109,0.1209 l 0.568,0.8882 c -0.242,0.1813 -0.514,0.3182 -0.816,0.4109 -0.302,0.0886 -0.614,0.1329 -0.936,0.1329 z"
+     fill="#515151"
+     id="path43" />
+  <path
+     d="m 79.5937,31.585 c 0.475,0 0.908,0.0745 1.299,0.2236 0.391,0.149 0.725,0.3625 1.003,0.6404 0.282,0.278 0.5,0.6164 0.653,1.0152 0.157,0.3947 0.235,0.8398 0.235,1.3353 0,0.4995 -0.078,0.9507 -0.235,1.3535 -0.153,0.3988 -0.371,0.7392 -0.653,1.0212 -0.278,0.2779 -0.612,0.4934 -1.003,0.6465 -0.391,0.149 -0.824,0.2236 -1.299,0.2236 -0.479,0 -0.916,-0.0746 -1.311,-0.2236 -0.391,-0.1531 -0.729,-0.3686 -1.015,-0.6465 -0.282,-0.282 -0.502,-0.6224 -0.659,-1.0212 -0.153,-0.4028 -0.23,-0.854 -0.23,-1.3535 0,-0.4955 0.077,-0.9406 0.23,-1.3353 0.157,-0.3988 0.377,-0.7372 0.659,-1.0152 0.286,-0.2779 0.624,-0.4914 1.015,-0.6404 0.395,-0.1491 0.832,-0.2236 1.311,-0.2236 z m 0,5.0695 c 0.431,0 0.747,-0.151 0.949,-0.4532 0.205,-0.3061 0.308,-0.7693 0.308,-1.3897 0,-0.6203 -0.103,-1.0816 -0.308,-1.3837 -0.202,-0.3021 -0.518,-0.4532 -0.949,-0.4532 -0.443,0 -0.767,0.1511 -0.973,0.4532 -0.205,0.3021 -0.308,0.7634 -0.308,1.3837 0,0.6204 0.103,1.0836 0.308,1.3897 0.206,0.3022 0.53,0.4532 0.973,0.4532 z"
+     fill="#515151"
+     id="path44" />
+  <path
+     d="m 74.7777,35.6742 c 0.048,0 0.096,0.0101 0.145,0.0302 0.048,0.0161 0.094,0.0463 0.139,0.0907 l 0.809,0.8519 c -0.354,0.4633 -0.799,0.8137 -1.335,1.0514 -0.532,0.2336 -1.162,0.3504 -1.891,0.3504 -0.669,0 -1.269,-0.1127 -1.801,-0.3383 -0.528,-0.2296 -0.977,-0.5438 -1.347,-0.9426 -0.367,-0.4029 -0.649,-0.8782 -0.846,-1.426 -0.198,-0.5519 -0.296,-1.1501 -0.296,-1.7946 0,-0.6566 0.112,-1.2588 0.338,-1.8067 0.226,-0.5518 0.54,-1.0272 0.943,-1.426 0.406,-0.3988 0.892,-0.7089 1.456,-0.9305 0.564,-0.2215 1.186,-0.3323 1.867,-0.3323 0.33,0 0.64,0.0302 0.93,0.0906 0.294,0.0564 0.568,0.137 0.822,0.2417 0.254,0.1007 0.488,0.2236 0.701,0.3686 0.214,0.141 0.403,0.2981 0.568,0.4713 l -0.689,0.9245 c -0.044,0.0564 -0.096,0.1087 -0.157,0.1571 -0.06,0.0443 -0.145,0.0664 -0.254,0.0664 -0.072,0 -0.141,-0.0161 -0.205,-0.0483 -0.065,-0.0322 -0.133,-0.0705 -0.206,-0.1148 -0.072,-0.0483 -0.153,-0.0987 -0.241,-0.1511 -0.085,-0.0564 -0.188,-0.1067 -0.308,-0.151 -0.117,-0.0484 -0.256,-0.0886 -0.417,-0.1209 -0.157,-0.0322 -0.343,-0.0483 -0.556,-0.0483 -0.371,0 -0.709,0.0665 -1.015,0.1994 -0.307,0.1289 -0.57,0.3162 -0.792,0.5619 -0.217,0.2417 -0.389,0.5358 -0.514,0.8822 -0.12,0.3464 -0.181,0.7352 -0.181,1.1662 0,0.4512 0.061,0.852 0.181,1.2024 0.125,0.3505 0.293,0.6466 0.502,0.8882 0.214,0.2377 0.461,0.419 0.743,0.5439 0.282,0.1248 0.584,0.1873 0.907,0.1873 0.185,0 0.354,-0.0081 0.507,-0.0242 0.153,-0.0201 0.294,-0.0524 0.423,-0.0967 0.133,-0.0443 0.258,-0.1007 0.375,-0.1692 0.121,-0.0725 0.241,-0.1611 0.362,-0.2658 0.049,-0.0403 0.101,-0.0725 0.157,-0.0967 0.057,-0.0282 0.115,-0.0423 0.176,-0.0423 z"
+     fill="#515151"
+     id="path45" />
+  <g
+     filter="url(#filter2_d_48346_15237)"
+     id="g46"
+     transform="translate(-49.9973,-42.999)">
+    <path
+       d="M 111,93.6687 C 111,92.1948 112.209,91 113.7,91 h 70.6 c 1.491,0 2.7,1.1948 2.7,2.6687 v 12.6623 c 0,1.474 -1.209,2.669 -2.7,2.669 h -70.6 c -1.491,0 -2.7,-1.195 -2.7,-2.669 z"
+       fill="#ded500"
+       id="path46" />
+  </g>
+  <path
+     d="m 128.3407,59.647 c 0,-0.145 0.026,-0.28 0.078,-0.405 0.057,-0.125 0.131,-0.233 0.224,-0.326 0.097,-0.093 0.209,-0.165 0.338,-0.218 0.129,-0.056 0.27,-0.084 0.423,-0.084 0.149,0 0.288,0.028 0.417,0.084 0.129,0.053 0.242,0.125 0.339,0.218 0.096,0.093 0.171,0.201 0.223,0.326 0.057,0.125 0.085,0.26 0.085,0.405 0,0.145 -0.028,0.282 -0.085,0.411 -0.052,0.125 -0.127,0.234 -0.223,0.326 -0.097,0.093 -0.21,0.165 -0.339,0.218 -0.129,0.052 -0.268,0.078 -0.417,0.078 -0.153,0 -0.294,-0.026 -0.423,-0.078 -0.129,-0.053 -0.241,-0.125 -0.338,-0.218 -0.093,-0.092 -0.167,-0.201 -0.224,-0.326 -0.052,-0.129 -0.078,-0.266 -0.078,-0.411 z"
+     fill="#515151"
+     id="path47" />
+  <path
+     d="m 127.3447,55.8121 c -0.057,0.0685 -0.111,0.1229 -0.163,0.1632 -0.053,0.0403 -0.127,0.0604 -0.224,0.0604 -0.093,0 -0.177,-0.0222 -0.254,-0.0665 -0.072,-0.0443 -0.155,-0.0926 -0.248,-0.145 -0.092,-0.0564 -0.201,-0.1067 -0.326,-0.151 -0.125,-0.0444 -0.28,-0.0665 -0.465,-0.0665 -0.23,0 -0.429,0.0423 -0.598,0.1269 -0.165,0.0846 -0.302,0.2054 -0.411,0.3625 -0.109,0.1571 -0.189,0.3505 -0.242,0.5801 -0.052,0.2256 -0.078,0.4818 -0.078,0.7678 0,0.6 0.114,1.061 0.344,1.383 0.234,0.323 0.554,0.484 0.961,0.484 0.217,0 0.388,-0.027 0.513,-0.079 0.129,-0.056 0.238,-0.117 0.327,-0.181 0.088,-0.069 0.169,-0.131 0.241,-0.187 0.077,-0.057 0.172,-0.085 0.284,-0.085 0.149,0 0.262,0.054 0.339,0.163 l 0.544,0.671 c -0.194,0.221 -0.397,0.403 -0.611,0.544 -0.213,0.137 -0.433,0.245 -0.658,0.326 -0.222,0.076 -0.446,0.129 -0.671,0.157 -0.226,0.032 -0.445,0.048 -0.659,0.048 -0.382,0 -0.749,-0.072 -1.099,-0.217 -0.347,-0.145 -0.653,-0.355 -0.919,-0.629 -0.262,-0.278 -0.471,-0.618 -0.628,-1.021 -0.153,-0.403 -0.23,-0.862 -0.23,-1.377 0,-0.4516 0.067,-0.8726 0.2,-1.2633 0.136,-0.3948 0.336,-0.7351 0.598,-1.0211 0.266,-0.2901 0.592,-0.5177 0.979,-0.6828 0.39,-0.1652 0.841,-0.2478 1.353,-0.2478 0.492,0 0.923,0.0786 1.293,0.2357 0.371,0.1571 0.705,0.3867 1.003,0.6888 z"
+     fill="#515151"
+     id="path48" />
+  <path
+     d="m 118.6107,54.229 c 0.475,0 0.908,0.0746 1.299,0.2236 0.39,0.149 0.725,0.3625 1.003,0.6405 0.282,0.2779 0.499,0.6163 0.652,1.0151 0.157,0.3948 0.236,0.8399 0.236,1.3358 0,0.499 -0.079,0.95 -0.236,1.353 -0.153,0.399 -0.37,0.739 -0.652,1.021 -0.278,0.278 -0.613,0.494 -1.003,0.647 -0.391,0.149 -0.824,0.223 -1.299,0.223 -0.48,0 -0.917,-0.074 -1.312,-0.223 -0.39,-0.153 -0.729,-0.369 -1.015,-0.647 -0.282,-0.282 -0.501,-0.622 -0.658,-1.021 -0.153,-0.403 -0.23,-0.854 -0.23,-1.353 0,-0.4959 0.077,-0.941 0.23,-1.3358 0.157,-0.3988 0.376,-0.7372 0.658,-1.0151 0.286,-0.278 0.625,-0.4915 1.015,-0.6405 0.395,-0.149 0.832,-0.2236 1.312,-0.2236 z m 0,5.07 c 0.431,0 0.747,-0.151 0.948,-0.454 0.206,-0.306 0.308,-0.769 0.308,-1.389 0,-0.6207 -0.102,-1.0819 -0.308,-1.3841 -0.201,-0.3021 -0.517,-0.4531 -0.948,-0.4531 -0.444,0 -0.768,0.151 -0.973,0.4531 -0.206,0.3022 -0.308,0.7634 -0.308,1.3841 0,0.62 0.102,1.083 0.308,1.389 0.205,0.303 0.529,0.454 0.973,0.454 z"
+     fill="#515151"
+     id="path49" />
+  <path
+     d="m 114.3267,55.6973 c -0.048,0.0766 -0.1,0.1309 -0.157,0.1632 -0.052,0.0322 -0.121,0.0483 -0.205,0.0483 -0.089,0 -0.177,-0.0181 -0.266,-0.0544 -0.089,-0.0403 -0.185,-0.0826 -0.29,-0.1269 -0.101,-0.0443 -0.216,-0.0846 -0.344,-0.1208 -0.129,-0.0403 -0.276,-0.0604 -0.442,-0.0604 -0.237,0 -0.421,0.0463 -0.549,0.1389 -0.125,0.0887 -0.188,0.2135 -0.188,0.3747 0,0.1168 0.041,0.2135 0.121,0.29 0.085,0.0765 0.195,0.145 0.332,0.2054 0.137,0.0564 0.292,0.1108 0.466,0.1632 0.173,0.0523 0.35,0.1108 0.531,0.1752 0.182,0.0645 0.359,0.1413 0.532,0.2293 0.173,0.085 0.328,0.192 0.465,0.321 0.137,0.124 0.246,0.278 0.327,0.459 0.084,0.181 0.127,0.399 0.127,0.652 0,0.311 -0.057,0.597 -0.17,0.858 -0.112,0.262 -0.282,0.488 -0.507,0.677 -0.222,0.189 -0.498,0.336 -0.828,0.441 -0.326,0.105 -0.703,0.157 -1.13,0.157 -0.213,0 -0.427,-0.02 -0.64,-0.06 -0.214,-0.04 -0.421,-0.095 -0.623,-0.163 -0.197,-0.069 -0.38,-0.149 -0.55,-0.242 -0.169,-0.097 -0.314,-0.199 -0.435,-0.308 l 0.435,-0.689 c 0.053,-0.081 0.115,-0.143 0.188,-0.187 0.072,-0.049 0.167,-0.073 0.284,-0.073 0.108,0 0.205,0.024 0.29,0.073 0.088,0.048 0.183,0.1 0.284,0.157 0.1,0.056 0.217,0.109 0.35,0.157 0.137,0.048 0.308,0.072 0.514,0.072 0.145,0 0.268,-0.014 0.368,-0.042 0.101,-0.032 0.182,-0.074 0.242,-0.127 0.061,-0.052 0.105,-0.111 0.133,-0.175 0.028,-0.064 0.042,-0.131 0.042,-0.199 0,-0.125 -0.042,-0.228 -0.127,-0.309 -0.084,-0.08 -0.195,-0.149 -0.332,-0.205 -0.137,-0.06 -0.294,-0.115 -0.471,-0.163 -0.173,-0.052 -0.351,-0.111 -0.532,-0.175 -0.181,-0.065 -0.36,-0.141 -0.538,-0.23 -0.173,-0.093 -0.328,-0.207 -0.465,-0.344 -0.137,-0.141 -0.248,-0.313 -0.332,-0.514 -0.085,-0.2014 -0.127,-0.4451 -0.127,-0.7311 0,-0.2658 0.05,-0.5176 0.151,-0.7553 0.105,-0.2417 0.26,-0.4532 0.465,-0.6344 0.206,-0.1813 0.463,-0.3243 0.774,-0.429 0.31,-0.1088 0.672,-0.1632 1.087,-0.1632 0.226,0 0.443,0.0202 0.653,0.0605 0.213,0.0402 0.413,0.0966 0.598,0.1691 0.185,0.0725 0.354,0.1592 0.508,0.2599 0.153,0.0966 0.288,0.2034 0.404,0.3202 z"
+     fill="#515151"
+     id="path50" />
+  <path
+     d="m 104.9367,59.647 c 0,-0.145 0.026,-0.28 0.079,-0.405 0.056,-0.125 0.131,-0.233 0.223,-0.326 0.097,-0.093 0.21,-0.165 0.339,-0.218 0.128,-0.056 0.269,-0.084 0.423,-0.084 0.149,0 0.288,0.028 0.416,0.084 0.129,0.053 0.242,0.125 0.339,0.218 0.097,0.093 0.171,0.201 0.223,0.326 0.057,0.125 0.085,0.26 0.085,0.405 0,0.145 -0.028,0.282 -0.085,0.411 -0.052,0.125 -0.126,0.234 -0.223,0.326 -0.097,0.093 -0.21,0.165 -0.339,0.218 -0.128,0.052 -0.267,0.078 -0.416,0.078 -0.154,0 -0.295,-0.026 -0.423,-0.078 -0.129,-0.053 -0.242,-0.125 -0.339,-0.218 -0.092,-0.092 -0.167,-0.201 -0.223,-0.326 -0.053,-0.129 -0.079,-0.266 -0.079,-0.411 z"
+     fill="#515151"
+     id="path51" />
+  <path
+     d="m 103.1137,60.595 c -0.177,0 -0.312,-0.024 -0.404,-0.073 -0.089,-0.048 -0.164,-0.149 -0.224,-0.302 l -0.133,-0.344 c -0.157,0.133 -0.308,0.25 -0.453,0.35 -0.145,0.101 -0.296,0.188 -0.453,0.26 -0.153,0.069 -0.319,0.119 -0.496,0.151 -0.173,0.036 -0.366,0.054 -0.58,0.054 -0.286,0 -0.546,-0.036 -0.779,-0.108 -0.234,-0.077 -0.433,-0.188 -0.599,-0.333 -0.161,-0.145 -0.286,-0.324 -0.374,-0.537 -0.089,-0.218 -0.133,-0.468 -0.133,-0.75 0,-0.221 0.056,-0.449 0.169,-0.682 0.113,-0.234 0.308,-0.446 0.586,-0.635 0.278,-0.193 0.653,-0.354 1.124,-0.483 0.471,-0.129 1.066,-0.2017 1.783,-0.2178 v -0.2658 c 0,-0.3666 -0.077,-0.6305 -0.23,-0.7916 -0.149,-0.1652 -0.363,-0.2477 -0.641,-0.2477 -0.221,0 -0.402,0.0241 -0.543,0.0725 -0.141,0.0483 -0.268,0.1027 -0.381,0.1631 -0.109,0.0604 -0.216,0.1148 -0.32,0.1632 -0.105,0.0483 -0.23,0.0725 -0.375,0.0725 -0.129,0 -0.24,-0.0302 -0.332,-0.0907 -0.089,-0.0644 -0.159,-0.143 -0.212,-0.2356 l -0.338,-0.5861 c 0.379,-0.3344 0.798,-0.5821 1.257,-0.7432 0.463,-0.1652 0.958,-0.2478 1.486,-0.2478 0.379,0 0.719,0.0625 1.021,0.1873 0.306,0.1209 0.564,0.2921 0.774,0.5136 0.213,0.2176 0.376,0.4774 0.489,0.7795 0.113,0.3021 0.169,0.6324 0.169,0.991 v 3.9156 z m -2.151,-1.142 c 0.242,0 0.453,-0.042 0.635,-0.127 0.181,-0.085 0.364,-0.222 0.55,-0.411 v -0.87 c -0.375,0.016 -0.683,0.048 -0.925,0.097 -0.242,0.048 -0.433,0.108 -0.574,0.181 -0.141,0.072 -0.24,0.155 -0.296,0.248 -0.052,0.092 -0.079,0.193 -0.079,0.302 0,0.213 0.059,0.364 0.176,0.453 0.116,0.085 0.288,0.127 0.513,0.127 z"
+     fill="#515151"
+     id="path52" />
+  <path
+     d="m 96.1487,60.69 c -0.298,0 -0.562,-0.042 -0.792,-0.127 -0.225,-0.088 -0.417,-0.211 -0.574,-0.368 -0.153,-0.161 -0.27,-0.355 -0.35,-0.58 -0.081,-0.226 -0.121,-0.478 -0.121,-0.756 v -3.2384 h -0.532 c -0.096,0 -0.179,-0.0302 -0.248,-0.0906 -0.068,-0.0645 -0.102,-0.1571 -0.102,-0.278 v -0.7311 l 0.997,-0.1933 0.368,-1.5288 c 0.049,-0.1933 0.186,-0.29 0.411,-0.29 h 0.979 v 1.8308 h 1.523 v 1.281 h -1.523 v 3.1114 c 0,0.145 0.034,0.266 0.103,0.363 0.072,0.093 0.175,0.139 0.308,0.139 0.068,0 0.125,-0.006 0.169,-0.018 0.048,-0.016 0.089,-0.032 0.121,-0.049 0.036,-0.02 0.068,-0.036 0.097,-0.048 0.032,-0.016 0.068,-0.024 0.108,-0.024 0.057,0 0.101,0.014 0.133,0.042 0.037,0.024 0.073,0.065 0.109,0.121 l 0.568,0.888 c -0.242,0.182 -0.513,0.319 -0.816,0.411 -0.302,0.089 -0.614,0.133 -0.936,0.133 z"
+     fill="#515151"
+     id="path53" />
+  <path
+     d="m 92.4547,55.6973 c -0.048,0.0766 -0.1,0.1309 -0.157,0.1632 -0.052,0.0322 -0.121,0.0483 -0.205,0.0483 -0.089,0 -0.177,-0.0181 -0.266,-0.0544 -0.089,-0.0403 -0.185,-0.0826 -0.29,-0.1269 -0.101,-0.0443 -0.216,-0.0846 -0.345,-0.1208 -0.128,-0.0403 -0.275,-0.0604 -0.441,-0.0604 -0.237,0 -0.421,0.0463 -0.549,0.1389 -0.125,0.0887 -0.188,0.2135 -0.188,0.3747 0,0.1168 0.04,0.2135 0.121,0.29 0.085,0.0765 0.195,0.145 0.332,0.2054 0.137,0.0564 0.292,0.1108 0.466,0.1632 0.173,0.0523 0.35,0.1108 0.531,0.1752 0.182,0.0645 0.359,0.1413 0.532,0.2293 0.173,0.085 0.328,0.192 0.465,0.321 0.137,0.124 0.246,0.278 0.327,0.459 0.084,0.181 0.127,0.399 0.127,0.652 0,0.311 -0.057,0.597 -0.17,0.858 -0.112,0.262 -0.282,0.488 -0.507,0.677 -0.222,0.189 -0.498,0.336 -0.828,0.441 -0.326,0.105 -0.703,0.157 -1.13,0.157 -0.213,0 -0.427,-0.02 -0.64,-0.06 -0.214,-0.04 -0.421,-0.095 -0.623,-0.163 -0.197,-0.069 -0.38,-0.149 -0.55,-0.242 -0.169,-0.097 -0.314,-0.199 -0.435,-0.308 l 0.435,-0.689 c 0.053,-0.081 0.115,-0.143 0.188,-0.187 0.072,-0.049 0.167,-0.073 0.284,-0.073 0.108,0 0.205,0.024 0.29,0.073 0.088,0.048 0.183,0.1 0.284,0.157 0.1,0.056 0.217,0.109 0.35,0.157 0.137,0.048 0.308,0.072 0.514,0.072 0.145,0 0.268,-0.014 0.368,-0.042 0.101,-0.032 0.182,-0.074 0.242,-0.127 0.06,-0.052 0.105,-0.111 0.133,-0.175 0.028,-0.064 0.042,-0.131 0.042,-0.199 0,-0.125 -0.042,-0.228 -0.127,-0.309 -0.084,-0.08 -0.195,-0.149 -0.332,-0.205 -0.137,-0.06 -0.294,-0.115 -0.471,-0.163 -0.173,-0.052 -0.351,-0.111 -0.532,-0.175 -0.181,-0.065 -0.361,-0.141 -0.538,-0.23 -0.173,-0.093 -0.328,-0.207 -0.465,-0.344 -0.137,-0.141 -0.248,-0.313 -0.332,-0.514 -0.085,-0.2014 -0.127,-0.4451 -0.127,-0.7311 0,-0.2658 0.05,-0.5176 0.151,-0.7553 0.105,-0.2417 0.26,-0.4532 0.465,-0.6344 0.205,-0.1813 0.463,-0.3243 0.773,-0.429 0.311,-0.1088 0.673,-0.1632 1.088,-0.1632 0.226,0 0.443,0.0202 0.653,0.0605 0.213,0.0402 0.413,0.0966 0.598,0.1691 0.185,0.0725 0.354,0.1592 0.507,0.2599 0.154,0.0966 0.288,0.2034 0.405,0.3202 z"
+     fill="#515151"
+     id="path54" />
+  <path
+     d="m 84.7367,54.229 c 0.415,0 0.794,0.0645 1.136,0.1934 0.347,0.1289 0.643,0.3162 0.889,0.5619 0.249,0.2457 0.443,0.5479 0.58,0.9064 0.141,0.3545 0.211,0.7573 0.211,1.2083 0,0.141 -0.006,0.256 -0.018,0.345 -0.012,0.088 -0.034,0.159 -0.067,0.211 -0.032,0.052 -0.076,0.089 -0.132,0.109 -0.053,0.02 -0.121,0.03 -0.206,0.03 h -3.613 c 0.06,0.524 0.219,0.904 0.477,1.142 0.258,0.234 0.59,0.35 0.997,0.35 0.218,0 0.405,-0.026 0.562,-0.078 0.157,-0.052 0.296,-0.111 0.417,-0.175 0.125,-0.065 0.238,-0.123 0.338,-0.176 0.105,-0.052 0.214,-0.078 0.327,-0.078 0.149,0 0.261,0.054 0.338,0.163 l 0.544,0.671 c -0.194,0.221 -0.403,0.403 -0.629,0.544 -0.221,0.137 -0.451,0.245 -0.688,0.326 -0.234,0.076 -0.47,0.129 -0.707,0.157 -0.234,0.032 -0.458,0.048 -0.671,0.048 -0.439,0 -0.852,-0.07 -1.239,-0.211 -0.382,-0.145 -0.719,-0.359 -1.009,-0.641 -0.286,-0.282 -0.513,-0.632 -0.683,-1.051 -0.165,-0.419 -0.247,-0.906 -0.247,-1.462 0,-0.4192 0.07,-0.816 0.211,-1.1906 0.145,-0.3747 0.351,-0.703 0.616,-0.9849 0.27,-0.282 0.595,-0.5056 0.973,-0.6707 0.383,-0.1652 0.814,-0.2478 1.293,-0.2478 z m 0.037,1.2931 c -0.359,0 -0.639,0.1027 -0.84,0.3082 -0.202,0.2014 -0.335,0.4934 -0.399,0.8761 h 2.338 c 0,-0.1491 -0.02,-0.2941 -0.06,-0.4351 -0.036,-0.1409 -0.099,-0.2658 -0.187,-0.3746 -0.085,-0.1128 -0.198,-0.2034 -0.339,-0.2719 -0.141,-0.0685 -0.312,-0.1027 -0.513,-0.1027 z"
+     fill="#515151"
+     id="path55" />
+  <path
+     d="m 77.0597,60.595 v -6.2661 h 1.111 c 0.093,0 0.17,0.008 0.23,0.0241 0.064,0.0162 0.117,0.0423 0.157,0.0786 0.044,0.0322 0.077,0.0765 0.097,0.1329 0.024,0.0564 0.044,0.1249 0.06,0.2055 l 0.103,0.5861 c 0.23,-0.3545 0.487,-0.6345 0.773,-0.8399 0.286,-0.2054 0.599,-0.3082 0.937,-0.3082 0.286,0 0.516,0.0685 0.689,0.2055 l -0.242,1.3776 c -0.016,0.0846 -0.048,0.145 -0.097,0.1813 -0.048,0.0322 -0.112,0.0483 -0.193,0.0483 -0.068,0 -0.149,-0.008 -0.242,-0.0241 -0.092,-0.0202 -0.209,-0.0302 -0.35,-0.0302 -0.492,0 -0.878,0.2618 -1.16,0.7855 v 3.8431 z"
+     fill="#515151"
+     id="path56" />
+  <path
+     d="m 71.3967,57.651 v 2.943 h -2.042 v -8.8039 h 3.105 c 0.621,0 1.152,0.0745 1.596,0.2235 0.447,0.145 0.813,0.3465 1.099,0.6043 0.29,0.2578 0.504,0.5619 0.641,0.9124 0.137,0.3504 0.205,0.7291 0.205,1.1359 0,0.4391 -0.07,0.8419 -0.211,1.2085 -0.141,0.3666 -0.357,0.6808 -0.647,0.9426 -0.29,0.2617 -0.658,0.4677 -1.106,0.6167 -0.443,0.145 -0.968,0.217 -1.577,0.217 z m 0,-1.5407 h 1.063 c 0.532,0 0.915,-0.1268 1.148,-0.3806 0.234,-0.2538 0.351,-0.6083 0.351,-1.0635 0,-0.2014 -0.03,-0.3847 -0.091,-0.5498 -0.06,-0.1652 -0.153,-0.3062 -0.278,-0.423 -0.121,-0.1208 -0.276,-0.2135 -0.465,-0.2779 -0.185,-0.0645 -0.407,-0.0967 -0.665,-0.0967 h -1.063 z"
+     fill="#515151"
+     id="path57" />
+  <g
+     filter="url(#filter3_d_48346_15237)"
+     id="g58"
+     transform="translate(-49.9973,-42.999)">
+    <path
+       d="m 165,116.575 c 0,-1.422 1.215,-2.575 2.714,-2.575 h 16.572 c 1.499,0 2.714,1.153 2.714,2.575 v 9.85 c 0,1.422 -1.215,2.575 -2.714,2.575 H 167.714 C 166.215,129 165,127.847 165,126.425 Z"
+       fill="#ded500"
+       id="path58" />
+  </g>
+  <g
+     filter="url(#filter4_d_48346_15237)"
+     id="g59"
+     transform="translate(-49.9973,-42.999)">
+    <path
+       d="m 137,116.575 c 0,-1.422 1.24,-2.575 2.77,-2.575 h 19.46 c 1.53,0 2.77,1.153 2.77,2.575 v 9.85 c 0,1.422 -1.24,2.575 -2.77,2.575 h -19.46 c -1.53,0 -2.77,-1.153 -2.77,-2.575 z"
+       fill="#ded500"
+       id="path59" />
+  </g>
+  <path
+     d="m 104.9317,82.694 c 0,-0.145 0.026,-0.28 0.078,-0.405 0.057,-0.125 0.131,-0.234 0.224,-0.326 0.097,-0.093 0.209,-0.165 0.338,-0.218 0.129,-0.056 0.27,-0.084 0.423,-0.084 0.149,0 0.288,0.028 0.417,0.084 0.129,0.053 0.242,0.125 0.338,0.218 0.097,0.092 0.172,0.201 0.224,0.326 0.056,0.125 0.085,0.26 0.085,0.405 0,0.145 -0.029,0.282 -0.085,0.411 -0.052,0.125 -0.127,0.233 -0.224,0.326 -0.096,0.093 -0.209,0.165 -0.338,0.218 -0.129,0.052 -0.268,0.078 -0.417,0.078 -0.153,0 -0.294,-0.026 -0.423,-0.078 -0.129,-0.053 -0.241,-0.125 -0.338,-0.218 -0.093,-0.093 -0.167,-0.201 -0.224,-0.326 -0.052,-0.129 -0.078,-0.266 -0.078,-0.411 z"
+     fill="#515151"
+     id="path60" />
+  <path
+     d="m 99.2947,80.384 v 3.257 h -2.042 v -8.804 h 2.864 c 0.637,0 1.178,0.066 1.625,0.199 0.452,0.129 0.818,0.311 1.1,0.544 0.286,0.234 0.494,0.51 0.623,0.828 0.128,0.318 0.193,0.665 0.193,1.039 0,0.286 -0.038,0.556 -0.115,0.81 -0.076,0.254 -0.191,0.489 -0.344,0.707 -0.149,0.213 -0.335,0.405 -0.556,0.574 -0.218,0.169 -0.47,0.308 -0.756,0.417 0.137,0.068 0.264,0.153 0.381,0.254 0.121,0.1 0.226,0.223 0.314,0.368 l 1.873,3.064 h -1.848 c -0.343,0 -0.589,-0.129 -0.738,-0.387 l -1.462,-2.556 c -0.064,-0.113 -0.141,-0.193 -0.229,-0.242 -0.085,-0.048 -0.206,-0.072 -0.363,-0.072 z m 0,-1.408 h 0.822 c 0.278,0 0.514,-0.034 0.707,-0.103 0.197,-0.072 0.359,-0.171 0.483,-0.296 0.125,-0.125 0.216,-0.27 0.272,-0.435 0.057,-0.169 0.085,-0.35 0.085,-0.544 0,-0.386 -0.127,-0.689 -0.381,-0.906 -0.249,-0.218 -0.638,-0.326 -1.166,-0.326 h -0.822 z"
+     fill="#515151"
+     id="path61" />
+  <path
+     d="m 95.6197,83.641 h -2.055 v -8.804 h 2.055 z"
+     fill="#515151"
+     id="path62" />
+  <path
+     d="m 128.3477,82.698 c 0,-0.145 0.026,-0.28 0.078,-0.405 0.057,-0.124 0.131,-0.233 0.224,-0.326 0.097,-0.092 0.209,-0.165 0.338,-0.217 0.129,-0.057 0.27,-0.085 0.423,-0.085 0.149,0 0.288,0.028 0.417,0.085 0.129,0.052 0.242,0.125 0.338,0.217 0.097,0.093 0.172,0.202 0.224,0.326 0.056,0.125 0.085,0.26 0.085,0.405 0,0.145 -0.029,0.282 -0.085,0.411 -0.052,0.125 -0.127,0.234 -0.224,0.326 -0.096,0.093 -0.209,0.166 -0.338,0.218 -0.129,0.052 -0.268,0.079 -0.417,0.079 -0.153,0 -0.294,-0.027 -0.423,-0.079 -0.129,-0.052 -0.241,-0.125 -0.338,-0.218 -0.093,-0.092 -0.167,-0.201 -0.224,-0.326 -0.052,-0.129 -0.078,-0.266 -0.078,-0.411 z"
+     fill="#515151"
+     id="path63" />
+  <path
+     d="m 125.4887,82.698 c 0,-0.145 0.027,-0.28 0.079,-0.405 0.056,-0.124 0.131,-0.233 0.223,-0.326 0.097,-0.092 0.21,-0.165 0.339,-0.217 0.129,-0.057 0.27,-0.085 0.423,-0.085 0.149,0 0.288,0.028 0.417,0.085 0.129,0.052 0.241,0.125 0.338,0.217 0.097,0.093 0.171,0.202 0.224,0.326 0.056,0.125 0.084,0.26 0.084,0.405 0,0.145 -0.028,0.282 -0.084,0.411 -0.053,0.125 -0.127,0.234 -0.224,0.326 -0.097,0.093 -0.209,0.166 -0.338,0.218 -0.129,0.052 -0.268,0.079 -0.417,0.079 -0.153,0 -0.294,-0.027 -0.423,-0.079 -0.129,-0.052 -0.242,-0.125 -0.339,-0.218 -0.092,-0.092 -0.167,-0.201 -0.223,-0.326 -0.052,-0.129 -0.079,-0.266 -0.079,-0.411 z"
+     fill="#515151"
+     id="path64" />
+  <path
+     d="m 122.6357,82.698 c 0,-0.145 0.026,-0.28 0.078,-0.405 0.057,-0.124 0.131,-0.233 0.224,-0.326 0.097,-0.092 0.209,-0.165 0.338,-0.217 0.129,-0.057 0.27,-0.085 0.423,-0.085 0.149,0 0.288,0.028 0.417,0.085 0.129,0.052 0.242,0.125 0.339,0.217 0.096,0.093 0.171,0.202 0.223,0.326 0.057,0.125 0.085,0.26 0.085,0.405 0,0.145 -0.028,0.282 -0.085,0.411 -0.052,0.125 -0.127,0.234 -0.223,0.326 -0.097,0.093 -0.21,0.166 -0.339,0.218 -0.129,0.052 -0.268,0.079 -0.417,0.079 -0.153,0 -0.294,-0.027 -0.423,-0.079 -0.129,-0.052 -0.241,-0.125 -0.338,-0.218 -0.093,-0.092 -0.167,-0.201 -0.224,-0.326 -0.052,-0.129 -0.078,-0.266 -0.078,-0.411 z"
+     fill="#515151"
+     id="path65" />
+  <defs
+     id="defs75">
+    <filter
+       id="filter0_d_48346_15237"
+       x="145"
+       y="48"
+       width="46"
+       height="23"
+       filterUnits="userSpaceOnUse"
+       color-interpolation-filters="sRGB">
+      <feFlood
+         flood-opacity="0"
+         result="BackgroundImageFix"
+         id="feFlood65" />
+      <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"
+         result="hardAlpha"
+         id="feColorMatrix65" />
+      <feOffset
+         dy="4"
+         id="feOffset65" />
+      <feGaussianBlur
+         stdDeviation="2"
+         id="feGaussianBlur65" />
+      <feColorMatrix
+         type="matrix"
+         values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"
+         id="feColorMatrix66" />
+      <feBlend
+         mode="normal"
+         in2="BackgroundImageFix"
+         result="effect1_dropShadow_48346_15237"
+         id="feBlend66" />
+      <feBlend
+         mode="normal"
+         in="SourceGraphic"
+         in2="effect1_dropShadow_48346_15237"
+         result="shape"
+         id="feBlend67" />
+    </filter>
+    <filter
+       id="filter1_d_48346_15237"
+       x="110"
+       y="68"
+       width="81"
+       height="26"
+       filterUnits="userSpaceOnUse"
+       color-interpolation-filters="sRGB">
+      <feFlood
+         flood-opacity="0"
+         result="BackgroundImageFix"
+         id="feFlood67" />
+      <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"
+         result="hardAlpha"
+         id="feColorMatrix67" />
+      <feOffset
+         dy="4"
+         id="feOffset67" />
+      <feGaussianBlur
+         stdDeviation="2"
+         id="feGaussianBlur67" />
+      <feColorMatrix
+         type="matrix"
+         values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"
+         id="feColorMatrix68" />
+      <feBlend
+         mode="normal"
+         in2="BackgroundImageFix"
+         result="effect1_dropShadow_48346_15237"
+         id="feBlend68" />
+      <feBlend
+         mode="normal"
+         in="SourceGraphic"
+         in2="effect1_dropShadow_48346_15237"
+         result="shape"
+         id="feBlend69" />
+    </filter>
+    <filter
+       id="filter2_d_48346_15237"
+       x="107"
+       y="91"
+       width="84"
+       height="26"
+       filterUnits="userSpaceOnUse"
+       color-interpolation-filters="sRGB">
+      <feFlood
+         flood-opacity="0"
+         result="BackgroundImageFix"
+         id="feFlood69" />
+      <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"
+         result="hardAlpha"
+         id="feColorMatrix69" />
+      <feOffset
+         dy="4"
+         id="feOffset69" />
+      <feGaussianBlur
+         stdDeviation="2"
+         id="feGaussianBlur69" />
+      <feColorMatrix
+         type="matrix"
+         values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"
+         id="feColorMatrix70" />
+      <feBlend
+         mode="normal"
+         in2="BackgroundImageFix"
+         result="effect1_dropShadow_48346_15237"
+         id="feBlend70" />
+      <feBlend
+         mode="normal"
+         in="SourceGraphic"
+         in2="effect1_dropShadow_48346_15237"
+         result="shape"
+         id="feBlend71" />
+    </filter>
+    <filter
+       id="filter3_d_48346_15237"
+       x="161"
+       y="114"
+       width="30"
+       height="23"
+       filterUnits="userSpaceOnUse"
+       color-interpolation-filters="sRGB">
+      <feFlood
+         flood-opacity="0"
+         result="BackgroundImageFix"
+         id="feFlood71" />
+      <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"
+         result="hardAlpha"
+         id="feColorMatrix71" />
+      <feOffset
+         dy="4"
+         id="feOffset71" />
+      <feGaussianBlur
+         stdDeviation="2"
+         id="feGaussianBlur71" />
+      <feColorMatrix
+         type="matrix"
+         values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"
+         id="feColorMatrix72" />
+      <feBlend
+         mode="normal"
+         in2="BackgroundImageFix"
+         result="effect1_dropShadow_48346_15237"
+         id="feBlend72" />
+      <feBlend
+         mode="normal"
+         in="SourceGraphic"
+         in2="effect1_dropShadow_48346_15237"
+         result="shape"
+         id="feBlend73" />
+    </filter>
+    <filter
+       id="filter4_d_48346_15237"
+       x="133"
+       y="114"
+       width="33"
+       height="23"
+       filterUnits="userSpaceOnUse"
+       color-interpolation-filters="sRGB">
+      <feFlood
+         flood-opacity="0"
+         result="BackgroundImageFix"
+         id="feFlood73" />
+      <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"
+         result="hardAlpha"
+         id="feColorMatrix73" />
+      <feOffset
+         dy="4"
+         id="feOffset73" />
+      <feGaussianBlur
+         stdDeviation="2"
+         id="feGaussianBlur73" />
+      <feColorMatrix
+         type="matrix"
+         values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"
+         id="feColorMatrix74" />
+      <feBlend
+         mode="normal"
+         in2="BackgroundImageFix"
+         result="effect1_dropShadow_48346_15237"
+         id="feBlend74" />
+      <feBlend
+         mode="normal"
+         in="SourceGraphic"
+         in2="effect1_dropShadow_48346_15237"
+         result="shape"
+         id="feBlend75" />
+    </filter>
+  </defs>
+</svg>
diff --git a/static/picto_pen.svg b/static/picto_pen.svg
new file mode 100644
index 0000000000000000000000000000000000000000..557b8ed7117e809ad90cedbeebff43599ab08dde
--- /dev/null
+++ b/static/picto_pen.svg
@@ -0,0 +1,15 @@
+<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g clip-path="url(#clip0_48346_15311)">
+<path d="M4.40851 37.1622C2.45629 39.1156 0.521844 40.3467 0.0873997 39.9122C-0.347045 39.4778 0.885177 37.5433 2.8374 35.5911C4.78962 33.6378 6.72407 32.4067 7.15851 32.8411C7.59184 33.2756 6.36073 35.2089 4.40851 37.1622Z" fill="#C1694F"/>
+<path d="M7.15811 32.8422L4.80034 30.4844C4.80034 30.4844 3.597 32.0322 2.26256 34.5177C1.26256 36.3799 0.872559 37.5555 0.872559 37.5555L1.65811 38.341L2.44367 39.1266C2.44367 39.1266 3.62034 38.7355 5.48145 37.7366C7.967 36.4022 9.51367 35.1988 9.51367 35.1988L7.15811 32.8422Z" fill="#FFCC4D"/>
+<path d="M37.7992 2.20009C33.8714 -1.72879 17.617 13.6412 16.8314 14.4268C16.0459 15.2123 15.3826 15.9245 15.8003 16.3423L13.4437 18.699C11.0859 21.0568 4.01477 29.6979 4.80033 30.4834L7.15811 32.8412L9.51477 35.1979C10.3003 35.9834 18.9425 28.9123 21.3003 26.5556L23.657 24.199C24.0748 24.6168 24.787 23.9523 25.5725 23.1668C26.3581 22.3823 41.7281 6.12898 37.7992 2.20009Z" fill="#31373D"/>
+<path d="M25.573 23.1677C25.6675 23.0744 25.9753 22.7511 26.433 22.26L17.7408 13.5688C17.2497 14.0255 16.9275 14.3344 16.833 14.4288C16.0475 15.2144 15.3842 15.9266 15.8019 16.3444L19.7297 20.2733L23.6586 24.2011C24.0753 24.6166 24.7875 23.9533 25.573 23.1677Z" fill="#FFCC4D"/>
+<path d="M34.6801 2.22319C33.6501 1.19319 32.2756 0.113187 30.3112 1.09541C28.3468 2.07763 22.1856 6.02985 19.3356 8.87874C17.8668 10.3476 17.9501 11.2143 18.5012 11.2843C19.4134 11.4021 20.0234 11.3821 20.859 10.5476C21.6923 9.71319 21.8401 8.28874 21.8401 8.28874C21.8401 8.28874 25.229 5.68652 27.9045 4.09096C30.5812 2.4943 31.5356 2.22208 32.4712 3.15763C33.4068 4.09319 34.6801 2.22319 34.6801 2.22319Z" fill="#FFAC33"/>
+<path d="M32.0771 2.76338L37.236 7.92227C37.6018 7.20458 37.9059 6.45707 38.1449 5.68782L34.3116 1.85449C33.6149 2.06338 32.866 2.37227 32.0771 2.76338Z" fill="#FFAC33"/>
+</g>
+<defs>
+<clipPath id="clip0_48346_15311">
+<rect width="40" height="40" fill="white"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/tailwind.config.cjs b/tailwind.config.cjs
index 3e967318ca371e18e03d41bfbd06bd0d05d549be..c41f1d6fe7b52eded916d495f7c43066637b3c0c 100644
--- a/tailwind.config.cjs
+++ b/tailwind.config.cjs
@@ -71,7 +71,7 @@ const config = {
         },
       },
       fontSize: {
-        'xxs': ['0.625rem', '0.75rem']
+        xxs: ["0.625rem", "0.75rem"],
       },
       keyframes: {
         blinker: {