Added code to indicate the existence of outdated packages or dependencies in the icon.

Mon, 29 Jul 2024 11:37:20 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 29 Jul 2024 11:37:20 +0200
changeset 43
2ef4c1f1adea
parent 42
507f7e834536
child 44
e5e923c6a6db

Added code to indicate the existence of outdated packages or dependencies in the icon.

PKGLIST file | annotate | diff | comparison | revisions
PipxInterface/Documentation/Source/Plugin_Pipx_Interface.PipxInterface.PipxWidget.html file | annotate | diff | comparison | revisions
PipxInterface/Documentation/Source/Plugin_Pipx_Interface.PluginPipxInterface.html file | annotate | diff | comparison | revisions
PipxInterface/PipxWidget.py file | annotate | diff | comparison | revisions
PipxInterface/icons/pipxOutdated22.svg file | annotate | diff | comparison | revisions
PipxInterface/icons/pipxOutdated96.svg file | annotate | diff | comparison | revisions
PluginPipxInterface.py file | annotate | diff | comparison | revisions
changelog.md file | annotate | diff | comparison | revisions
--- a/PKGLIST	Mon Jul 29 11:32:07 2024 +0200
+++ b/PKGLIST	Mon Jul 29 11:37:20 2024 +0200
@@ -33,4 +33,6 @@
 PipxInterface/icons/pipx22.svg
 PipxInterface/icons/pipx48.svg
 PipxInterface/icons/pipx96.svg
+PipxInterface/icons/pipxOutdated22.svg
+PipxInterface/icons/pipxOutdated96.svg
 PluginPipxInterface.py
--- a/PipxInterface/Documentation/Source/Plugin_Pipx_Interface.PipxInterface.PipxWidget.html	Mon Jul 29 11:32:07 2024 +0200
+++ b/PipxInterface/Documentation/Source/Plugin_Pipx_Interface.PipxInterface.PipxWidget.html	Mon Jul 29 11:37:20 2024 +0200
@@ -98,6 +98,10 @@
 <td>Private slot to install packages to be given by the user.</td>
 </tr>
 <tr>
+<td><a href="#PipxWidget.__markPackageClean">__markPackageClean</a></td>
+<td>Private method to mark the given package item as clean (i.e.</td>
+</tr>
+<tr>
 <td><a href="#PipxWidget.__markPackageDependenciesOutdated">__markPackageDependenciesOutdated</a></td>
 <td>Private method to mark the given package item as having outdated dependencies.</td>
 </tr>
@@ -304,6 +308,21 @@
         Private slot to install packages to be given by the user.
 </p>
 
+<a NAME="PipxWidget.__markPackageClean" ID="PipxWidget.__markPackageClean"></a>
+<h4>PipxWidget.__markPackageClean</h4>
+<b>__markPackageClean</b>(<i>item</i>)
+<p>
+        Private method to mark the given package item as clean (i.e. not outdated nor
+        having outdated dependencies).
+</p>
+
+<dl>
+
+<dt><i>item</i> (QTreeWidgetItem)</dt>
+<dd>
+reference to the outdated package item
+</dd>
+</dl>
 <a NAME="PipxWidget.__markPackageDependenciesOutdated" ID="PipxWidget.__markPackageDependenciesOutdated"></a>
 <h4>PipxWidget.__markPackageDependenciesOutdated</h4>
 <b>__markPackageDependenciesOutdated</b>(<i>item</i>)
@@ -335,6 +354,11 @@
 <dd>
 latest version of the package
 </dd>
+<dt><i>outdatedDependencies</i> (bool)</dt>
+<dd>
+flag indicating the existence of outdated
+            dependencies
+</dd>
 </dl>
 <a NAME="PipxWidget.__packageApps" ID="PipxWidget.__packageApps"></a>
 <h4>PipxWidget.__packageApps</h4>
--- a/PipxInterface/Documentation/Source/Plugin_Pipx_Interface.PluginPipxInterface.html	Mon Jul 29 11:32:07 2024 +0200
+++ b/PipxInterface/Documentation/Source/Plugin_Pipx_Interface.PluginPipxInterface.html	Mon Jul 29 11:37:20 2024 +0200
@@ -102,6 +102,10 @@
 <td>Public method to retrieve the various settings values.</td>
 </tr>
 <tr>
+<td><a href="#PluginPipxInterface.setOutdatedIndicator">setOutdatedIndicator</a></td>
+<td>Public method to set or clear the outdated indication of the pipx icon</td>
+</tr>
+<tr>
 <td><a href="#PluginPipxInterface.setPreferences">setPreferences</a></td>
 <td>Public method to store the various settings values.</td>
 </tr>
@@ -200,6 +204,20 @@
 Any
 </dd>
 </dl>
+<a NAME="PluginPipxInterface.setOutdatedIndicator" ID="PluginPipxInterface.setOutdatedIndicator"></a>
+<h4>PluginPipxInterface.setOutdatedIndicator</h4>
+<b>setOutdatedIndicator</b>(<i>outdated</i>)
+<p>
+        Public method to set or clear the outdated indication of the pipx icon
+</p>
+
+<dl>
+
+<dt><i>outdated</i> (bool)</dt>
+<dd>
+flag indicating outdated packages or dependencies
+</dd>
+</dl>
 <a NAME="PluginPipxInterface.setPreferences" ID="PluginPipxInterface.setPreferences"></a>
 <h4>PluginPipxInterface.setPreferences</h4>
 <b>setPreferences</b>(<i>key, value</i>)
--- a/PipxInterface/PipxWidget.py	Mon Jul 29 11:32:07 2024 +0200
+++ b/PipxInterface/PipxWidget.py	Mon Jul 29 11:37:20 2024 +0200
@@ -11,7 +11,7 @@
 
 import psutil
 
-from PyQt6.QtCore import Qt, pyqtSlot
+from PyQt6.QtCore import QTimer, Qt, pyqtSlot
 from PyQt6.QtGui import QIcon
 from PyQt6.QtWidgets import QDialog, QMenu, QTreeWidgetItem, QWidget
 
@@ -90,8 +90,7 @@
         self.manPagesPathEdit.setText(pipxPaths["manPath"])
         self.interpretersPathEdit.setText(pipxPaths["pythonPath"])
 
-        self.__populatePackages()
-        self.on_packagesList_itemSelectionChanged()
+        QTimer.singleShot(0, self.__populatePackages)
 
     #######################################################################
     ## Menu related methods below
@@ -336,6 +335,8 @@
         """
         Private slot to check, if there are any outdated packages.
         """
+        hasOutdated = False
+
         with EricOverrideCursor():
             for row in range(self.packagesList.topLevelItemCount()):
                 itm = self.packagesList.topLevelItem(row)
@@ -345,14 +346,19 @@
                 )
                 if latestVersion is not None:
                     self.__markPackageOutdated(itm, latestVersion, outdatedDependencies)
+                    hasOutdated = True
                 elif (
                     self.__plugin.getPreferences("IncludeOutdatedDependencies")
                     and outdatedDependencies
                 ):
                     self.__markPackageDependenciesOutdated(itm)
+                    hasOutdated = True
                 else:
                     self.__markPackageClean(itm)
+                    hasOutdated = False
+
         self.__resizePackagesColumns()
+        self.__plugin.setOutdatedIndicator(hasOutdated)
 
     @pyqtSlot()
     def __upgradePackage(self):
@@ -556,6 +562,7 @@
             self.__checkOutdatedPackages()
 
         self.__resizePackagesColumns()
+        self.on_packagesList_itemSelectionChanged()
 
     @pyqtSlot()
     def on_refreshButton_clicked(self):
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/PipxInterface/icons/pipxOutdated22.svg	Mon Jul 29 11:37:20 2024 +0200
@@ -0,0 +1,701 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   viewBox="0 0 22 22"
+   version="1.1"
+   id="svg240"
+   sodipodi:docname="pipxOutdated22.svg"
+   width="22"
+   height="22"
+   inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg">
+  <defs
+     id="defs244" />
+  <sodipodi:namedview
+     id="namedview242"
+     pagecolor="#ffffff"
+     bordercolor="#000000"
+     borderopacity="0.25"
+     inkscape:showpageshadow="2"
+     inkscape:pageopacity="0.0"
+     inkscape:pagecheckerboard="0"
+     inkscape:deskcolor="#d1d1d1"
+     showgrid="false"
+     inkscape:zoom="45.644444"
+     inkscape:cx="11.81962"
+     inkscape:cy="10.559883"
+     inkscape:window-width="2580"
+     inkscape:window-height="1311"
+     inkscape:window-x="420"
+     inkscape:window-y="0"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="svg240" />
+  <g
+     id="g1196"
+     transform="matrix(0.12126092,0,0,0.06095575,-22.172679,0.07330636)">
+    <g
+       stroke-width="2"
+       fill="none"
+       stroke-linecap="butt"
+       id="g152">
+      <path
+         stroke="#009681"
+         vector-effect="non-scaling-stroke"
+         d="m 335.85,47.21 1.3,-0.17 a 0.4,0.4 0 0 1 0.41,0.58 q -1.09,2.18 -2.89,4.51 -4.61,5.96 -7.79,12.65"
+         data-darkreader-inline-stroke=""
+         id="path2" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="m 326.88,64.78 c -3.12,3.42 -2.04,4.67 -2.72,8.41 q -0.98,5.4 -3.65,10.07 c -8.15,14.26 -16.52,28.07 -24.39,42.84 q -0.22,0.41 -0.09,0.74 a 0.33,0.33 0 0 0 0.6,0.03 q 2.94,-5.5 7.15,-10.08 0.69,-0.74 1.54,-0.48 a 0.71,0.7 -73.7 0 1 0.47,0.87 c -0.88,3.1 -1.36,5.99 -3,8.8 -3.53,6 -6.88,11.2 -10.77,17.84 -2.27,3.89 -5.43,7.41 -7.4,11.37 q -1.19,2.39 -2.4,4.81"
+         data-darkreader-inline-stroke=""
+         id="path4" />
+      <path
+         stroke="#008684"
+         vector-effect="non-scaling-stroke"
+         d="m 282.22,160 -16.39,25.87"
+         data-darkreader-inline-stroke=""
+         id="path6" />
+      <path
+         stroke="#009681"
+         vector-effect="non-scaling-stroke"
+         d="m 265.83,185.87 q 0.03,0.58 -0.53,0.91"
+         data-darkreader-inline-stroke=""
+         id="path8" />
+      <path
+         stroke="#17e5bd"
+         vector-effect="non-scaling-stroke"
+         d="m 265.3,186.78 q -0.67,-0.05 -1.27,-1.79"
+         data-darkreader-inline-stroke=""
+         id="path10" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 264.03,184.99 q 1.56,-2.13 1.93,-3.98 0.1,-0.5 0.42,-0.89 c 1.33,-1.61 2.54,-2.35 3.56,-4.25 q 1.6,-3 3.57,-5.77 c 2.29,-3.23 3.64,-6.85 5.91,-10.15 q 0.29,-0.43 0.25,-0.94 -0.34,-3.98 0.29,-5.03 c 1.31,-2.17 4.43,-7.2 4.24,-9.66 -0.13,-1.76 -0.26,-2.91 0.78,-4.51 q 5.13,-7.87 8.66,-16.52 c 3.39,-8.32 8.7,-15.56 14.29,-23.65 q 5.43,-7.85 11.64,-18.82 1.84,-3.26 2.02,-6.1 a 0.61,0.61 0 0 0 -0.86,-0.59 q -2.81,1.28 -4.82,4.8 -2.92,5.11 -11.83,18.4 -0.25,0.37 -0.99,0.17 -0.39,-0.11 -0.2,-0.47 5.22,-9.55 10.56,-19.03 c 1.91,-3.37 5.66,-3.94 7.66,-7.26 q 1.57,-2.62 1.68,-2.77 4.58,-6.41 7.65,-13.7 a 1.6,1.5 -10.4 0 1 0.42,-0.57 q 0.78,-0.66 0.9,-1.59 a 0.54,0.53 -73.1 0 0 -0.29,-0.55 l -1.44,-0.75 q -0.54,-0.29 -0.32,-0.85 0.88,-2.26 3.05,-3.83"
+         data-darkreader-inline-stroke=""
+         id="path12" />
+      <path
+         stroke="#007c70"
+         vector-effect="non-scaling-stroke"
+         d="m 337.94,63.81 q -4.05,2.41 -5.68,7.05 c -3.56,10.2 -9.19,17.66 -16.17,25.65 a 0.31,0.31 0 0 1 -0.52,-0.33 c 1.83,-4.13 4.91,-7.99 6.52,-12.12 0.9,-2.32 2.59,-3.74 3.17,-6.07 q 1.64,-6.54 1.62,-13.21"
+         data-darkreader-inline-stroke=""
+         id="path14" />
+      <path
+         stroke="#006c73"
+         vector-effect="non-scaling-stroke"
+         d="m 332.58,74.47 q 0.48,0.38 0.48,1.15 0,0.51 -0.4,1.11 c -5.26,8.06 -10.96,15.81 -14.89,24.74 q -4.29,9.76 -9.35,19.14 c -4.14,7.68 -10.19,15.66 -15.15,23.68 q -2.14,3.45 -11.05,15.71"
+         data-darkreader-inline-stroke=""
+         id="path16" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 327.44,45.54 -8.93,12.66 q -0.24,0.34 0.13,0.52 0.28,0.15 0.47,-0.09 4.95,-6.2 8.91,-13.15"
+         data-darkreader-inline-stroke=""
+         id="path18" />
+      <path
+         stroke="#2dffc0"
+         vector-effect="non-scaling-stroke"
+         d="m 264.03,184.99 -3.18,-5.71 q -0.23,-0.41 -0.61,-0.7 -0.77,-0.58 -0.94,-1.14 -1.04,-3.53 -3.02,-6.54 c -1.33,-2.02 -2,-4.03 -3.12,-6.09"
+         data-darkreader-inline-stroke=""
+         id="path20" />
+      <path
+         stroke="#16b084"
+         vector-effect="non-scaling-stroke"
+         d="m 253.16,164.81 q 1.5,-0.07 1.36,-1.02 c 2.45,-4.09 4.67,-8.45 7.08,-12.36 q 9.7,-15.76 16.57,-30.26 3.5,-7.4 5.72,-11.18 0.14,-0.24 -0.13,-0.24 -0.13,0 -0.27,-0.02 -0.3,-0.05 -0.45,0.21 l -15.31,27.04"
+         data-darkreader-inline-stroke=""
+         id="path22" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 267.73,136.98 q -3.56,2.21 -5.47,6.13 -0.36,0.74 -0.87,1.08 a 0.75,0.75 0 0 1 -1.06,-1.02 c 2.35,-3.89 8.86,-13.69 9.2,-17.96 a 0.7,0.7 0 0 0 -1.32,-0.39 q -1.69,3.13 -3.64,6.39 -0.53,0.9 -1.09,1.16 -1.06,0.48 -1.79,-0.71"
+         data-darkreader-inline-stroke=""
+         id="path24" />
+      <path
+         stroke="#005161"
+         vector-effect="non-scaling-stroke"
+         d="m 326.81,90.75 q -6.67,7.48 -8.12,11.18 -4.91,12.59 -12.46,24.84 -15.56,25.23 -29.72,46.65 c -2.77,4.2 -5.58,9.64 -8.79,14.34 a 0.9,0.9 0 0 1 -1.63,-0.36 l -0.26,-1.53"
+         data-darkreader-inline-stroke=""
+         id="path26" />
+      <path
+         stroke="#17e5bd"
+         vector-effect="non-scaling-stroke"
+         d="m 248.92,155.68 3.93,7.59"
+         data-darkreader-inline-stroke=""
+         id="path28" />
+      <path
+         stroke="#17b09a"
+         vector-effect="non-scaling-stroke"
+         d="m 252.85,163.27 q -0.17,0.63 0.31,1.54"
+         data-darkreader-inline-stroke=""
+         id="path30" />
+      <path
+         stroke="#17e5bd"
+         vector-effect="non-scaling-stroke"
+         d="m 269.75,195.74 -0.01,1.18 a 0.6,0.6 0 0 1 -1.11,0.3 l -1.84,-3.03"
+         data-darkreader-inline-stroke=""
+         id="path32" />
+      <path
+         stroke="#2dffc0"
+         vector-effect="non-scaling-stroke"
+         d="M 266.79,194.19 249.32,164.11"
+         data-darkreader-inline-stroke=""
+         id="path34" />
+      <path
+         stroke="#17e5bd"
+         vector-effect="non-scaling-stroke"
+         d="M 249.32,164.11 236.7,141.34 q -0.2,-0.38 -0.51,-0.08 l -0.21,0.22 q -0.3,0.3 -0.11,0.68 11.9,24.81 23.16,49.91 2,4.46 4.72,9.7 2.41,4.67 4.84,9.66"
+         data-darkreader-inline-stroke=""
+         id="path36" />
+      <path
+         stroke="#2dffc0"
+         vector-effect="non-scaling-stroke"
+         d="m 268.59,211.43 q -2.22,0.97 -5.42,-3.57"
+         data-darkreader-inline-stroke=""
+         id="path38" />
+      <path
+         stroke="#17e5bd"
+         vector-effect="non-scaling-stroke"
+         d="m 263.17,207.86 -9.95,-15.59"
+         data-darkreader-inline-stroke=""
+         id="path40" />
+      <path
+         stroke="#2dffc0"
+         vector-effect="non-scaling-stroke"
+         d="m 253.22,192.27 1.29,-2.4 q 0.23,-0.44 0.01,-0.88 L 237.13,154.1 q -0.13,-0.26 -0.13,-0.55 0,-0.15 0,-0.31 0,-0.45 -0.26,-0.82 c -1.73,-2.41 -2.89,-5.22 -5.74,-8.16 q -1.75,-1.81 -2.99,-3.93 -4.77,-8.15 -10.8,-15.72 a 0.35,0.35 0 0 0 -0.59,0.36 l 3.26,7.43"
+         data-darkreader-inline-stroke=""
+         id="path42" />
+      <path
+         stroke="#17e5bd"
+         vector-effect="non-scaling-stroke"
+         d="m 219.88,132.4 q 0.12,1.8 0.69,3.04 6.81,14.96 13.72,29.77"
+         data-darkreader-inline-stroke=""
+         id="path44" />
+      <path
+         stroke="#2dffc0"
+         vector-effect="non-scaling-stroke"
+         d="m 234.29,165.21 q 0.31,2.77 1.46,5.32 4.15,9.23 6.67,19.04 c 0.59,2.28 1.36,4.24 2.25,6.41 a 0.61,0.61 0 0 1 -0.98,0.68 c -4.39,-4.08 -5.52,-8.47 -8.7,-13.17 q -0.97,-1.45 -2.18,-3.8 -9.23,-18.04 -16.96,-37.21 a 0.97,0.93 43.7 0 1 -0.03,-0.64 q 0.4,-1.29 1.07,-0.5 3.09,3.64 5.46,7.77 0.38,0.66 1.11,0.61 a 0.39,0.39 0 0 0 0.29,-0.61 c -2.26,-3.38 -3.32,-7.08 -4.62,-10.33 q -5.2,-13 -10.07,-26.14 -0.33,-0.9 -0.79,-0.06 -0.47,0.85 -0.26,1.9 a 0.55,0.55 0 0 1 -0.41,0.64 l -1.47,0.36 a 1.03,1.03 0 0 0 -0.61,1.58 q 2.83,4.17 3.14,8.98 c 0.29,4.49 2.89,9.28 4.47,13.51 1.03,2.78 3.18,6 3.95,9.46 2.76,12.31 10.56,22.62 15.18,34.19 a 0.83,0.83 0 0 1 -0.96,1.12 q -2.53,-0.61 -5.23,-3.96"
+         data-darkreader-inline-stroke=""
+         id="path46" />
+      <path
+         stroke="#17e5bd"
+         vector-effect="non-scaling-stroke"
+         d="m 226.07,180.36 c -3.32,-9.06 -7.17,-18.09 -11.9,-26.71 -3.92,-7.17 -7.1,-15.55 -12.72,-26.57 q -0.24,-0.46 -0.73,-0.3 l -1.87,0.6"
+         data-darkreader-inline-stroke=""
+         id="path48" />
+      <path
+         stroke="#005161"
+         vector-effect="non-scaling-stroke"
+         d="m 328.43,108.4 -3,3.52 q -0.18,0.21 -0.37,0.01 l -0.21,-0.21 q -0.16,-0.16 -0.05,-0.36 l 1.65,-2.93 a 0.36,0.36 0 0 0 -0.53,-0.47 q -7.74,5.63 -6.17,15.31 0.05,0.33 0.27,0.08 c 2.33,-2.65 6.27,-4.23 8.12,-6.52 0.71,-0.87 1.81,-1.59 1.97,-2.63 q 0.16,-1.03 -0.87,-1.5 -0.48,-0.22 -0.47,-0.75 l 0.11,-3.54"
+         data-darkreader-inline-stroke=""
+         id="path50" />
+      <path
+         stroke="#009681"
+         vector-effect="non-scaling-stroke"
+         d="m 270.45,196.25 -0.7,-0.51"
+         data-darkreader-inline-stroke=""
+         id="path52" />
+      <path
+         stroke="#17b09a"
+         vector-effect="non-scaling-stroke"
+         d="m 269.75,195.74 -4.45,-8.96"
+         data-darkreader-inline-stroke=""
+         id="path54" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 316.76,51.88 c -2.92,6.4 -6.41,13.46 -11.44,18.36 q -4.22,4.11 -7.09,9.32 -0.17,0.32 -0.41,0.41 -0.23,0.09 -0.45,0.05 -0.52,-0.1 -0.3,-0.58 l 7.07,-15.37 a 0.44,0.43 -4.5 0 0 -0.64,-0.54 c -1.84,1.22 -2.47,3.62 -4.99,3.45"
+         data-darkreader-inline-stroke=""
+         id="path56" />
+      <path
+         stroke="#009681"
+         vector-effect="non-scaling-stroke"
+         d="m 252.85,163.27 c 3.97,-6.81 7.79,-13.71 11.95,-20.42 q 1.73,-2.78 2.93,-5.87"
+         data-darkreader-inline-stroke=""
+         id="path58" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 263.17,207.86 q 0.22,0.86 0.02,1.29 -0.28,0.6 -0.64,0.05 -3.03,-4.45 -5.79,-9.07 c -2.03,-3.38 -4.8,-6.38 -7.15,-9.71 a 0.88,0.88 0 0 0 -1.54,0.84 q 3.52,8.69 7.77,17.6 c 2.23,4.68 5.75,8.88 7.88,13.08 2.21,4.36 10.02,22.02 13.66,23.65 q 0.47,0.21 0.75,0.64 c 9.69,14.9 16.13,24.73 22.62,39.09"
+         data-darkreader-inline-stroke=""
+         id="path60" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="m 300.75,285.32 q -5.48,-7.89 -10.3,-16.01 -0.8,-1.36 -1.91,-1.23 -0.56,0.07 -0.39,0.6 l 3.36,10.48 a 0.67,0.67 0 0 1 -1.24,0.48 q -4.84,-10.6 -9.67,-20.51 -0.31,-0.63 -0.71,-0.66 -0.52,-0.04 -1.02,0.68"
+         data-darkreader-inline-stroke=""
+         id="path62" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 278.87,259.15 -8.38,-18.57 q -0.25,-0.56 -0.72,-0.17 -0.92,0.75 -0.3,2.12 2.41,5.33 4.85,10.64 c 1.21,2.6 2.59,7.02 4.66,10.29 q 0.3,0.48 0.76,0.14 l 0.88,-0.65"
+         data-darkreader-inline-stroke=""
+         id="path64" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="m 280.62,262.95 q 2.42,4.59 4.1,9.49 c 0.63,1.86 2.06,3.98 2.31,6.24 a 0.65,0.65 0 0 1 -1.18,0.43 c -3.97,-5.92 -7.13,-11.44 -10.33,-18.34 q -10.94,-23.6 -22.72,-47.08"
+         data-darkreader-inline-stroke=""
+         id="path66" />
+      <path
+         stroke="#009681"
+         vector-effect="non-scaling-stroke"
+         d="m 241.82,179.47 q 0.42,0.49 1.09,0.09 a 1,0.99 -30.2 0 0 0.36,-1.34 l -6.98,-12.72 a 0.61,0.61 0 0 0 -0.82,-0.25 q -0.37,0.2 -0.68,0.61"
+         data-darkreader-inline-stroke=""
+         id="path68" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 249.32,164.11 q 2.02,9.7 7.26,18.66"
+         data-darkreader-inline-stroke=""
+         id="path70" />
+      <path
+         stroke="#17e5bd"
+         vector-effect="non-scaling-stroke"
+         d="m 256.58,182.77 6.34,12.8"
+         data-darkreader-inline-stroke=""
+         id="path72" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 262.92,195.57 q 2.44,5.33 4.93,10.64 0.17,0.35 0.43,0.47 0.34,0.15 0.75,0.05 0.48,-0.11 0.27,-0.55 l -1.4,-3.02 q -0.17,-0.35 0.12,-0.62 l 0.62,-0.55 q 0.36,-0.32 0.14,-0.76 l -3.11,-6.14 q -0.24,-0.47 0.28,-0.55 0.48,-0.08 0.84,-0.35"
+         data-darkreader-inline-stroke=""
+         id="path74" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="m 321.74,295.08 q 0.48,1.78 -2.83,0.78 -0.51,-0.15 -0.74,-0.62 -4.99,-10.23 -11.21,-19.75 a 1.15,1.09 26.9 0 1 -0.16,-0.45 q -0.21,-2.02 -1.64,-3.55 a 1.65,1.6 18.7 0 1 -0.39,-0.76 q -0.55,-2.55 -2.78,-5.73 -2.37,-3.4 -6.32,-13.23 a 1.24,1.2 -89.1 0 0 -0.6,-0.64 q -1.55,-0.71 -1.33,-2.39 a 1.4,1.39 30.7 0 0 -0.26,-1 q -1.48,-2 -2.51,-4.91 -1.58,-4.45 -5.36,-7.7"
+         data-darkreader-inline-stroke=""
+         id="path76" />
+      <path
+         stroke="#009681"
+         vector-effect="non-scaling-stroke"
+         d="m 285.61,235.13 q -6.64,-13.05 -13.53,-26.2 -0.52,-0.98 -1.2,-1.18 a 0.35,0.35 0 0 0 -0.41,0.5 c 5.4,10.58 10.26,22.33 18.01,36.54 q 2.12,3.88 3.84,7.86"
+         data-darkreader-inline-stroke=""
+         id="path78" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="m 292.32,252.65 c 0.65,4.8 3.04,8.37 4.75,12.1 q 4.96,10.82 10.44,21.74"
+         data-darkreader-inline-stroke=""
+         id="path80" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 307.51,286.49 c -2.69,-1.57 -2.88,-3.95 -4.72,-6.31 -1.27,-1.62 -2.31,-4.64 -2.92,-5.8 q -4.53,-8.61 -8.2,-17.63 c -0.74,-1.8 -2.25,-3.42 -2.97,-4.95 q -9.75,-20.52 -20.11,-40.37"
+         data-darkreader-inline-stroke=""
+         id="path82" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 234.29,165.21 q 0.8,0.56 0.5,0.65"
+         data-darkreader-inline-stroke=""
+         id="path84" />
+      <path
+         stroke="#16b084"
+         vector-effect="non-scaling-stroke"
+         d="m 234.79,165.86 7.03,13.61"
+         data-darkreader-inline-stroke=""
+         id="path86" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 241.82,179.47 q -0.26,1.71 0.12,2.53 8.95,19.14 17.23,38.59 0.28,0.66 -0.43,0.66 h -0.45 q -0.55,0 -0.85,-0.46 l -4.64,-7.1"
+         data-darkreader-inline-stroke=""
+         id="path88" />
+      <path
+         stroke="#16cb96"
+         vector-effect="non-scaling-stroke"
+         d="m 252.8,213.69 q -1.67,-4.83 -5.84,-10.3 a 0.6,0.6 0 0 0 -1.07,0.48 c 0.97,4.82 4.09,9.88 6.33,14.35 q 0.26,0.53 -0.27,0.77 l -1.29,0.59 q -0.62,0.28 -0.65,-0.4 -0.09,-1.83 -2.46,-2.83"
+         data-darkreader-inline-stroke=""
+         id="path90" />
+      <path
+         stroke="#16a087"
+         vector-effect="non-scaling-stroke"
+         d="m 247.55,216.35 -12.14,-22.18 a 0.36,0.35 17.8 0 0 -0.63,0.32 l 10.55,21.24"
+         data-darkreader-inline-stroke=""
+         id="path92" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 245.33,215.73 q -0.03,0.85 -0.77,0.98 -0.51,0.1 -0.77,-0.35 c -6.91,-11.85 -11.8,-22.6 -17.72,-36"
+         data-darkreader-inline-stroke=""
+         id="path94" />
+      <path
+         stroke="#008684"
+         vector-effect="non-scaling-stroke"
+         d="m 245.33,215.73 5.79,10.47"
+         data-darkreader-inline-stroke=""
+         id="path96" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="m 251.12,226.2 q -0.09,1.33 -0.93,1.96 -0.4,0.3 -0.21,0.75 l 0.77,1.81 q 0.19,0.45 -0.2,0.74 -0.3,0.23 -0.91,0.11"
+         data-darkreader-inline-stroke=""
+         id="path98" />
+      <path
+         stroke="#009681"
+         vector-effect="non-scaling-stroke"
+         d="m 224.11,258.1 c -0.12,-0.7 0.09,-1.64 0.55,-2.27 q 6.59,-8.98 12.57,-18.37 1.94,-3.05 9.16,-10.12 0.44,-0.43 0.14,-0.96 l -1.94,-3.34 a 0.33,0.32 -51.6 0 0 -0.59,0.07 q -0.9,2.84 -2.61,5.32 -8.4,12.16 -16.65,24.47"
+         data-darkreader-inline-stroke=""
+         id="path100" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 224.74,252.9 q 0.11,-4.18 2.04,-6.86 6.87,-9.5 10.2,-15.5 a 1.15,1.12 -86.9 0 1 0.5,-0.46 q 0.86,-0.4 0.98,-1.73 a 1.48,1.13 -34.5 0 0 -2.57,-0.13 q -9.44,16.52 -22.15,30.75 -0.67,0.76 -1.06,-0.18 l -0.39,-0.95 a 0.49,0.48 62.8 0 0 -0.7,-0.23 q -1.32,0.83 -1.73,2.31 -0.19,0.7 -0.83,0.35 l -0.66,-0.35 a 0.66,0.66 0 0 1 -0.25,-0.93 l 10.39,-16.96 a 0.16,0.16 0 0 0 -0.09,-0.24 q -0.77,-0.22 -0.73,0.51 0.03,0.7 -0.64,0.52 l -0.77,-0.2 q -0.58,-0.15 -0.31,-0.68 1.59,-3.11 2.46,-4.26 c 4.73,-6.24 8.97,-12.51 14.32,-18.52 q 3.2,-3.59 5.91,-7.27 a 1.8,1.77 -40.5 0 0 0.16,-1.86 q -4.45,-8.83 -8.65,-17.46 -0.33,-0.68 -1.16,-0.6"
+         data-darkreader-inline-stroke=""
+         id="path102" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 253.22,192.27 c -4.17,-7.09 -7.35,-12.64 -12.09,-21.43 -3.48,-6.47 -7.97,-13 -10.43,-20.61 a 1.04,1.03 1.9 0 0 -0.6,-0.64 c -2,-0.79 -1,-3.34 -2.87,-4.82 a 1.92,1.89 8.6 0 1 -0.6,-0.8 q -2.45,-6.22 -6.75,-11.57"
+         data-darkreader-inline-stroke=""
+         id="path104" />
+      <path
+         stroke="#2dffc0"
+         vector-effect="non-scaling-stroke"
+         d="m 262.92,195.57 q 1.34,-0.1 1.54,-0.99 0.13,-0.55 -0.4,-1.44 -3.15,-5.37 -5.83,-10.71 a 0.97,0.97 0 0 0 -1.42,-0.36 q -0.49,0.34 -0.23,0.7"
+         data-darkreader-inline-stroke=""
+         id="path106" />
+      <path
+         stroke="#16cb96"
+         vector-effect="non-scaling-stroke"
+         d="m 307.51,286.49 q 2.26,5.97 5.3,11.85 c 2.51,4.84 4.04,9.17 5.68,13.99 a 0.51,0.51 0 0 1 -0.92,0.43 l -16.82,-27.44"
+         data-darkreader-inline-stroke=""
+         id="path108" />
+      <path
+         stroke="#007c70"
+         vector-effect="non-scaling-stroke"
+         d="m 336.2,86.9 -6.81,6.88 a 0.53,0.52 54.8 0 1 -0.85,-0.15 q -0.12,-0.26 -0.09,-0.65"
+         data-darkreader-inline-stroke=""
+         id="path110" />
+      <path
+         stroke="#16cb96"
+         vector-effect="non-scaling-stroke"
+         d="m 280.62,262.95 -1.75,-3.8"
+         data-darkreader-inline-stroke=""
+         id="path112" />
+      <path
+         stroke="#007c70"
+         vector-effect="non-scaling-stroke"
+         d="m 292.32,252.65 q 5.44,12.08 12.83,23.15 a 0.67,0.67 0 0 0 1.13,-0.02 q 0.41,-0.66 0.02,-0.86 -0.3,-0.15 -0.43,-0.47 c -1.26,-3.33 -3.5,-5.21 -4.77,-8.5 q -0.93,-2.37 -2.39,-4.48 c -2.08,-3.01 -4.03,-7.55 -5.41,-10.89 -2.15,-5.2 -5.59,-9.95 -7.69,-15.45"
+         data-darkreader-inline-stroke=""
+         id="path114" />
+      <path
+         stroke="#006c73"
+         vector-effect="non-scaling-stroke"
+         d="m 311.04,310.7 q -2.45,-9.09 -9.08,-15.87 a 0.08,0.08 0 0 0 -0.14,0.07 l 6.71,27.44 q 0.04,0.16 0.21,0.16 0.13,0 0.27,0 a 0.23,0.23 0 0 0 0.22,-0.29 q -1.39,-4.97 0.31,-9.37"
+         data-darkreader-inline-stroke=""
+         id="path116" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="m 301.07,317.68 q -2.03,-1.84 -2.87,-5.62 -0.23,-1.05 0.74,-0.6 l 1.14,0.52 a 0.59,0.59 0 0 0 0.71,-0.9 q -5.64,-7.25 -8.09,-15.85"
+         data-darkreader-inline-stroke=""
+         id="path118" />
+      <path
+         stroke="#006c73"
+         vector-effect="non-scaling-stroke"
+         d="m 247.55,216.35 c 7.49,13.29 15.2,26.26 22.18,39.87 6.13,11.95 14.47,24.36 22.61,34.98 2.98,3.89 5.07,7.62 6.18,11.79 q 0.15,0.58 -0.38,0.72 -0.35,0.1 -0.49,-0.24 -1.84,-4.43 -4.95,-8.24"
+         data-darkreader-inline-stroke=""
+         id="path120" />
+      <path
+         stroke="#008684"
+         vector-effect="non-scaling-stroke"
+         d="m 292.7,295.23 q -1.83,-3.98 -5.16,-7.36 a 0.44,0.44 0 0 0 -0.74,0.39 q 1.02,5.34 3.74,10.11"
+         data-darkreader-inline-stroke=""
+         id="path122" />
+      <path
+         stroke="#006c73"
+         vector-effect="non-scaling-stroke"
+         d="m 290.54,298.37 0.16,3.46 a 0.34,0.34 0 0 1 -0.63,0.18 c -0.72,-1.21 -1.7,-2.37 -2.3,-3.64 Q 270.6,261.7 251.12,226.2"
+         data-darkreader-inline-stroke=""
+         id="path124" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="m 290.54,298.37 q 4.62,11.77 9.3,23.46 c 0.59,1.45 0.89,3.24 1.22,4.78 0.33,1.59 1.26,2.44 1.94,3.89 a 0.62,0.6 62.1 0 1 -0.23,0.78 l -1.88,1.18"
+         data-darkreader-inline-stroke=""
+         id="path126" />
+      <path
+         stroke="#16b084"
+         vector-effect="non-scaling-stroke"
+         d="m 224.74,252.9 q -2.94,3.09 -4.47,7.17 -0.17,0.47 -0.63,0.68 -1.13,0.51 -1.06,-0.73"
+         data-darkreader-inline-stroke=""
+         id="path128" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 199.9,261.87 2.24,-3.5 q 0.26,-0.41 0.01,-0.83 l -0.13,-0.23 q -0.07,-0.11 -0.01,-0.23 l 1.27,-2.97 q 0.54,-1.26 -0.37,-0.24 -1.73,1.94 -2.57,4.44 a 0.99,0.98 3.2 0 1 -0.72,0.64 q -1.55,0.33 -1.7,-0.7"
+         data-darkreader-inline-stroke=""
+         id="path130" />
+      <path
+         stroke="#16cb96"
+         vector-effect="non-scaling-stroke"
+         d="m 197.92,258.25 2.46,-6.58"
+         data-darkreader-inline-stroke=""
+         id="path132" />
+      <path
+         stroke="#16b084"
+         vector-effect="non-scaling-stroke"
+         d="m 200.38,251.67 30.95,-52.54 q 0.29,-0.49 -0.25,-0.63 -0.24,-0.07 -0.5,0.01 -0.34,0.12 -0.63,0.62 -4.34,7.64 -9.19,14.89"
+         data-darkreader-inline-stroke=""
+         id="path134" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 220.76,214.02 -1.75,-0.16 q -0.65,-0.06 -0.33,-0.63 l 6.72,-12.1 q 0.23,-0.43 0.03,-0.87 -0.33,-0.73 -1.06,-1.05"
+         data-darkreader-inline-stroke=""
+         id="path136" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="M 197.92,258.25 196,262.46"
+         data-darkreader-inline-stroke=""
+         id="path138" />
+      <path
+         stroke="#007c70"
+         vector-effect="non-scaling-stroke"
+         d="m 200.38,251.67 q -0.85,0.4 -1.09,0.21 -0.21,-0.16 0.11,-0.7 c 1.07,-1.85 2.59,-4.98 -0.79,-5.29"
+         data-darkreader-inline-stroke=""
+         id="path140" />
+      <path
+         stroke="#009681"
+         vector-effect="non-scaling-stroke"
+         d="m 210.36,224.29 c 4.22,2.38 8.69,-7.6 10.4,-10.27"
+         data-darkreader-inline-stroke=""
+         id="path142" />
+      <path
+         stroke="#2dffc0"
+         vector-effect="non-scaling-stroke"
+         d="m 304.96,81.04 q -8.34,12.73 -14.87,26.48 c -0.71,1.51 -2.15,2.81 -3.11,4.27 q -0.23,0.36 0.16,0.52 2.13,0.87 3.12,-0.79 c 4.03,-6.8 7.33,-15.05 11.54,-22.07 q 2.52,-4.21 4.76,-8.75 a 0.63,0.63 0 0 0 -0.46,-0.9 q -0.54,-0.09 -0.78,0.48 -0.26,0.61 -0.36,0.76"
+         data-darkreader-inline-stroke=""
+         id="path144" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 276.788,132.9721 a 0.51,0.51 0 0 0 -0.1842,-0.6973 l -0.0346,-0.0201 a 0.51,0.51 0 0 0 -0.6973,0.1842 l -19.9799,34.329 a 0.51,0.51 0 0 0 0.1842,0.6973 l 0.0346,0.0201 a 0.51,0.51 0 0 0 0.6973,-0.1842 l 19.9799,-34.329"
+         data-darkreader-inline-stroke=""
+         id="path146" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="m 235.08,220.64 c -3.39,3.43 -7.4,9.73 -9.47,13.94 q -0.21,0.45 -0.14,0.93 l 0.33,2.21 a 0.48,0.47 -25.4 0 0 0.79,0.28 q 7.46,-6.83 9.5,-16.82 a 0.6,0.6 0 0 0 -1.01,-0.54"
+         data-darkreader-inline-stroke=""
+         id="path148" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 205.73,246.83 0.72,0.44 a 0.21,0.21 0 0 0 0.28,-0.07 l 0.06,-0.08 a 51.69,0.53 -58.3 0 0 26.71,-44.26 l -0.17,-0.1 a 51.69,0.53 -58.3 0 0 -27.62,43.7 l -0.05,0.08 a 0.21,0.21 0 0 0 0.07,0.29"
+         data-darkreader-inline-stroke=""
+         id="path150" />
+    </g>
+    <path
+       fill="#00cba3"
+       d="m 335.85,47.21 1.3,-0.17 a 0.4,0.4 0 0 1 0.41,0.58 q -1.09,2.18 -2.89,4.51 -4.61,5.96 -7.79,12.65 c -3.12,3.42 -2.04,4.67 -2.72,8.41 q -0.98,5.4 -3.65,10.07 c -8.15,14.26 -16.52,28.07 -24.39,42.84 q -0.22,0.41 -0.09,0.74 a 0.33,0.33 0 0 0 0.6,0.03 q 2.94,-5.5 7.15,-10.08 0.69,-0.74 1.54,-0.48 a 0.71,0.7 -73.7 0 1 0.47,0.87 c -0.88,3.1 -1.36,5.99 -3,8.8 -3.53,6 -6.88,11.2 -10.77,17.84 -2.27,3.89 -5.43,7.41 -7.4,11.37 q -1.19,2.39 -2.4,4.81 l -16.39,25.87 q 0.03,0.58 -0.53,0.91 -0.67,-0.05 -1.27,-1.79 1.56,-2.13 1.93,-3.98 0.1,-0.5 0.42,-0.89 c 1.33,-1.61 2.54,-2.35 3.56,-4.25 q 1.6,-3 3.57,-5.77 c 2.29,-3.23 3.64,-6.85 5.91,-10.15 q 0.29,-0.43 0.25,-0.94 -0.34,-3.98 0.29,-5.03 c 1.31,-2.17 4.43,-7.2 4.24,-9.66 -0.13,-1.76 -0.26,-2.91 0.78,-4.51 q 5.13,-7.87 8.66,-16.52 c 3.39,-8.32 8.7,-15.56 14.29,-23.65 q 5.43,-7.85 11.64,-18.82 1.84,-3.26 2.02,-6.1 a 0.61,0.61 0 0 0 -0.86,-0.59 q -2.81,1.28 -4.82,4.8 -2.92,5.11 -11.83,18.4 -0.25,0.37 -0.99,0.17 -0.39,-0.11 -0.2,-0.47 5.22,-9.55 10.56,-19.03 c 1.91,-3.37 5.66,-3.94 7.66,-7.26 q 1.57,-2.62 1.68,-2.77 4.58,-6.41 7.65,-13.7 a 1.6,1.5 -10.4 0 1 0.42,-0.57 q 0.78,-0.66 0.9,-1.59 a 0.54,0.53 -73.1 0 0 -0.29,-0.55 l -1.44,-0.75 q -0.54,-0.29 -0.32,-0.85 0.88,-2.26 3.05,-3.83 9.4,-15.86 19.84,-30.7 0.34,-0.5 0.41,0.1 0.03,0.31 -0.14,0.62 -4.3,7.84 -8.83,15.56 c -2.35,4.02 -4.91,9.77 -8.05,14.36 q -0.18,0.25 -0.26,0.53 -0.41,1.35 0.12,0.61 z"
+       data-darkreader-inline-fill=""
+       id="path154" />
+    <path
+       fill="#00cba3"
+       d="m 316.76,51.88 c -2.92,6.4 -6.41,13.46 -11.44,18.36 q -4.22,4.11 -7.09,9.32 -0.17,0.32 -0.41,0.41 -0.23,0.09 -0.45,0.05 -0.52,-0.1 -0.3,-0.58 l 7.07,-15.37 a 0.44,0.43 -4.5 0 0 -0.64,-0.54 c -1.84,1.22 -2.47,3.62 -4.99,3.45 3.63,-7.28 9.26,-15.62 12.34,-20.72 4.76,-7.88 9.32,-16.18 15.02,-23.43 a 0.34,0.33 -14.1 0 1 0.57,0.34 l -1.68,3.84 a 0.42,0.41 -3.8 0 0 0.6,0.52 c 2.46,-1.47 6.28,-8.54 8.24,-11.17 q 0.37,-0.48 0.63,0.07 0.07,0.15 0.08,0.37 0.01,0.18 -0.12,0.39 c -6.43,10.91 -14.11,22.67 -18.37,34.59 q -0.15,0.42 0.94,0.1 z"
+       data-darkreader-inline-fill=""
+       id="path156" />
+    <path
+       fill="#00615e"
+       d="m 337.94,63.81 q -4.05,2.41 -5.68,7.05 c -3.56,10.2 -9.19,17.66 -16.17,25.65 a 0.31,0.31 0 0 1 -0.52,-0.33 c 1.83,-4.13 4.91,-7.99 6.52,-12.12 0.9,-2.32 2.59,-3.74 3.17,-6.07 q 1.64,-6.54 1.62,-13.21 3.18,-6.69 7.79,-12.65 1.8,-2.33 2.89,-4.51 a 0.4,0.4 0 0 0 -0.41,-0.58 l -1.3,0.17 6.12,-6.71 q 1.12,-1.23 1.33,0.39 0.02,0.13 -0.28,0.99 -2.41,6.91 -5.68,13.45 -0.23,0.47 0.16,0.8 0.11,0.09 0.19,0.2 0.3,0.36 0.44,-0.09 0.63,-2.02 1.91,-3.69 8.12,-10.62 15.34,-21.85 0.18,-0.29 0.41,-0.04 0.11,0.12 0.21,0.21 0.05,0.05 0.02,0.12 c -2.19,4.68 -4.3,9.12 -7.09,13.68 q -5.96,9.76 -10.99,19.14 z"
+       data-darkreader-inline-fill=""
+       id="path158" />
+    <path
+       fill="#2cffaa"
+       d="m 327.44,45.54 -8.93,12.66 q -0.24,0.34 0.13,0.52 0.28,0.15 0.47,-0.09 4.95,-6.2 8.91,-13.15 l 7.1,-8.85 a 0.46,0.46 0 0 1 0.8,0.44 l -3.16,9.06 q -2.17,1.57 -3.05,3.83 -0.22,0.56 0.32,0.85 l 1.44,0.75 a 0.54,0.53 -73.1 0 1 0.29,0.55 q -0.12,0.93 -0.9,1.59 a 1.6,1.5 -10.4 0 0 -0.42,0.57 q -3.07,7.29 -7.65,13.7 -0.11,0.15 -1.68,2.77 c -2,3.32 -5.75,3.89 -7.66,7.26 q -5.34,9.48 -10.56,19.03 -0.19,0.36 0.2,0.47 0.74,0.2 0.99,-0.17 8.91,-13.29 11.83,-18.4 2.01,-3.52 4.82,-4.8 a 0.61,0.61 0 0 1 0.86,0.59 q -0.18,2.84 -2.02,6.1 -6.21,10.97 -11.64,18.82 c -5.59,8.09 -10.9,15.33 -14.29,23.65 q -3.53,8.65 -8.66,16.52 c -1.04,1.6 -0.91,2.75 -0.78,4.51 0.19,2.46 -2.93,7.49 -4.24,9.66 q -0.63,1.05 -0.29,5.03 0.04,0.51 -0.25,0.94 c -2.27,3.3 -3.62,6.92 -5.91,10.15 q -1.97,2.77 -3.57,5.77 c -1.02,1.9 -2.23,2.64 -3.56,4.25 q -0.32,0.39 -0.42,0.89 -0.37,1.85 -1.93,3.98 l -3.18,-5.71 q -0.23,-0.41 -0.61,-0.7 -0.77,-0.58 -0.94,-1.14 -1.04,-3.53 -3.02,-6.54 c -1.33,-2.02 -2,-4.03 -3.12,-6.09 q 1.5,-0.07 1.36,-1.02 c 2.45,-4.09 4.67,-8.45 7.08,-12.36 q 9.7,-15.76 16.57,-30.26 3.5,-7.4 5.72,-11.18 0.14,-0.24 -0.13,-0.24 -0.13,0 -0.27,-0.02 -0.3,-0.05 -0.45,0.21 l -15.31,27.04 q -3.56,2.21 -5.47,6.13 -0.36,0.74 -0.87,1.08 a 0.75,0.75 0 0 1 -1.06,-1.02 c 2.35,-3.89 8.86,-13.69 9.2,-17.96 a 0.7,0.7 0 0 0 -1.32,-0.39 q -1.69,3.13 -3.64,6.39 -0.53,0.9 -1.09,1.16 -1.06,0.48 -1.79,-0.71 l 36.82,-64.68 c 2.52,0.17 3.15,-2.23 4.99,-3.45 a 0.44,0.43 -4.5 0 1 0.64,0.54 l -7.07,15.37 q -0.22,0.48 0.3,0.58 0.22,0.04 0.45,-0.05 0.24,-0.09 0.41,-0.41 2.87,-5.21 7.09,-9.32 c 5.03,-4.9 8.52,-11.96 11.44,-18.36 l 14.67,-16.83 a 0.51,0.51 0 0 1 0.84,0.55 z m -22.48,35.5 q -8.34,12.73 -14.87,26.48 c -0.71,1.51 -2.15,2.81 -3.11,4.27 q -0.23,0.36 0.16,0.52 2.13,0.87 3.12,-0.79 c 4.03,-6.8 7.33,-15.05 11.54,-22.07 q 2.52,-4.21 4.76,-8.75 a 0.63,0.63 0 0 0 -0.46,-0.9 q -0.54,-0.09 -0.78,0.48 -0.26,0.61 -0.36,0.76 z m -28.172,51.9321 a 0.51,0.51 0 0 0 -0.1842,-0.6973 l -0.0346,-0.0201 a 0.51,0.51 0 0 0 -0.6973,0.1842 l -19.9799,34.329 a 0.51,0.51 0 0 0 0.1842,0.6973 l 0.0346,0.0201 a 0.51,0.51 0 0 0 0.6973,-0.1842 z"
+       data-darkreader-inline-fill=""
+       id="path160" />
+    <path
+       fill="#00cba3"
+       d="m 327.44,45.54 q 0.28,-0.09 0.58,-0.06 -3.96,6.95 -8.91,13.15 -0.19,0.24 -0.47,0.09 -0.37,-0.18 -0.13,-0.52 z"
+       data-darkreader-inline-fill=""
+       id="path162" />
+    <path
+       fill="#009781"
+       d="m 337.94,63.81 -5.36,10.66 q 0.48,0.38 0.48,1.15 0,0.51 -0.4,1.11 c -5.26,8.06 -10.96,15.81 -14.89,24.74 q -4.29,9.76 -9.35,19.14 c -4.14,7.68 -10.19,15.66 -15.15,23.68 q -2.14,3.45 -11.05,15.71 1.21,-2.42 2.4,-4.81 c 1.97,-3.96 5.13,-7.48 7.4,-11.37 3.89,-6.64 7.24,-11.84 10.77,-17.84 1.64,-2.81 2.12,-5.7 3,-8.8 a 0.71,0.7 -73.7 0 0 -0.47,-0.87 q -0.85,-0.26 -1.54,0.48 -4.21,4.58 -7.15,10.08 a 0.33,0.33 0 0 1 -0.6,-0.03 q -0.13,-0.33 0.09,-0.74 c 7.87,-14.77 16.24,-28.58 24.39,-42.84 q 2.67,-4.67 3.65,-10.07 c 0.68,-3.74 -0.4,-4.99 2.72,-8.41 q 0.02,6.67 -1.62,13.21 c -0.58,2.33 -2.27,3.75 -3.17,6.07 -1.61,4.13 -4.69,7.99 -6.52,12.12 a 0.31,0.31 0 0 0 0.52,0.33 c 6.98,-7.99 12.61,-15.45 16.17,-25.65 q 1.63,-4.64 5.68,-7.05 z"
+       data-darkreader-inline-fill=""
+       id="path164" />
+    <path
+       fill="#004164"
+       d="m 326.81,90.75 q -6.67,7.48 -8.12,11.18 -4.91,12.59 -12.46,24.84 -15.56,25.23 -29.72,46.65 c -2.77,4.2 -5.58,9.64 -8.79,14.34 a 0.9,0.9 0 0 1 -1.63,-0.36 l -0.26,-1.53 16.39,-25.87 q 8.91,-12.26 11.05,-15.71 c 4.96,-8.02 11.01,-16 15.15,-23.68 q 5.06,-9.38 9.35,-19.14 c 3.93,-8.93 9.63,-16.68 14.89,-24.74 q 0.4,-0.6 0.4,-1.11 0,-0.77 -0.48,-1.15 l 8.25,-10.57 a 0.4,0.4 0 0 1 0.69,0.37 c -1.35,4.08 -4.26,7.78 -5.86,11.11 q -3.97,8.22 -8.85,15.37 z"
+       data-darkreader-inline-fill=""
+       id="path166" />
+    <path
+       fill="#009781"
+       d="m 336.2,86.9 -6.81,6.88 a 0.53,0.52 54.8 0 1 -0.85,-0.15 q -0.12,-0.26 -0.09,-0.65 l 15.04,-21.42 a 0.32330326,0.32330326 0 0 1 0.55,0.34 z"
+       data-darkreader-inline-fill=""
+       id="path168" />
+    <path
+       fill="#2dffd6"
+       d="m 305.32,80.28 q 0.24,-0.57 0.78,-0.48 a 0.63,0.63 0 0 1 0.46,0.9 q -2.24,4.54 -4.76,8.75 c -4.21,7.02 -7.51,15.27 -11.54,22.07 q -0.99,1.66 -3.12,0.79 -0.39,-0.16 -0.16,-0.52 c 0.96,-1.46 2.4,-2.76 3.11,-4.27 q 6.53,-13.75 14.87,-26.48 0.1,-0.15 0.36,-0.76 z"
+       data-darkreader-inline-fill=""
+       id="path170" />
+    <path
+       fill="#00615e"
+       d="m 328.43,108.4 -3,3.52 q -0.18,0.21 -0.37,0.01 l -0.21,-0.21 q -0.16,-0.16 -0.05,-0.36 l 1.65,-2.93 a 0.36,0.36 0 0 0 -0.53,-0.47 q -7.74,5.63 -6.17,15.31 0.05,0.33 0.27,0.08 c 2.33,-2.65 6.27,-4.23 8.12,-6.52 0.71,-0.87 1.81,-1.59 1.97,-2.63 q 0.16,-1.03 -0.87,-1.5 -0.48,-0.22 -0.47,-0.75 l 0.11,-3.54 6.79,-7.95 q 0.69,-0.81 0.75,0.25 l 0.11,1.78 a 0.59,0.59 0 0 0 1.05,0.34 l 5.85,-7.12 a 0.3,0.3 0 0 1 0.48,0.36 c -12.92,19.57 -28.8,38.62 -43.53,57.78 q -6.03,7.85 -8.05,11.23 c -1.96,3.27 -4.78,6.53 -6.24,8.61 q -8.31,11.81 -10.75,15.89 -2.51,4.2 -4.89,6.67 l -0.7,-0.51 -4.45,-8.96 q 0.56,-0.33 0.53,-0.91 l 0.26,1.53 a 0.9,0.9 0 0 0 1.63,0.36 c 3.21,-4.7 6.02,-10.14 8.79,-14.34 q 14.16,-21.42 29.72,-46.65 7.55,-12.25 12.46,-24.84 1.45,-3.7 8.12,-11.18 -1.83,3.49 -8.32,14.52 -0.25,0.44 0.13,0.66 0.38,0.23 0.64,-0.13 l 9.19,-12.82 q -0.03,0.39 0.09,0.65 a 0.53,0.52 54.8 0 0 0.85,0.15 l 6.81,-6.88 q 0.79,1.01 1.98,-0.69 1.77,-2.55 3.68,-4.58 a 0.6,0.6 0 0 1 0.95,0.73 q -7.38,12.2 -14.11,24.62 c -0.25,0.45 -0.16,0.95 -0.27,1.42 z"
+       data-darkreader-inline-fill=""
+       id="path172" />
+    <path
+       fill="#2dffd6"
+       d="m 248.92,155.68 3.93,7.59 q -0.17,0.63 0.31,1.54 c 1.12,2.06 1.79,4.07 3.12,6.09 q 1.98,3.01 3.02,6.54 0.17,0.56 0.94,1.14 0.38,0.29 0.61,0.7 l 3.18,5.71 q 0.6,1.74 1.27,1.79 l 4.45,8.96 -0.01,1.18 a 0.6,0.6 0 0 1 -1.11,0.3 l -1.84,-3.03 -17.47,-30.08 -12.62,-22.77 q -0.2,-0.38 -0.51,-0.08 l -0.21,0.22 q -0.3,0.3 -0.11,0.68 11.9,24.81 23.16,49.91 2,4.46 4.72,9.7 2.41,4.67 4.84,9.66 -2.22,0.97 -5.42,-3.57 l -9.95,-15.59 1.29,-2.4 q 0.23,-0.44 0.01,-0.88 L 237.13,154.1 q -0.13,-0.26 -0.13,-0.55 0,-0.15 0,-0.31 0,-0.45 -0.26,-0.82 c -1.73,-2.41 -2.89,-5.22 -5.74,-8.16 q -1.75,-1.81 -2.99,-3.93 -4.77,-8.15 -10.8,-15.72 a 0.35,0.35 0 0 0 -0.59,0.36 l 3.26,7.43 q 0.12,1.8 0.69,3.04 6.81,14.96 13.72,29.77 0.31,2.77 1.46,5.32 4.15,9.23 6.67,19.04 c 0.59,2.28 1.36,4.24 2.25,6.41 a 0.61,0.61 0 0 1 -0.98,0.68 c -4.39,-4.08 -5.52,-8.47 -8.7,-13.17 q -0.97,-1.45 -2.18,-3.8 -9.23,-18.04 -16.96,-37.21 a 0.97,0.93 43.7 0 1 -0.03,-0.64 q 0.4,-1.29 1.07,-0.5 3.09,3.64 5.46,7.77 0.38,0.66 1.11,0.61 a 0.39,0.39 0 0 0 0.29,-0.61 c -2.26,-3.38 -3.32,-7.08 -4.62,-10.33 q -5.2,-13 -10.07,-26.14 -0.33,-0.9 -0.79,-0.06 -0.47,0.85 -0.26,1.9 a 0.55,0.55 0 0 1 -0.41,0.64 l -1.47,0.36 a 1.03,1.03 0 0 0 -0.61,1.58 q 2.83,4.17 3.14,8.98 c 0.29,4.49 2.89,9.28 4.47,13.51 1.03,2.78 3.18,6 3.95,9.46 2.76,12.31 10.56,22.62 15.18,34.19 a 0.83,0.83 0 0 1 -0.96,1.12 q -2.53,-0.61 -5.23,-3.96 c -3.32,-9.06 -7.17,-18.09 -11.9,-26.71 -3.92,-7.17 -7.1,-15.55 -12.72,-26.57 q -0.24,-0.46 -0.73,-0.3 l -1.87,0.6 q -1.26,-2.41 -2.29,-4.92 c -1.41,-3.41 -1.11,-7.34 -2.82,-11.12 -1.32,-2.9 -1.74,-5.32 -2.62,-8.09 a 0.47,0.47 0 0 1 0.82,-0.43 c 5.55,7.14 8.2,14.44 12.33,22.01 a 0.12298374,0.12298374 0 0 0 0.22,-0.11 c -0.62,-1.46 -0.81,-3.16 -1.45,-4.6 q -3.31,-7.35 -3.39,-10.05 c -0.15,-5.81 -1.6,-8.76 -2.43,-13.34 a 0.37,0.37 0 0 1 0.7,-0.22 q 3.27,7.08 6.43,13.9 0.26,0.56 0.66,0.57 0.36,0.01 0.26,-0.34 l -6.3,-21.76 a 0.6,0.59 21.4 0 1 1.08,-0.47 l 3.57,5.91 a 0.48,0.48 0 0 0 0.57,0.2 q 0.16,-0.05 0.32,-0.1 a 0.23,0.22 56.3 0 0 0.07,-0.38 q -1.02,-0.91 -0.95,-2.37 a 0.5,0.5 0 0 1 0.95,-0.21 l 5.28,10.2 q 0.05,0.09 0.15,0.09 0.13,0 0.26,0 0.15,0 0.1,-0.14 -2.57,-7.05 -6.9,-15.85 -0.14,-0.28 0.04,-0.5 0.25,-0.3 0.42,0.05 c 3.81,7.48 7.51,15.46 11.54,22.51 q 0.78,1.35 0.34,-0.15 l -2.06,-6.89 q -0.15,-0.53 0.18,-0.97 l 1.12,-1.46 a 0.79,0.78 -37.1 0 0 0.11,-0.73 l -2.11,-5.58 a 0.22,0.22 0 0 1 0.21,-0.29 q 0.13,0 0.25,0 0.22,0 0.32,0.18 c 2.26,4.1 5.04,8.45 7.09,12.17 9.42,17.05 17.64,35.17 28,51.58 z"
+       data-darkreader-inline-fill=""
+       id="path174" />
+    <path
+       fill="#004164"
+       d="m 328.43,108.4 q 0.72,0.27 0.45,0.01 l -0.11,3.54 q -0.01,0.53 0.47,0.75 1.03,0.47 0.87,1.5 c -0.16,1.04 -1.26,1.76 -1.97,2.63 -1.85,2.29 -5.79,3.87 -8.12,6.52 q -0.22,0.25 -0.27,-0.08 -1.57,-9.68 6.17,-15.31 a 0.36,0.36 0 0 1 0.53,0.47 l -1.65,2.93 q -0.11,0.2 0.05,0.36 l 0.21,0.21 q 0.19,0.2 0.37,-0.01 z"
+       data-darkreader-inline-fill=""
+       id="path176" />
+    <path
+       fill="#00615e"
+       d="m 253.16,164.81 q -0.48,-0.91 -0.31,-1.54 c 3.97,-6.81 7.79,-13.71 11.95,-20.42 q 1.73,-2.78 2.93,-5.87 l 15.31,-27.04 q 0.15,-0.26 0.45,-0.21 0.14,0.02 0.27,0.02 0.27,0 0.13,0.24 -2.22,3.78 -5.72,11.18 -6.87,14.5 -16.57,30.26 c -2.41,3.91 -4.63,8.27 -7.08,12.36 q 0.14,0.95 -1.36,1.02 z"
+       data-darkreader-inline-fill=""
+       id="path178" />
+    <path
+       fill="#2cffaa"
+       d="m 234.29,165.21 q 0.8,0.56 0.5,0.65 l 7.03,13.61 q -0.26,1.71 0.12,2.53 8.95,19.14 17.23,38.59 0.28,0.66 -0.43,0.66 h -0.45 q -0.55,0 -0.85,-0.46 l -4.64,-7.1 q -1.67,-4.83 -5.84,-10.3 a 0.6,0.6 0 0 0 -1.07,0.48 c 0.97,4.82 4.09,9.88 6.33,14.35 q 0.26,0.53 -0.27,0.77 l -1.29,0.59 q -0.62,0.28 -0.65,-0.4 -0.09,-1.83 -2.46,-2.83 l -12.14,-22.18 a 0.36,0.35 17.8 0 0 -0.63,0.32 l 10.55,21.24 q -0.03,0.85 -0.77,0.98 -0.51,0.1 -0.77,-0.35 c -6.91,-11.85 -11.8,-22.6 -17.72,-36 q 2.7,3.35 5.23,3.96 a 0.83,0.83 0 0 0 0.96,-1.12 c -4.62,-11.57 -12.42,-21.88 -15.18,-34.19 -0.77,-3.46 -2.92,-6.68 -3.95,-9.46 -1.58,-4.23 -4.18,-9.02 -4.47,-13.51 q -0.31,-4.81 -3.14,-8.98 a 1.03,1.03 0 0 1 0.61,-1.58 l 1.47,-0.36 a 0.55,0.55 0 0 0 0.41,-0.64 q -0.21,-1.05 0.26,-1.9 0.46,-0.84 0.79,0.06 4.87,13.14 10.07,26.14 c 1.3,3.25 2.36,6.95 4.62,10.33 a 0.39,0.39 0 0 1 -0.29,0.61 q -0.73,0.05 -1.11,-0.61 -2.37,-4.13 -5.46,-7.77 -0.67,-0.79 -1.07,0.5 a 0.97,0.93 43.7 0 0 0.03,0.64 q 7.73,19.17 16.96,37.21 1.21,2.35 2.18,3.8 c 3.18,4.7 4.31,9.09 8.7,13.17 a 0.61,0.61 0 0 0 0.98,-0.68 c -0.89,-2.17 -1.66,-4.13 -2.25,-6.41 q -2.52,-9.81 -6.67,-19.04 -1.15,-2.55 -1.46,-5.32 z"
+       data-darkreader-inline-fill=""
+       id="path180" />
+    <path
+       fill="#2cffaa"
+       d="m 253.22,192.27 c -4.17,-7.09 -7.35,-12.64 -12.09,-21.43 -3.48,-6.47 -7.97,-13 -10.43,-20.61 a 1.04,1.03 1.9 0 0 -0.6,-0.64 c -2,-0.79 -1,-3.34 -2.87,-4.82 a 1.92,1.89 8.6 0 1 -0.6,-0.8 q -2.45,-6.22 -6.75,-11.57 l -3.26,-7.43 a 0.35,0.35 0 0 1 0.59,-0.36 q 6.03,7.57 10.8,15.72 1.24,2.12 2.99,3.93 c 2.85,2.94 4.01,5.75 5.74,8.16 q 0.26,0.37 0.26,0.82 0,0.16 0,0.31 0,0.29 0.13,0.55 l 17.39,34.89 q 0.22,0.44 -0.01,0.88 z"
+       data-darkreader-inline-fill=""
+       id="path182" />
+    <path
+       fill="#00cba3"
+       d="m 267.73,136.98 q -1.2,3.09 -2.93,5.87 c -4.16,6.71 -7.98,13.61 -11.95,20.42 l -3.93,-7.59 12.77,-24.02 q 0.73,1.19 1.79,0.71 0.56,-0.26 1.09,-1.16 1.95,-3.26 3.64,-6.39 a 0.7,0.7 0 0 1 1.32,0.39 c -0.34,4.27 -6.85,14.07 -9.2,17.96 a 0.75,0.75 0 0 0 1.06,1.02 q 0.51,-0.34 0.87,-1.08 1.91,-3.92 5.47,-6.13 z"
+       data-darkreader-inline-fill=""
+       id="path184" />
+    <path
+       fill="#00cba3"
+       d="m 226.07,180.36 c 5.92,13.4 10.81,24.15 17.72,36 q 0.26,0.45 0.77,0.35 0.74,-0.13 0.77,-0.98 l 5.79,10.47 q -0.09,1.33 -0.93,1.96 -0.4,0.3 -0.21,0.75 l 0.77,1.81 q 0.19,0.45 -0.2,0.74 -0.3,0.23 -0.91,0.11 l -1.48,-2.75 q -0.29,-0.54 -0.69,-0.07 -8.19,9.5 -14.69,20.1 c -2.37,3.86 -5.39,7.43 -7.79,11.46 q -0.55,0.92 -0.66,-0.15 l -0.22,-2.06 c -0.12,-0.7 0.09,-1.64 0.55,-2.27 q 6.59,-8.98 12.57,-18.37 1.94,-3.05 9.16,-10.12 0.44,-0.43 0.14,-0.96 l -1.94,-3.34 a 0.33,0.32 -51.6 0 0 -0.59,0.07 q -0.9,2.84 -2.61,5.32 -8.4,12.16 -16.65,24.47 0.11,-4.18 2.04,-6.86 6.87,-9.5 10.2,-15.5 a 1.15,1.12 -86.9 0 1 0.5,-0.46 q 0.86,-0.4 0.98,-1.73 a 1.48,1.13 -34.5 0 0 -2.57,-0.13 q -9.44,16.52 -22.15,30.75 -0.67,0.76 -1.06,-0.18 l -0.39,-0.95 a 0.49,0.48 62.8 0 0 -0.7,-0.23 q -1.32,0.83 -1.73,2.31 -0.19,0.7 -0.83,0.35 l -0.66,-0.35 a 0.66,0.66 0 0 1 -0.25,-0.93 l 10.39,-16.96 a 0.16,0.16 0 0 0 -0.09,-0.24 q -0.77,-0.22 -0.73,0.51 0.03,0.7 -0.64,0.52 l -0.77,-0.2 q -0.58,-0.15 -0.31,-0.68 1.59,-3.11 2.46,-4.26 c 4.73,-6.24 8.97,-12.51 14.32,-18.52 q 3.2,-3.59 5.91,-7.27 a 1.8,1.77 -40.5 0 0 0.16,-1.86 q -4.45,-8.83 -8.65,-17.46 -0.33,-0.68 -1.16,-0.6 c -0.02,-0.57 0.05,-1.34 -0.21,-1.87 -10.35,-20.68 -20.45,-41.65 -29.95,-62.72 l 1.87,-0.6 q 0.49,-0.16 0.73,0.3 c 5.62,11.02 8.8,19.4 12.72,26.57 4.73,8.62 8.58,17.65 11.9,26.71 z m 9.01,40.28 c -3.39,3.43 -7.4,9.73 -9.47,13.94 q -0.21,0.45 -0.14,0.93 l 0.33,2.21 a 0.48,0.47 -25.4 0 0 0.79,0.28 q 7.46,-6.83 9.5,-16.82 a 0.6,0.6 0 0 0 -1.01,-0.54 z"
+       data-darkreader-inline-fill=""
+       id="path186" />
+    <rect
+       fill="#00cba3"
+       x="-0.52999997"
+       y="-20.370001"
+       transform="rotate(30.200001,-144.55144,568.48494)"
+       width="1.0599999"
+       height="40.740002"
+       rx="0.50999999"
+       data-darkreader-inline-fill=""
+       id="rect188" />
+    <path
+       fill="#00cba3"
+       d="m 219.88,132.4 q 4.3,5.35 6.75,11.57 a 1.92,1.89 8.6 0 0 0.6,0.8 c 1.87,1.48 0.87,4.03 2.87,4.82 a 1.04,1.03 1.9 0 1 0.6,0.64 c 2.46,7.61 6.95,14.14 10.43,20.61 4.74,8.79 7.92,14.34 12.09,21.43 l 9.95,15.59 q 0.22,0.86 0.02,1.29 -0.28,0.6 -0.64,0.05 -3.03,-4.45 -5.79,-9.07 c -2.03,-3.38 -4.8,-6.38 -7.15,-9.71 a 0.88,0.88 0 0 0 -1.54,0.84 q 3.52,8.69 7.77,17.6 c 2.23,4.68 5.75,8.88 7.88,13.08 2.21,4.36 10.02,22.02 13.66,23.65 q 0.47,0.21 0.75,0.64 c 9.69,14.9 16.13,24.73 22.62,39.09 q -5.48,-7.89 -10.3,-16.01 -0.8,-1.36 -1.91,-1.23 -0.56,0.07 -0.39,0.6 l 3.36,10.48 a 0.67,0.67 0 0 1 -1.24,0.48 q -4.84,-10.6 -9.67,-20.51 -0.31,-0.63 -0.71,-0.66 -0.52,-0.04 -1.02,0.68 l -8.38,-18.57 q -0.25,-0.56 -0.72,-0.17 -0.92,0.75 -0.3,2.12 2.41,5.33 4.85,10.64 c 1.21,2.6 2.59,7.02 4.66,10.29 q 0.3,0.48 0.76,0.14 l 0.88,-0.65 q 2.42,4.59 4.1,9.49 c 0.63,1.86 2.06,3.98 2.31,6.24 a 0.65,0.65 0 0 1 -1.18,0.43 c -3.97,-5.92 -7.13,-11.44 -10.33,-18.34 q -10.94,-23.6 -22.72,-47.08 l 4.64,7.1 q 0.3,0.46 0.85,0.46 h 0.45 q 0.71,0 0.43,-0.66 -8.28,-19.45 -17.23,-38.59 -0.38,-0.82 -0.12,-2.53 0.42,0.49 1.09,0.09 a 1,0.99 -30.2 0 0 0.36,-1.34 l -6.98,-12.72 a 0.61,0.61 0 0 0 -0.82,-0.25 q -0.37,0.2 -0.68,0.61 0.3,-0.09 -0.5,-0.65 -6.91,-14.81 -13.72,-29.77 -0.57,-1.24 -0.69,-3.04 z"
+       data-darkreader-inline-fill=""
+       id="path190" />
+    <path
+       fill="#00cba3"
+       d="m 249.32,164.11 q 2.02,9.7 7.26,18.66 l 6.34,12.8 q 2.44,5.33 4.93,10.64 0.17,0.35 0.43,0.47 0.34,0.15 0.75,0.05 0.48,-0.11 0.27,-0.55 l -1.4,-3.02 q -0.17,-0.35 0.12,-0.62 l 0.62,-0.55 q 0.36,-0.32 0.14,-0.76 l -3.11,-6.14 q -0.24,-0.47 0.28,-0.55 0.48,-0.08 0.84,-0.35 l 1.84,3.03 a 0.6,0.6 0 0 0 1.11,-0.3 l 0.01,-1.18 0.7,0.51 0.08,0.8 q 0.04,0.47 0.25,0.9 c 7.3,15.21 15.82,30.03 23.66,45.18 9.01,17.4 18.51,34.43 27.3,51.95 q 0.48,1.78 -2.83,0.78 -0.51,-0.15 -0.74,-0.62 -4.99,-10.23 -11.21,-19.75 a 1.15,1.09 26.9 0 1 -0.16,-0.45 q -0.21,-2.02 -1.64,-3.55 a 1.65,1.6 18.7 0 1 -0.39,-0.76 q -0.55,-2.55 -2.78,-5.73 -2.37,-3.4 -6.32,-13.23 a 1.24,1.2 -89.1 0 0 -0.6,-0.64 q -1.55,-0.71 -1.33,-2.39 a 1.4,1.39 30.7 0 0 -0.26,-1 q -1.48,-2 -2.51,-4.91 -1.58,-4.45 -5.36,-7.7 -6.64,-13.05 -13.53,-26.2 -0.52,-0.98 -1.2,-1.18 a 0.35,0.35 0 0 0 -0.41,0.5 c 5.4,10.58 10.26,22.33 18.01,36.54 q 2.12,3.88 3.84,7.86 c 0.65,4.8 3.04,8.37 4.75,12.1 q 4.96,10.82 10.44,21.74 c -2.69,-1.57 -2.88,-3.95 -4.72,-6.31 -1.27,-1.62 -2.31,-4.64 -2.92,-5.8 q -4.53,-8.61 -8.2,-17.63 c -0.74,-1.8 -2.25,-3.42 -2.97,-4.95 q -9.75,-20.52 -20.11,-40.37 -2.43,-4.99 -4.84,-9.66 -2.72,-5.24 -4.72,-9.7 -11.26,-25.1 -23.16,-49.91 -0.19,-0.38 0.11,-0.68 l 0.21,-0.22 q 0.31,-0.3 0.51,0.08 z"
+       data-darkreader-inline-fill=""
+       id="path194" />
+    <path
+       fill="#2cffaa"
+       d="m 249.32,164.11 17.47,30.08 q -0.36,0.27 -0.84,0.35 -0.52,0.08 -0.28,0.55 l 3.11,6.14 q 0.22,0.44 -0.14,0.76 l -0.62,0.55 q -0.29,0.27 -0.12,0.62 l 1.4,3.02 q 0.21,0.44 -0.27,0.55 -0.41,0.1 -0.75,-0.05 -0.26,-0.12 -0.43,-0.47 -2.49,-5.31 -4.93,-10.64 1.34,-0.1 1.54,-0.99 0.13,-0.55 -0.4,-1.44 -3.15,-5.37 -5.83,-10.71 a 0.97,0.97 0 0 0 -1.42,-0.36 q -0.49,0.34 -0.23,0.7 -5.24,-8.96 -7.26,-18.66 z"
+       data-darkreader-inline-fill=""
+       id="path202" />
+    <path
+       fill="#00615e"
+       d="m 241.82,179.47 -7.03,-13.61 q 0.31,-0.41 0.68,-0.61 a 0.61,0.61 0 0 1 0.82,0.25 l 6.98,12.72 a 1,0.99 -30.2 0 1 -0.36,1.34 q -0.67,0.4 -1.09,-0.09 z"
+       data-darkreader-inline-fill=""
+       id="path204" />
+    <path
+       fill="#2dffd6"
+       d="m 262.92,195.57 -6.34,-12.8 q -0.26,-0.36 0.23,-0.7 a 0.97,0.97 0 0 1 1.42,0.36 q 2.68,5.34 5.83,10.71 0.53,0.89 0.4,1.44 -0.2,0.89 -1.54,0.99 z"
+       data-darkreader-inline-fill=""
+       id="path206" />
+    <path
+       fill="#2cffaa"
+       d="m 263.17,207.86 q 3.2,4.54 5.42,3.57 10.36,19.85 20.11,40.37 c 0.72,1.53 2.23,3.15 2.97,4.95 q 3.67,9.02 8.2,17.63 c 0.61,1.16 1.65,4.18 2.92,5.8 1.84,2.36 2.03,4.74 4.72,6.31 q 2.26,5.97 5.3,11.85 c 2.51,4.84 4.04,9.17 5.68,13.99 a 0.51,0.51 0 0 1 -0.92,0.43 l -16.82,-27.44 c -6.49,-14.36 -12.93,-24.19 -22.62,-39.09 q -0.28,-0.43 -0.75,-0.64 c -3.64,-1.63 -11.45,-19.29 -13.66,-23.65 -2.13,-4.2 -5.65,-8.4 -7.88,-13.08 q -4.25,-8.91 -7.77,-17.6 a 0.88,0.88 0 0 1 1.54,-0.84 c 2.35,3.33 5.12,6.33 7.15,9.71 q 2.76,4.62 5.79,9.07 0.36,0.55 0.64,-0.05 0.2,-0.43 -0.02,-1.29 z"
+       data-darkreader-inline-fill=""
+       id="path208" />
+    <path
+       fill="#2cffaa"
+       d="m 229.01,191.97 q 0.83,-0.08 1.16,0.6 4.2,8.63 8.65,17.46 a 1.8,1.77 -40.5 0 1 -0.16,1.86 q -2.71,3.68 -5.91,7.27 c -5.35,6.01 -9.59,12.28 -14.32,18.52 q -0.87,1.15 -2.46,4.26 -0.27,0.53 0.31,0.68 l 0.77,0.2 q 0.67,0.18 0.64,-0.52 -0.04,-0.73 0.73,-0.51 a 0.16,0.16 0 0 1 0.09,0.24 l -10.39,16.96 a 0.66,0.66 0 0 0 0.25,0.93 l 0.66,0.35 q 0.64,0.35 0.83,-0.35 0.41,-1.48 1.73,-2.31 a 0.49,0.48 62.8 0 1 0.7,0.23 l 0.39,0.95 q 0.39,0.94 1.06,0.18 12.71,-14.23 22.15,-30.75 a 1.48,1.13 -34.5 0 1 2.57,0.13 q -0.12,1.33 -0.98,1.73 a 1.15,1.12 -86.9 0 0 -0.5,0.46 q -3.33,6 -10.2,15.5 -1.93,2.68 -2.04,6.86 -2.94,3.09 -4.47,7.17 -0.17,0.47 -0.63,0.68 -1.13,0.51 -1.06,-0.73 l -12.39,14.42 a 0.43,0.43 0 0 1 -0.73,-0.43 l 4.18,-11.98 a 0.46,0.46 0 0 0 -0.82,-0.39 l -2.66,4.24 a 0.62,0.62 0 0 1 -1.11,-0.12 l -0.25,-0.69 q -0.26,-0.69 -0.79,-0.18 l -4.41,4.23 a 0.6,0.6 0 0 1 -0.98,-0.61 c 0.68,-2.16 2.94,-4.33 1.28,-6.64 l 2.24,-3.5 q 0.26,-0.41 0.01,-0.83 l -0.13,-0.23 q -0.07,-0.11 -0.01,-0.23 l 1.27,-2.97 q 0.54,-1.26 -0.37,-0.24 -1.73,1.94 -2.57,4.44 a 0.99,0.98 3.2 0 1 -0.72,0.64 q -1.55,0.33 -1.7,-0.7 l 2.46,-6.58 30.95,-52.54 q 0.29,-0.49 -0.25,-0.63 -0.24,-0.07 -0.5,0.01 -0.34,0.12 -0.63,0.62 -4.34,7.64 -9.19,14.89 l -1.75,-0.16 q -0.65,-0.06 -0.33,-0.63 l 6.72,-12.1 q 0.23,-0.43 0.03,-0.87 -0.33,-0.73 -1.06,-1.05 z m -23.28,54.86 0.72,0.44 a 0.21,0.21 0 0 0 0.28,-0.07 l 0.06,-0.08 a 51.69,0.53 -58.3 0 0 26.71,-44.26 l -0.17,-0.1 a 51.69,0.53 -58.3 0 0 -27.62,43.7 l -0.05,0.08 a 0.21,0.21 0 0 0 0.07,0.29 z"
+       data-darkreader-inline-fill=""
+       id="path210" />
+    <path
+       fill="#004164"
+       d="m 247.55,216.35 c 7.49,13.29 15.2,26.26 22.18,39.87 6.13,11.95 14.47,24.36 22.61,34.98 2.98,3.89 5.07,7.62 6.18,11.79 q 0.15,0.58 -0.38,0.72 -0.35,0.1 -0.49,-0.24 -1.84,-4.43 -4.95,-8.24 -1.83,-3.98 -5.16,-7.36 a 0.44,0.44 0 0 0 -0.74,0.39 q 1.02,5.34 3.74,10.11 l 0.16,3.46 a 0.34,0.34 0 0 1 -0.63,0.18 c -0.72,-1.21 -1.7,-2.37 -2.3,-3.64 Q 270.6,261.7 251.12,226.2 l -5.79,-10.47 -10.55,-21.24 a 0.36,0.35 17.8 0 1 0.63,-0.32 z"
+       data-darkreader-inline-fill=""
+       id="path212" />
+    <path
+       fill="#00615e"
+       d="m 200.38,251.67 q -0.85,0.4 -1.09,0.21 -0.21,-0.16 0.11,-0.7 c 1.07,-1.85 2.59,-4.98 -0.79,-5.29 l 11.75,-21.6 c 4.22,2.38 8.69,-7.6 10.4,-10.27 q 4.85,-7.25 9.19,-14.89 0.29,-0.5 0.63,-0.62 0.26,-0.08 0.5,-0.01 0.54,0.14 0.25,0.63 z"
+       data-darkreader-inline-fill=""
+       id="path214" />
+    <path
+       fill="#00cba3"
+       d="m 224.37,199.21 q 0.73,0.32 1.06,1.05 0.2,0.44 -0.03,0.87 l -6.72,12.1 q -0.32,0.57 0.33,0.63 l 1.75,0.16 c -1.71,2.67 -6.18,12.65 -10.4,10.27 z"
+       data-darkreader-inline-fill=""
+       id="path216" />
+    <path
+       fill="#00cba3"
+       d="m 205.73,246.83 a 0.21,0.21 0 0 1 -0.07,-0.29 l 0.05,-0.08 a 51.69,0.53 -58.3 0 1 27.62,-43.7 l 0.17,0.1 a 51.69,0.53 -58.3 0 1 -26.71,44.26 l -0.06,0.08 a 0.21,0.21 0 0 1 -0.28,0.07 z"
+       data-darkreader-inline-fill=""
+       id="path218" />
+    <path
+       fill="#009781"
+       d="m 252.8,213.69 q 11.78,23.48 22.72,47.08 c 3.2,6.9 6.36,12.42 10.33,18.34 a 0.65,0.65 0 0 0 1.18,-0.43 c -0.25,-2.26 -1.68,-4.38 -2.31,-6.24 q -1.68,-4.9 -4.1,-9.49 l -1.75,-3.8 q 0.5,-0.72 1.02,-0.68 0.4,0.03 0.71,0.66 4.83,9.91 9.67,20.51 a 0.67,0.67 0 0 0 1.24,-0.48 l -3.36,-10.48 q -0.17,-0.53 0.39,-0.6 1.11,-0.13 1.91,1.23 4.82,8.12 10.3,16.01 l 16.82,27.44 a 0.51,0.51 0 0 0 0.92,-0.43 c -1.64,-4.82 -3.17,-9.15 -5.68,-13.99 q -3.04,-5.88 -5.3,-11.85 -5.48,-10.92 -10.44,-21.74 c -1.71,-3.73 -4.1,-7.3 -4.75,-12.1 q 5.44,12.08 12.83,23.15 a 0.67,0.67 0 0 0 1.13,-0.02 q 0.41,-0.66 0.02,-0.86 -0.3,-0.15 -0.43,-0.47 c -1.26,-3.33 -3.5,-5.21 -4.77,-8.5 q -0.93,-2.37 -2.39,-4.48 c -2.08,-3.01 -4.03,-7.55 -5.41,-10.89 -2.15,-5.2 -5.59,-9.95 -7.69,-15.45 q 3.78,3.25 5.36,7.7 1.03,2.91 2.51,4.91 a 1.4,1.39 30.7 0 1 0.26,1 q -0.22,1.68 1.33,2.39 a 1.24,1.2 -89.1 0 1 0.6,0.64 q 3.95,9.83 6.32,13.23 2.23,3.18 2.78,5.73 a 1.65,1.6 18.7 0 0 0.39,0.76 q 1.43,1.53 1.64,3.55 a 1.15,1.09 26.9 0 0 0.16,0.45 q 6.22,9.52 11.21,19.75 0.23,0.47 0.74,0.62 3.31,1 2.83,-0.78 4.73,8.05 6.94,12.63 4.65,9.64 -1.67,1 -4.11,-5.62 -8.75,-10.76 -2.55,-2.81 -1.51,0.84 c 2.95,10.42 8.32,20.28 10.71,30.28 a 0.68,0.67 15.6 0 1 -1.13,0.63 q -6.35,-6.26 -11,-14 c -1.17,-1.94 -3.02,-3.21 -4.29,-5 q -2.45,-9.09 -9.08,-15.87 a 0.08,0.08 0 0 0 -0.14,0.07 l 6.71,27.44 q 0.04,0.16 0.21,0.16 0.13,0 0.27,0 a 0.23,0.23 0 0 0 0.22,-0.29 q -1.39,-4.97 0.31,-9.37 l 2.36,15.09 a 0.58,0.58 0 0 1 -0.62,0.66 q -0.46,-0.04 -0.89,-0.7 -3.69,-5.68 -9.32,-10.21 -2.03,-1.84 -2.87,-5.62 -0.23,-1.05 0.74,-0.6 l 1.14,0.52 a 0.59,0.59 0 0 0 0.71,-0.9 q -5.64,-7.25 -8.09,-15.85 3.11,3.81 4.95,8.24 0.14,0.34 0.49,0.24 0.53,-0.14 0.38,-0.72 c -1.11,-4.17 -3.2,-7.9 -6.18,-11.79 -8.14,-10.62 -16.48,-23.03 -22.61,-34.98 -6.98,-13.61 -14.69,-26.58 -22.18,-39.87 q 2.37,1 2.46,2.83 0.03,0.68 0.65,0.4 l 1.29,-0.59 q 0.53,-0.24 0.27,-0.77 c -2.24,-4.47 -5.36,-9.53 -6.33,-14.35 a 0.6,0.6 0 0 1 1.07,-0.48 q 4.17,5.47 5.84,10.3 z"
+       data-darkreader-inline-fill=""
+       id="path220" />
+    <path
+       fill="#00615e"
+       d="m 285.61,235.13 c 2.1,5.5 5.54,10.25 7.69,15.45 1.38,3.34 3.33,7.88 5.41,10.89 q 1.46,2.11 2.39,4.48 c 1.27,3.29 3.51,5.17 4.77,8.5 q 0.13,0.32 0.43,0.47 0.39,0.2 -0.02,0.86 a 0.67,0.67 0 0 1 -1.13,0.02 q -7.39,-11.07 -12.83,-23.15 -1.72,-3.98 -3.84,-7.86 c -7.75,-14.21 -12.61,-25.96 -18.01,-36.54 a 0.35,0.35 0 0 1 0.41,-0.5 q 0.68,0.2 1.2,1.18 6.89,13.15 13.53,26.2 z"
+       data-darkreader-inline-fill=""
+       id="path222" />
+    <path
+       fill="#009781"
+       d="m 235.08,220.64 a 0.6,0.6 0 0 1 1.01,0.54 q -2.04,9.99 -9.5,16.82 a 0.48,0.47 -25.4 0 1 -0.79,-0.28 l -0.33,-2.21 q -0.07,-0.48 0.14,-0.93 c 2.07,-4.21 6.08,-10.51 9.47,-13.94 z"
+       data-darkreader-inline-fill=""
+       id="path224" />
+    <path
+       fill="#00615e"
+       d="m 224.11,258.1 q -1.24,0.63 -1.59,1.19 -4.63,7.36 -9.67,14.45 -0.32,0.44 -0.59,-0.02 -0.09,-0.15 -0.1,-0.32 -0.01,-0.13 0.1,-0.3 3.81,-5.78 6.32,-13.08 -0.07,1.24 1.06,0.73 0.46,-0.21 0.63,-0.68 1.53,-4.08 4.47,-7.17 8.25,-12.31 16.65,-24.47 1.71,-2.48 2.61,-5.32 a 0.33,0.32 -51.6 0 1 0.59,-0.07 l 1.94,3.34 q 0.3,0.53 -0.14,0.96 -7.22,7.07 -9.16,10.12 -5.98,9.39 -12.57,18.37 c -0.46,0.63 -0.67,1.57 -0.55,2.27 z"
+       data-darkreader-inline-fill=""
+       id="path226" />
+    <path
+       fill="#009781"
+       d="m 251.12,226.2 q 19.48,35.5 36.65,72.17 c 0.6,1.27 1.58,2.43 2.3,3.64 a 0.34,0.34 0 0 0 0.63,-0.18 l -0.16,-3.46 q 4.62,11.77 9.3,23.46 c 0.59,1.45 0.89,3.24 1.22,4.78 0.33,1.59 1.26,2.44 1.94,3.89 a 0.62,0.6 62.1 0 1 -0.23,0.78 l -1.88,1.18 c -4.36,-8.59 -8.27,-17.62 -12.8,-25.83 q -3.91,-7.09 -7.76,-14.21 c -6.41,-11.86 -13.33,-26.8 -18.87,-36.68 -4.45,-7.97 -8.2,-16.12 -11.82,-24.17 q 0.61,0.12 0.91,-0.11 0.39,-0.29 0.2,-0.74 l -0.77,-1.81 q -0.19,-0.45 0.21,-0.75 0.84,-0.63 0.93,-1.96 z"
+       data-darkreader-inline-fill=""
+       id="path228" />
+    <path
+       fill="#2cffaa"
+       d="m 278.87,259.15 1.75,3.8 -0.88,0.65 q -0.46,0.34 -0.76,-0.14 c -2.07,-3.27 -3.45,-7.69 -4.66,-10.29 q -2.44,-5.31 -4.85,-10.64 -0.62,-1.37 0.3,-2.12 0.47,-0.39 0.72,0.17 z"
+       data-darkreader-inline-fill=""
+       id="path230" />
+    <path
+       fill="#009781"
+       d="m 198.61,245.89 c 3.38,0.31 1.86,3.44 0.79,5.29 q -0.32,0.54 -0.11,0.7 0.24,0.19 1.09,-0.21 l -2.46,6.58 -1.92,4.21 -2.37,0.48 q -0.69,0.14 -0.33,-0.46 2.55,-4.25 4.04,-9 0.28,-0.9 -0.49,-0.37 l -2.4,1.61 a 0.33,0.33 0 0 1 -0.48,-0.43 z"
+       data-darkreader-inline-fill=""
+       id="path232" />
+    <path
+       fill="#00cba3"
+       d="m 199.9,261.87 -6.58,9.76 a 0.48,0.47 -17.9 0 1 -0.84,-0.43 c 0.89,-2.4 3.55,-6.62 3.52,-8.74 l 1.92,-4.21 q 0.15,1.03 1.7,0.7 a 0.99,0.98 3.2 0 0 0.72,-0.64 q 0.84,-2.5 2.57,-4.44 0.91,-1.02 0.37,0.24 l -1.27,2.97 q -0.06,0.12 0.01,0.23 l 0.13,0.23 q 0.25,0.42 -0.01,0.83 z"
+       data-darkreader-inline-fill=""
+       id="path234" />
+    <path
+       fill="#00cba3"
+       d="m 292.7,295.23 q 2.45,8.6 8.09,15.85 a 0.59,0.59 0 0 1 -0.71,0.9 l -1.14,-0.52 q -0.97,-0.45 -0.74,0.6 0.84,3.78 2.87,5.62 l 9.39,25.14 q 0.23,0.61 -0.41,0.46 c -4.4,-1.03 -6.97,-6.23 -9.16,-10.82 l 1.88,-1.18 A 0.62,0.6 62.1 0 0 303,330.5 c -0.68,-1.45 -1.61,-2.3 -1.94,-3.89 -0.33,-1.54 -0.63,-3.33 -1.22,-4.78 q -4.68,-11.69 -9.3,-23.46 -2.72,-4.77 -3.74,-10.11 a 0.44,0.44 0 0 1 0.74,-0.39 q 3.33,3.38 5.16,7.36 z"
+       data-darkreader-inline-fill=""
+       id="path236" />
+    <path
+       fill="#004164"
+       d="m 311.04,310.7 q -1.32,-0.34 -1.5,2.14 -1.7,4.4 -0.31,9.37 a 0.23,0.23 0 0 1 -0.22,0.29 q -0.14,0 -0.27,0 -0.17,0 -0.21,-0.16 l -6.71,-27.44 a 0.08,0.08 0 0 1 0.14,-0.07 q 6.63,6.78 9.08,15.87 z"
+       data-darkreader-inline-fill=""
+       id="path238" />
+  </g>
+  <circle
+     style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.25;stroke-linecap:square;stroke-linejoin:round;stroke-opacity:1"
+     id="path840"
+     cx="5"
+     cy="5"
+     r="4" />
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/PipxInterface/icons/pipxOutdated96.svg	Mon Jul 29 11:37:20 2024 +0200
@@ -0,0 +1,701 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   viewBox="0 0 96 96"
+   version="1.1"
+   id="svg240"
+   sodipodi:docname="pipxOutdated96.svg"
+   width="96"
+   height="96"
+   inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg">
+  <defs
+     id="defs244" />
+  <sodipodi:namedview
+     id="namedview242"
+     pagecolor="#ffffff"
+     bordercolor="#000000"
+     borderopacity="0.25"
+     inkscape:showpageshadow="2"
+     inkscape:pageopacity="0.0"
+     inkscape:pagecheckerboard="0"
+     inkscape:deskcolor="#d1d1d1"
+     showgrid="false"
+     inkscape:zoom="11.411111"
+     inkscape:cx="72.07887"
+     inkscape:cy="47.760467"
+     inkscape:window-width="2580"
+     inkscape:window-height="1321"
+     inkscape:window-x="860"
+     inkscape:window-y="59"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="svg240" />
+  <g
+     id="g1922"
+     transform="matrix(0.50929588,0,0,0.25601414,-91.325253,2.1078868)">
+    <g
+       stroke-width="2"
+       fill="none"
+       stroke-linecap="butt"
+       id="g152">
+      <path
+         stroke="#009681"
+         vector-effect="non-scaling-stroke"
+         d="m 335.85,47.21 1.3,-0.17 a 0.4,0.4 0 0 1 0.41,0.58 q -1.09,2.18 -2.89,4.51 -4.61,5.96 -7.79,12.65"
+         data-darkreader-inline-stroke=""
+         id="path2" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="m 326.88,64.78 c -3.12,3.42 -2.04,4.67 -2.72,8.41 q -0.98,5.4 -3.65,10.07 c -8.15,14.26 -16.52,28.07 -24.39,42.84 q -0.22,0.41 -0.09,0.74 a 0.33,0.33 0 0 0 0.6,0.03 q 2.94,-5.5 7.15,-10.08 0.69,-0.74 1.54,-0.48 a 0.71,0.7 -73.7 0 1 0.47,0.87 c -0.88,3.1 -1.36,5.99 -3,8.8 -3.53,6 -6.88,11.2 -10.77,17.84 -2.27,3.89 -5.43,7.41 -7.4,11.37 q -1.19,2.39 -2.4,4.81"
+         data-darkreader-inline-stroke=""
+         id="path4" />
+      <path
+         stroke="#008684"
+         vector-effect="non-scaling-stroke"
+         d="m 282.22,160 -16.39,25.87"
+         data-darkreader-inline-stroke=""
+         id="path6" />
+      <path
+         stroke="#009681"
+         vector-effect="non-scaling-stroke"
+         d="m 265.83,185.87 q 0.03,0.58 -0.53,0.91"
+         data-darkreader-inline-stroke=""
+         id="path8" />
+      <path
+         stroke="#17e5bd"
+         vector-effect="non-scaling-stroke"
+         d="m 265.3,186.78 q -0.67,-0.05 -1.27,-1.79"
+         data-darkreader-inline-stroke=""
+         id="path10" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 264.03,184.99 q 1.56,-2.13 1.93,-3.98 0.1,-0.5 0.42,-0.89 c 1.33,-1.61 2.54,-2.35 3.56,-4.25 q 1.6,-3 3.57,-5.77 c 2.29,-3.23 3.64,-6.85 5.91,-10.15 q 0.29,-0.43 0.25,-0.94 -0.34,-3.98 0.29,-5.03 c 1.31,-2.17 4.43,-7.2 4.24,-9.66 -0.13,-1.76 -0.26,-2.91 0.78,-4.51 q 5.13,-7.87 8.66,-16.52 c 3.39,-8.32 8.7,-15.56 14.29,-23.65 q 5.43,-7.85 11.64,-18.82 1.84,-3.26 2.02,-6.1 a 0.61,0.61 0 0 0 -0.86,-0.59 q -2.81,1.28 -4.82,4.8 -2.92,5.11 -11.83,18.4 -0.25,0.37 -0.99,0.17 -0.39,-0.11 -0.2,-0.47 5.22,-9.55 10.56,-19.03 c 1.91,-3.37 5.66,-3.94 7.66,-7.26 q 1.57,-2.62 1.68,-2.77 4.58,-6.41 7.65,-13.7 a 1.6,1.5 -10.4 0 1 0.42,-0.57 q 0.78,-0.66 0.9,-1.59 a 0.54,0.53 -73.1 0 0 -0.29,-0.55 l -1.44,-0.75 q -0.54,-0.29 -0.32,-0.85 0.88,-2.26 3.05,-3.83"
+         data-darkreader-inline-stroke=""
+         id="path12" />
+      <path
+         stroke="#007c70"
+         vector-effect="non-scaling-stroke"
+         d="m 337.94,63.81 q -4.05,2.41 -5.68,7.05 c -3.56,10.2 -9.19,17.66 -16.17,25.65 a 0.31,0.31 0 0 1 -0.52,-0.33 c 1.83,-4.13 4.91,-7.99 6.52,-12.12 0.9,-2.32 2.59,-3.74 3.17,-6.07 q 1.64,-6.54 1.62,-13.21"
+         data-darkreader-inline-stroke=""
+         id="path14" />
+      <path
+         stroke="#006c73"
+         vector-effect="non-scaling-stroke"
+         d="m 332.58,74.47 q 0.48,0.38 0.48,1.15 0,0.51 -0.4,1.11 c -5.26,8.06 -10.96,15.81 -14.89,24.74 q -4.29,9.76 -9.35,19.14 c -4.14,7.68 -10.19,15.66 -15.15,23.68 q -2.14,3.45 -11.05,15.71"
+         data-darkreader-inline-stroke=""
+         id="path16" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 327.44,45.54 -8.93,12.66 q -0.24,0.34 0.13,0.52 0.28,0.15 0.47,-0.09 4.95,-6.2 8.91,-13.15"
+         data-darkreader-inline-stroke=""
+         id="path18" />
+      <path
+         stroke="#2dffc0"
+         vector-effect="non-scaling-stroke"
+         d="m 264.03,184.99 -3.18,-5.71 q -0.23,-0.41 -0.61,-0.7 -0.77,-0.58 -0.94,-1.14 -1.04,-3.53 -3.02,-6.54 c -1.33,-2.02 -2,-4.03 -3.12,-6.09"
+         data-darkreader-inline-stroke=""
+         id="path20" />
+      <path
+         stroke="#16b084"
+         vector-effect="non-scaling-stroke"
+         d="m 253.16,164.81 q 1.5,-0.07 1.36,-1.02 c 2.45,-4.09 4.67,-8.45 7.08,-12.36 q 9.7,-15.76 16.57,-30.26 3.5,-7.4 5.72,-11.18 0.14,-0.24 -0.13,-0.24 -0.13,0 -0.27,-0.02 -0.3,-0.05 -0.45,0.21 l -15.31,27.04"
+         data-darkreader-inline-stroke=""
+         id="path22" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 267.73,136.98 q -3.56,2.21 -5.47,6.13 -0.36,0.74 -0.87,1.08 a 0.75,0.75 0 0 1 -1.06,-1.02 c 2.35,-3.89 8.86,-13.69 9.2,-17.96 a 0.7,0.7 0 0 0 -1.32,-0.39 q -1.69,3.13 -3.64,6.39 -0.53,0.9 -1.09,1.16 -1.06,0.48 -1.79,-0.71"
+         data-darkreader-inline-stroke=""
+         id="path24" />
+      <path
+         stroke="#005161"
+         vector-effect="non-scaling-stroke"
+         d="m 326.81,90.75 q -6.67,7.48 -8.12,11.18 -4.91,12.59 -12.46,24.84 -15.56,25.23 -29.72,46.65 c -2.77,4.2 -5.58,9.64 -8.79,14.34 a 0.9,0.9 0 0 1 -1.63,-0.36 l -0.26,-1.53"
+         data-darkreader-inline-stroke=""
+         id="path26" />
+      <path
+         stroke="#17e5bd"
+         vector-effect="non-scaling-stroke"
+         d="m 248.92,155.68 3.93,7.59"
+         data-darkreader-inline-stroke=""
+         id="path28" />
+      <path
+         stroke="#17b09a"
+         vector-effect="non-scaling-stroke"
+         d="m 252.85,163.27 q -0.17,0.63 0.31,1.54"
+         data-darkreader-inline-stroke=""
+         id="path30" />
+      <path
+         stroke="#17e5bd"
+         vector-effect="non-scaling-stroke"
+         d="m 269.75,195.74 -0.01,1.18 a 0.6,0.6 0 0 1 -1.11,0.3 l -1.84,-3.03"
+         data-darkreader-inline-stroke=""
+         id="path32" />
+      <path
+         stroke="#2dffc0"
+         vector-effect="non-scaling-stroke"
+         d="M 266.79,194.19 249.32,164.11"
+         data-darkreader-inline-stroke=""
+         id="path34" />
+      <path
+         stroke="#17e5bd"
+         vector-effect="non-scaling-stroke"
+         d="M 249.32,164.11 236.7,141.34 q -0.2,-0.38 -0.51,-0.08 l -0.21,0.22 q -0.3,0.3 -0.11,0.68 11.9,24.81 23.16,49.91 2,4.46 4.72,9.7 2.41,4.67 4.84,9.66"
+         data-darkreader-inline-stroke=""
+         id="path36" />
+      <path
+         stroke="#2dffc0"
+         vector-effect="non-scaling-stroke"
+         d="m 268.59,211.43 q -2.22,0.97 -5.42,-3.57"
+         data-darkreader-inline-stroke=""
+         id="path38" />
+      <path
+         stroke="#17e5bd"
+         vector-effect="non-scaling-stroke"
+         d="m 263.17,207.86 -9.95,-15.59"
+         data-darkreader-inline-stroke=""
+         id="path40" />
+      <path
+         stroke="#2dffc0"
+         vector-effect="non-scaling-stroke"
+         d="m 253.22,192.27 1.29,-2.4 q 0.23,-0.44 0.01,-0.88 L 237.13,154.1 q -0.13,-0.26 -0.13,-0.55 0,-0.15 0,-0.31 0,-0.45 -0.26,-0.82 c -1.73,-2.41 -2.89,-5.22 -5.74,-8.16 q -1.75,-1.81 -2.99,-3.93 -4.77,-8.15 -10.8,-15.72 a 0.35,0.35 0 0 0 -0.59,0.36 l 3.26,7.43"
+         data-darkreader-inline-stroke=""
+         id="path42" />
+      <path
+         stroke="#17e5bd"
+         vector-effect="non-scaling-stroke"
+         d="m 219.88,132.4 q 0.12,1.8 0.69,3.04 6.81,14.96 13.72,29.77"
+         data-darkreader-inline-stroke=""
+         id="path44" />
+      <path
+         stroke="#2dffc0"
+         vector-effect="non-scaling-stroke"
+         d="m 234.29,165.21 q 0.31,2.77 1.46,5.32 4.15,9.23 6.67,19.04 c 0.59,2.28 1.36,4.24 2.25,6.41 a 0.61,0.61 0 0 1 -0.98,0.68 c -4.39,-4.08 -5.52,-8.47 -8.7,-13.17 q -0.97,-1.45 -2.18,-3.8 -9.23,-18.04 -16.96,-37.21 a 0.97,0.93 43.7 0 1 -0.03,-0.64 q 0.4,-1.29 1.07,-0.5 3.09,3.64 5.46,7.77 0.38,0.66 1.11,0.61 a 0.39,0.39 0 0 0 0.29,-0.61 c -2.26,-3.38 -3.32,-7.08 -4.62,-10.33 q -5.2,-13 -10.07,-26.14 -0.33,-0.9 -0.79,-0.06 -0.47,0.85 -0.26,1.9 a 0.55,0.55 0 0 1 -0.41,0.64 l -1.47,0.36 a 1.03,1.03 0 0 0 -0.61,1.58 q 2.83,4.17 3.14,8.98 c 0.29,4.49 2.89,9.28 4.47,13.51 1.03,2.78 3.18,6 3.95,9.46 2.76,12.31 10.56,22.62 15.18,34.19 a 0.83,0.83 0 0 1 -0.96,1.12 q -2.53,-0.61 -5.23,-3.96"
+         data-darkreader-inline-stroke=""
+         id="path46" />
+      <path
+         stroke="#17e5bd"
+         vector-effect="non-scaling-stroke"
+         d="m 226.07,180.36 c -3.32,-9.06 -7.17,-18.09 -11.9,-26.71 -3.92,-7.17 -7.1,-15.55 -12.72,-26.57 q -0.24,-0.46 -0.73,-0.3 l -1.87,0.6"
+         data-darkreader-inline-stroke=""
+         id="path48" />
+      <path
+         stroke="#005161"
+         vector-effect="non-scaling-stroke"
+         d="m 328.43,108.4 -3,3.52 q -0.18,0.21 -0.37,0.01 l -0.21,-0.21 q -0.16,-0.16 -0.05,-0.36 l 1.65,-2.93 a 0.36,0.36 0 0 0 -0.53,-0.47 q -7.74,5.63 -6.17,15.31 0.05,0.33 0.27,0.08 c 2.33,-2.65 6.27,-4.23 8.12,-6.52 0.71,-0.87 1.81,-1.59 1.97,-2.63 q 0.16,-1.03 -0.87,-1.5 -0.48,-0.22 -0.47,-0.75 l 0.11,-3.54"
+         data-darkreader-inline-stroke=""
+         id="path50" />
+      <path
+         stroke="#009681"
+         vector-effect="non-scaling-stroke"
+         d="m 270.45,196.25 -0.7,-0.51"
+         data-darkreader-inline-stroke=""
+         id="path52" />
+      <path
+         stroke="#17b09a"
+         vector-effect="non-scaling-stroke"
+         d="m 269.75,195.74 -4.45,-8.96"
+         data-darkreader-inline-stroke=""
+         id="path54" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 316.76,51.88 c -2.92,6.4 -6.41,13.46 -11.44,18.36 q -4.22,4.11 -7.09,9.32 -0.17,0.32 -0.41,0.41 -0.23,0.09 -0.45,0.05 -0.52,-0.1 -0.3,-0.58 l 7.07,-15.37 a 0.44,0.43 -4.5 0 0 -0.64,-0.54 c -1.84,1.22 -2.47,3.62 -4.99,3.45"
+         data-darkreader-inline-stroke=""
+         id="path56" />
+      <path
+         stroke="#009681"
+         vector-effect="non-scaling-stroke"
+         d="m 252.85,163.27 c 3.97,-6.81 7.79,-13.71 11.95,-20.42 q 1.73,-2.78 2.93,-5.87"
+         data-darkreader-inline-stroke=""
+         id="path58" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 263.17,207.86 q 0.22,0.86 0.02,1.29 -0.28,0.6 -0.64,0.05 -3.03,-4.45 -5.79,-9.07 c -2.03,-3.38 -4.8,-6.38 -7.15,-9.71 a 0.88,0.88 0 0 0 -1.54,0.84 q 3.52,8.69 7.77,17.6 c 2.23,4.68 5.75,8.88 7.88,13.08 2.21,4.36 10.02,22.02 13.66,23.65 q 0.47,0.21 0.75,0.64 c 9.69,14.9 16.13,24.73 22.62,39.09"
+         data-darkreader-inline-stroke=""
+         id="path60" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="m 300.75,285.32 q -5.48,-7.89 -10.3,-16.01 -0.8,-1.36 -1.91,-1.23 -0.56,0.07 -0.39,0.6 l 3.36,10.48 a 0.67,0.67 0 0 1 -1.24,0.48 q -4.84,-10.6 -9.67,-20.51 -0.31,-0.63 -0.71,-0.66 -0.52,-0.04 -1.02,0.68"
+         data-darkreader-inline-stroke=""
+         id="path62" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 278.87,259.15 -8.38,-18.57 q -0.25,-0.56 -0.72,-0.17 -0.92,0.75 -0.3,2.12 2.41,5.33 4.85,10.64 c 1.21,2.6 2.59,7.02 4.66,10.29 q 0.3,0.48 0.76,0.14 l 0.88,-0.65"
+         data-darkreader-inline-stroke=""
+         id="path64" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="m 280.62,262.95 q 2.42,4.59 4.1,9.49 c 0.63,1.86 2.06,3.98 2.31,6.24 a 0.65,0.65 0 0 1 -1.18,0.43 c -3.97,-5.92 -7.13,-11.44 -10.33,-18.34 q -10.94,-23.6 -22.72,-47.08"
+         data-darkreader-inline-stroke=""
+         id="path66" />
+      <path
+         stroke="#009681"
+         vector-effect="non-scaling-stroke"
+         d="m 241.82,179.47 q 0.42,0.49 1.09,0.09 a 1,0.99 -30.2 0 0 0.36,-1.34 l -6.98,-12.72 a 0.61,0.61 0 0 0 -0.82,-0.25 q -0.37,0.2 -0.68,0.61"
+         data-darkreader-inline-stroke=""
+         id="path68" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 249.32,164.11 q 2.02,9.7 7.26,18.66"
+         data-darkreader-inline-stroke=""
+         id="path70" />
+      <path
+         stroke="#17e5bd"
+         vector-effect="non-scaling-stroke"
+         d="m 256.58,182.77 6.34,12.8"
+         data-darkreader-inline-stroke=""
+         id="path72" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 262.92,195.57 q 2.44,5.33 4.93,10.64 0.17,0.35 0.43,0.47 0.34,0.15 0.75,0.05 0.48,-0.11 0.27,-0.55 l -1.4,-3.02 q -0.17,-0.35 0.12,-0.62 l 0.62,-0.55 q 0.36,-0.32 0.14,-0.76 l -3.11,-6.14 q -0.24,-0.47 0.28,-0.55 0.48,-0.08 0.84,-0.35"
+         data-darkreader-inline-stroke=""
+         id="path74" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="m 321.74,295.08 q 0.48,1.78 -2.83,0.78 -0.51,-0.15 -0.74,-0.62 -4.99,-10.23 -11.21,-19.75 a 1.15,1.09 26.9 0 1 -0.16,-0.45 q -0.21,-2.02 -1.64,-3.55 a 1.65,1.6 18.7 0 1 -0.39,-0.76 q -0.55,-2.55 -2.78,-5.73 -2.37,-3.4 -6.32,-13.23 a 1.24,1.2 -89.1 0 0 -0.6,-0.64 q -1.55,-0.71 -1.33,-2.39 a 1.4,1.39 30.7 0 0 -0.26,-1 q -1.48,-2 -2.51,-4.91 -1.58,-4.45 -5.36,-7.7"
+         data-darkreader-inline-stroke=""
+         id="path76" />
+      <path
+         stroke="#009681"
+         vector-effect="non-scaling-stroke"
+         d="m 285.61,235.13 q -6.64,-13.05 -13.53,-26.2 -0.52,-0.98 -1.2,-1.18 a 0.35,0.35 0 0 0 -0.41,0.5 c 5.4,10.58 10.26,22.33 18.01,36.54 q 2.12,3.88 3.84,7.86"
+         data-darkreader-inline-stroke=""
+         id="path78" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="m 292.32,252.65 c 0.65,4.8 3.04,8.37 4.75,12.1 q 4.96,10.82 10.44,21.74"
+         data-darkreader-inline-stroke=""
+         id="path80" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 307.51,286.49 c -2.69,-1.57 -2.88,-3.95 -4.72,-6.31 -1.27,-1.62 -2.31,-4.64 -2.92,-5.8 q -4.53,-8.61 -8.2,-17.63 c -0.74,-1.8 -2.25,-3.42 -2.97,-4.95 q -9.75,-20.52 -20.11,-40.37"
+         data-darkreader-inline-stroke=""
+         id="path82" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 234.29,165.21 q 0.8,0.56 0.5,0.65"
+         data-darkreader-inline-stroke=""
+         id="path84" />
+      <path
+         stroke="#16b084"
+         vector-effect="non-scaling-stroke"
+         d="m 234.79,165.86 7.03,13.61"
+         data-darkreader-inline-stroke=""
+         id="path86" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 241.82,179.47 q -0.26,1.71 0.12,2.53 8.95,19.14 17.23,38.59 0.28,0.66 -0.43,0.66 h -0.45 q -0.55,0 -0.85,-0.46 l -4.64,-7.1"
+         data-darkreader-inline-stroke=""
+         id="path88" />
+      <path
+         stroke="#16cb96"
+         vector-effect="non-scaling-stroke"
+         d="m 252.8,213.69 q -1.67,-4.83 -5.84,-10.3 a 0.6,0.6 0 0 0 -1.07,0.48 c 0.97,4.82 4.09,9.88 6.33,14.35 q 0.26,0.53 -0.27,0.77 l -1.29,0.59 q -0.62,0.28 -0.65,-0.4 -0.09,-1.83 -2.46,-2.83"
+         data-darkreader-inline-stroke=""
+         id="path90" />
+      <path
+         stroke="#16a087"
+         vector-effect="non-scaling-stroke"
+         d="m 247.55,216.35 -12.14,-22.18 a 0.36,0.35 17.8 0 0 -0.63,0.32 l 10.55,21.24"
+         data-darkreader-inline-stroke=""
+         id="path92" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 245.33,215.73 q -0.03,0.85 -0.77,0.98 -0.51,0.1 -0.77,-0.35 c -6.91,-11.85 -11.8,-22.6 -17.72,-36"
+         data-darkreader-inline-stroke=""
+         id="path94" />
+      <path
+         stroke="#008684"
+         vector-effect="non-scaling-stroke"
+         d="m 245.33,215.73 5.79,10.47"
+         data-darkreader-inline-stroke=""
+         id="path96" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="m 251.12,226.2 q -0.09,1.33 -0.93,1.96 -0.4,0.3 -0.21,0.75 l 0.77,1.81 q 0.19,0.45 -0.2,0.74 -0.3,0.23 -0.91,0.11"
+         data-darkreader-inline-stroke=""
+         id="path98" />
+      <path
+         stroke="#009681"
+         vector-effect="non-scaling-stroke"
+         d="m 224.11,258.1 c -0.12,-0.7 0.09,-1.64 0.55,-2.27 q 6.59,-8.98 12.57,-18.37 1.94,-3.05 9.16,-10.12 0.44,-0.43 0.14,-0.96 l -1.94,-3.34 a 0.33,0.32 -51.6 0 0 -0.59,0.07 q -0.9,2.84 -2.61,5.32 -8.4,12.16 -16.65,24.47"
+         data-darkreader-inline-stroke=""
+         id="path100" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 224.74,252.9 q 0.11,-4.18 2.04,-6.86 6.87,-9.5 10.2,-15.5 a 1.15,1.12 -86.9 0 1 0.5,-0.46 q 0.86,-0.4 0.98,-1.73 a 1.48,1.13 -34.5 0 0 -2.57,-0.13 q -9.44,16.52 -22.15,30.75 -0.67,0.76 -1.06,-0.18 l -0.39,-0.95 a 0.49,0.48 62.8 0 0 -0.7,-0.23 q -1.32,0.83 -1.73,2.31 -0.19,0.7 -0.83,0.35 l -0.66,-0.35 a 0.66,0.66 0 0 1 -0.25,-0.93 l 10.39,-16.96 a 0.16,0.16 0 0 0 -0.09,-0.24 q -0.77,-0.22 -0.73,0.51 0.03,0.7 -0.64,0.52 l -0.77,-0.2 q -0.58,-0.15 -0.31,-0.68 1.59,-3.11 2.46,-4.26 c 4.73,-6.24 8.97,-12.51 14.32,-18.52 q 3.2,-3.59 5.91,-7.27 a 1.8,1.77 -40.5 0 0 0.16,-1.86 q -4.45,-8.83 -8.65,-17.46 -0.33,-0.68 -1.16,-0.6"
+         data-darkreader-inline-stroke=""
+         id="path102" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 253.22,192.27 c -4.17,-7.09 -7.35,-12.64 -12.09,-21.43 -3.48,-6.47 -7.97,-13 -10.43,-20.61 a 1.04,1.03 1.9 0 0 -0.6,-0.64 c -2,-0.79 -1,-3.34 -2.87,-4.82 a 1.92,1.89 8.6 0 1 -0.6,-0.8 q -2.45,-6.22 -6.75,-11.57"
+         data-darkreader-inline-stroke=""
+         id="path104" />
+      <path
+         stroke="#2dffc0"
+         vector-effect="non-scaling-stroke"
+         d="m 262.92,195.57 q 1.34,-0.1 1.54,-0.99 0.13,-0.55 -0.4,-1.44 -3.15,-5.37 -5.83,-10.71 a 0.97,0.97 0 0 0 -1.42,-0.36 q -0.49,0.34 -0.23,0.7"
+         data-darkreader-inline-stroke=""
+         id="path106" />
+      <path
+         stroke="#16cb96"
+         vector-effect="non-scaling-stroke"
+         d="m 307.51,286.49 q 2.26,5.97 5.3,11.85 c 2.51,4.84 4.04,9.17 5.68,13.99 a 0.51,0.51 0 0 1 -0.92,0.43 l -16.82,-27.44"
+         data-darkreader-inline-stroke=""
+         id="path108" />
+      <path
+         stroke="#007c70"
+         vector-effect="non-scaling-stroke"
+         d="m 336.2,86.9 -6.81,6.88 a 0.53,0.52 54.8 0 1 -0.85,-0.15 q -0.12,-0.26 -0.09,-0.65"
+         data-darkreader-inline-stroke=""
+         id="path110" />
+      <path
+         stroke="#16cb96"
+         vector-effect="non-scaling-stroke"
+         d="m 280.62,262.95 -1.75,-3.8"
+         data-darkreader-inline-stroke=""
+         id="path112" />
+      <path
+         stroke="#007c70"
+         vector-effect="non-scaling-stroke"
+         d="m 292.32,252.65 q 5.44,12.08 12.83,23.15 a 0.67,0.67 0 0 0 1.13,-0.02 q 0.41,-0.66 0.02,-0.86 -0.3,-0.15 -0.43,-0.47 c -1.26,-3.33 -3.5,-5.21 -4.77,-8.5 q -0.93,-2.37 -2.39,-4.48 c -2.08,-3.01 -4.03,-7.55 -5.41,-10.89 -2.15,-5.2 -5.59,-9.95 -7.69,-15.45"
+         data-darkreader-inline-stroke=""
+         id="path114" />
+      <path
+         stroke="#006c73"
+         vector-effect="non-scaling-stroke"
+         d="m 311.04,310.7 q -2.45,-9.09 -9.08,-15.87 a 0.08,0.08 0 0 0 -0.14,0.07 l 6.71,27.44 q 0.04,0.16 0.21,0.16 0.13,0 0.27,0 a 0.23,0.23 0 0 0 0.22,-0.29 q -1.39,-4.97 0.31,-9.37"
+         data-darkreader-inline-stroke=""
+         id="path116" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="m 301.07,317.68 q -2.03,-1.84 -2.87,-5.62 -0.23,-1.05 0.74,-0.6 l 1.14,0.52 a 0.59,0.59 0 0 0 0.71,-0.9 q -5.64,-7.25 -8.09,-15.85"
+         data-darkreader-inline-stroke=""
+         id="path118" />
+      <path
+         stroke="#006c73"
+         vector-effect="non-scaling-stroke"
+         d="m 247.55,216.35 c 7.49,13.29 15.2,26.26 22.18,39.87 6.13,11.95 14.47,24.36 22.61,34.98 2.98,3.89 5.07,7.62 6.18,11.79 q 0.15,0.58 -0.38,0.72 -0.35,0.1 -0.49,-0.24 -1.84,-4.43 -4.95,-8.24"
+         data-darkreader-inline-stroke=""
+         id="path120" />
+      <path
+         stroke="#008684"
+         vector-effect="non-scaling-stroke"
+         d="m 292.7,295.23 q -1.83,-3.98 -5.16,-7.36 a 0.44,0.44 0 0 0 -0.74,0.39 q 1.02,5.34 3.74,10.11"
+         data-darkreader-inline-stroke=""
+         id="path122" />
+      <path
+         stroke="#006c73"
+         vector-effect="non-scaling-stroke"
+         d="m 290.54,298.37 0.16,3.46 a 0.34,0.34 0 0 1 -0.63,0.18 c -0.72,-1.21 -1.7,-2.37 -2.3,-3.64 Q 270.6,261.7 251.12,226.2"
+         data-darkreader-inline-stroke=""
+         id="path124" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="m 290.54,298.37 q 4.62,11.77 9.3,23.46 c 0.59,1.45 0.89,3.24 1.22,4.78 0.33,1.59 1.26,2.44 1.94,3.89 a 0.62,0.6 62.1 0 1 -0.23,0.78 l -1.88,1.18"
+         data-darkreader-inline-stroke=""
+         id="path126" />
+      <path
+         stroke="#16b084"
+         vector-effect="non-scaling-stroke"
+         d="m 224.74,252.9 q -2.94,3.09 -4.47,7.17 -0.17,0.47 -0.63,0.68 -1.13,0.51 -1.06,-0.73"
+         data-darkreader-inline-stroke=""
+         id="path128" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 199.9,261.87 2.24,-3.5 q 0.26,-0.41 0.01,-0.83 l -0.13,-0.23 q -0.07,-0.11 -0.01,-0.23 l 1.27,-2.97 q 0.54,-1.26 -0.37,-0.24 -1.73,1.94 -2.57,4.44 a 0.99,0.98 3.2 0 1 -0.72,0.64 q -1.55,0.33 -1.7,-0.7"
+         data-darkreader-inline-stroke=""
+         id="path130" />
+      <path
+         stroke="#16cb96"
+         vector-effect="non-scaling-stroke"
+         d="m 197.92,258.25 2.46,-6.58"
+         data-darkreader-inline-stroke=""
+         id="path132" />
+      <path
+         stroke="#16b084"
+         vector-effect="non-scaling-stroke"
+         d="m 200.38,251.67 30.95,-52.54 q 0.29,-0.49 -0.25,-0.63 -0.24,-0.07 -0.5,0.01 -0.34,0.12 -0.63,0.62 -4.34,7.64 -9.19,14.89"
+         data-darkreader-inline-stroke=""
+         id="path134" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 220.76,214.02 -1.75,-0.16 q -0.65,-0.06 -0.33,-0.63 l 6.72,-12.1 q 0.23,-0.43 0.03,-0.87 -0.33,-0.73 -1.06,-1.05"
+         data-darkreader-inline-stroke=""
+         id="path136" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="M 197.92,258.25 196,262.46"
+         data-darkreader-inline-stroke=""
+         id="path138" />
+      <path
+         stroke="#007c70"
+         vector-effect="non-scaling-stroke"
+         d="m 200.38,251.67 q -0.85,0.4 -1.09,0.21 -0.21,-0.16 0.11,-0.7 c 1.07,-1.85 2.59,-4.98 -0.79,-5.29"
+         data-darkreader-inline-stroke=""
+         id="path140" />
+      <path
+         stroke="#009681"
+         vector-effect="non-scaling-stroke"
+         d="m 210.36,224.29 c 4.22,2.38 8.69,-7.6 10.4,-10.27"
+         data-darkreader-inline-stroke=""
+         id="path142" />
+      <path
+         stroke="#2dffc0"
+         vector-effect="non-scaling-stroke"
+         d="m 304.96,81.04 q -8.34,12.73 -14.87,26.48 c -0.71,1.51 -2.15,2.81 -3.11,4.27 q -0.23,0.36 0.16,0.52 2.13,0.87 3.12,-0.79 c 4.03,-6.8 7.33,-15.05 11.54,-22.07 q 2.52,-4.21 4.76,-8.75 a 0.63,0.63 0 0 0 -0.46,-0.9 q -0.54,-0.09 -0.78,0.48 -0.26,0.61 -0.36,0.76"
+         data-darkreader-inline-stroke=""
+         id="path144" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 276.788,132.9721 a 0.51,0.51 0 0 0 -0.1842,-0.6973 l -0.0346,-0.0201 a 0.51,0.51 0 0 0 -0.6973,0.1842 l -19.9799,34.329 a 0.51,0.51 0 0 0 0.1842,0.6973 l 0.0346,0.0201 a 0.51,0.51 0 0 0 0.6973,-0.1842 l 19.9799,-34.329"
+         data-darkreader-inline-stroke=""
+         id="path146" />
+      <path
+         stroke="#00b192"
+         vector-effect="non-scaling-stroke"
+         d="m 235.08,220.64 c -3.39,3.43 -7.4,9.73 -9.47,13.94 q -0.21,0.45 -0.14,0.93 l 0.33,2.21 a 0.48,0.47 -25.4 0 0 0.79,0.28 q 7.46,-6.83 9.5,-16.82 a 0.6,0.6 0 0 0 -1.01,-0.54"
+         data-darkreader-inline-stroke=""
+         id="path148" />
+      <path
+         stroke="#16e5a7"
+         vector-effect="non-scaling-stroke"
+         d="m 205.73,246.83 0.72,0.44 a 0.21,0.21 0 0 0 0.28,-0.07 l 0.06,-0.08 a 51.69,0.53 -58.3 0 0 26.71,-44.26 l -0.17,-0.1 a 51.69,0.53 -58.3 0 0 -27.62,43.7 l -0.05,0.08 a 0.21,0.21 0 0 0 0.07,0.29"
+         data-darkreader-inline-stroke=""
+         id="path150" />
+    </g>
+    <path
+       fill="#00cba3"
+       d="m 335.85,47.21 1.3,-0.17 a 0.4,0.4 0 0 1 0.41,0.58 q -1.09,2.18 -2.89,4.51 -4.61,5.96 -7.79,12.65 c -3.12,3.42 -2.04,4.67 -2.72,8.41 q -0.98,5.4 -3.65,10.07 c -8.15,14.26 -16.52,28.07 -24.39,42.84 q -0.22,0.41 -0.09,0.74 a 0.33,0.33 0 0 0 0.6,0.03 q 2.94,-5.5 7.15,-10.08 0.69,-0.74 1.54,-0.48 a 0.7,0.71 16.3 0 1 0.47,0.87 c -0.88,3.1 -1.36,5.99 -3,8.8 -3.53,6 -6.88,11.2 -10.77,17.84 -2.27,3.89 -5.43,7.41 -7.4,11.37 q -1.19,2.39 -2.4,4.81 l -16.39,25.87 q 0.03,0.58 -0.53,0.91 -0.67,-0.05 -1.27,-1.79 1.56,-2.13 1.93,-3.98 0.1,-0.5 0.42,-0.89 c 1.33,-1.61 2.54,-2.35 3.56,-4.25 q 1.6,-3 3.57,-5.77 c 2.29,-3.23 3.64,-6.85 5.91,-10.15 q 0.29,-0.43 0.25,-0.94 -0.34,-3.98 0.29,-5.03 c 1.31,-2.17 4.43,-7.2 4.24,-9.66 -0.13,-1.76 -0.26,-2.91 0.78,-4.51 q 5.13,-7.87 8.66,-16.52 c 3.39,-8.32 8.7,-15.56 14.29,-23.65 q 5.43,-7.85 11.64,-18.82 1.84,-3.26 2.02,-6.1 a 0.61,0.61 0 0 0 -0.86,-0.59 q -2.81,1.28 -4.82,4.8 -2.92,5.11 -11.83,18.4 -0.25,0.37 -0.99,0.17 -0.39,-0.11 -0.2,-0.47 5.22,-9.55 10.56,-19.03 c 1.91,-3.37 5.66,-3.94 7.66,-7.26 q 1.57,-2.62 1.68,-2.77 4.58,-6.41 7.65,-13.7 a 1.5,1.6 79.6 0 1 0.42,-0.57 q 0.78,-0.66 0.9,-1.59 a 0.53,0.54 16.9 0 0 -0.29,-0.55 l -1.44,-0.75 q -0.54,-0.29 -0.32,-0.85 0.88,-2.26 3.05,-3.83 9.4,-15.86 19.84,-30.7 0.34,-0.5 0.41,0.1 0.03,0.31 -0.14,0.62 -4.3,7.84 -8.83,15.56 c -2.35,4.02 -4.91,9.77 -8.05,14.36 q -0.18,0.25 -0.26,0.53 -0.41,1.35 0.12,0.61 z"
+       data-darkreader-inline-fill=""
+       id="path154" />
+    <path
+       fill="#00cba3"
+       d="m 316.76,51.88 c -2.92,6.4 -6.41,13.46 -11.44,18.36 q -4.22,4.11 -7.09,9.32 -0.17,0.32 -0.41,0.41 -0.23,0.09 -0.45,0.05 -0.52,-0.1 -0.3,-0.58 l 7.07,-15.37 a 0.43,0.44 85.5 0 0 -0.64,-0.54 c -1.84,1.22 -2.47,3.62 -4.99,3.45 3.63,-7.28 9.26,-15.62 12.34,-20.72 4.76,-7.88 9.32,-16.18 15.02,-23.43 a 0.33,0.34 75.9 0 1 0.57,0.34 l -1.68,3.84 a 0.41,0.42 86.2 0 0 0.6,0.52 c 2.46,-1.47 6.28,-8.54 8.24,-11.17 q 0.37,-0.48 0.63,0.07 0.07,0.15 0.08,0.37 0.01,0.18 -0.12,0.39 c -6.43,10.91 -14.11,22.67 -18.37,34.59 q -0.15,0.42 0.94,0.1 z"
+       data-darkreader-inline-fill=""
+       id="path156" />
+    <path
+       fill="#00615e"
+       d="m 337.94,63.81 q -4.05,2.41 -5.68,7.05 c -3.56,10.2 -9.19,17.66 -16.17,25.65 a 0.31,0.31 0 0 1 -0.52,-0.33 c 1.83,-4.13 4.91,-7.99 6.52,-12.12 0.9,-2.32 2.59,-3.74 3.17,-6.07 q 1.64,-6.54 1.62,-13.21 3.18,-6.69 7.79,-12.65 1.8,-2.33 2.89,-4.51 a 0.4,0.4 0 0 0 -0.41,-0.58 l -1.3,0.17 6.12,-6.71 q 1.12,-1.23 1.33,0.39 0.02,0.13 -0.28,0.99 -2.41,6.91 -5.68,13.45 -0.23,0.47 0.16,0.8 0.11,0.09 0.19,0.2 0.3,0.36 0.44,-0.09 0.63,-2.02 1.91,-3.69 8.12,-10.62 15.34,-21.85 0.18,-0.29 0.41,-0.04 0.11,0.12 0.21,0.21 0.05,0.05 0.02,0.12 c -2.19,4.68 -4.3,9.12 -7.09,13.68 q -5.96,9.76 -10.99,19.14 z"
+       data-darkreader-inline-fill=""
+       id="path158" />
+    <path
+       fill="#2cffaa"
+       d="m 327.44,45.54 -8.93,12.66 q -0.24,0.34 0.13,0.52 0.28,0.15 0.47,-0.09 4.95,-6.2 8.91,-13.15 l 7.1,-8.85 a 0.46,0.46 0 0 1 0.8,0.44 l -3.16,9.06 q -2.17,1.57 -3.05,3.83 -0.22,0.56 0.32,0.85 l 1.44,0.75 a 0.53,0.54 16.9 0 1 0.29,0.55 q -0.12,0.93 -0.9,1.59 a 1.5,1.6 79.6 0 0 -0.42,0.57 q -3.07,7.29 -7.65,13.7 -0.11,0.15 -1.68,2.77 c -2,3.32 -5.75,3.89 -7.66,7.26 q -5.34,9.48 -10.56,19.03 -0.19,0.36 0.2,0.47 0.74,0.2 0.99,-0.17 8.91,-13.29 11.83,-18.4 2.01,-3.52 4.82,-4.8 a 0.61,0.61 0 0 1 0.86,0.59 q -0.18,2.84 -2.02,6.1 -6.21,10.97 -11.64,18.82 c -5.59,8.09 -10.9,15.33 -14.29,23.65 q -3.53,8.65 -8.66,16.52 c -1.04,1.6 -0.91,2.75 -0.78,4.51 0.19,2.46 -2.93,7.49 -4.24,9.66 q -0.63,1.05 -0.29,5.03 0.04,0.51 -0.25,0.94 c -2.27,3.3 -3.62,6.92 -5.91,10.15 q -1.97,2.77 -3.57,5.77 c -1.02,1.9 -2.23,2.64 -3.56,4.25 q -0.32,0.39 -0.42,0.89 -0.37,1.85 -1.93,3.98 l -3.18,-5.71 q -0.23,-0.41 -0.61,-0.7 -0.77,-0.58 -0.94,-1.14 -1.04,-3.53 -3.02,-6.54 c -1.33,-2.02 -2,-4.03 -3.12,-6.09 q 1.5,-0.07 1.36,-1.02 c 2.45,-4.09 4.67,-8.45 7.08,-12.36 q 9.7,-15.76 16.57,-30.26 3.5,-7.4 5.72,-11.18 0.14,-0.24 -0.13,-0.24 -0.13,0 -0.27,-0.02 -0.3,-0.05 -0.45,0.21 l -15.31,27.04 q -3.56,2.21 -5.47,6.13 -0.36,0.74 -0.87,1.08 a 0.75,0.75 0 0 1 -1.06,-1.02 c 2.35,-3.89 8.86,-13.69 9.2,-17.96 a 0.7,0.7 0 0 0 -1.32,-0.39 q -1.69,3.13 -3.64,6.39 -0.53,0.9 -1.09,1.16 -1.06,0.48 -1.79,-0.71 l 36.82,-64.68 c 2.52,0.17 3.15,-2.23 4.99,-3.45 a 0.43,0.44 85.5 0 1 0.64,0.54 l -7.07,15.37 q -0.22,0.48 0.3,0.58 0.22,0.04 0.45,-0.05 0.24,-0.09 0.41,-0.41 2.87,-5.21 7.09,-9.32 c 5.03,-4.9 8.52,-11.96 11.44,-18.36 l 14.67,-16.83 a 0.51,0.51 0 0 1 0.84,0.55 z m -22.48,35.5 q -8.34,12.73 -14.87,26.48 c -0.71,1.51 -2.15,2.81 -3.11,4.27 q -0.23,0.36 0.16,0.52 2.13,0.87 3.12,-0.79 c 4.03,-6.8 7.33,-15.05 11.54,-22.07 q 2.52,-4.21 4.76,-8.75 a 0.63,0.63 0 0 0 -0.46,-0.9 q -0.54,-0.09 -0.78,0.48 -0.26,0.61 -0.36,0.76 z m -28.172,51.9321 a 0.51,0.51 0 0 0 -0.1842,-0.6973 l -0.0346,-0.0201 a 0.51,0.51 0 0 0 -0.6973,0.1842 l -19.9799,34.329 a 0.51,0.51 0 0 0 0.1842,0.6973 l 0.0346,0.0201 a 0.51,0.51 0 0 0 0.6973,-0.1842 z"
+       data-darkreader-inline-fill=""
+       id="path160" />
+    <path
+       fill="#00cba3"
+       d="m 327.44,45.54 q 0.28,-0.09 0.58,-0.06 -3.96,6.95 -8.91,13.15 -0.19,0.24 -0.47,0.09 -0.37,-0.18 -0.13,-0.52 z"
+       data-darkreader-inline-fill=""
+       id="path162" />
+    <path
+       fill="#009781"
+       d="m 337.94,63.81 -5.36,10.66 q 0.48,0.38 0.48,1.15 0,0.51 -0.4,1.11 c -5.26,8.06 -10.96,15.81 -14.89,24.74 q -4.29,9.76 -9.35,19.14 c -4.14,7.68 -10.19,15.66 -15.15,23.68 q -2.14,3.45 -11.05,15.71 1.21,-2.42 2.4,-4.81 c 1.97,-3.96 5.13,-7.48 7.4,-11.37 3.89,-6.64 7.24,-11.84 10.77,-17.84 1.64,-2.81 2.12,-5.7 3,-8.8 a 0.7,0.71 16.3 0 0 -0.47,-0.87 q -0.85,-0.26 -1.54,0.48 -4.21,4.58 -7.15,10.08 a 0.33,0.33 0 0 1 -0.6,-0.03 q -0.13,-0.33 0.09,-0.74 c 7.87,-14.77 16.24,-28.58 24.39,-42.84 q 2.67,-4.67 3.65,-10.07 c 0.68,-3.74 -0.4,-4.99 2.72,-8.41 q 0.02,6.67 -1.62,13.21 c -0.58,2.33 -2.27,3.75 -3.17,6.07 -1.61,4.13 -4.69,7.99 -6.52,12.12 a 0.31,0.31 0 0 0 0.52,0.33 c 6.98,-7.99 12.61,-15.45 16.17,-25.65 q 1.63,-4.64 5.68,-7.05 z"
+       data-darkreader-inline-fill=""
+       id="path164" />
+    <path
+       fill="#004164"
+       d="m 326.81,90.75 q -6.67,7.48 -8.12,11.18 -4.91,12.59 -12.46,24.84 -15.56,25.23 -29.72,46.65 c -2.77,4.2 -5.58,9.64 -8.79,14.34 a 0.9,0.9 0 0 1 -1.63,-0.36 l -0.26,-1.53 16.39,-25.87 q 8.91,-12.26 11.05,-15.71 c 4.96,-8.02 11.01,-16 15.15,-23.68 q 5.06,-9.38 9.35,-19.14 c 3.93,-8.93 9.63,-16.68 14.89,-24.74 q 0.4,-0.6 0.4,-1.11 0,-0.77 -0.48,-1.15 l 8.25,-10.57 a 0.4,0.4 0 0 1 0.69,0.37 c -1.35,4.08 -4.26,7.78 -5.86,11.11 q -3.97,8.22 -8.85,15.37 z"
+       data-darkreader-inline-fill=""
+       id="path166" />
+    <path
+       fill="#009781"
+       d="m 336.2,86.9 -6.81,6.88 a 0.53,0.52 54.8 0 1 -0.85,-0.15 q -0.12,-0.26 -0.09,-0.65 l 15.04,-21.42 a 0.32330326,0.32330326 0 0 1 0.55,0.34 z"
+       data-darkreader-inline-fill=""
+       id="path168" />
+    <path
+       fill="#2dffd6"
+       d="m 305.32,80.28 q 0.24,-0.57 0.78,-0.48 a 0.63,0.63 0 0 1 0.46,0.9 q -2.24,4.54 -4.76,8.75 c -4.21,7.02 -7.51,15.27 -11.54,22.07 q -0.99,1.66 -3.12,0.79 -0.39,-0.16 -0.16,-0.52 c 0.96,-1.46 2.4,-2.76 3.11,-4.27 q 6.53,-13.75 14.87,-26.48 0.1,-0.15 0.36,-0.76 z"
+       data-darkreader-inline-fill=""
+       id="path170" />
+    <path
+       fill="#00615e"
+       d="m 328.43,108.4 -3,3.52 q -0.18,0.21 -0.37,0.01 l -0.21,-0.21 q -0.16,-0.16 -0.05,-0.36 l 1.65,-2.93 a 0.36,0.36 0 0 0 -0.53,-0.47 q -7.74,5.63 -6.17,15.31 0.05,0.33 0.27,0.08 c 2.33,-2.65 6.27,-4.23 8.12,-6.52 0.71,-0.87 1.81,-1.59 1.97,-2.63 q 0.16,-1.03 -0.87,-1.5 -0.48,-0.22 -0.47,-0.75 l 0.11,-3.54 6.79,-7.95 q 0.69,-0.81 0.75,0.25 l 0.11,1.78 a 0.59,0.59 0 0 0 1.05,0.34 l 5.85,-7.12 a 0.3,0.3 0 0 1 0.48,0.36 c -12.92,19.57 -28.8,38.62 -43.53,57.78 q -6.03,7.85 -8.05,11.23 c -1.96,3.27 -4.78,6.53 -6.24,8.61 q -8.31,11.81 -10.75,15.89 -2.51,4.2 -4.89,6.67 l -0.7,-0.51 -4.45,-8.96 q 0.56,-0.33 0.53,-0.91 l 0.26,1.53 a 0.9,0.9 0 0 0 1.63,0.36 c 3.21,-4.7 6.02,-10.14 8.79,-14.34 q 14.16,-21.42 29.72,-46.65 7.55,-12.25 12.46,-24.84 1.45,-3.7 8.12,-11.18 -1.83,3.49 -8.32,14.52 -0.25,0.44 0.13,0.66 0.38,0.23 0.64,-0.13 l 9.19,-12.82 q -0.03,0.39 0.09,0.65 a 0.53,0.52 54.8 0 0 0.85,0.15 l 6.81,-6.88 q 0.79,1.01 1.98,-0.69 1.77,-2.55 3.68,-4.58 a 0.6,0.6 0 0 1 0.95,0.73 q -7.38,12.2 -14.11,24.62 c -0.25,0.45 -0.16,0.95 -0.27,1.42 z"
+       data-darkreader-inline-fill=""
+       id="path172" />
+    <path
+       fill="#2dffd6"
+       d="m 248.92,155.68 3.93,7.59 q -0.17,0.63 0.31,1.54 c 1.12,2.06 1.79,4.07 3.12,6.09 q 1.98,3.01 3.02,6.54 0.17,0.56 0.94,1.14 0.38,0.29 0.61,0.7 l 3.18,5.71 q 0.6,1.74 1.27,1.79 l 4.45,8.96 -0.01,1.18 a 0.6,0.6 0 0 1 -1.11,0.3 l -1.84,-3.03 -17.47,-30.08 -12.62,-22.77 q -0.2,-0.38 -0.51,-0.08 l -0.21,0.22 q -0.3,0.3 -0.11,0.68 11.9,24.81 23.16,49.91 2,4.46 4.72,9.7 2.41,4.67 4.84,9.66 -2.22,0.97 -5.42,-3.57 l -9.95,-15.59 1.29,-2.4 q 0.23,-0.44 0.01,-0.88 L 237.13,154.1 q -0.13,-0.26 -0.13,-0.55 0,-0.15 0,-0.31 0,-0.45 -0.26,-0.82 c -1.73,-2.41 -2.89,-5.22 -5.74,-8.16 q -1.75,-1.81 -2.99,-3.93 -4.77,-8.15 -10.8,-15.72 a 0.35,0.35 0 0 0 -0.59,0.36 l 3.26,7.43 q 0.12,1.8 0.69,3.04 6.81,14.96 13.72,29.77 0.31,2.77 1.46,5.32 4.15,9.23 6.67,19.04 c 0.59,2.28 1.36,4.24 2.25,6.41 a 0.61,0.61 0 0 1 -0.98,0.68 c -4.39,-4.08 -5.52,-8.47 -8.7,-13.17 q -0.97,-1.45 -2.18,-3.8 -9.23,-18.04 -16.96,-37.21 a 0.97,0.93 43.7 0 1 -0.03,-0.64 q 0.4,-1.29 1.07,-0.5 3.09,3.64 5.46,7.77 0.38,0.66 1.11,0.61 a 0.39,0.39 0 0 0 0.29,-0.61 c -2.26,-3.38 -3.32,-7.08 -4.62,-10.33 q -5.2,-13 -10.07,-26.14 -0.33,-0.9 -0.79,-0.06 -0.47,0.85 -0.26,1.9 a 0.55,0.55 0 0 1 -0.41,0.64 l -1.47,0.36 a 1.03,1.03 0 0 0 -0.61,1.58 q 2.83,4.17 3.14,8.98 c 0.29,4.49 2.89,9.28 4.47,13.51 1.03,2.78 3.18,6 3.95,9.46 2.76,12.31 10.56,22.62 15.18,34.19 a 0.83,0.83 0 0 1 -0.96,1.12 q -2.53,-0.61 -5.23,-3.96 c -3.32,-9.06 -7.17,-18.09 -11.9,-26.71 -3.92,-7.17 -7.1,-15.55 -12.72,-26.57 q -0.24,-0.46 -0.73,-0.3 l -1.87,0.6 q -1.26,-2.41 -2.29,-4.92 c -1.41,-3.41 -1.11,-7.34 -2.82,-11.12 -1.32,-2.9 -1.74,-5.32 -2.62,-8.09 a 0.47,0.47 0 0 1 0.82,-0.43 c 5.55,7.14 8.2,14.44 12.33,22.01 a 0.12298374,0.12298374 0 0 0 0.22,-0.11 c -0.62,-1.46 -0.81,-3.16 -1.45,-4.6 q -3.31,-7.35 -3.39,-10.05 c -0.15,-5.81 -1.6,-8.76 -2.43,-13.34 a 0.37,0.37 0 0 1 0.7,-0.22 q 3.27,7.08 6.43,13.9 0.26,0.56 0.66,0.57 0.36,0.01 0.26,-0.34 l -6.3,-21.76 a 0.6,0.59 21.4 0 1 1.08,-0.47 l 3.57,5.91 a 0.48,0.48 0 0 0 0.57,0.2 q 0.16,-0.05 0.32,-0.1 a 0.23,0.22 56.3 0 0 0.07,-0.38 q -1.02,-0.91 -0.95,-2.37 a 0.5,0.5 0 0 1 0.95,-0.21 l 5.28,10.2 q 0.05,0.09 0.15,0.09 0.13,0 0.26,0 0.15,0 0.1,-0.14 -2.57,-7.05 -6.9,-15.85 -0.14,-0.28 0.04,-0.5 0.25,-0.3 0.42,0.05 c 3.81,7.48 7.51,15.46 11.54,22.51 q 0.78,1.35 0.34,-0.15 l -2.06,-6.89 q -0.15,-0.53 0.18,-0.97 l 1.12,-1.46 a 0.78,0.79 52.9 0 0 0.11,-0.73 l -2.11,-5.58 a 0.22,0.22 0 0 1 0.21,-0.29 q 0.13,0 0.25,0 0.22,0 0.32,0.18 c 2.26,4.1 5.04,8.45 7.09,12.17 9.42,17.05 17.64,35.17 28,51.58 z"
+       data-darkreader-inline-fill=""
+       id="path174" />
+    <path
+       fill="#004164"
+       d="m 328.43,108.4 q 0.72,0.27 0.45,0.01 l -0.11,3.54 q -0.01,0.53 0.47,0.75 1.03,0.47 0.87,1.5 c -0.16,1.04 -1.26,1.76 -1.97,2.63 -1.85,2.29 -5.79,3.87 -8.12,6.52 q -0.22,0.25 -0.27,-0.08 -1.57,-9.68 6.17,-15.31 a 0.36,0.36 0 0 1 0.53,0.47 l -1.65,2.93 q -0.11,0.2 0.05,0.36 l 0.21,0.21 q 0.19,0.2 0.37,-0.01 z"
+       data-darkreader-inline-fill=""
+       id="path176" />
+    <path
+       fill="#00615e"
+       d="m 253.16,164.81 q -0.48,-0.91 -0.31,-1.54 c 3.97,-6.81 7.79,-13.71 11.95,-20.42 q 1.73,-2.78 2.93,-5.87 l 15.31,-27.04 q 0.15,-0.26 0.45,-0.21 0.14,0.02 0.27,0.02 0.27,0 0.13,0.24 -2.22,3.78 -5.72,11.18 -6.87,14.5 -16.57,30.26 c -2.41,3.91 -4.63,8.27 -7.08,12.36 q 0.14,0.95 -1.36,1.02 z"
+       data-darkreader-inline-fill=""
+       id="path178" />
+    <path
+       fill="#2cffaa"
+       d="m 234.29,165.21 q 0.8,0.56 0.5,0.65 l 7.03,13.61 q -0.26,1.71 0.12,2.53 8.95,19.14 17.23,38.59 0.28,0.66 -0.43,0.66 h -0.45 q -0.55,0 -0.85,-0.46 l -4.64,-7.1 q -1.67,-4.83 -5.84,-10.3 a 0.6,0.6 0 0 0 -1.07,0.48 c 0.97,4.82 4.09,9.88 6.33,14.35 q 0.26,0.53 -0.27,0.77 l -1.29,0.59 q -0.62,0.28 -0.65,-0.4 -0.09,-1.83 -2.46,-2.83 l -12.14,-22.18 a 0.36,0.35 17.8 0 0 -0.63,0.32 l 10.55,21.24 q -0.03,0.85 -0.77,0.98 -0.51,0.1 -0.77,-0.35 c -6.91,-11.85 -11.8,-22.6 -17.72,-36 q 2.7,3.35 5.23,3.96 a 0.83,0.83 0 0 0 0.96,-1.12 c -4.62,-11.57 -12.42,-21.88 -15.18,-34.19 -0.77,-3.46 -2.92,-6.68 -3.95,-9.46 -1.58,-4.23 -4.18,-9.02 -4.47,-13.51 q -0.31,-4.81 -3.14,-8.98 a 1.03,1.03 0 0 1 0.61,-1.58 l 1.47,-0.36 a 0.55,0.55 0 0 0 0.41,-0.64 q -0.21,-1.05 0.26,-1.9 0.46,-0.84 0.79,0.06 4.87,13.14 10.07,26.14 c 1.3,3.25 2.36,6.95 4.62,10.33 a 0.39,0.39 0 0 1 -0.29,0.61 q -0.73,0.05 -1.11,-0.61 -2.37,-4.13 -5.46,-7.77 -0.67,-0.79 -1.07,0.5 a 0.97,0.93 43.7 0 0 0.03,0.64 q 7.73,19.17 16.96,37.21 1.21,2.35 2.18,3.8 c 3.18,4.7 4.31,9.09 8.7,13.17 a 0.61,0.61 0 0 0 0.98,-0.68 c -0.89,-2.17 -1.66,-4.13 -2.25,-6.41 q -2.52,-9.81 -6.67,-19.04 -1.15,-2.55 -1.46,-5.32 z"
+       data-darkreader-inline-fill=""
+       id="path180" />
+    <path
+       fill="#2cffaa"
+       d="m 253.22,192.27 c -4.17,-7.09 -7.35,-12.64 -12.09,-21.43 -3.48,-6.47 -7.97,-13 -10.43,-20.61 a 1.04,1.03 1.9 0 0 -0.6,-0.64 c -2,-0.79 -1,-3.34 -2.87,-4.82 a 1.92,1.89 8.6 0 1 -0.6,-0.8 q -2.45,-6.22 -6.75,-11.57 l -3.26,-7.43 a 0.35,0.35 0 0 1 0.59,-0.36 q 6.03,7.57 10.8,15.72 1.24,2.12 2.99,3.93 c 2.85,2.94 4.01,5.75 5.74,8.16 q 0.26,0.37 0.26,0.82 0,0.16 0,0.31 0,0.29 0.13,0.55 l 17.39,34.89 q 0.22,0.44 -0.01,0.88 z"
+       data-darkreader-inline-fill=""
+       id="path182" />
+    <path
+       fill="#00cba3"
+       d="m 267.73,136.98 q -1.2,3.09 -2.93,5.87 c -4.16,6.71 -7.98,13.61 -11.95,20.42 l -3.93,-7.59 12.77,-24.02 q 0.73,1.19 1.79,0.71 0.56,-0.26 1.09,-1.16 1.95,-3.26 3.64,-6.39 a 0.7,0.7 0 0 1 1.32,0.39 c -0.34,4.27 -6.85,14.07 -9.2,17.96 a 0.75,0.75 0 0 0 1.06,1.02 q 0.51,-0.34 0.87,-1.08 1.91,-3.92 5.47,-6.13 z"
+       data-darkreader-inline-fill=""
+       id="path184" />
+    <path
+       fill="#00cba3"
+       d="m 226.07,180.36 c 5.92,13.4 10.81,24.15 17.72,36 q 0.26,0.45 0.77,0.35 0.74,-0.13 0.77,-0.98 l 5.79,10.47 q -0.09,1.33 -0.93,1.96 -0.4,0.3 -0.21,0.75 l 0.77,1.81 q 0.19,0.45 -0.2,0.74 -0.3,0.23 -0.91,0.11 l -1.48,-2.75 q -0.29,-0.54 -0.69,-0.07 -8.19,9.5 -14.69,20.1 c -2.37,3.86 -5.39,7.43 -7.79,11.46 q -0.55,0.92 -0.66,-0.15 l -0.22,-2.06 c -0.12,-0.7 0.09,-1.64 0.55,-2.27 q 6.59,-8.98 12.57,-18.37 1.94,-3.05 9.16,-10.12 0.44,-0.43 0.14,-0.96 l -1.94,-3.34 a 0.32,0.33 38.4 0 0 -0.59,0.07 q -0.9,2.84 -2.61,5.32 -8.4,12.16 -16.65,24.47 0.11,-4.18 2.04,-6.86 6.87,-9.5 10.2,-15.5 a 1.12,1.15 3.1 0 1 0.5,-0.46 q 0.86,-0.4 0.98,-1.73 a 1.13,1.48 55.5 0 0 -2.57,-0.13 q -9.44,16.52 -22.15,30.75 -0.67,0.76 -1.06,-0.18 l -0.39,-0.95 a 0.49,0.48 62.8 0 0 -0.7,-0.23 q -1.32,0.83 -1.73,2.31 -0.19,0.7 -0.83,0.35 l -0.66,-0.35 a 0.66,0.66 0 0 1 -0.25,-0.93 l 10.39,-16.96 a 0.16,0.16 0 0 0 -0.09,-0.24 q -0.77,-0.22 -0.73,0.51 0.03,0.7 -0.64,0.52 l -0.77,-0.2 q -0.58,-0.15 -0.31,-0.68 1.59,-3.11 2.46,-4.26 c 4.73,-6.24 8.97,-12.51 14.32,-18.52 q 3.2,-3.59 5.91,-7.27 a 1.77,1.8 49.5 0 0 0.16,-1.86 q -4.45,-8.83 -8.65,-17.46 -0.33,-0.68 -1.16,-0.6 c -0.02,-0.57 0.05,-1.34 -0.21,-1.87 -10.35,-20.68 -20.45,-41.65 -29.95,-62.72 l 1.87,-0.6 q 0.49,-0.16 0.73,0.3 c 5.62,11.02 8.8,19.4 12.72,26.57 4.73,8.62 8.58,17.65 11.9,26.71 z m 9.01,40.28 c -3.39,3.43 -7.4,9.73 -9.47,13.94 q -0.21,0.45 -0.14,0.93 l 0.33,2.21 a 0.47,0.48 64.6 0 0 0.79,0.28 q 7.46,-6.83 9.5,-16.82 a 0.6,0.6 0 0 0 -1.01,-0.54 z"
+       data-darkreader-inline-fill=""
+       id="path186" />
+    <rect
+       fill="#00cba3"
+       x="305.04855"
+       y="-24.815477"
+       transform="rotate(30.200001)"
+       width="1.0599999"
+       height="40.740002"
+       rx="0.50999999"
+       data-darkreader-inline-fill=""
+       id="rect188" />
+    <path
+       fill="#00cba3"
+       d="m 219.88,132.4 q 4.3,5.35 6.75,11.57 a 1.92,1.89 8.6 0 0 0.6,0.8 c 1.87,1.48 0.87,4.03 2.87,4.82 a 1.04,1.03 1.9 0 1 0.6,0.64 c 2.46,7.61 6.95,14.14 10.43,20.61 4.74,8.79 7.92,14.34 12.09,21.43 l 9.95,15.59 q 0.22,0.86 0.02,1.29 -0.28,0.6 -0.64,0.05 -3.03,-4.45 -5.79,-9.07 c -2.03,-3.38 -4.8,-6.38 -7.15,-9.71 a 0.88,0.88 0 0 0 -1.54,0.84 q 3.52,8.69 7.77,17.6 c 2.23,4.68 5.75,8.88 7.88,13.08 2.21,4.36 10.02,22.02 13.66,23.65 q 0.47,0.21 0.75,0.64 c 9.69,14.9 16.13,24.73 22.62,39.09 q -5.48,-7.89 -10.3,-16.01 -0.8,-1.36 -1.91,-1.23 -0.56,0.07 -0.39,0.6 l 3.36,10.48 a 0.67,0.67 0 0 1 -1.24,0.48 q -4.84,-10.6 -9.67,-20.51 -0.31,-0.63 -0.71,-0.66 -0.52,-0.04 -1.02,0.68 l -8.38,-18.57 q -0.25,-0.56 -0.72,-0.17 -0.92,0.75 -0.3,2.12 2.41,5.33 4.85,10.64 c 1.21,2.6 2.59,7.02 4.66,10.29 q 0.3,0.48 0.76,0.14 l 0.88,-0.65 q 2.42,4.59 4.1,9.49 c 0.63,1.86 2.06,3.98 2.31,6.24 a 0.65,0.65 0 0 1 -1.18,0.43 c -3.97,-5.92 -7.13,-11.44 -10.33,-18.34 q -10.94,-23.6 -22.72,-47.08 l 4.64,7.1 q 0.3,0.46 0.85,0.46 h 0.45 q 0.71,0 0.43,-0.66 -8.28,-19.45 -17.23,-38.59 -0.38,-0.82 -0.12,-2.53 0.42,0.49 1.09,0.09 a 0.99,1 59.8 0 0 0.36,-1.34 l -6.98,-12.72 a 0.61,0.61 0 0 0 -0.82,-0.25 q -0.37,0.2 -0.68,0.61 0.3,-0.09 -0.5,-0.65 -6.91,-14.81 -13.72,-29.77 -0.57,-1.24 -0.69,-3.04 z"
+       data-darkreader-inline-fill=""
+       id="path190" />
+    <path
+       fill="#00cba3"
+       d="m 249.32,164.11 q 2.02,9.7 7.26,18.66 l 6.34,12.8 q 2.44,5.33 4.93,10.64 0.17,0.35 0.43,0.47 0.34,0.15 0.75,0.05 0.48,-0.11 0.27,-0.55 l -1.4,-3.02 q -0.17,-0.35 0.12,-0.62 l 0.62,-0.55 q 0.36,-0.32 0.14,-0.76 l -3.11,-6.14 q -0.24,-0.47 0.28,-0.55 0.48,-0.08 0.84,-0.35 l 1.84,3.03 a 0.6,0.6 0 0 0 1.11,-0.3 l 0.01,-1.18 0.7,0.51 0.08,0.8 q 0.04,0.47 0.25,0.9 c 7.3,15.21 15.82,30.03 23.66,45.18 9.01,17.4 18.51,34.43 27.3,51.95 q 0.48,1.78 -2.83,0.78 -0.51,-0.15 -0.74,-0.62 -4.99,-10.23 -11.21,-19.75 a 1.15,1.09 26.9 0 1 -0.16,-0.45 q -0.21,-2.02 -1.64,-3.55 a 1.65,1.6 18.7 0 1 -0.39,-0.76 q -0.55,-2.55 -2.78,-5.73 -2.37,-3.4 -6.32,-13.23 a 1.2,1.24 0.9 0 0 -0.6,-0.64 q -1.55,-0.71 -1.33,-2.39 a 1.4,1.39 30.7 0 0 -0.26,-1 q -1.48,-2 -2.51,-4.91 -1.58,-4.45 -5.36,-7.7 -6.64,-13.05 -13.53,-26.2 -0.52,-0.98 -1.2,-1.18 a 0.35,0.35 0 0 0 -0.41,0.5 c 5.4,10.58 10.26,22.33 18.01,36.54 q 2.12,3.88 3.84,7.86 c 0.65,4.8 3.04,8.37 4.75,12.1 q 4.96,10.82 10.44,21.74 c -2.69,-1.57 -2.88,-3.95 -4.72,-6.31 -1.27,-1.62 -2.31,-4.64 -2.92,-5.8 q -4.53,-8.61 -8.2,-17.63 c -0.74,-1.8 -2.25,-3.42 -2.97,-4.95 q -9.75,-20.52 -20.11,-40.37 -2.43,-4.99 -4.84,-9.66 -2.72,-5.24 -4.72,-9.7 -11.26,-25.1 -23.16,-49.91 -0.19,-0.38 0.11,-0.68 l 0.21,-0.22 q 0.31,-0.3 0.51,0.08 z"
+       data-darkreader-inline-fill=""
+       id="path194" />
+    <path
+       fill="#2cffaa"
+       d="m 249.32,164.11 17.47,30.08 q -0.36,0.27 -0.84,0.35 -0.52,0.08 -0.28,0.55 l 3.11,6.14 q 0.22,0.44 -0.14,0.76 l -0.62,0.55 q -0.29,0.27 -0.12,0.62 l 1.4,3.02 q 0.21,0.44 -0.27,0.55 -0.41,0.1 -0.75,-0.05 -0.26,-0.12 -0.43,-0.47 -2.49,-5.31 -4.93,-10.64 1.34,-0.1 1.54,-0.99 0.13,-0.55 -0.4,-1.44 -3.15,-5.37 -5.83,-10.71 a 0.97,0.97 0 0 0 -1.42,-0.36 q -0.49,0.34 -0.23,0.7 -5.24,-8.96 -7.26,-18.66 z"
+       data-darkreader-inline-fill=""
+       id="path202" />
+    <path
+       fill="#00615e"
+       d="m 241.82,179.47 -7.03,-13.61 q 0.31,-0.41 0.68,-0.61 a 0.61,0.61 0 0 1 0.82,0.25 l 6.98,12.72 a 0.99,1 59.8 0 1 -0.36,1.34 q -0.67,0.4 -1.09,-0.09 z"
+       data-darkreader-inline-fill=""
+       id="path204" />
+    <path
+       fill="#2dffd6"
+       d="m 262.92,195.57 -6.34,-12.8 q -0.26,-0.36 0.23,-0.7 a 0.97,0.97 0 0 1 1.42,0.36 q 2.68,5.34 5.83,10.71 0.53,0.89 0.4,1.44 -0.2,0.89 -1.54,0.99 z"
+       data-darkreader-inline-fill=""
+       id="path206" />
+    <path
+       fill="#2cffaa"
+       d="m 263.17,207.86 q 3.2,4.54 5.42,3.57 10.36,19.85 20.11,40.37 c 0.72,1.53 2.23,3.15 2.97,4.95 q 3.67,9.02 8.2,17.63 c 0.61,1.16 1.65,4.18 2.92,5.8 1.84,2.36 2.03,4.74 4.72,6.31 q 2.26,5.97 5.3,11.85 c 2.51,4.84 4.04,9.17 5.68,13.99 a 0.51,0.51 0 0 1 -0.92,0.43 l -16.82,-27.44 c -6.49,-14.36 -12.93,-24.19 -22.62,-39.09 q -0.28,-0.43 -0.75,-0.64 c -3.64,-1.63 -11.45,-19.29 -13.66,-23.65 -2.13,-4.2 -5.65,-8.4 -7.88,-13.08 q -4.25,-8.91 -7.77,-17.6 a 0.88,0.88 0 0 1 1.54,-0.84 c 2.35,3.33 5.12,6.33 7.15,9.71 q 2.76,4.62 5.79,9.07 0.36,0.55 0.64,-0.05 0.2,-0.43 -0.02,-1.29 z"
+       data-darkreader-inline-fill=""
+       id="path208" />
+    <path
+       fill="#2cffaa"
+       d="m 229.01,191.97 q 0.83,-0.08 1.16,0.6 4.2,8.63 8.65,17.46 a 1.77,1.8 49.5 0 1 -0.16,1.86 q -2.71,3.68 -5.91,7.27 c -5.35,6.01 -9.59,12.28 -14.32,18.52 q -0.87,1.15 -2.46,4.26 -0.27,0.53 0.31,0.68 l 0.77,0.2 q 0.67,0.18 0.64,-0.52 -0.04,-0.73 0.73,-0.51 a 0.16,0.16 0 0 1 0.09,0.24 l -10.39,16.96 a 0.66,0.66 0 0 0 0.25,0.93 l 0.66,0.35 q 0.64,0.35 0.83,-0.35 0.41,-1.48 1.73,-2.31 a 0.49,0.48 62.8 0 1 0.7,0.23 l 0.39,0.95 q 0.39,0.94 1.06,0.18 12.71,-14.23 22.15,-30.75 a 1.13,1.48 55.5 0 1 2.57,0.13 q -0.12,1.33 -0.98,1.73 a 1.12,1.15 3.1 0 0 -0.5,0.46 q -3.33,6 -10.2,15.5 -1.93,2.68 -2.04,6.86 -2.94,3.09 -4.47,7.17 -0.17,0.47 -0.63,0.68 -1.13,0.51 -1.06,-0.73 l -12.39,14.42 a 0.43,0.43 0 0 1 -0.73,-0.43 l 4.18,-11.98 a 0.46,0.46 0 0 0 -0.82,-0.39 l -2.66,4.24 a 0.62,0.62 0 0 1 -1.11,-0.12 l -0.25,-0.69 q -0.26,-0.69 -0.79,-0.18 l -4.41,4.23 a 0.6,0.6 0 0 1 -0.98,-0.61 c 0.68,-2.16 2.94,-4.33 1.28,-6.64 l 2.24,-3.5 q 0.26,-0.41 0.01,-0.83 l -0.13,-0.23 q -0.07,-0.11 -0.01,-0.23 l 1.27,-2.97 q 0.54,-1.26 -0.37,-0.24 -1.73,1.94 -2.57,4.44 a 0.99,0.98 3.2 0 1 -0.72,0.64 q -1.55,0.33 -1.7,-0.7 l 2.46,-6.58 30.95,-52.54 q 0.29,-0.49 -0.25,-0.63 -0.24,-0.07 -0.5,0.01 -0.34,0.12 -0.63,0.62 -4.34,7.64 -9.19,14.89 l -1.75,-0.16 q -0.65,-0.06 -0.33,-0.63 l 6.72,-12.1 q 0.23,-0.43 0.03,-0.87 -0.33,-0.73 -1.06,-1.05 z m -23.28,54.86 0.72,0.44 a 0.21,0.21 0 0 0 0.28,-0.07 l 0.06,-0.08 a 0.53,51.69 31.7 0 0 26.71,-44.26 l -0.17,-0.1 a 0.53,51.69 31.7 0 0 -27.62,43.7 l -0.05,0.08 a 0.21,0.21 0 0 0 0.07,0.29 z"
+       data-darkreader-inline-fill=""
+       id="path210" />
+    <path
+       fill="#004164"
+       d="m 247.55,216.35 c 7.49,13.29 15.2,26.26 22.18,39.87 6.13,11.95 14.47,24.36 22.61,34.98 2.98,3.89 5.07,7.62 6.18,11.79 q 0.15,0.58 -0.38,0.72 -0.35,0.1 -0.49,-0.24 -1.84,-4.43 -4.95,-8.24 -1.83,-3.98 -5.16,-7.36 a 0.44,0.44 0 0 0 -0.74,0.39 q 1.02,5.34 3.74,10.11 l 0.16,3.46 a 0.34,0.34 0 0 1 -0.63,0.18 c -0.72,-1.21 -1.7,-2.37 -2.3,-3.64 Q 270.6,261.7 251.12,226.2 l -5.79,-10.47 -10.55,-21.24 a 0.36,0.35 17.8 0 1 0.63,-0.32 z"
+       data-darkreader-inline-fill=""
+       id="path212" />
+    <path
+       fill="#00615e"
+       d="m 200.38,251.67 q -0.85,0.4 -1.09,0.21 -0.21,-0.16 0.11,-0.7 c 1.07,-1.85 2.59,-4.98 -0.79,-5.29 l 11.75,-21.6 c 4.22,2.38 8.69,-7.6 10.4,-10.27 q 4.85,-7.25 9.19,-14.89 0.29,-0.5 0.63,-0.62 0.26,-0.08 0.5,-0.01 0.54,0.14 0.25,0.63 z"
+       data-darkreader-inline-fill=""
+       id="path214" />
+    <path
+       fill="#00cba3"
+       d="m 224.37,199.21 q 0.73,0.32 1.06,1.05 0.2,0.44 -0.03,0.87 l -6.72,12.1 q -0.32,0.57 0.33,0.63 l 1.75,0.16 c -1.71,2.67 -6.18,12.65 -10.4,10.27 z"
+       data-darkreader-inline-fill=""
+       id="path216" />
+    <path
+       fill="#00cba3"
+       d="m 205.73,246.83 a 0.21,0.21 0 0 1 -0.07,-0.29 l 0.05,-0.08 a 0.53,51.69 31.7 0 1 27.62,-43.7 l 0.17,0.1 a 0.53,51.69 31.7 0 1 -26.71,44.26 l -0.06,0.08 a 0.21,0.21 0 0 1 -0.28,0.07 z"
+       data-darkreader-inline-fill=""
+       id="path218" />
+    <path
+       fill="#009781"
+       d="m 252.8,213.69 q 11.78,23.48 22.72,47.08 c 3.2,6.9 6.36,12.42 10.33,18.34 a 0.65,0.65 0 0 0 1.18,-0.43 c -0.25,-2.26 -1.68,-4.38 -2.31,-6.24 q -1.68,-4.9 -4.1,-9.49 l -1.75,-3.8 q 0.5,-0.72 1.02,-0.68 0.4,0.03 0.71,0.66 4.83,9.91 9.67,20.51 a 0.67,0.67 0 0 0 1.24,-0.48 l -3.36,-10.48 q -0.17,-0.53 0.39,-0.6 1.11,-0.13 1.91,1.23 4.82,8.12 10.3,16.01 l 16.82,27.44 a 0.51,0.51 0 0 0 0.92,-0.43 c -1.64,-4.82 -3.17,-9.15 -5.68,-13.99 q -3.04,-5.88 -5.3,-11.85 -5.48,-10.92 -10.44,-21.74 c -1.71,-3.73 -4.1,-7.3 -4.75,-12.1 q 5.44,12.08 12.83,23.15 a 0.67,0.67 0 0 0 1.13,-0.02 q 0.41,-0.66 0.02,-0.86 -0.3,-0.15 -0.43,-0.47 c -1.26,-3.33 -3.5,-5.21 -4.77,-8.5 q -0.93,-2.37 -2.39,-4.48 c -2.08,-3.01 -4.03,-7.55 -5.41,-10.89 -2.15,-5.2 -5.59,-9.95 -7.69,-15.45 q 3.78,3.25 5.36,7.7 1.03,2.91 2.51,4.91 a 1.4,1.39 30.7 0 1 0.26,1 q -0.22,1.68 1.33,2.39 a 1.2,1.24 0.9 0 1 0.6,0.64 q 3.95,9.83 6.32,13.23 2.23,3.18 2.78,5.73 a 1.65,1.6 18.7 0 0 0.39,0.76 q 1.43,1.53 1.64,3.55 a 1.15,1.09 26.9 0 0 0.16,0.45 q 6.22,9.52 11.21,19.75 0.23,0.47 0.74,0.62 3.31,1 2.83,-0.78 4.73,8.05 6.94,12.63 4.65,9.64 -1.67,1 -4.11,-5.62 -8.75,-10.76 -2.55,-2.81 -1.51,0.84 c 2.95,10.42 8.32,20.28 10.71,30.28 a 0.68,0.67 15.6 0 1 -1.13,0.63 q -6.35,-6.26 -11,-14 c -1.17,-1.94 -3.02,-3.21 -4.29,-5 q -2.45,-9.09 -9.08,-15.87 a 0.08,0.08 0 0 0 -0.14,0.07 l 6.71,27.44 q 0.04,0.16 0.21,0.16 0.13,0 0.27,0 a 0.23,0.23 0 0 0 0.22,-0.29 q -1.39,-4.97 0.31,-9.37 l 2.36,15.09 a 0.58,0.58 0 0 1 -0.62,0.66 q -0.46,-0.04 -0.89,-0.7 -3.69,-5.68 -9.32,-10.21 -2.03,-1.84 -2.87,-5.62 -0.23,-1.05 0.74,-0.6 l 1.14,0.52 a 0.59,0.59 0 0 0 0.71,-0.9 q -5.64,-7.25 -8.09,-15.85 3.11,3.81 4.95,8.24 0.14,0.34 0.49,0.24 0.53,-0.14 0.38,-0.72 c -1.11,-4.17 -3.2,-7.9 -6.18,-11.79 -8.14,-10.62 -16.48,-23.03 -22.61,-34.98 -6.98,-13.61 -14.69,-26.58 -22.18,-39.87 q 2.37,1 2.46,2.83 0.03,0.68 0.65,0.4 l 1.29,-0.59 q 0.53,-0.24 0.27,-0.77 c -2.24,-4.47 -5.36,-9.53 -6.33,-14.35 a 0.6,0.6 0 0 1 1.07,-0.48 q 4.17,5.47 5.84,10.3 z"
+       data-darkreader-inline-fill=""
+       id="path220" />
+    <path
+       fill="#00615e"
+       d="m 285.61,235.13 c 2.1,5.5 5.54,10.25 7.69,15.45 1.38,3.34 3.33,7.88 5.41,10.89 q 1.46,2.11 2.39,4.48 c 1.27,3.29 3.51,5.17 4.77,8.5 q 0.13,0.32 0.43,0.47 0.39,0.2 -0.02,0.86 a 0.67,0.67 0 0 1 -1.13,0.02 q -7.39,-11.07 -12.83,-23.15 -1.72,-3.98 -3.84,-7.86 c -7.75,-14.21 -12.61,-25.96 -18.01,-36.54 a 0.35,0.35 0 0 1 0.41,-0.5 q 0.68,0.2 1.2,1.18 6.89,13.15 13.53,26.2 z"
+       data-darkreader-inline-fill=""
+       id="path222" />
+    <path
+       fill="#009781"
+       d="m 235.08,220.64 a 0.6,0.6 0 0 1 1.01,0.54 q -2.04,9.99 -9.5,16.82 a 0.47,0.48 64.6 0 1 -0.79,-0.28 l -0.33,-2.21 q -0.07,-0.48 0.14,-0.93 c 2.07,-4.21 6.08,-10.51 9.47,-13.94 z"
+       data-darkreader-inline-fill=""
+       id="path224" />
+    <path
+       fill="#00615e"
+       d="m 224.11,258.1 q -1.24,0.63 -1.59,1.19 -4.63,7.36 -9.67,14.45 -0.32,0.44 -0.59,-0.02 -0.09,-0.15 -0.1,-0.32 -0.01,-0.13 0.1,-0.3 3.81,-5.78 6.32,-13.08 -0.07,1.24 1.06,0.73 0.46,-0.21 0.63,-0.68 1.53,-4.08 4.47,-7.17 8.25,-12.31 16.65,-24.47 1.71,-2.48 2.61,-5.32 a 0.32,0.33 38.4 0 1 0.59,-0.07 l 1.94,3.34 q 0.3,0.53 -0.14,0.96 -7.22,7.07 -9.16,10.12 -5.98,9.39 -12.57,18.37 c -0.46,0.63 -0.67,1.57 -0.55,2.27 z"
+       data-darkreader-inline-fill=""
+       id="path226" />
+    <path
+       fill="#009781"
+       d="m 251.12,226.2 q 19.48,35.5 36.65,72.17 c 0.6,1.27 1.58,2.43 2.3,3.64 a 0.34,0.34 0 0 0 0.63,-0.18 l -0.16,-3.46 q 4.62,11.77 9.3,23.46 c 0.59,1.45 0.89,3.24 1.22,4.78 0.33,1.59 1.26,2.44 1.94,3.89 a 0.62,0.6 62.1 0 1 -0.23,0.78 l -1.88,1.18 c -4.36,-8.59 -8.27,-17.62 -12.8,-25.83 q -3.91,-7.09 -7.76,-14.21 c -6.41,-11.86 -13.33,-26.8 -18.87,-36.68 -4.45,-7.97 -8.2,-16.12 -11.82,-24.17 q 0.61,0.12 0.91,-0.11 0.39,-0.29 0.2,-0.74 l -0.77,-1.81 q -0.19,-0.45 0.21,-0.75 0.84,-0.63 0.93,-1.96 z"
+       data-darkreader-inline-fill=""
+       id="path228" />
+    <path
+       fill="#2cffaa"
+       d="m 278.87,259.15 1.75,3.8 -0.88,0.65 q -0.46,0.34 -0.76,-0.14 c -2.07,-3.27 -3.45,-7.69 -4.66,-10.29 q -2.44,-5.31 -4.85,-10.64 -0.62,-1.37 0.3,-2.12 0.47,-0.39 0.72,0.17 z"
+       data-darkreader-inline-fill=""
+       id="path230" />
+    <path
+       fill="#009781"
+       d="m 198.61,245.89 c 3.38,0.31 1.86,3.44 0.79,5.29 q -0.32,0.54 -0.11,0.7 0.24,0.19 1.09,-0.21 l -2.46,6.58 -1.92,4.21 -2.37,0.48 q -0.69,0.14 -0.33,-0.46 2.55,-4.25 4.04,-9 0.28,-0.9 -0.49,-0.37 l -2.4,1.61 a 0.33,0.33 0 0 1 -0.48,-0.43 z"
+       data-darkreader-inline-fill=""
+       id="path232" />
+    <path
+       fill="#00cba3"
+       d="m 199.9,261.87 -6.58,9.76 a 0.47,0.48 72.1 0 1 -0.84,-0.43 c 0.89,-2.4 3.55,-6.62 3.52,-8.74 l 1.92,-4.21 q 0.15,1.03 1.7,0.7 a 0.99,0.98 3.2 0 0 0.72,-0.64 q 0.84,-2.5 2.57,-4.44 0.91,-1.02 0.37,0.24 l -1.27,2.97 q -0.06,0.12 0.01,0.23 l 0.13,0.23 q 0.25,0.42 -0.01,0.83 z"
+       data-darkreader-inline-fill=""
+       id="path234" />
+    <path
+       fill="#00cba3"
+       d="m 292.7,295.23 q 2.45,8.6 8.09,15.85 a 0.59,0.59 0 0 1 -0.71,0.9 l -1.14,-0.52 q -0.97,-0.45 -0.74,0.6 0.84,3.78 2.87,5.62 l 9.39,25.14 q 0.23,0.61 -0.41,0.46 c -4.4,-1.03 -6.97,-6.23 -9.16,-10.82 l 1.88,-1.18 A 0.62,0.6 62.1 0 0 303,330.5 c -0.68,-1.45 -1.61,-2.3 -1.94,-3.89 -0.33,-1.54 -0.63,-3.33 -1.22,-4.78 q -4.68,-11.69 -9.3,-23.46 -2.72,-4.77 -3.74,-10.11 a 0.44,0.44 0 0 1 0.74,-0.39 q 3.33,3.38 5.16,7.36 z"
+       data-darkreader-inline-fill=""
+       id="path236" />
+    <path
+       fill="#004164"
+       d="m 311.04,310.7 q -1.32,-0.34 -1.5,2.14 -1.7,4.4 -0.31,9.37 a 0.23,0.23 0 0 1 -0.22,0.29 q -0.14,0 -0.27,0 -0.17,0 -0.21,-0.16 l -6.71,-27.44 a 0.08,0.08 0 0 1 0.14,-0.07 q 6.63,6.78 9.08,15.87 z"
+       data-darkreader-inline-fill=""
+       id="path238" />
+  </g>
+  <circle
+     style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-linecap:square;stroke-linejoin:round;stroke-opacity:1"
+     id="path840"
+     cx="20"
+     cy="20"
+     r="16" />
+</svg>
--- a/PluginPipxInterface.py	Mon Jul 29 11:32:07 2024 +0200
+++ b/PluginPipxInterface.py	Mon Jul 29 11:37:20 2024 +0200
@@ -36,7 +36,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": "10.2.2",
+    "version": "10.2.3",
     "className": "PluginPipxInterface",
     "packageName": "PipxInterface",
     "shortDescription": "Graphical interface to the 'pipx' command.",
@@ -263,6 +263,34 @@
             self.__widget.show()
         self.__widget.setFocus(Qt.FocusReason.ActiveWindowFocusReason)
 
+    def setOutdatedIndicator(self, outdated):
+        """
+        Public method to set or clear the outdated indication of the pipx icon
+
+        @param outdated flag indicating outdated packages or dependencies
+        @type bool
+        """
+        uiLayoutType = self.__ui.getLayoutType()
+
+        if uiLayoutType == "Toolboxes":
+            iconName = "pipxOutdated22" if outdated else "pipx22"
+            index = self.__ui.rToolbox.indexOf(self.__widget)
+            self.__ui.rToolbox.setItemIcon(
+                index,
+                EricPixmapCache.getIcon(
+                    os.path.join("PipxInterface", "icons", iconName)
+                )
+            )
+        elif uiLayoutType == "Sidebars":
+            iconName = "pipxOutdated96" if outdated else "pipx96"
+            index = self.__ui.rightSidebar.indexOf(self.__widget)
+            self.__ui.rightSidebar.setTabIcon(
+                index,
+                EricPixmapCache.getIcon(
+                    os.path.join("PipxInterface", "icons", iconName)
+                )
+            )
+
     def getPreferences(self, key):
         """
         Public method to retrieve the various settings values.
--- a/changelog.md	Mon Jul 29 11:32:07 2024 +0200
+++ b/changelog.md	Mon Jul 29 11:37:20 2024 +0200
@@ -1,6 +1,12 @@
 ChangeLog
 ---------
 
+__Version 10.2.3__
+
+- Updated Russian translations.
+- Added code to indicate the existence of outdated packages or dependencies
+  in the icon.
+
 __Version 10.2.2__
 
 - Updated Spanish translations.

eric ide

mercurial