@beweco/aurora-ui 0.6.7 → 0.6.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/css/styles.css +1 -1
- package/dist/index.cjs.js +113 -27
- package/dist/index.esm.js +113 -28
- package/dist/types/components/currency/Currency.types.d.ts +4 -1
- package/dist/types/components/currency/Currency.types.d.ts.map +1 -1
- package/dist/types/components/currency/currency.constants.d.ts.map +1 -1
- package/dist/types/components/email-preview/EmailPreview.d.ts +25 -0
- package/dist/types/components/email-preview/EmailPreview.d.ts.map +1 -0
- package/dist/types/components/email-preview/EmailPreview.types.d.ts +39 -0
- package/dist/types/components/email-preview/EmailPreview.types.d.ts.map +1 -0
- package/dist/types/components/email-preview/index.d.ts +3 -0
- package/dist/types/components/email-preview/index.d.ts.map +1 -0
- package/dist/types/components/phone/flags/EuropeanUnion.d.ts +2 -0
- package/dist/types/components/phone/flags/EuropeanUnion.d.ts.map +1 -0
- package/dist/types/components/phone/flags/FlagIcon.d.ts.map +1 -1
- package/dist/types/components/phone/flags/index.d.ts +1 -0
- package/dist/types/components/phone/flags/index.d.ts.map +1 -1
- package/dist/types/components/whatsapp-preview/WhatsAppPreview.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -1767,24 +1767,31 @@ var defaultTranslations$c = {
|
|
|
1767
1767
|
noCountriesFound: "No se encontraron países",
|
|
1768
1768
|
};
|
|
1769
1769
|
|
|
1770
|
-
/**
|
|
1770
|
+
/**
|
|
1771
|
+
* Países que no entran en la lista por defecto de moneda.
|
|
1772
|
+
* El Salvador (y otros casos de dolarización sin código ISO propio) no deben duplicar "USD":
|
|
1773
|
+
* el dólar solo se lista con bandera de EE. UU. (país emisor ISO 4217).
|
|
1774
|
+
*/
|
|
1775
|
+
var EXCLUDED_FROM_DEFAULT_CURRENCY = new Set(["SV"]);
|
|
1776
|
+
/**
|
|
1777
|
+
* Países de la lista telefónica que usan EUR pero se agrupan en una sola fila
|
|
1778
|
+
* con código `EU` y bandera de la Unión Europea (no se distingue país emisor).
|
|
1779
|
+
*/
|
|
1780
|
+
var EUROZONE_COUNTRY_CODES = new Set(["FR", "ES", "IT", "DE", "PT"]);
|
|
1781
|
+
/** Moneda principal por código ISO de país o región (ISO 4217). `EU` = euro (UE). */
|
|
1771
1782
|
var currencyByCountry = {
|
|
1772
1783
|
CO: "COP",
|
|
1773
1784
|
AR: "ARS",
|
|
1774
1785
|
BR: "BRL",
|
|
1775
1786
|
MX: "MXN",
|
|
1776
|
-
SV: "USD",
|
|
1777
1787
|
PE: "PEN",
|
|
1778
1788
|
CL: "CLP",
|
|
1779
1789
|
US: "USD",
|
|
1780
1790
|
RU: "RUB",
|
|
1781
1791
|
EG: "EGP",
|
|
1782
1792
|
ZA: "ZAR",
|
|
1783
|
-
|
|
1784
|
-
ES: "EUR",
|
|
1785
|
-
IT: "EUR",
|
|
1793
|
+
EU: "EUR",
|
|
1786
1794
|
GB: "GBP",
|
|
1787
|
-
DE: "EUR",
|
|
1788
1795
|
AU: "AUD",
|
|
1789
1796
|
ID: "IDR",
|
|
1790
1797
|
NZ: "NZD",
|
|
@@ -1792,17 +1799,39 @@ var currencyByCountry = {
|
|
|
1792
1799
|
JP: "JPY",
|
|
1793
1800
|
CN: "CNY",
|
|
1794
1801
|
IN: "INR",
|
|
1795
|
-
PT: "EUR",
|
|
1796
1802
|
AE: "AED",
|
|
1797
1803
|
};
|
|
1798
|
-
|
|
1799
|
-
var
|
|
1800
|
-
|
|
1804
|
+
function currencyForCountry(country) {
|
|
1805
|
+
var code = currencyByCountry[country];
|
|
1806
|
+
if (code === undefined) {
|
|
1807
|
+
throw new Error("[Currency] Falta mapeo ISO 4217 para el pa\u00EDs \"".concat(country, "\". A\u00F1\u00E1delo en currencyByCountry."));
|
|
1808
|
+
}
|
|
1809
|
+
return code;
|
|
1810
|
+
}
|
|
1811
|
+
var euroOption = {
|
|
1812
|
+
name: "Unión Europea",
|
|
1813
|
+
country: "EU",
|
|
1814
|
+
currency: "EUR",
|
|
1815
|
+
};
|
|
1816
|
+
var defaultCurrencyOptions = (function () {
|
|
1817
|
+
var base = uniqueCountries
|
|
1818
|
+
.filter(function (c) {
|
|
1819
|
+
return !EXCLUDED_FROM_DEFAULT_CURRENCY.has(c.country) &&
|
|
1820
|
+
!EUROZONE_COUNTRY_CODES.has(c.country);
|
|
1821
|
+
})
|
|
1822
|
+
.map(function (c) { return ({
|
|
1801
1823
|
name: c.name,
|
|
1802
1824
|
country: c.country,
|
|
1803
|
-
currency: (
|
|
1804
|
-
});
|
|
1805
|
-
});
|
|
1825
|
+
currency: currencyForCountry(c.country),
|
|
1826
|
+
}); });
|
|
1827
|
+
var zaIdx = base.findIndex(function (o) { return o.country === "ZA"; });
|
|
1828
|
+
if (zaIdx === -1) {
|
|
1829
|
+
return __spreadArray(__spreadArray([], base, true), [euroOption], false);
|
|
1830
|
+
}
|
|
1831
|
+
return __spreadArray(__spreadArray(__spreadArray([], base.slice(0, zaIdx + 1), true), [
|
|
1832
|
+
euroOption
|
|
1833
|
+
], false), base.slice(zaIdx + 1), true);
|
|
1834
|
+
})();
|
|
1806
1835
|
var defaultTranslations$b = {
|
|
1807
1836
|
label: "Importe",
|
|
1808
1837
|
placeholder: "0",
|
|
@@ -1810,6 +1839,7 @@ var defaultTranslations$b = {
|
|
|
1810
1839
|
selectCurrencyAriaLabel: "Seleccionar moneda",
|
|
1811
1840
|
expandListAriaLabel: "Desplegar lista de monedas",
|
|
1812
1841
|
noCurrenciesFound: "No se encontraron resultados",
|
|
1842
|
+
countries: {},
|
|
1813
1843
|
};
|
|
1814
1844
|
|
|
1815
1845
|
var Andorra = function () {
|
|
@@ -1908,6 +1938,12 @@ var ElSalvador = function () {
|
|
|
1908
1938
|
return (jsxs("svg", { width: "50", height: "40", viewBox: "0 0 21 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [jsxs("g", { clipPath: "url(#clip0_13_11925)", children: [jsx("path", { d: "M0 0H21V14H0V0Z", fill: "white" }), jsx("path", { d: "M0 9.33333H21V14H0V9.33333ZM0 0H21V4.66667H0V0Z", fill: "#0047AB" }), jsx("path", { d: "M9.6755 8.76342L9.67476 8.7643L9.69152 8.89779C9.661 8.88485 9.6333 8.90631 9.62011 8.93483C9.59915 8.98498 9.61702 9.02284 9.65799 9.04764L9.71267 9.07951L9.81322 8.84698L9.77316 8.822L9.7338 8.91674H9.73235L9.7236 8.79186L9.6755 8.76345V8.76342ZM9.68496 8.94171C9.69304 8.94044 9.70214 8.94351 9.71193 8.94861L9.71776 8.95205L9.68934 9.01579L9.68352 9.01233C9.66528 8.99995 9.65335 8.98698 9.66383 8.96067C9.66998 8.94825 9.67688 8.94299 9.68496 8.94171ZM9.49958 8.88504L9.52646 8.83874L9.46588 8.79077L9.48684 8.75537L9.54559 8.80167L9.57885 8.74298L9.51689 8.69502L9.53786 8.65795L9.63759 8.73649L9.51371 8.95503L9.41531 8.8765L9.43628 8.84095L9.49822 8.88723M9.4583 8.57997V8.58084L9.40363 8.65405L9.38761 8.63854C9.35162 8.60092 9.31636 8.60278 9.2863 8.64371C9.25304 8.69002 9.26525 8.72965 9.30305 8.76687L9.34824 8.81336L9.49183 8.61444L9.4583 8.57997ZM9.34024 8.66608C9.34991 8.66358 9.35974 8.66964 9.37084 8.68076L9.37739 8.68763L9.33804 8.74103L9.33076 8.73671C9.31479 8.72059 9.30633 8.70389 9.32273 8.68076C9.32904 8.67207 9.33442 8.66762 9.34024 8.66608ZM9.18572 8.64333L9.15568 8.60407L9.24813 8.50555C9.26772 8.48405 9.29505 8.45016 9.2691 8.41776C9.24358 8.38386 9.21306 8.41295 9.19211 8.43349L9.10145 8.53201L9.07138 8.49258L9.16978 8.38719C9.20897 8.34461 9.25589 8.33386 9.29689 8.38719C9.33922 8.4405 9.32376 8.49422 9.28365 8.53737L9.18708 8.6428M9.10045 8.1485C9.09727 8.14845 9.0941 8.14874 9.09097 8.14937C9.08227 8.15105 9.07299 8.15514 9.064 8.16229C9.04441 8.1784 9.03029 8.20702 9.04213 8.23721C9.02528 8.23019 9.00796 8.23601 8.99477 8.24843C8.95877 8.27695 8.96043 8.31277 8.98457 8.35522L9.01592 8.40861L9.19739 8.26047L9.15802 8.19329C9.14308 8.16681 9.12274 8.14915 9.10045 8.1485ZM9.10336 8.2045C9.1168 8.2032 9.12655 8.2155 9.13542 8.2312L9.14127 8.23981V8.24151L9.09388 8.27856L9.09024 8.27165C9.08022 8.2517 9.06784 8.22817 9.08879 8.21051C9.09414 8.20645 9.09889 8.20493 9.10336 8.2045ZM9.03849 8.28026C9.04659 8.28034 9.05382 8.28724 9.06035 8.29836L9.06255 8.30353L9.02027 8.33883L9.01663 8.33454C9.00753 8.31842 9.0047 8.30208 9.02247 8.28804C9.02878 8.2826 9.03363 8.28024 9.03849 8.28029V8.28026ZM9.0354 8.03785L9.00535 7.97159L9.03676 7.95064L9.0896 8.06309L8.89419 8.18793L8.87188 8.14175L9.0354 8.03785M9.00216 7.85157L9.01857 7.90159L8.81585 8.00714L8.79807 7.95711L9.00263 7.85157M8.77304 7.67078C8.76256 7.68841 8.76119 7.71321 8.76575 7.73693C8.78077 7.78321 8.82316 7.79769 8.86096 7.78321C8.89556 7.77082 8.9229 7.72781 8.90924 7.68153C8.90513 7.65837 8.88827 7.64225 8.87144 7.63136L8.91971 7.61372C8.93293 7.62929 8.94385 7.64542 8.94977 7.6669C8.96937 7.74008 8.93338 7.81339 8.87553 7.83709C8.81495 7.85804 8.74843 7.82842 8.72703 7.75153C8.72111 7.73209 8.72111 7.71059 8.72292 7.68896L8.77259 7.67117M8.87889 7.32001L8.67117 7.46815L8.67773 7.50948L8.91678 7.56631L8.90803 7.51121L8.85993 7.4983H8.85847L8.84389 7.40528L8.88763 7.37514L8.87889 7.32001ZM8.81328 7.42852L8.82203 7.49052L8.73894 7.4785L8.81328 7.42852ZM8.75134 6.83084C8.69894 6.83613 8.6596 6.88178 8.65441 6.95055L8.65076 7.02547L8.8694 7.047L8.87524 6.97208C8.8798 6.8951 8.83663 6.83567 8.77466 6.83084C8.7669 6.82999 8.7591 6.82999 8.75134 6.83084ZM8.75501 6.8894C8.75983 6.88893 8.76481 6.889 8.77029 6.8894C8.80993 6.89316 8.83488 6.91856 8.83079 6.97725V6.98586L8.69813 6.97294L8.6996 6.96433C8.70238 6.91723 8.72103 6.89261 8.75498 6.88941L8.75501 6.8894ZM8.72339 6.68517L8.77031 6.69539L8.78533 6.61303L8.82132 6.62164L8.80809 6.704L8.86688 6.71961L8.8819 6.63403L8.91833 6.64101L8.89419 6.78045L8.67782 6.72714L8.70014 6.58934L8.73794 6.59796L8.72292 6.68356M8.80811 6.33952L8.85366 6.36062L8.87917 6.28191L8.91378 6.29765L8.88827 6.37618L8.94431 6.40098L8.97118 6.32078L9.00578 6.33635L8.96208 6.46658L8.75435 6.3719L8.79991 6.2417L8.83454 6.2556L8.80766 6.33801M9.01902 6.20504L9.04772 6.13875L9.08232 6.15819L9.03268 6.27227L8.83454 6.15282L8.85548 6.10652L9.01902 6.20504ZM9.08095 5.79481C9.06776 5.79481 9.05409 5.79962 9.04636 5.81425C9.03768 5.8283 9.03768 5.84816 9.04771 5.85889C9.07778 5.88369 9.12014 5.78572 9.18072 5.8396C9.21535 5.8713 9.22308 5.92034 9.19576 5.96443C9.17616 5.99462 9.14884 6.00372 9.11876 6.0015L9.11469 5.95371C9.13244 5.96059 9.15385 5.95522 9.16433 5.93797C9.17616 5.92241 9.17024 5.89872 9.15705 5.88795C9.13927 5.87241 9.12106 5.88795 9.10418 5.90036C9.07868 5.91979 9.05272 5.93054 9.0254 5.90519C8.99532 5.88039 8.9894 5.83202 9.01217 5.79592C9.02402 5.77662 9.04817 5.75664 9.06958 5.75349L9.0814 5.79426M9.17988 5.5631L9.15584 5.59324L9.25716 5.8568L9.28995 5.81632L9.26882 5.76292L9.26953 5.76118L9.32565 5.694L9.37084 5.7164L9.40366 5.67592L9.17988 5.5631ZM9.21414 5.63887H9.21561V5.63977L9.28484 5.67681L9.25058 5.71986L9.21414 5.63887ZM9.44947 5.57793L9.49915 5.53162L9.52145 5.56498L9.43671 5.64573L9.29734 5.44178L9.33333 5.40787L9.44813 5.57793M9.58887 5.4094L9.59023 5.40789L9.55243 5.22696L9.59478 5.19692L9.63988 5.48161L9.61757 5.49718L9.42077 5.32549L9.46179 5.29529L9.58887 5.4094ZM9.75128 5.09976L9.71994 5.11786L9.73162 5.40551L9.77388 5.38225L9.77243 5.32368H9.77317L9.84604 5.28406L9.8803 5.32455L9.92549 5.30386L9.75128 5.09976ZM9.76004 5.18587L9.81398 5.25136L9.7688 5.27459L9.76004 5.18587ZM9.98743 5.01019C9.97966 5.01123 9.97153 5.01332 9.96339 5.0162L9.9029 5.03518L9.96484 5.2875L10.0261 5.26684C10.0898 5.24481 10.119 5.17558 10.1026 5.10407C10.0862 5.04088 10.042 5.00309 9.98743 5.01019ZM9.99836 5.06359C10.0256 5.06479 10.0434 5.08367 10.0523 5.12132C10.0646 5.16649 10.0525 5.20478 10.0042 5.22034L9.99836 5.22292L9.96046 5.07134L9.96777 5.0679C9.97772 5.06461 9.98804 5.06315 9.99836 5.06359ZM10.2651 4.93268C10.261 4.93281 10.257 4.93292 10.2527 4.93355C10.1876 4.9443 10.1471 5.01625 10.1558 5.08941C10.1649 5.16273 10.2183 5.21762 10.2848 5.20742C10.3513 5.19667 10.3896 5.12644 10.381 5.05324C10.3737 4.98452 10.3269 4.93076 10.2651 4.93268H10.2651ZM10.26 4.99125C10.2951 4.98586 10.3259 5.02151 10.33 5.05928C10.3327 5.09468 10.3115 5.1427 10.2782 5.14972C10.2434 5.15503 10.212 5.11446 10.2075 5.0791C10.2043 5.03926 10.224 4.99606 10.26 4.99125H10.26ZM10.451 4.92064L10.4481 5.18417H10.4932V5.07822H10.4947L10.5494 5.18415L10.6033 5.18585V5.18501L10.5399 5.0722C10.5704 5.06681 10.5873 5.03461 10.5873 5.00069C10.5886 4.94518 10.557 4.92213 10.5115 4.92059L10.451 4.92064ZM10.4947 4.96714H10.5005C10.5219 4.96714 10.5384 4.97315 10.5384 5.00331C10.5384 5.03184 10.5221 5.03862 10.4998 5.03862H10.4954L10.4947 5.03949V4.96714ZM10.9213 5.02619L10.9094 5.08173L10.9791 5.10102L10.9704 5.14566L10.9008 5.12473L10.8875 5.19252L10.9587 5.21566L10.9499 5.25823L10.8352 5.22268L10.888 4.96858L11.0046 5.00249L10.9955 5.04728L10.9231 5.02619M11.0898 5.02619L11.1198 5.04023L11.1745 5.26417H11.1759L11.2319 5.10157L11.2729 5.12098L11.1895 5.36805L11.1595 5.35401L11.1035 5.13007L11.0479 5.2964L11.0055 5.27711L11.0903 5.02674M11.3868 5.44385L11.4397 5.48325L11.4201 5.52032L11.3276 5.45417L11.4455 5.23026L11.4834 5.25878L11.3867 5.44289M11.6557 5.39343L11.4422 5.53727L11.4779 5.57085L11.5216 5.54245L11.5223 5.54328L11.5843 5.60359L11.569 5.65869L11.6069 5.694L11.6827 5.42013L11.6557 5.39343ZM11.6215 5.47095L11.596 5.55623L11.5588 5.52091L11.6215 5.47095ZM11.9895 5.80424L11.7519 5.87746L11.7789 5.92225L11.8285 5.9076H11.8292L11.8758 5.9851L11.8489 6.03506L11.8758 6.07984L12.0092 5.83785L11.9895 5.80424ZM11.94 5.86885L11.8963 5.94378L11.8678 5.89725L11.94 5.86885ZM12.0979 6.23037L11.948 6.24803L11.9421 6.23246L12.0432 6.10542V6.1039L11.9115 6.15557L11.8906 6.10762L12.1115 6.0274L12.1265 6.06133L12.0223 6.1991L12.1767 6.17969L12.1917 6.21358L12.0022 6.37081L11.9826 6.32286L12.0974 6.23191M12.2058 6.40415L12.1602 6.42359L12.1826 6.50212L12.1466 6.51615L12.1243 6.43749L12.0682 6.45858L12.0919 6.54253L12.056 6.55651L12.0182 6.42249L12.2273 6.33856L12.2664 6.47249L12.2304 6.48656L12.2063 6.40261M12.2898 6.57162L12.0733 6.62501L12.0821 6.67841L12.1681 6.65515H12.1695L12.0937 6.74299L12.1039 6.805L12.1054 6.80585L12.1841 6.70939C12.1951 6.74331 12.2265 6.75343 12.2533 6.74643C12.3002 6.73568 12.3127 6.69464 12.3022 6.64137L12.2898 6.57162ZM12.2614 6.63535V6.63963C12.2661 6.66494 12.2658 6.68647 12.2402 6.6913C12.2156 6.69669 12.2064 6.68065 12.2023 6.65426V6.64911L12.2614 6.63535ZM12.1134 6.91069L12.1093 6.85903L12.3288 6.82886L12.3347 6.88053L12.1138 6.91069M12.2859 7.1653C12.301 7.1513 12.3083 7.12816 12.3083 7.10445C12.3069 7.05278 12.2691 7.02589 12.2314 7.02589C12.1935 7.02589 12.1571 7.05764 12.1571 7.10824C12.1571 7.12922 12.1676 7.15291 12.1812 7.16691L12.1298 7.16851C12.1225 7.14754 12.1165 7.12763 12.1165 7.10608C12.1152 7.02911 12.168 6.97205 12.23 6.97042C12.2933 6.97042 12.348 7.02372 12.3493 7.10286C12.3493 7.12386 12.3466 7.14538 12.3375 7.16366L12.2859 7.1653ZM12.1222 7.21408L12.1178 7.26922L12.1608 7.29762L12.1506 7.39237L12.1025 7.40441L12.0967 7.46212L12.3328 7.39237L12.3372 7.35188L12.1222 7.21408ZM12.1965 7.32174L12.2665 7.35879V7.36136L12.1907 7.38029L12.1965 7.32174ZM12.1298 7.9662C12.1494 7.95918 12.163 7.9414 12.1703 7.92156C12.1867 7.87359 12.1598 7.8284 12.1251 7.81228C12.0906 7.79672 12.0464 7.80899 12.03 7.85322C12.024 7.87636 12.0259 7.90102 12.0341 7.92101L11.9858 7.90008C11.9844 7.87692 11.9858 7.8575 11.9917 7.83598C12.0159 7.76435 12.0842 7.7343 12.1402 7.76283C12.199 7.78914 12.2341 7.8645 12.2099 7.93823C12.2027 7.9579 12.192 7.97552 12.1786 7.98992L12.1302 7.96676M12.0933 8.10773L12.0509 8.08139L12.0163 8.15457L11.9849 8.13527L12.0177 8.06046L11.9649 8.02655L11.9289 8.10511L11.8974 8.08416L11.9535 7.95918L12.1489 8.08416L12.0928 8.20736L12.0596 8.18641L12.0942 8.10937M12.051 8.30105L12.0331 8.33124L11.8364 8.33811L11.835 8.33977L11.9562 8.44369L11.9294 8.48626L11.7475 8.32902L11.7654 8.29884L11.9621 8.29029H11.9635L11.841 8.18475L11.8678 8.14218L12.051 8.3016M11.6551 8.45016L11.6866 8.41087L11.8195 8.56258L11.851 8.52167L11.8778 8.55185L11.7827 8.66978L11.7558 8.63963L11.7872 8.60034L11.6541 8.45016M11.5894 8.52746L11.5544 8.55931L11.612 8.64201V8.64371L11.5107 8.60409L11.4699 8.64458L11.4706 8.64631L11.5792 8.68162C11.5591 8.70849 11.564 8.74644 11.5836 8.7729C11.6123 8.81534 11.6502 8.80766 11.6849 8.77377L11.73 8.72812L11.5894 8.52745V8.52746ZM11.6324 8.67385L11.6718 8.72984L11.6674 8.73242C11.6505 8.74964 11.6356 8.75729 11.6193 8.73416C11.6042 8.71265 11.6117 8.69509 11.6295 8.67731L11.6324 8.67385ZM11.4524 8.66351L11.4116 8.69281L11.4203 8.75135H11.4196L11.3518 8.80131L11.3124 8.766L11.2716 8.79614L11.4677 8.96925L11.4961 8.94857L11.4524 8.66353V8.66351ZM11.4261 8.80131L11.4458 8.88742H11.4444L11.3839 8.83145L11.4261 8.80131ZM11.2078 8.87965L11.149 8.90984L11.1339 8.87056L11.2324 8.81504L11.3276 9.053L11.2866 9.07393L11.2077 8.8791M12.2541 6.3815L12.2985 6.45024H12.3338L12.3031 6.3815H12.2541ZM9.03383 8.5716L9.10647 8.56102L9.13113 8.59075L9.06813 8.61297L9.03383 8.5716Z", fill: "#FFCC00" }), jsx("path", { d: "M10.1209 8.88505C10.1209 8.88505 10.1997 8.87803 10.2134 8.87803C10.2252 8.87803 10.2526 8.81395 10.2644 8.8032C10.2762 8.793 10.4853 8.67298 10.6206 8.64762C10.7536 8.62297 10.9632 8.52815 11.0069 8.50294C11.2311 8.3759 11.4811 8.13957 11.5372 8.04271C11.5946 7.94101 11.6565 7.7062 11.6837 7.57872C11.6957 7.52003 11.764 7.28156 11.764 7.11848C11.764 6.92899 11.7444 6.77504 11.7203 6.65127C11.6961 6.52799 11.5176 6.16633 11.4082 6.00635C11.4082 6.00635 11.6538 6.45584 11.6961 6.62972C11.7385 6.80682 11.7503 7.02159 11.7475 7.14538C11.7449 7.24712 11.6747 7.61802 11.5704 7.89031C11.4875 8.10883 11.4146 8.13365 11.2856 8.25532C11.2251 8.31237 11.1085 8.40387 11.0101 8.46313C10.9117 8.52014 10.7026 8.59334 10.648 8.60243C10.5919 8.61484 10.3131 8.7117 10.2767 8.7328C10.2407 8.75428 10.145 8.85225 10.1209 8.88451", fill: "#009900" }), jsx("path", { d: "M10.1209 8.88505C10.1209 8.88505 10.1997 8.87803 10.2134 8.87803C10.2252 8.87803 10.2526 8.81395 10.2644 8.8032C10.2762 8.793 10.4853 8.67298 10.6206 8.64762C10.7536 8.62297 10.9632 8.52815 11.0069 8.50294C11.2311 8.3759 11.4811 8.13957 11.5372 8.04271C11.5946 7.94101 11.6565 7.7062 11.6837 7.57872C11.6957 7.52003 11.764 7.28156 11.764 7.11848C11.764 6.92899 11.7444 6.77504 11.7203 6.65127C11.6961 6.52799 11.5176 6.16633 11.4082 6.00635C11.4082 6.00635 11.6538 6.45584 11.6961 6.62972C11.7385 6.80682 11.7503 7.02159 11.7475 7.14538C11.7449 7.24712 11.6747 7.61802 11.5704 7.89031C11.4875 8.10883 11.4146 8.13365 11.2856 8.25532C11.2251 8.31237 11.1085 8.40387 11.0101 8.46313C10.9117 8.52014 10.7026 8.59334 10.648 8.60243C10.5919 8.61484 10.3131 8.7117 10.2767 8.7328C10.2407 8.75428 10.145 8.85225 10.1209 8.88451V8.88505Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.5203 8.04474C11.5143 8.01082 11.5117 7.98617 11.5007 7.97693C11.4935 7.96452 11.4615 7.92154 11.4556 7.89301C11.4497 7.86448 11.4556 7.84134 11.4556 7.82674C11.4556 7.81282 11.447 7.76281 11.447 7.76281C11.447 7.76281 11.462 7.70188 11.4739 7.68949C11.4857 7.68095 11.5176 7.62871 11.5222 7.61469C11.5222 7.61469 11.5208 7.64319 11.528 7.65726C11.5385 7.67117 11.5413 7.70893 11.5413 7.73041C11.5413 7.75151 11.5353 7.80209 11.5413 7.82674C11.5471 7.85527 11.5564 7.87841 11.5504 7.91078C11.5463 7.9371 11.5203 8.04474 11.5203 8.04474", fill: "#009900" }), jsx("path", { d: "M11.5203 8.04474C11.5143 8.01082 11.5117 7.98617 11.5007 7.97693C11.4935 7.96452 11.4615 7.92154 11.4556 7.89301C11.4497 7.86448 11.4556 7.84134 11.4556 7.82674C11.4556 7.81282 11.447 7.76281 11.447 7.76281C11.447 7.76281 11.462 7.70188 11.4739 7.68949C11.4857 7.68095 11.5176 7.62871 11.5222 7.61469C11.5222 7.61469 11.5208 7.64319 11.528 7.65726C11.5385 7.67117 11.5413 7.70893 11.5413 7.73041C11.5413 7.75151 11.5353 7.80209 11.5413 7.82674C11.5471 7.85527 11.5564 7.87841 11.5504 7.91078C11.5463 7.9371 11.5203 8.04474 11.5203 8.04474", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.528 8.00937C11.528 8.00937 11.5991 7.9038 11.5991 7.85916C11.5991 7.81659 11.6051 7.79135 11.6109 7.78048C11.6169 7.77028 11.6579 7.71433 11.6214 7.64653C11.6051 7.61803 11.6018 7.62007 11.5927 7.58949C11.5809 7.55022 11.5568 7.55022 11.5535 7.51086C11.5535 7.51086 11.5449 7.5571 11.5418 7.59649C11.539 7.6358 11.5444 7.6497 11.5476 7.67121C11.5504 7.69435 11.539 7.71914 11.539 7.75155C11.539 7.78323 11.5417 7.79618 11.5417 7.81548C11.5417 7.82582 11.5535 7.96404 11.5285 8.0088", fill: "#009900" }), jsx("path", { d: "M11.528 8.00937C11.528 8.00937 11.5991 7.9038 11.5991 7.85916C11.5991 7.81659 11.6051 7.79135 11.6109 7.78048C11.6169 7.77028 11.6579 7.71433 11.6214 7.64653C11.6051 7.61803 11.6018 7.62007 11.5927 7.58949C11.5809 7.55022 11.5568 7.55022 11.5535 7.51086C11.5535 7.51086 11.5449 7.5571 11.5418 7.59649C11.539 7.6358 11.5444 7.6497 11.5476 7.67121C11.5504 7.69435 11.539 7.71914 11.539 7.75155C11.539 7.78323 11.5417 7.79618 11.5417 7.81548C11.5417 7.82582 11.5535 7.96404 11.5285 8.0088L11.528 8.00937Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M10.7423 8.575C10.7423 8.575 10.801 8.56797 10.8238 8.56259C10.8388 8.56107 10.8753 8.5502 10.8962 8.54166C10.9126 8.53461 10.9477 8.51313 10.9778 8.47537C11.0338 8.40385 11.0274 8.36609 11.0383 8.36292C11.0593 8.35976 11.007 8.35272 10.9824 8.35811C10.9568 8.36128 10.925 8.38124 10.9022 8.40604C10.8798 8.43072 10.8448 8.45925 10.8325 8.47C10.8206 8.48034 10.8115 8.48571 10.7979 8.50555C10.7846 8.52662 10.7846 8.53944 10.7418 8.575", fill: "#009900" }), jsx("path", { d: "M10.7423 8.575C10.7423 8.575 10.801 8.56797 10.8238 8.56259C10.8388 8.56107 10.8753 8.5502 10.8962 8.54166C10.9126 8.53461 10.9477 8.51313 10.9778 8.47537C11.0338 8.40385 11.0274 8.36609 11.0383 8.36292C11.0593 8.35976 11.007 8.35272 10.9824 8.35811C10.9568 8.36128 10.925 8.38124 10.9022 8.40604C10.8798 8.43072 10.8448 8.45925 10.8325 8.47C10.8206 8.48034 10.8115 8.48571 10.7979 8.50555C10.7846 8.52662 10.7846 8.53944 10.7418 8.575H10.7423Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M10.662 8.62559C10.662 8.62559 10.8106 8.54706 10.8242 8.53246C10.8406 8.52019 10.8648 8.49167 10.8803 8.47167C10.8966 8.45226 10.959 8.41464 10.9695 8.38929C10.9768 8.3737 11.0146 8.31073 11.0374 8.26073C11.0493 8.23427 10.939 8.26775 10.939 8.26775C10.8484 8.31018 10.8907 8.28002 10.8406 8.32479C10.8106 8.35112 10.7905 8.37481 10.7832 8.39425C10.7714 8.42429 10.7577 8.4798 10.7441 8.50667C10.7322 8.5352 10.7094 8.57075 10.6625 8.62451", fill: "#009900" }), jsx("path", { d: "M10.662 8.62559C10.662 8.62559 10.8106 8.54706 10.8242 8.53246C10.8406 8.52019 10.8648 8.49167 10.8803 8.47167C10.8966 8.45226 10.959 8.41464 10.9695 8.38929C10.9768 8.3737 11.0146 8.31073 11.0374 8.26073C11.0493 8.23427 10.939 8.26775 10.939 8.26775C10.8484 8.31018 10.8907 8.28002 10.8406 8.32479C10.8106 8.35112 10.7905 8.37481 10.7832 8.39425C10.7714 8.42429 10.7577 8.4798 10.7441 8.50667C10.7322 8.5352 10.7094 8.57075 10.6625 8.62451L10.662 8.62559Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M10.5819 8.64719C10.5819 8.64719 10.7026 8.60998 10.7591 8.52015C10.7983 8.45924 10.7997 8.47757 10.8165 8.45772C10.8361 8.43127 10.868 8.40218 10.8953 8.35052C10.8926 8.35533 10.9286 8.20735 10.9286 8.19122C10.9272 8.18102 10.8816 8.19824 10.8438 8.21601C10.8124 8.23213 10.7942 8.26232 10.7669 8.28216C10.7336 8.30696 10.7309 8.36995 10.7154 8.39846C10.6944 8.44091 10.6912 8.46254 10.6912 8.48404C10.6912 8.51574 10.6762 8.52661 10.6671 8.55348C10.6566 8.58518 10.6247 8.57979 10.5824 8.64664", fill: "#009900" }), jsx("path", { d: "M10.5819 8.64719C10.5819 8.64719 10.7026 8.60998 10.7591 8.52015C10.7983 8.45924 10.7997 8.47757 10.8165 8.45772C10.8361 8.43127 10.868 8.40218 10.8953 8.35052C10.8926 8.35533 10.9286 8.20735 10.9286 8.19122C10.9272 8.18102 10.8816 8.19824 10.8438 8.21601C10.8124 8.23213 10.7942 8.26232 10.7669 8.28216C10.7336 8.30696 10.7309 8.36995 10.7154 8.39846C10.6944 8.44091 10.6912 8.46254 10.6912 8.48404C10.6912 8.51574 10.6762 8.52661 10.6671 8.55348C10.6566 8.58518 10.6247 8.57979 10.5824 8.64664L10.5819 8.64719Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M10.7773 8.60038C10.7773 8.60038 10.8816 8.54484 10.8966 8.54114C10.9117 8.53797 10.9176 8.52707 10.9391 8.52019C10.9568 8.51524 10.9723 8.49909 11.016 8.50985C11.0337 8.5148 11.1098 8.53464 11.1294 8.52391C11.1472 8.51372 11.1021 8.58468 11.0793 8.60093C11.0584 8.61486 11.022 8.62186 10.9914 8.61856C10.9599 8.61542 10.9171 8.61856 10.9021 8.61856C10.8871 8.61856 10.8766 8.62188 10.8552 8.61542C10.8342 8.60837 10.8283 8.59598 10.7764 8.60134", fill: "#009900" }), jsx("path", { d: "M10.7773 8.60038C10.7773 8.60038 10.8816 8.54484 10.8966 8.54114C10.9117 8.53797 10.9176 8.52707 10.9391 8.52019C10.9568 8.51524 10.9723 8.49909 11.016 8.50985C11.0337 8.5148 11.1098 8.53464 11.1294 8.52391C11.1472 8.51372 11.1021 8.58468 11.0793 8.60093C11.0584 8.61486 11.022 8.62186 10.9914 8.61856C10.9599 8.61542 10.9171 8.61856 10.9021 8.61856C10.8871 8.61856 10.8766 8.62188 10.8552 8.61542C10.8342 8.60837 10.8283 8.59598 10.7764 8.60134L10.7773 8.60038Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M10.7063 8.6003C10.7063 8.6003 10.8229 8.56476 10.8425 8.56476C10.8621 8.56476 10.9181 8.56957 10.9391 8.57496C10.9614 8.57825 11.0311 8.57015 11.0524 8.58198C11.0734 8.59439 11.1659 8.60829 11.19 8.60127C11.2142 8.59646 11.1417 8.67995 11.1112 8.68906C11.0173 8.72089 11.0461 8.71552 10.9855 8.69773C10.9477 8.68738 10.8949 8.68367 10.8766 8.67995C10.8584 8.67665 10.8616 8.66438 10.8375 8.65142C10.8119 8.63903 10.7709 8.60678 10.7058 8.59975", fill: "#009900" }), jsx("path", { d: "M10.7063 8.6003C10.7063 8.6003 10.8229 8.56476 10.8425 8.56476C10.8621 8.56476 10.9181 8.56957 10.9391 8.57496C10.9614 8.57825 11.0311 8.57015 11.0524 8.58198C11.0734 8.59439 11.1659 8.60829 11.19 8.60127C11.2142 8.59646 11.1417 8.67995 11.1112 8.68906C11.0173 8.72089 11.0461 8.71552 10.9855 8.69773C10.9477 8.68738 10.8949 8.68367 10.8766 8.67995C10.8584 8.67665 10.8616 8.66438 10.8375 8.65142C10.8119 8.63903 10.7709 8.60678 10.7058 8.59975L10.7063 8.6003Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M10.6107 8.65797C10.6107 8.65797 10.7273 8.60092 10.8179 8.62945C10.8812 8.65038 10.8799 8.64722 10.904 8.65258C10.9322 8.65739 10.9568 8.6402 11.0051 8.66333C11.0293 8.67353 11.1308 8.7219 11.1582 8.72039C11.1837 8.71873 11.078 8.80059 11.0493 8.7952C10.9555 8.77949 10.8662 8.81615 10.8238 8.79674C10.7847 8.77908 10.7619 8.76667 10.7423 8.75966C10.7227 8.75099 10.7122 8.72949 10.7004 8.72039C10.6886 8.70798 10.6808 8.68111 10.6111 8.65797", fill: "#009900" }), jsx("path", { d: "M10.6107 8.65797C10.6107 8.65797 10.7273 8.60092 10.8179 8.62945C10.8812 8.65038 10.8799 8.64722 10.904 8.65258C10.9322 8.65739 10.9568 8.6402 11.0051 8.66333C11.0293 8.67353 11.1308 8.7219 11.1582 8.72039C11.1837 8.71873 11.078 8.80059 11.0493 8.7952C10.9555 8.77949 10.8662 8.81615 10.8238 8.79674C10.7847 8.77908 10.7619 8.76667 10.7423 8.75966C10.7227 8.75099 10.7122 8.72949 10.7004 8.72039C10.6886 8.70798 10.6808 8.68111 10.6111 8.65797H10.6107Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.2338 8.34038C11.2338 8.34038 11.3017 8.25259 11.3139 8.24186C11.3272 8.22944 11.359 8.20258 11.3759 8.1848C11.3877 8.17076 11.4027 8.1385 11.4455 8.12611C11.4651 8.12131 11.5107 8.11053 11.5226 8.0922C11.5358 8.07291 11.5212 8.16166 11.5062 8.18536C11.4925 8.21016 11.4625 8.23539 11.4338 8.24777C11.4051 8.26018 11.3672 8.28498 11.3535 8.29242C11.3404 8.29944 11.3339 8.30813 11.3112 8.31186C11.2889 8.31666 11.2797 8.31019 11.2343 8.34038", fill: "#009900" }), jsx("path", { d: "M11.2338 8.34038C11.2338 8.34038 11.3017 8.25259 11.3139 8.24186C11.3272 8.22944 11.359 8.20258 11.3759 8.1848C11.3877 8.17076 11.4027 8.1385 11.4455 8.12611C11.4651 8.12131 11.5107 8.11053 11.5226 8.0922C11.5358 8.07291 11.5212 8.16166 11.5062 8.18536C11.4925 8.21016 11.4625 8.23539 11.4338 8.24777C11.4051 8.26018 11.3672 8.28498 11.3535 8.29242C11.3404 8.29944 11.3339 8.30813 11.3112 8.31186C11.2889 8.31666 11.2797 8.31019 11.2343 8.34038H11.2338Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.1705 8.37637C11.1705 8.37637 11.2852 8.28161 11.3021 8.27249C11.3198 8.26229 11.3523 8.24934 11.3731 8.24066C11.3955 8.23376 11.4534 8.18527 11.4761 8.18527C11.4985 8.18527 11.5426 8.18209 11.5622 8.16583C11.58 8.14654 11.5636 8.22991 11.5426 8.25527C11.4684 8.33216 11.5203 8.30844 11.4579 8.32307C11.4219 8.33161 11.3719 8.35696 11.355 8.36233C11.3354 8.36937 11.334 8.3553 11.3081 8.35752C11.2811 8.35917 11.2324 8.3527 11.1705 8.37695", fill: "#009900" }), jsx("path", { d: "M11.1705 8.37637C11.1705 8.37637 11.2852 8.28161 11.3021 8.27249C11.3198 8.26229 11.3523 8.24934 11.3731 8.24066C11.3955 8.23376 11.4534 8.18527 11.4761 8.18527C11.4985 8.18527 11.5426 8.18209 11.5622 8.16583C11.58 8.14654 11.5636 8.22991 11.5426 8.25527C11.4684 8.33216 11.5203 8.30844 11.4579 8.32307C11.4219 8.33161 11.3719 8.35696 11.355 8.36233C11.3354 8.36937 11.334 8.3553 11.3081 8.35752C11.2811 8.35917 11.2324 8.3527 11.1705 8.37695L11.1705 8.37637Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.1427 8.4017C11.1427 8.4017 11.1896 8.36612 11.2821 8.34849C11.3454 8.33445 11.344 8.33069 11.3668 8.32369C11.3955 8.3135 11.4014 8.3135 11.4529 8.31128C11.4784 8.30811 11.58 8.34683 11.6041 8.33072C11.625 8.31664 11.5786 8.36612 11.5513 8.37854C11.5107 8.39631 11.5153 8.42647 11.4711 8.4448C11.4247 8.4626 11.3759 8.48408 11.3473 8.4765C11.3277 8.47333 11.3093 8.46094 11.2806 8.45721C11.252 8.45389 11.2006 8.40389 11.1432 8.40167", fill: "#009900" }), jsx("path", { d: "M11.1427 8.4017C11.1427 8.4017 11.1896 8.36612 11.2821 8.34849C11.3454 8.33445 11.344 8.33069 11.3668 8.32369C11.3955 8.3135 11.4014 8.3135 11.4529 8.31128C11.4784 8.30811 11.58 8.34683 11.6041 8.33072C11.625 8.31664 11.5786 8.36612 11.5513 8.37854C11.5107 8.39631 11.5153 8.42647 11.4711 8.4448C11.4247 8.4626 11.3759 8.48408 11.3473 8.4765C11.3277 8.47333 11.3093 8.46094 11.2806 8.45721C11.252 8.45389 11.2006 8.40389 11.1432 8.40167L11.1427 8.4017Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.1336 8.37478C11.1336 8.37478 11.1112 8.24236 11.1308 8.21218C11.1381 8.19825 11.1518 8.17663 11.1549 8.14273C11.1577 8.11103 11.1759 8.05715 11.1882 8.03882C11.2001 8.02119 11.2261 7.93713 11.2183 7.91565C11.2183 7.91565 11.2834 7.99046 11.2802 8.03882C11.2775 8.08513 11.2775 8.07437 11.2802 8.09602C11.283 8.11695 11.2652 8.19068 11.2533 8.2122C11.2402 8.23327 11.2474 8.29995 11.2337 8.31236C11.2219 8.32792 11.149 8.38553 11.1339 8.37478", fill: "#009900" }), jsx("path", { d: "M11.1336 8.37478C11.1336 8.37478 11.1112 8.24236 11.1308 8.21218C11.1381 8.19825 11.1518 8.17663 11.1549 8.14273C11.1577 8.11103 11.1759 8.05715 11.1882 8.03882C11.2001 8.02119 11.2261 7.93713 11.2183 7.91565C11.2183 7.91565 11.2834 7.99046 11.2802 8.03882C11.2775 8.08513 11.2775 8.07437 11.2802 8.09602C11.283 8.11695 11.2652 8.19068 11.2533 8.2122C11.2402 8.23327 11.2474 8.29995 11.2337 8.31236C11.2219 8.32792 11.149 8.38553 11.1339 8.37478H11.1336Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.1427 8.40169C11.1367 8.40649 11.1819 8.36075 11.2032 8.34997C11.2256 8.33979 11.3107 8.31071 11.3167 8.28591C11.3226 8.2596 11.3936 8.17346 11.3968 8.15032C11.3982 8.13474 11.4105 8.1003 11.4087 8.08252C11.406 8.06474 11.4001 8.02162 11.391 7.99696C11.3822 7.9705 11.3595 7.90917 11.338 7.89844C11.338 7.89844 11.3203 7.96622 11.3139 7.99158C11.3081 8.01789 11.3021 8.04697 11.293 8.06104C11.2844 8.07495 11.2538 8.1433 11.2493 8.17032C11.2479 8.19497 11.2328 8.27956 11.2283 8.2957C11.2269 8.31348 11.1695 8.38884 11.1436 8.40276", fill: "#009900" }), jsx("path", { d: "M11.1427 8.40169C11.1367 8.40649 11.1819 8.36075 11.2032 8.34997C11.2256 8.33979 11.3107 8.31071 11.3167 8.28591C11.3226 8.2596 11.3936 8.17346 11.3968 8.15032C11.3982 8.13474 11.4105 8.1003 11.4087 8.08252C11.406 8.06474 11.4001 8.02162 11.391 7.99696C11.3822 7.9705 11.3595 7.90917 11.338 7.89844C11.338 7.89844 11.3203 7.96622 11.3139 7.99158C11.3081 8.01789 11.3021 8.04697 11.293 8.06104C11.2844 8.07495 11.2538 8.1433 11.2493 8.17032C11.2479 8.19497 11.2328 8.27956 11.2283 8.2957C11.2269 8.31348 11.1695 8.38884 11.1436 8.40276L11.1427 8.40169Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.5202 8.04478C11.5162 8.06419 11.5654 8.02712 11.59 8.02712C11.6154 8.02712 11.6883 8.03732 11.7066 8.01678C11.7243 7.99585 11.7516 7.95438 11.7608 7.94734C11.7712 7.94046 11.8044 7.87582 11.8137 7.8403C11.8228 7.80321 11.8878 7.73858 11.8952 7.731C11.8952 7.731 11.8072 7.71008 11.7511 7.75192C11.697 7.79453 11.6938 7.78378 11.6815 7.79137C11.6696 7.79826 11.574 7.89305 11.5681 7.92915C11.5621 7.96456 11.5212 8.02753 11.5198 8.04533", fill: "#009900" }), jsx("path", { d: "M11.5202 8.04478C11.5162 8.06419 11.5654 8.02712 11.59 8.02712C11.6154 8.02712 11.6883 8.03732 11.7066 8.01678C11.7243 7.99585 11.7516 7.95438 11.7608 7.94734C11.7712 7.94046 11.8044 7.87582 11.8137 7.8403C11.8228 7.80321 11.8878 7.73858 11.8952 7.731C11.8952 7.731 11.8072 7.71008 11.7511 7.75192C11.697 7.79453 11.6938 7.78378 11.6815 7.79137C11.6696 7.79826 11.574 7.89305 11.5681 7.92915C11.5621 7.96456 11.5212 8.02753 11.5198 8.04533L11.5202 8.04478Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.5203 8.04476C11.5203 8.04476 11.5991 7.97861 11.6168 7.98232C11.6364 7.98564 11.7225 7.91081 11.727 7.8645C11.7298 7.83973 11.7708 7.8036 11.78 7.78748C11.8008 7.74451 11.8132 7.64654 11.8433 7.62115C11.8433 7.62115 11.7599 7.64596 11.7389 7.64969C11.6997 7.65671 11.6665 7.66376 11.6496 7.70523C11.6364 7.7445 11.6228 7.77673 11.6104 7.78003C11.5986 7.78321 11.5804 7.83323 11.5745 7.88545C11.5685 7.93549 11.5203 8.04476 11.5203 8.04476Z", fill: "#009900" }), jsx("path", { d: "M11.5202 8.04476C11.5202 8.04476 11.5991 7.97861 11.6168 7.98232C11.6364 7.98564 11.7225 7.91081 11.727 7.8645C11.7298 7.83973 11.7707 7.8036 11.7799 7.78748C11.8008 7.74503 11.8132 7.64654 11.8432 7.62115C11.8432 7.62115 11.7599 7.64596 11.7389 7.64969C11.6997 7.65671 11.6665 7.66376 11.6496 7.70523C11.6364 7.7445 11.6228 7.77673 11.6104 7.78003C11.5986 7.78321 11.5804 7.83323 11.574 7.88545C11.5681 7.93549 11.5198 8.04476 11.5198 8.04476H11.5202Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.6706 7.55064C11.6574 7.57546 11.6587 7.40594 11.651 7.38979C11.6451 7.37202 11.63 7.33433 11.6178 7.32035C11.6059 7.30635 11.6059 7.25629 11.6001 7.24175C11.5941 7.22777 11.5972 7.12925 11.6059 7.10394C11.6059 7.10394 11.63 7.12494 11.6438 7.14325C11.6555 7.16102 11.677 7.16802 11.683 7.18955C11.6888 7.21055 11.7011 7.21055 11.7098 7.23422C11.7189 7.25522 11.7275 7.29127 11.7217 7.31982C11.7157 7.34833 11.7189 7.3591 11.7189 7.38601C11.7189 7.41079 11.6888 7.51841 11.6706 7.55064Z", fill: "#009900" }), jsx("path", { d: "M11.6706 7.55064C11.6574 7.57546 11.6587 7.40594 11.651 7.38979C11.6451 7.37202 11.63 7.33433 11.6178 7.32035C11.6059 7.30635 11.6059 7.25629 11.6001 7.24175C11.5941 7.22777 11.5972 7.12925 11.6059 7.10394C11.6059 7.10394 11.63 7.12494 11.6438 7.14325C11.6555 7.16102 11.677 7.16802 11.683 7.18955C11.6888 7.21055 11.7011 7.21055 11.7098 7.23422C11.7189 7.25522 11.7275 7.29127 11.7217 7.31982C11.7157 7.34833 11.7189 7.3591 11.7189 7.38601C11.7189 7.41079 11.6888 7.51841 11.6706 7.55064Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.6675 7.56689C11.6675 7.56689 11.6734 7.51895 11.6587 7.50065C11.6438 7.4829 11.6288 7.4829 11.6228 7.47212C11.6169 7.4619 11.6187 7.44735 11.6123 7.43284C11.6064 7.41884 11.5927 7.39354 11.5913 7.38118C11.5855 7.34187 11.5672 7.2988 11.5827 7.25629C11.5827 7.25629 11.6173 7.26868 11.625 7.27729C11.6338 7.28426 11.6629 7.31282 11.6656 7.34131C11.6684 7.37307 11.6715 7.37846 11.6807 7.39676C11.6893 7.41454 11.7016 7.46837 11.6866 7.50065C11.6775 7.52136 11.6714 7.54376 11.6688 7.56689", fill: "#009900" }), jsx("path", { d: "M11.6675 7.56689C11.6675 7.56689 11.6734 7.51895 11.6587 7.50065C11.6438 7.4829 11.6288 7.4829 11.6228 7.47212C11.6169 7.4619 11.6187 7.44735 11.6123 7.43284C11.6064 7.41884 11.5927 7.39354 11.5913 7.38118C11.5855 7.34187 11.5672 7.2988 11.5827 7.25629C11.5827 7.25629 11.6173 7.26868 11.625 7.27729C11.6338 7.28426 11.6629 7.31282 11.6656 7.34131C11.6684 7.37307 11.6715 7.37846 11.6807 7.39676C11.6893 7.41454 11.7016 7.46837 11.6866 7.50065C11.6775 7.52136 11.6714 7.54376 11.6688 7.56689H11.6675Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.7554 7.01135C11.7554 7.01135 11.7612 6.90583 11.7389 6.87355C11.7134 6.84179 11.7075 6.78044 11.651 6.74652C11.651 6.74652 11.6551 6.77289 11.651 6.79119C11.6496 6.8068 11.6438 6.85902 11.651 6.87678C11.6615 6.89455 11.6916 6.92683 11.6916 6.94299C11.6916 6.95697 11.7125 6.99305 11.7275 7.00002C11.7426 7.00702 11.7544 7.01027 11.7544 7.01027", fill: "#009900" }), jsx("path", { d: "M11.7554 7.01135C11.7554 7.01135 11.7612 6.90583 11.7389 6.87355C11.7134 6.84179 11.7075 6.78044 11.651 6.74652C11.651 6.74652 11.6551 6.77289 11.651 6.79119C11.6496 6.8068 11.6438 6.85902 11.651 6.87678C11.6615 6.89455 11.6916 6.92683 11.6916 6.94299C11.6916 6.95697 11.7125 6.99305 11.7275 7.00002C11.7426 7.00702 11.7544 7.01027 11.7544 7.01027L11.7554 7.01135Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.7554 7.06842C11.7554 7.06842 11.7554 6.99361 11.739 6.97208C11.7194 6.95108 11.7107 6.93817 11.7016 6.92581C11.6925 6.91181 11.6833 6.87411 11.6625 6.85959C11.6401 6.84559 11.6037 6.80791 11.6004 6.79553C11.6004 6.79553 11.5918 6.88489 11.6123 6.93333C11.6333 6.97961 11.6333 7.00492 11.6592 7.01569C11.6833 7.02592 11.6861 7.03344 11.6957 7.04044C11.7043 7.04905 11.7198 7.05819 11.7317 7.05819C11.7435 7.05819 11.7559 7.06844 11.7559 7.06844", fill: "#009900" }), jsx("path", { d: "M11.7554 7.06842C11.7554 7.06842 11.7554 6.99361 11.739 6.97208C11.7194 6.95108 11.7107 6.93817 11.7016 6.92581C11.6925 6.91181 11.6833 6.87411 11.6625 6.85959C11.6401 6.84559 11.6037 6.80791 11.6004 6.79553C11.6004 6.79553 11.5918 6.88489 11.6123 6.93333C11.6333 6.97961 11.6333 7.00492 11.6592 7.01569C11.6833 7.02592 11.6861 7.03344 11.6957 7.04044C11.7043 7.04905 11.7198 7.05819 11.7317 7.05819C11.7435 7.05819 11.7559 7.06844 11.7559 7.06844L11.7554 7.06842Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.6856 7.56301C11.6829 7.5841 11.6706 7.5167 11.7339 7.5167C11.7991 7.5167 11.8505 7.48663 11.8715 7.46133C11.8938 7.43656 11.9061 7.41881 11.9152 7.40589C11.9238 7.39725 11.948 7.35259 11.9511 7.33109C11.9539 7.31006 11.9721 7.22934 11.969 7.21478C11.969 7.21478 11.9358 7.22178 11.9207 7.23578C11.9056 7.25142 11.877 7.25142 11.8619 7.26217C11.8469 7.27239 11.8345 7.30145 11.8259 7.31223C11.8173 7.32245 11.79 7.32245 11.7776 7.34398C11.7657 7.36553 11.743 7.41342 11.7398 7.43495C11.7385 7.45595 11.7157 7.47747 11.7007 7.48825C11.6856 7.49847 11.6888 7.5415 11.6856 7.56149", fill: "#009900" }), jsx("path", { d: "M11.6856 7.56301C11.6829 7.5841 11.6706 7.5167 11.7339 7.5167C11.7991 7.5167 11.8505 7.48663 11.8715 7.46133C11.8938 7.43656 11.9061 7.41881 11.9152 7.40589C11.9238 7.39725 11.948 7.35259 11.9511 7.33109C11.9539 7.31006 11.9721 7.22934 11.969 7.21478C11.969 7.21478 11.9358 7.22178 11.9207 7.23578C11.9056 7.25142 11.877 7.25142 11.8619 7.26217C11.8469 7.27239 11.8345 7.30145 11.8254 7.31223C11.8168 7.32245 11.7895 7.32245 11.7772 7.34398C11.7654 7.36553 11.7425 7.41342 11.7394 7.43495C11.738 7.45595 11.7152 7.47747 11.7002 7.48825C11.6851 7.49847 11.6883 7.5415 11.6851 7.56149L11.6856 7.56301Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.6916 7.53451C11.6916 7.53451 11.7339 7.47212 11.7549 7.47212C11.7772 7.47212 11.8319 7.40593 11.835 7.37901C11.8378 7.34887 11.856 7.29507 11.8683 7.28427C11.8816 7.27405 11.9029 7.24874 11.8997 7.20407C11.8957 7.16155 11.8957 7.08997 11.8957 7.08997C11.8957 7.08997 11.8838 7.13249 11.8656 7.14324C11.8479 7.15346 11.8142 7.16801 11.8082 7.18254C11.8022 7.19654 11.7781 7.19654 11.7671 7.24121C11.7599 7.28373 11.7599 7.28051 11.7521 7.29451C11.7462 7.30848 11.7312 7.32626 11.7253 7.35532C11.7193 7.38546 11.6861 7.46081 11.6921 7.53397", fill: "#009900" }), jsx("path", { d: "M11.6916 7.53451C11.6916 7.53451 11.7339 7.47212 11.7549 7.47212C11.7772 7.47212 11.8319 7.40593 11.835 7.37901C11.8378 7.34887 11.856 7.29507 11.8683 7.28427C11.8816 7.27405 11.9029 7.24874 11.8997 7.20407C11.8957 7.16155 11.8957 7.08997 11.8957 7.08997C11.8957 7.08997 11.8838 7.13249 11.8656 7.14324C11.8479 7.15346 11.8142 7.16801 11.8082 7.18254C11.8022 7.19654 11.7781 7.19654 11.7671 7.24121C11.7599 7.28373 11.7599 7.28051 11.7521 7.29451C11.7462 7.30848 11.7312 7.32626 11.7253 7.35532C11.7193 7.38546 11.6861 7.46081 11.6921 7.53397L11.6916 7.53451Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.7553 7.13304C11.7566 7.15242 11.7312 7.09589 11.7886 7.07434C11.8473 7.05336 11.8883 7.01032 11.9019 6.97962C11.9152 6.95109 11.9215 6.92959 11.9274 6.9172C11.9334 6.90482 11.9453 6.85635 11.9425 6.83699C11.9411 6.81599 11.9384 6.73688 11.932 6.72449C11.932 6.72449 11.9033 6.74224 11.8928 6.76001C11.8823 6.7794 11.8582 6.78854 11.8459 6.80254C11.8354 6.81654 11.8309 6.84723 11.8249 6.86121C11.8191 6.87359 11.7949 6.88221 11.789 6.90587C11.7831 6.92904 11.774 6.97909 11.7771 7.00062C11.7785 7.02 11.7654 7.04693 11.753 7.06306C11.7425 7.07706 11.7558 7.11473 11.7558 7.13251", fill: "#009900" }), jsx("path", { d: "M11.7553 7.13304C11.7566 7.15242 11.7312 7.09589 11.7886 7.07434C11.8473 7.05336 11.8883 7.01032 11.9019 6.97962C11.9152 6.95109 11.9215 6.92959 11.9274 6.9172C11.9334 6.90482 11.9453 6.85635 11.9425 6.83699C11.9411 6.81599 11.9384 6.73688 11.932 6.72449C11.932 6.72449 11.9033 6.74224 11.8928 6.76001C11.8823 6.7794 11.8582 6.78854 11.8459 6.80254C11.8354 6.81654 11.8309 6.84723 11.8249 6.86121C11.8191 6.87359 11.7949 6.88221 11.789 6.90587C11.7831 6.92904 11.774 6.97909 11.7771 7.00062C11.7785 7.02 11.7654 7.04693 11.753 7.06306C11.7425 7.07706 11.7558 7.11473 11.7558 7.13251L11.7553 7.13304Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.7554 7.10446C11.7554 7.10446 11.7795 7.03503 11.7991 7.02749C11.8187 7.02052 11.8506 6.9613 11.852 6.93438C11.8532 6.90422 11.8579 6.85041 11.867 6.83802C11.8742 6.82402 11.8911 6.77934 11.8788 6.74167C11.8656 6.70239 11.8455 6.6507 11.8455 6.6507C11.8455 6.6507 11.8259 6.68462 11.8187 6.704C11.8023 6.74114 11.7872 6.7433 11.7841 6.75728C11.7827 6.77291 11.7617 6.78205 11.7554 6.8122C11.7466 6.85308 11.7567 6.85147 11.754 6.86763C11.7526 6.88163 11.7421 6.90316 11.7435 6.93166C11.7449 6.96021 11.7317 7.0388 11.7554 7.10341", fill: "#009900" }), jsx("path", { d: "M11.7554 7.10446C11.7554 7.10446 11.7795 7.03503 11.7991 7.02749C11.8187 7.02052 11.8506 6.9613 11.852 6.93438C11.8532 6.90422 11.8579 6.85041 11.867 6.83802C11.8742 6.82402 11.8911 6.77934 11.8788 6.74167C11.8656 6.70239 11.8455 6.6507 11.8455 6.6507C11.8455 6.6507 11.8259 6.68462 11.8187 6.704C11.8023 6.74114 11.7872 6.7433 11.7841 6.75728C11.7827 6.77291 11.7617 6.78205 11.7554 6.8122C11.7466 6.85308 11.7567 6.85147 11.754 6.86763C11.7526 6.88163 11.7421 6.90316 11.7435 6.93166C11.7449 6.96021 11.7317 7.0388 11.7554 7.10341L11.7554 7.10446Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.7071 6.66744C11.7043 6.6572 11.6861 6.64642 11.6646 6.63728C11.6438 6.63028 11.6091 6.57323 11.595 6.5587C11.58 6.54307 11.5726 6.52156 11.5545 6.50862C11.5367 6.49624 11.523 6.45159 11.5184 6.40692C11.5184 6.40692 11.57 6.42087 11.585 6.42472C11.6001 6.42787 11.63 6.45103 11.6438 6.46715C11.6555 6.48493 11.6679 6.51509 11.6797 6.52209C11.6916 6.52908 11.7066 6.57214 11.7066 6.60228V6.66636", fill: "#009900" }), jsx("path", { d: "M11.7071 6.66744C11.7043 6.6572 11.6861 6.64642 11.6647 6.63728C11.6438 6.63028 11.6091 6.57323 11.595 6.5587C11.58 6.54307 11.5726 6.52156 11.5545 6.50862C11.5367 6.49624 11.523 6.45159 11.5179 6.40692C11.5179 6.40692 11.5695 6.42087 11.5845 6.42472C11.5996 6.42787 11.6295 6.45103 11.6433 6.46715C11.6551 6.48493 11.6675 6.51509 11.6792 6.52209C11.6911 6.52908 11.7062 6.57214 11.7062 6.60228V6.66636L11.7071 6.66744Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.7098 6.63508C11.7098 6.63508 11.7125 6.59256 11.7125 6.57266C11.7125 6.55167 11.7244 6.49247 11.6976 6.44561C11.6797 6.41393 11.6114 6.35248 11.5932 6.3493C11.5932 6.3493 11.5813 6.40636 11.5846 6.42411C11.5872 6.44191 11.6041 6.51506 11.6178 6.52259C11.6328 6.52958 11.6674 6.61572 11.7102 6.63508", fill: "#009900" }), jsx("path", { d: "M11.7098 6.63508C11.7098 6.63508 11.7125 6.59256 11.7125 6.57266C11.7125 6.55167 11.7244 6.49247 11.6976 6.44561C11.6797 6.41393 11.6114 6.35248 11.5932 6.3493C11.5932 6.3493 11.5813 6.40636 11.5846 6.42411C11.5872 6.44191 11.6041 6.51506 11.6178 6.52259C11.6328 6.52958 11.6674 6.61572 11.7102 6.63508H11.7098Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.7253 6.66741C11.7325 6.683 11.728 6.61248 11.7462 6.59581C11.7658 6.57642 11.7672 6.55112 11.7672 6.52259C11.7672 6.49247 11.7613 6.47249 11.76 6.4532C11.7559 6.43543 11.7103 6.36006 11.713 6.33911C11.713 6.33911 11.6875 6.40843 11.6797 6.4284C11.6711 6.4532 11.6857 6.48006 11.6825 6.50157C11.6797 6.52259 11.6647 6.56242 11.6766 6.58395C11.6857 6.60334 11.7125 6.64264 11.7248 6.66795", fill: "#009900" }), jsx("path", { d: "M11.7253 6.66741C11.7325 6.683 11.728 6.61248 11.7462 6.59581C11.7658 6.57642 11.7672 6.55112 11.7672 6.52259C11.7672 6.49247 11.7613 6.47249 11.76 6.4532C11.7559 6.43543 11.7103 6.36006 11.713 6.33911C11.713 6.33911 11.6875 6.40843 11.6797 6.4284C11.6711 6.4532 11.6857 6.48006 11.6825 6.50157C11.6797 6.52259 11.6647 6.56242 11.6766 6.58395C11.6857 6.60334 11.7125 6.64264 11.7248 6.66795L11.7253 6.66741Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.5627 6.29279C11.5627 6.29279 11.56 6.28189 11.5326 6.28189C11.5058 6.28189 11.4647 6.28037 11.4525 6.26426C11.4406 6.25021 11.4192 6.23243 11.4073 6.22485C11.3956 6.21795 11.3727 6.18558 11.3714 6.16946C11.3672 6.15554 11.3459 6.12701 11.3368 6.12701C11.3368 6.12701 11.3714 6.12371 11.4078 6.13557C11.4438 6.14411 11.4957 6.16725 11.5076 6.19633C11.5208 6.22486 11.5636 6.29278 11.5636 6.29278", fill: "#009900" }), jsx("path", { d: "M11.5626 6.29279C11.5626 6.29279 11.5599 6.28189 11.5325 6.28189C11.5057 6.28189 11.4646 6.28037 11.4524 6.26426C11.4405 6.25021 11.4192 6.23243 11.4073 6.22485C11.3955 6.21795 11.3726 6.18558 11.3709 6.16946C11.3668 6.15554 11.3453 6.12701 11.3362 6.12701C11.3362 6.12701 11.3709 6.12371 11.4073 6.13557C11.4433 6.14411 11.4952 6.16725 11.5071 6.19633C11.5203 6.22486 11.5631 6.29278 11.5631 6.29278L11.5626 6.29279Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.5535 6.28581C11.5463 6.31061 11.4947 6.26101 11.4825 6.24323C11.4706 6.22544 11.4524 6.19693 11.4524 6.19693C11.4524 6.19693 11.4223 6.15599 11.4164 6.13836C11.3987 6.09896 11.4032 6.02743 11.4105 6.03282C11.4192 6.03983 11.4529 6.06298 11.462 6.06673C11.4706 6.06986 11.4888 6.0769 11.4952 6.09468C11.5012 6.11248 11.5071 6.13726 11.5176 6.15008C11.5262 6.16097 11.5809 6.19637 11.554 6.28581", fill: "#009900" }), jsx("path", { d: "M11.5535 6.28581C11.5463 6.31061 11.4947 6.26101 11.4825 6.24323C11.4706 6.22544 11.4524 6.19693 11.4524 6.19693C11.4524 6.19693 11.4223 6.15599 11.4164 6.13836C11.3987 6.09896 11.4032 6.02743 11.4105 6.03282C11.4192 6.03983 11.4529 6.06298 11.462 6.06673C11.4706 6.06986 11.4888 6.0769 11.4952 6.09468C11.5012 6.11248 11.5071 6.13726 11.5176 6.15008C11.5262 6.16097 11.5809 6.19637 11.554 6.28581H11.5535Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.5717 6.28577C11.5717 6.28577 11.528 6.25022 11.5144 6.23245C11.4948 6.21152 11.5057 6.18241 11.4948 6.16837C11.4875 6.15444 11.4647 6.12055 11.4706 6.09892C11.4766 6.07797 11.4885 6.01666 11.4885 6.01666C11.4885 6.01666 11.5107 6.0398 11.5263 6.05909C11.5413 6.07689 11.544 6.09092 11.5504 6.11297C11.5563 6.13611 11.5681 6.15004 11.5745 6.16837C11.5805 6.18614 11.5745 6.22169 11.5717 6.24317C11.5691 6.26427 11.5717 6.28575 11.5717 6.28575", fill: "#009900" }), jsx("path", { d: "M11.5717 6.28577C11.5717 6.28577 11.528 6.25022 11.5144 6.23245C11.4948 6.21152 11.5057 6.18241 11.4948 6.16837C11.4875 6.15444 11.4647 6.12055 11.4706 6.09892C11.4766 6.07797 11.4885 6.01666 11.4885 6.01666C11.4885 6.01666 11.5107 6.0398 11.5263 6.05909C11.5413 6.07689 11.544 6.09092 11.5504 6.11297C11.5563 6.13611 11.5681 6.15004 11.5745 6.16837C11.5805 6.18614 11.5745 6.22169 11.5717 6.24317C11.5691 6.26427 11.5717 6.28575 11.5717 6.28575", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M11.093 8.32791C11.0825 8.32791 11.0753 8.31937 11.0753 8.30698C11.0753 8.29457 11.0825 8.28589 11.093 8.28589C11.1035 8.28589 11.1108 8.29455 11.1108 8.30696C11.1108 8.31937 11.1035 8.32791 11.093 8.32791", fill: "#E60000" }), jsx("path", { d: "M11.093 8.32791C11.0825 8.32791 11.0753 8.31937 11.0753 8.30698C11.0753 8.29457 11.0825 8.28589 11.093 8.28589C11.1035 8.28589 11.1108 8.29455 11.1108 8.30696C11.1108 8.31937 11.1035 8.32791 11.093 8.32791", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M11.1973 8.48031C11.1869 8.48031 11.1796 8.47165 11.1796 8.45924C11.1796 8.44904 11.1869 8.43829 11.1973 8.43829C11.2065 8.43829 11.2156 8.44849 11.2156 8.45922C11.2156 8.47163 11.207 8.48031 11.1973 8.48031Z", fill: "#E60000" }), jsx("path", { d: "M11.1973 8.48031C11.1869 8.48031 11.1796 8.47165 11.1796 8.45924C11.1796 8.44904 11.1869 8.43829 11.1973 8.43829C11.2065 8.43829 11.2156 8.44849 11.2156 8.45922C11.2156 8.47163 11.207 8.48031 11.1973 8.48031Z", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M11.4402 8.00229C11.4297 8.00229 11.4206 7.99209 11.4206 7.98121C11.4206 7.96895 11.4292 7.96027 11.4402 7.96027C11.4488 7.96027 11.4579 7.96892 11.4579 7.98119C11.4579 7.99154 11.4493 8.00229 11.4402 8.00229", fill: "#E60000" }), jsx("path", { d: "M11.4402 8.00229C11.4297 8.00229 11.4206 7.99209 11.4206 7.98121C11.4206 7.96895 11.4292 7.96027 11.4402 7.96027C11.4488 7.96027 11.4579 7.96892 11.4579 7.98119C11.4579 7.99154 11.4493 8.00229 11.4402 8.00229", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M11.59 8.09158C11.5781 8.09158 11.569 8.08135 11.569 8.0669C11.569 8.05449 11.5777 8.04376 11.59 8.04376C11.6004 8.04376 11.6096 8.05394 11.6096 8.0669C11.6096 8.08083 11.6008 8.09156 11.59 8.09156", fill: "#E60000" }), jsx("path", { d: "M11.59 8.09158C11.5781 8.09158 11.569 8.08135 11.569 8.0669C11.569 8.05449 11.5777 8.04376 11.59 8.04376C11.6004 8.04376 11.6096 8.05394 11.6096 8.0669C11.6096 8.08083 11.6008 8.09156 11.59 8.09156", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M11.6173 7.55396C11.6068 7.55396 11.5963 7.54376 11.5963 7.53079C11.5963 7.5184 11.6068 7.50604 11.6173 7.50604C11.6278 7.50604 11.6369 7.5184 11.6369 7.53081C11.6369 7.53694 11.6348 7.54281 11.6311 7.54714C11.6274 7.55147 11.6225 7.55392 11.6173 7.55396Z", fill: "#E60000" }), jsx("path", { d: "M11.6173 7.55396C11.6068 7.55396 11.5963 7.54376 11.5963 7.53079C11.5963 7.5184 11.6068 7.50604 11.6173 7.50604C11.6278 7.50604 11.6369 7.5184 11.6369 7.53081C11.6369 7.53694 11.6348 7.54281 11.6311 7.54714C11.6274 7.55147 11.6225 7.55392 11.6173 7.55396Z", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M11.743 7.59911C11.7312 7.59911 11.7234 7.58891 11.7234 7.57431C11.7234 7.56204 11.7308 7.55115 11.743 7.55115C11.7535 7.55115 11.7626 7.56149 11.7626 7.57431C11.7626 7.58835 11.754 7.59908 11.743 7.59908", fill: "#E60000" }), jsx("path", { d: "M11.743 7.59911C11.7312 7.59911 11.7234 7.58891 11.7234 7.57431C11.7234 7.56204 11.7308 7.55115 11.743 7.55115C11.7535 7.55115 11.7626 7.56149 11.7626 7.57431C11.7626 7.58835 11.754 7.59908 11.743 7.59908", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M11.6793 7.12065C11.6675 7.12065 11.6584 7.10829 11.6584 7.0959C11.6584 7.08351 11.667 7.07275 11.6793 7.07275C11.6898 7.07275 11.6989 7.08298 11.6989 7.0959C11.6989 7.10828 11.6902 7.12067 11.6793 7.12067", fill: "#E60000" }), jsx("path", { d: "M11.6793 7.12065C11.6675 7.12065 11.6584 7.10829 11.6584 7.0959C11.6584 7.08351 11.667 7.07275 11.6793 7.07275C11.6898 7.07275 11.6989 7.08298 11.6989 7.0959C11.6989 7.10828 11.6902 7.12067 11.6793 7.12067", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M11.7918 6.67974C11.7813 6.67974 11.7722 6.67113 11.7722 6.65874C11.7722 6.64475 11.7808 6.63397 11.7918 6.63397C11.8036 6.63397 11.8127 6.64421 11.8127 6.65874C11.8127 6.67113 11.8036 6.67974 11.7918 6.67974Z", fill: "#E60000" }), jsx("path", { d: "M11.7918 6.67974C11.7813 6.67974 11.7722 6.67113 11.7722 6.65874C11.7722 6.64475 11.7808 6.63397 11.7918 6.63397C11.8036 6.63397 11.8127 6.64421 11.8127 6.65874C11.8127 6.67113 11.8036 6.67974 11.7918 6.67974Z", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M11.6479 6.72444C11.6374 6.72444 11.6283 6.71425 11.6283 6.69972C11.6283 6.68733 11.6369 6.67657 11.6479 6.67657C11.6597 6.67657 11.6688 6.6868 11.6688 6.69972C11.6688 6.71369 11.6601 6.72447 11.6479 6.72447", fill: "#E60000" }), jsx("path", { d: "M11.6479 6.72444C11.6374 6.72444 11.6283 6.71425 11.6283 6.69972C11.6283 6.68733 11.6369 6.67657 11.6479 6.67657C11.6597 6.67657 11.6688 6.6868 11.6688 6.69972C11.6688 6.71369 11.6601 6.72447 11.6479 6.72447", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M11.5066 6.35728C11.4961 6.35728 11.4857 6.34653 11.4857 6.33414C11.4857 6.32187 11.4961 6.31097 11.5066 6.31097C11.5171 6.31097 11.5262 6.32132 11.5262 6.33414C11.5262 6.34026 11.5241 6.34612 11.5204 6.35046C11.5168 6.35479 11.5118 6.35724 11.5066 6.35728", fill: "#E60000" }), jsx("path", { d: "M11.5066 6.35728C11.4961 6.35728 11.4857 6.34653 11.4857 6.33414C11.4857 6.32187 11.4961 6.31097 11.5066 6.31097C11.5171 6.31097 11.5262 6.32132 11.5262 6.33414C11.5262 6.34026 11.5241 6.34612 11.5204 6.35046C11.5168 6.35479 11.5118 6.35724 11.5066 6.35728", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M11.6141 6.25725C11.6022 6.25725 11.5945 6.24706 11.5945 6.23245C11.5945 6.22004 11.6018 6.20929 11.6141 6.20929C11.6246 6.20929 11.6337 6.22004 11.6337 6.23245C11.6337 6.2465 11.625 6.25725 11.6141 6.25725Z", fill: "#E60000" }), jsx("path", { d: "M11.6141 6.25725C11.6022 6.25725 11.5945 6.24706 11.5945 6.23245C11.5945 6.22004 11.6018 6.20929 11.6141 6.20929C11.6246 6.20929 11.6337 6.22004 11.6337 6.23245C11.6337 6.2465 11.625 6.25725 11.6141 6.25725Z", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M11.3991 6.01022C11.394 6.01009 11.389 6.00761 11.3854 6.0033C11.3817 5.99898 11.3796 5.99317 11.3795 5.98707C11.3795 5.97303 11.3881 5.96228 11.3991 5.96228C11.4096 5.96228 11.4201 5.97248 11.4201 5.98705C11.4201 5.99946 11.4096 6.01022 11.3991 6.01022Z", fill: "#E60000" }), jsx("path", { d: "M11.3991 6.01022C11.394 6.01009 11.389 6.00761 11.3854 6.0033C11.3817 5.99898 11.3796 5.99317 11.3795 5.98707C11.3795 5.97303 11.3881 5.96228 11.3991 5.96228C11.4096 5.96228 11.4201 5.97248 11.4201 5.98705C11.4201 5.99946 11.4096 6.01022 11.3991 6.01022Z", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M11.8374 7.12228C11.8268 7.12228 11.8177 7.11367 11.8177 7.10129C11.8177 7.0889 11.8264 7.07812 11.8374 7.07812C11.8425 7.07817 11.8475 7.08063 11.8512 7.08497C11.8548 7.0893 11.8569 7.09516 11.8569 7.10129C11.8569 7.11367 11.8483 7.12228 11.8374 7.12228Z", fill: "#E60000" }), jsx("path", { d: "M11.8374 7.12228C11.8268 7.12228 11.8177 7.11367 11.8177 7.10129C11.8177 7.0889 11.8264 7.07812 11.8374 7.07812C11.8425 7.07817 11.8475 7.08063 11.8512 7.08497C11.8548 7.0893 11.8569 7.09516 11.8569 7.10129C11.8569 7.11367 11.8483 7.12228 11.8374 7.12228Z", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M11.0748 8.41775C11.0748 8.41775 11.0899 8.34293 11.0866 8.32472C11.0866 8.32472 11.0807 8.32472 11.0715 8.31067M11.099 8.44792C11.099 8.44792 11.1577 8.44958 11.1759 8.45658C11.1759 8.45658 11.1759 8.46141 11.1819 8.47589M11.4551 8.10234C11.4551 8.10234 11.4579 8.01137 11.4433 8.00394C11.4433 8.00394 11.4283 7.99692 11.4192 7.9823M11.5143 8.07379C11.5143 8.07379 11.5568 8.06691 11.5686 8.07379C11.5686 8.07379 11.5713 8.08786 11.5805 8.09159M11.5958 7.54149L11.6109 7.55018C11.6273 7.55871 11.6579 7.64485 11.6579 7.64485C11.6579 7.64485 11.7062 7.60227 11.7275 7.59855H11.7485M11.8478 7.11358C11.8478 7.11358 11.836 7.12758 11.8237 7.12056C11.8237 7.12056 11.7617 7.16689 11.7604 7.18464C11.7604 7.18464 11.6952 7.10983 11.6833 7.1168C11.6833 7.1168 11.6775 7.12705 11.6656 7.11358M11.7808 6.66737C11.7808 6.66737 11.7736 6.67812 11.7612 6.68512C11.7612 6.68512 11.7344 6.73142 11.7344 6.76748C11.7344 6.76748 11.683 6.71421 11.6679 6.71745C11.6679 6.71745 11.6501 6.72442 11.6378 6.71745M11.6296 6.24966C11.6296 6.24966 11.6178 6.26743 11.6087 6.25296C11.6087 6.25296 11.5722 6.30616 11.5936 6.34763C11.5936 6.34763 11.5421 6.33371 11.5272 6.34446C11.5272 6.34446 11.5212 6.36914 11.5016 6.35465M11.4156 5.99017C11.4156 5.99017 11.4247 6.015 11.3886 6.00588", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M10.8944 8.56963C10.8944 8.56963 11.0957 8.56794 11.1153 8.53792M10.7773 8.60035C10.7773 8.60035 10.909 8.6428 10.9786 8.63205C11.0498 8.62185 11.083 8.63907 11.098 8.63907C11.1145 8.63907 11.1905 8.60186 11.1905 8.60186M10.6425 8.65795C10.6425 8.65795 10.7436 8.67888 10.765 8.68648C10.786 8.69336 10.8908 8.73963 10.9208 8.73963C10.9449 8.73963 11.0056 8.73815 11.022 8.73963C11.052 8.74668 11.1322 8.73963 11.1504 8.72946M11.0261 8.37106C11.0261 8.37106 10.9491 8.42422 10.9368 8.44258C10.925 8.46199 10.8566 8.52662 10.8443 8.52662M11.0261 8.25791C11.0261 8.25791 10.8944 8.39199 10.8716 8.40977C10.8507 8.42906 10.7218 8.5761 10.7067 8.59979M10.9185 8.20087C10.9185 8.20087 10.8142 8.29939 10.8019 8.33869C10.7901 8.37795 10.7596 8.42425 10.7596 8.42425C10.7596 8.42425 10.7158 8.52607 10.7008 8.54055C10.6858 8.55459 10.6557 8.59443 10.6193 8.62074M11.5144 8.10936C11.5144 8.10936 11.4037 8.21863 11.3736 8.23958M11.5599 8.17938C11.5599 8.17938 11.4497 8.26867 11.401 8.2918C11.3509 8.31124 11.3117 8.33123 11.2042 8.34885M11.1609 8.39956C11.1609 8.39956 11.2834 8.39254 11.3048 8.39956C11.3258 8.40646 11.4214 8.38179 11.4455 8.37476C11.4697 8.36774 11.5681 8.34623 11.5805 8.34294M11.349 7.9108C11.349 7.9108 11.3549 7.98936 11.3449 8.02325C11.3363 8.05507 11.2935 8.14809 11.2966 8.1718C11.2993 8.19287 11.2725 8.29125 11.2483 8.30958M11.2214 7.92472C11.2214 7.92472 11.2438 8.00341 11.2333 8.03027C11.2261 8.05507 11.2092 8.10178 11.2092 8.13197C11.2092 8.16049 11.1941 8.20362 11.1882 8.2214C11.1824 8.23917 11.191 8.3016 11.1764 8.31771C11.1614 8.33714 11.1432 8.3694 11.1432 8.3694M11.8783 7.74064C11.8783 7.74064 11.7817 7.78322 11.7681 7.81227C11.7562 7.8408 11.7394 7.84934 11.7289 7.86394M11.5171 7.63136C11.5171 7.63136 11.493 7.74765 11.4993 7.77618C11.5052 7.80471 11.5052 7.86398 11.5052 7.88545C11.5052 7.90654 11.5322 7.99472 11.5276 8.00877M11.5568 7.53449C11.5568 7.53449 11.5654 7.60227 11.5686 7.63094C11.5712 7.65947 11.5686 7.70784 11.5745 7.72562C11.5805 7.74339 11.5896 7.83971 11.5745 7.8849M11.8269 7.63138C11.8269 7.63138 11.7466 7.71155 11.7284 7.73319C11.7107 7.75412 11.6287 7.85803 11.6242 7.8849C11.6228 7.9097 11.5635 7.98881 11.5454 8.00822M11.9617 7.2261C11.9617 7.2261 11.8828 7.31921 11.8756 7.34021C11.8696 7.36337 11.8364 7.39726 11.8214 7.40965M11.5872 7.26594C11.5872 7.26594 11.6173 7.31921 11.6173 7.33754C11.6173 7.35529 11.6292 7.40374 11.6428 7.42149C11.6501 7.43387 11.6761 7.48557 11.6729 7.51782M11.6114 7.11361C11.6114 7.11361 11.6232 7.16366 11.6292 7.19921C11.6364 7.23474 11.6501 7.2724 11.6579 7.29393C11.6637 7.31493 11.6879 7.42096 11.6788 7.48557M11.8902 7.10985C11.8902 7.10985 11.8828 7.15988 11.8601 7.18466C11.8391 7.20943 11.8059 7.2471 11.8027 7.26702C11.7999 7.29015 11.7726 7.39726 11.7408 7.43496C11.7107 7.47048 11.7075 7.50816 11.7075 7.50816M11.922 6.74061C11.922 6.74061 11.9115 6.80142 11.907 6.81917C11.9011 6.83694 11.8751 6.91769 11.851 6.94244M11.6584 6.75675C11.6584 6.75675 11.6734 6.80678 11.6761 6.82995C11.6788 6.85094 11.6971 6.87624 11.7002 6.887C11.7029 6.89722 11.7153 6.93492 11.7153 6.93492M11.6023 6.80681C11.6051 6.82995 11.6383 6.89453 11.6428 6.90531C11.6443 6.91769 11.6637 6.96774 11.682 6.98228C11.7002 6.99628 11.7544 7.04308 11.7517 7.06249M11.8419 6.66739C11.8419 6.66739 11.8446 6.74598 11.8333 6.7745C11.8214 6.80464 11.8063 6.84772 11.7999 6.86922C11.7941 6.89024 11.7941 6.9263 11.7913 6.9516C11.7886 6.97797 11.7795 7.02481 11.7672 7.04255M11.5262 6.42027C11.5262 6.42027 11.57 6.47896 11.5895 6.50433C11.6104 6.52742 11.6879 6.62756 11.6907 6.64531M11.5991 6.36653C11.5991 6.36653 11.6428 6.47732 11.652 6.4951C11.6606 6.51451 11.6697 6.54304 11.6697 6.54304M11.7098 6.36266C11.7098 6.36266 11.7071 6.45045 11.7098 6.47193C11.7125 6.49137 11.7125 6.52906 11.7098 6.53982C11.7071 6.55004 11.7189 6.62917 11.7217 6.64909M11.3549 6.13724C11.3549 6.13724 11.4515 6.20667 11.467 6.22488M11.4114 6.04725L11.4792 6.1615L11.4943 6.19539M11.4885 6.0365C11.4885 6.0365 11.5107 6.0974 11.5139 6.12209C11.5167 6.14854 11.5471 6.22763 11.559 6.25615", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M9.8722 8.32791C9.88268 8.32791 9.88997 8.31937 9.88997 8.30698C9.88997 8.29457 9.88269 8.28589 9.8722 8.28589C9.86355 8.28589 9.85443 8.29455 9.85443 8.30696C9.85443 8.31937 9.8631 8.32791 9.8722 8.32791", fill: "#E60000" }), jsx("path", { d: "M9.8722 8.32791C9.88268 8.32791 9.88997 8.31937 9.88997 8.30698C9.88997 8.29457 9.88269 8.28589 9.8722 8.28589C9.86355 8.28589 9.85443 8.29455 9.85443 8.30696C9.85443 8.31937 9.8631 8.32791 9.8722 8.32791", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M9.76789 8.48031C9.77835 8.48031 9.78748 8.47165 9.78748 8.45924C9.78748 8.44904 9.7788 8.43829 9.76789 8.43829C9.75922 8.43829 9.75012 8.44849 9.75012 8.45922C9.75012 8.47163 9.75878 8.48031 9.76789 8.48031Z", fill: "#E60000" }), jsx("path", { d: "M9.76789 8.48031C9.77835 8.48031 9.78748 8.47165 9.78748 8.45924C9.78748 8.44904 9.7788 8.43829 9.76789 8.43829C9.75922 8.43829 9.75012 8.44849 9.75012 8.45922C9.75012 8.47163 9.75878 8.48031 9.76789 8.48031Z", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M9.52647 8.00229C9.5356 8.00229 9.54425 7.99209 9.54425 7.98121C9.54425 7.96895 9.5356 7.96027 9.52647 7.96027C9.516 7.96027 9.5069 7.96892 9.5069 7.98119C9.5069 7.99154 9.51555 8.00229 9.52647 8.00229Z", fill: "#E60000" }), jsx("path", { d: "M9.52647 8.00229C9.5356 8.00229 9.54425 7.99209 9.54425 7.98121C9.54425 7.96895 9.5356 7.96027 9.52647 7.96027C9.516 7.96027 9.5069 7.96892 9.5069 7.98119C9.5069 7.99154 9.51555 8.00229 9.52647 8.00229Z", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M9.37662 8.09158C9.38708 8.09158 9.3962 8.08135 9.3962 8.0669C9.39609 8.06081 9.39399 8.055 9.39034 8.05069C9.38669 8.04638 9.38177 8.0439 9.37662 8.04376C9.36477 8.04376 9.35565 8.05394 9.35565 8.0669C9.35565 8.08083 9.36477 8.09156 9.37662 8.09156", fill: "#E60000" }), jsx("path", { d: "M9.37662 8.09158C9.38708 8.09158 9.3962 8.08135 9.3962 8.0669C9.39609 8.06081 9.39399 8.055 9.39034 8.05069C9.38669 8.04638 9.38177 8.0439 9.37662 8.04376C9.36477 8.04376 9.35565 8.05394 9.35565 8.0669C9.35565 8.08083 9.36477 8.09156 9.37662 8.09156", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M9.34927 7.55396C9.35446 7.55391 9.35942 7.55146 9.36309 7.54712C9.36675 7.54279 9.36882 7.53692 9.36886 7.53079C9.36886 7.5184 9.36021 7.50604 9.34927 7.50604C9.33742 7.50604 9.32831 7.5184 9.32831 7.53081C9.32831 7.54321 9.33698 7.55396 9.34927 7.55396Z", fill: "#E60000" }), jsx("path", { d: "M9.34927 7.55396C9.35446 7.55391 9.35942 7.55146 9.36309 7.54712C9.36675 7.54279 9.36882 7.53692 9.36886 7.53079C9.36886 7.5184 9.36021 7.50604 9.34927 7.50604C9.33742 7.50604 9.32831 7.5184 9.32831 7.53081C9.32831 7.54321 9.33698 7.55396 9.34927 7.55396Z", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M9.22218 7.59911C9.23401 7.59911 9.24315 7.58891 9.24315 7.57431C9.24315 7.56204 9.23446 7.55115 9.22218 7.55115C9.21699 7.5512 9.21204 7.55366 9.20837 7.55799C9.2047 7.56233 9.20262 7.56818 9.20258 7.57431C9.20258 7.58835 9.21123 7.59908 9.22218 7.59908", fill: "#E60000" }), jsx("path", { d: "M9.22218 7.59911C9.23401 7.59911 9.24315 7.58891 9.24315 7.57431C9.24315 7.56204 9.23446 7.55115 9.22218 7.55115C9.21699 7.5512 9.21204 7.55366 9.20837 7.55799C9.2047 7.56233 9.20262 7.56818 9.20258 7.57431C9.20258 7.58835 9.21123 7.59908 9.22218 7.59908", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M9.28733 7.12065C9.29779 7.12065 9.30691 7.10829 9.30691 7.0959C9.30686 7.08977 9.30479 7.08392 9.30113 7.07959C9.29746 7.07526 9.29251 7.07281 9.28733 7.07275C9.27548 7.07275 9.26636 7.08298 9.26636 7.0959C9.26636 7.10828 9.27501 7.12067 9.28733 7.12067", fill: "#E60000" }), jsx("path", { d: "M9.28733 7.12065C9.29779 7.12065 9.30691 7.10829 9.30691 7.0959C9.30686 7.08977 9.30479 7.08392 9.30113 7.07959C9.29746 7.07526 9.29251 7.07281 9.28733 7.07275C9.27548 7.07275 9.26636 7.08298 9.26636 7.0959C9.26636 7.10828 9.27501 7.12067 9.28733 7.12067", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M9.17345 6.67974C9.18391 6.67974 9.19441 6.67113 9.19441 6.65874C9.19441 6.64475 9.18391 6.63397 9.17345 6.63397C9.16299 6.63397 9.15387 6.64421 9.15387 6.65874C9.15387 6.67113 9.16252 6.67974 9.17345 6.67974Z", fill: "#E60000" }), jsx("path", { d: "M9.17345 6.67974C9.18391 6.67974 9.19441 6.67113 9.19441 6.65874C9.19441 6.64475 9.18391 6.63397 9.17345 6.63397C9.16299 6.63397 9.15387 6.64421 9.15387 6.65874C9.15387 6.67113 9.16252 6.67974 9.17345 6.67974Z", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M9.31737 6.72444C9.32922 6.72444 9.33834 6.71425 9.33834 6.69972C9.33834 6.68733 9.32967 6.67657 9.31737 6.67657C9.31219 6.67662 9.30724 6.67908 9.30357 6.68341C9.29991 6.68774 9.29783 6.69359 9.29779 6.69972C9.29779 6.71369 9.30644 6.72447 9.31739 6.72447", fill: "#E60000" }), jsx("path", { d: "M9.31737 6.72444C9.32922 6.72444 9.33834 6.71425 9.33834 6.69972C9.33834 6.68733 9.32967 6.67657 9.31737 6.67657C9.31219 6.67662 9.30724 6.67908 9.30357 6.68341C9.29991 6.68774 9.29783 6.69359 9.29779 6.69972C9.29779 6.71369 9.30644 6.72447 9.31739 6.72447", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M9.45863 6.35728C9.46911 6.35728 9.47959 6.34653 9.47959 6.33414C9.47959 6.32187 9.46911 6.31097 9.45863 6.31097C9.45345 6.31104 9.44849 6.3135 9.44483 6.31783C9.44116 6.32216 9.43908 6.32801 9.43903 6.33414C9.43903 6.34652 9.44814 6.35728 9.45863 6.35728Z", fill: "#E60000" }), jsx("path", { d: "M9.45863 6.35728C9.46911 6.35728 9.47959 6.34653 9.47959 6.33414C9.47959 6.32187 9.46911 6.31097 9.45863 6.31097C9.45345 6.31104 9.44849 6.3135 9.44483 6.31783C9.44116 6.32216 9.43908 6.32801 9.43903 6.33414C9.43903 6.34652 9.44814 6.35728 9.45863 6.35728Z", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M9.35064 6.25725C9.36249 6.25725 9.3716 6.24706 9.3716 6.23245C9.3716 6.22004 9.36293 6.20929 9.35064 6.20929C9.34548 6.20943 9.34056 6.21191 9.33691 6.21623C9.33326 6.22054 9.33116 6.22635 9.33105 6.23245C9.33105 6.2465 9.3397 6.25725 9.35064 6.25725Z", fill: "#E60000" }), jsx("path", { d: "M9.35064 6.25725C9.36249 6.25725 9.3716 6.24706 9.3716 6.23245C9.3716 6.22004 9.36293 6.20929 9.35064 6.20929C9.34548 6.20943 9.34056 6.21191 9.33691 6.21623C9.33326 6.22054 9.33116 6.22635 9.33105 6.23245C9.33105 6.2465 9.3397 6.25725 9.35064 6.25725Z", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M9.56609 6.01022C9.57794 6.01022 9.58567 5.99946 9.58567 5.98707C9.58567 5.97303 9.57839 5.96228 9.56609 5.96228C9.55424 5.96228 9.54651 5.97248 9.54651 5.98705C9.54651 5.99946 9.55379 6.01022 9.56609 6.01022Z", fill: "#E60000" }), jsx("path", { d: "M9.56609 6.01022C9.57794 6.01022 9.58567 5.99946 9.58567 5.98707C9.58567 5.97303 9.57839 5.96228 9.56609 5.96228C9.55424 5.96228 9.54651 5.97248 9.54651 5.98705C9.54651 5.99946 9.55379 6.01022 9.56609 6.01022Z", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M9.12792 7.12228C9.1384 7.12228 9.1475 7.11367 9.1475 7.10129C9.14747 7.09516 9.14539 7.0893 9.14173 7.08497C9.13806 7.08063 9.13311 7.07817 9.12792 7.07812C9.12274 7.07817 9.11778 7.08063 9.11411 7.08497C9.11045 7.0893 9.10837 7.09516 9.10834 7.10129C9.10834 7.11367 9.11699 7.12228 9.12792 7.12228Z", fill: "#E60000" }), jsx("path", { d: "M9.12792 7.12228C9.1384 7.12228 9.1475 7.11367 9.1475 7.10129C9.14747 7.09516 9.14539 7.0893 9.14173 7.08497C9.13806 7.08063 9.13311 7.07817 9.12792 7.07812C9.12274 7.07817 9.11778 7.08063 9.11411 7.08497C9.11045 7.0893 9.10837 7.09516 9.10834 7.10129C9.10834 7.11367 9.11699 7.12228 9.12792 7.12228Z", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M9.89046 8.41775C9.89046 8.41775 9.87542 8.34293 9.87861 8.32472C9.87861 8.32472 9.88453 8.32472 9.89365 8.31067M9.86632 8.44792C9.86632 8.44792 9.80892 8.44958 9.78933 8.45658C9.78933 8.45658 9.78933 8.46141 9.78343 8.47589M9.5101 8.10234C9.5101 8.10234 9.50737 8.01137 9.52194 8.00394C9.52194 8.00394 9.53698 7.99692 9.54608 7.9823M9.45271 8.07379C9.45271 8.07379 9.40897 8.06691 9.39669 8.07379C9.39669 8.07379 9.39395 8.08786 9.38483 8.09159M9.36889 7.54149L9.35386 7.55018C9.33882 7.55871 9.30831 7.64485 9.30831 7.64485C9.30831 7.64485 9.25865 7.60227 9.23727 7.59855H9.21631M9.11743 7.11358C9.11743 7.11358 9.12929 7.12758 9.1416 7.12056C9.1416 7.12056 9.20218 7.16689 9.20674 7.18464C9.20674 7.18464 9.27004 7.10983 9.28234 7.1168C9.28234 7.1168 9.28962 7.12705 9.30194 7.11358M9.18577 6.66737C9.18577 6.66737 9.19167 6.67812 9.20218 6.68512C9.20218 6.68512 9.23088 6.73142 9.23088 6.76748C9.23088 6.76748 9.28189 6.71421 9.29738 6.71745C9.29738 6.71745 9.31696 6.72442 9.32881 6.71745M9.33563 6.24966C9.33563 6.24966 9.34749 6.26743 9.35659 6.25296C9.35659 6.25296 9.39303 6.30616 9.37162 6.34763C9.37162 6.34763 9.42311 6.33371 9.43995 6.34446C9.43995 6.34446 9.44585 6.36914 9.46409 6.35465M9.54928 5.99017C9.54928 5.99017 9.54063 6.015 9.57798 6.00588", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M10.8443 8.88505C10.8443 8.88505 10.7655 8.87803 10.7536 8.87803C10.7418 8.87803 10.7126 8.81395 10.7008 8.8032C10.689 8.793 10.4812 8.67298 10.3446 8.64762C10.2097 8.62297 10.002 8.52815 9.95966 8.50294C9.73555 8.3759 9.48411 8.13957 9.42763 8.04271C9.37022 7.94101 9.30828 7.7062 9.28095 7.57872C9.2691 7.52003 9.20215 7.28156 9.20215 7.11848C9.20215 6.92899 9.2199 6.77504 9.24451 6.65127C9.26865 6.52799 9.44723 6.16633 9.5579 6.00635C9.5579 6.00635 9.31101 6.45584 9.26865 6.62972C9.22629 6.80682 9.21444 7.0216 9.21717 7.14538C9.21853 7.24712 9.29142 7.61802 9.39437 7.89031C9.47774 8.10883 9.55017 8.13365 9.68045 8.25532C9.74102 8.31237 9.85763 8.40387 9.95465 8.46313C10.0531 8.52014 10.2621 8.59334 10.3168 8.60243C10.371 8.61484 10.6516 8.7117 10.688 8.7328C10.7258 8.75428 10.8197 8.85225 10.8438 8.88451", fill: "#009900" }), jsx("path", { d: "M10.8443 8.88505C10.8443 8.88505 10.7655 8.87803 10.7536 8.87803C10.7418 8.87803 10.7126 8.81395 10.7008 8.8032C10.689 8.793 10.4812 8.67298 10.3446 8.64762C10.2097 8.62297 10.002 8.52815 9.95966 8.50294C9.73555 8.3759 9.48411 8.13957 9.42763 8.04271C9.37022 7.94101 9.30828 7.7062 9.28095 7.57872C9.2691 7.52003 9.20215 7.28156 9.20215 7.11848C9.20215 6.92899 9.2199 6.77504 9.24451 6.65127C9.26865 6.52799 9.44723 6.16633 9.5579 6.00635C9.5579 6.00635 9.31101 6.45584 9.26865 6.62972C9.22629 6.80682 9.21444 7.0216 9.21717 7.14538C9.21853 7.24712 9.29142 7.61802 9.39437 7.89031C9.47774 8.10883 9.55017 8.13365 9.68045 8.25532C9.74102 8.31237 9.85763 8.40387 9.95465 8.46313C10.0531 8.52014 10.2621 8.59334 10.3168 8.60243C10.371 8.61484 10.6516 8.7117 10.688 8.7328C10.7258 8.75428 10.8197 8.85225 10.8438 8.88451L10.8443 8.88505Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.44632 8.04474C9.45224 8.01082 9.4536 7.98617 9.46409 7.97693C9.47274 7.96452 9.50327 7.92154 9.50919 7.89301C9.5151 7.86448 9.50919 7.84134 9.50919 7.82674C9.50919 7.81282 9.51785 7.76281 9.51785 7.76281C9.51785 7.76281 9.50281 7.70188 9.49097 7.68949C9.47913 7.68095 9.44725 7.62871 9.44131 7.61469C9.44131 7.61469 9.44542 7.64319 9.43541 7.65726C9.42628 7.67117 9.42354 7.70893 9.42354 7.73041C9.42354 7.75151 9.42946 7.80209 9.42354 7.82674C9.41764 7.85527 9.40852 7.87841 9.41489 7.91078C9.42525 7.95547 9.43573 8.00013 9.44632 8.04474", fill: "#009900" }), jsx("path", { d: "M9.44632 8.04474C9.45224 8.01082 9.4536 7.98617 9.46409 7.97693C9.47274 7.96452 9.50327 7.92154 9.50919 7.89301C9.5151 7.86448 9.50919 7.84134 9.50919 7.82674C9.50919 7.81282 9.51785 7.76281 9.51785 7.76281C9.51785 7.76281 9.50281 7.70188 9.49097 7.68949C9.47913 7.68095 9.44725 7.62871 9.44131 7.61469C9.44131 7.61469 9.44542 7.64319 9.43541 7.65726C9.42628 7.67117 9.42354 7.70893 9.42354 7.73041C9.42354 7.75151 9.42946 7.80209 9.42354 7.82674C9.41764 7.85527 9.40852 7.87841 9.41489 7.91078C9.42525 7.95547 9.43573 8.00013 9.44632 8.04474", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.43582 8.00937C9.43582 8.00937 9.36613 7.9038 9.36613 7.85916C9.36613 7.81659 9.36022 7.79135 9.35428 7.78048C9.34838 7.77028 9.30875 7.71433 9.34518 7.64653C9.36021 7.61803 9.36294 7.62007 9.37205 7.58949C9.38389 7.55022 9.40849 7.55022 9.41304 7.51086C9.41304 7.51086 9.42033 7.5571 9.42351 7.59649C9.42625 7.6358 9.42079 7.6497 9.41944 7.67121C9.41533 7.69435 9.42671 7.71914 9.42671 7.75155C9.42671 7.78323 9.42398 7.79618 9.42398 7.81548C9.42398 7.82582 9.4135 7.96404 9.43583 8.0088", fill: "#009900" }), jsx("path", { d: "M9.43582 8.00937C9.43582 8.00937 9.36613 7.9038 9.36613 7.85916C9.36613 7.81659 9.36022 7.79135 9.35428 7.78048C9.34838 7.77028 9.30875 7.71433 9.34518 7.64653C9.36021 7.61803 9.36294 7.62007 9.37205 7.58949C9.38389 7.55022 9.40849 7.55022 9.41304 7.51086C9.41304 7.51086 9.42033 7.5571 9.42351 7.59649C9.42625 7.6358 9.42079 7.6497 9.41944 7.67121C9.41533 7.69435 9.42671 7.71914 9.42671 7.75155C9.42671 7.78323 9.42398 7.79618 9.42398 7.81548C9.42398 7.82582 9.4135 7.96404 9.43583 8.0088L9.43582 8.00937Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M10.2226 8.575C10.2226 8.575 10.1638 8.56797 10.141 8.56259C10.126 8.56107 10.0896 8.5502 10.07 8.54166C10.0522 8.53461 10.0171 8.51313 9.9866 8.47537C9.93103 8.40385 9.93693 8.36609 9.926 8.36292C9.90644 8.35976 9.95745 8.35272 9.98157 8.35811C10.0057 8.36128 10.039 8.38124 10.0618 8.40604C10.0841 8.43072 10.1192 8.45925 10.1328 8.47C10.1447 8.48034 10.1538 8.48571 10.1661 8.50555C10.1793 8.52662 10.1779 8.53944 10.2221 8.575", fill: "#009900" }), jsx("path", { d: "M10.2226 8.575C10.2226 8.575 10.1638 8.56797 10.141 8.56259C10.126 8.56107 10.0896 8.5502 10.07 8.54166C10.0522 8.53461 10.0171 8.51313 9.9866 8.47537C9.93103 8.40385 9.93693 8.36609 9.926 8.36292C9.90644 8.35976 9.95745 8.35272 9.98157 8.35811C10.0057 8.36128 10.039 8.38124 10.0618 8.40604C10.0841 8.43072 10.1192 8.45925 10.1328 8.47C10.1447 8.48034 10.1538 8.48571 10.1661 8.50555C10.1793 8.52662 10.1779 8.53944 10.2221 8.575H10.2226Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M10.3045 8.62559C10.3045 8.62559 10.156 8.54706 10.141 8.53246C10.1246 8.52019 10.1004 8.49167 10.0836 8.47167C10.0704 8.45226 10.0066 8.41464 9.99569 8.38929C9.98977 8.3737 9.95059 8.31073 9.92734 8.26073C9.91551 8.23427 10.0257 8.26775 10.0257 8.26775C10.115 8.31018 10.0759 8.28002 10.1241 8.32479C10.1542 8.35112 10.1756 8.37481 10.1829 8.39425C10.1934 8.42429 10.207 8.4798 10.2207 8.50667C10.2326 8.5352 10.2571 8.57075 10.3041 8.62451", fill: "#009900" }), jsx("path", { d: "M10.3045 8.62559C10.3045 8.62559 10.156 8.54706 10.141 8.53246C10.1246 8.52019 10.1004 8.49167 10.0836 8.47167C10.0704 8.45226 10.0066 8.41464 9.99569 8.38929C9.98977 8.3737 9.95059 8.31073 9.92734 8.26073C9.91551 8.23427 10.0257 8.26775 10.0257 8.26775C10.115 8.31018 10.0759 8.28002 10.1241 8.32479C10.1542 8.35112 10.1756 8.37481 10.1829 8.39425C10.1934 8.42429 10.207 8.4798 10.2207 8.50667C10.2326 8.5352 10.2571 8.57075 10.3041 8.62451L10.3045 8.62559Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M10.3846 8.64719C10.3846 8.64719 10.2621 8.60998 10.2061 8.52015C10.1669 8.45924 10.1669 8.47757 10.15 8.45772C10.1291 8.43127 10.0972 8.40218 10.0712 8.35052C10.0726 8.35533 10.0352 8.20735 10.038 8.19122C10.038 8.18102 10.0831 8.19824 10.1213 8.21601C10.1528 8.23213 10.171 8.26232 10.1983 8.28216C10.2311 8.30696 10.2357 8.36995 10.2512 8.39846C10.2721 8.44091 10.2735 8.46254 10.2735 8.48404C10.2735 8.51574 10.2885 8.52661 10.2976 8.55348C10.3081 8.58518 10.3413 8.57979 10.3837 8.64664", fill: "#009900" }), jsx("path", { d: "M10.3847 8.64719C10.3847 8.64719 10.2621 8.60998 10.2061 8.52015C10.1669 8.45924 10.1669 8.47757 10.1501 8.45772C10.1291 8.43127 10.0972 8.40218 10.0713 8.35052C10.0726 8.35533 10.0348 8.20735 10.038 8.19122C10.038 8.18102 10.0831 8.19824 10.1214 8.21601C10.1528 8.23213 10.1711 8.26232 10.1984 8.28216C10.2311 8.30696 10.2357 8.36995 10.2512 8.39846C10.2722 8.44091 10.2735 8.46254 10.2735 8.48404C10.2735 8.51574 10.2886 8.52661 10.2977 8.55348C10.3081 8.58518 10.3414 8.57979 10.3838 8.64664L10.3847 8.64719Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M10.1879 8.60038C10.1879 8.60038 10.0835 8.54484 10.0699 8.54114C10.0535 8.53797 10.0476 8.52707 10.0262 8.52019C10.0084 8.51524 9.99335 8.49909 9.94917 8.50985C9.9314 8.5148 9.85533 8.53464 9.83711 8.52391C9.81751 8.51372 9.86398 8.58468 9.8854 8.60093C9.90636 8.61486 9.9428 8.62186 9.97468 8.61856C10.0047 8.61542 10.0471 8.61856 10.0626 8.61856C10.0776 8.61856 10.0867 8.62188 10.109 8.61542C10.13 8.60837 10.1364 8.59598 10.1879 8.60134", fill: "#009900" }), jsx("path", { d: "M10.1879 8.60038C10.1879 8.60038 10.0835 8.54484 10.0699 8.54114C10.0535 8.53797 10.0476 8.52707 10.0262 8.52019C10.0084 8.51524 9.99335 8.49909 9.94917 8.50985C9.9314 8.5148 9.85533 8.53464 9.83711 8.52391C9.81751 8.51372 9.86398 8.58468 9.8854 8.60093C9.90636 8.61486 9.9428 8.62186 9.97468 8.61856C10.0047 8.61542 10.0471 8.61856 10.0626 8.61856C10.0776 8.61856 10.0867 8.62188 10.109 8.61542C10.13 8.60837 10.1364 8.59598 10.1879 8.60134V8.60038Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M10.259 8.6003C10.259 8.6003 10.1423 8.56476 10.1228 8.56476C10.1032 8.56476 10.0485 8.56957 10.0244 8.57496C10.0034 8.57825 9.93371 8.57015 9.91229 8.58198C9.89133 8.59439 9.79887 8.60829 9.77473 8.60127C9.75059 8.59646 9.8244 8.67995 9.85353 8.68906C9.94737 8.72089 9.91867 8.71552 9.98063 8.69773C10.0171 8.68738 10.0699 8.68367 10.0881 8.67995C10.1077 8.67665 10.1032 8.66438 10.1287 8.65142C10.1528 8.63903 10.1938 8.60678 10.259 8.59975", fill: "#009900" }), jsx("path", { d: "M10.259 8.6003C10.259 8.6003 10.1423 8.56476 10.1228 8.56476C10.1032 8.56476 10.0485 8.56957 10.0244 8.57496C10.0034 8.57825 9.93371 8.57015 9.91229 8.58198C9.89133 8.59439 9.79887 8.60829 9.77473 8.60127C9.75059 8.59646 9.8244 8.67995 9.85353 8.68906C9.94737 8.72089 9.91867 8.71552 9.98063 8.69773C10.0171 8.68738 10.0699 8.68367 10.0881 8.67995C10.1077 8.67665 10.1032 8.66438 10.1287 8.65142C10.1528 8.63903 10.1938 8.60678 10.259 8.59975V8.6003Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M10.3546 8.65797C10.3546 8.65797 10.238 8.60092 10.1473 8.62945C10.084 8.65038 10.0867 8.64722 10.0612 8.65258C10.0325 8.65739 10.0084 8.6402 9.96011 8.66333C9.9378 8.67353 9.83574 8.7219 9.80705 8.72039C9.78155 8.71873 9.88861 8.80059 9.91728 8.7952C10.0111 8.77949 10.0991 8.81615 10.1414 8.79674C10.1806 8.77908 10.2034 8.76667 10.2229 8.75966C10.2425 8.75099 10.253 8.72949 10.2653 8.72039C10.2772 8.70798 10.2849 8.68111 10.3546 8.65797Z", fill: "#009900" }), jsx("path", { d: "M10.3546 8.65797C10.3546 8.65797 10.238 8.60092 10.1473 8.62945C10.084 8.65038 10.0867 8.64722 10.0612 8.65258C10.0325 8.65739 10.0084 8.6402 9.96011 8.66333C9.9378 8.67353 9.83574 8.7219 9.80705 8.72039C9.78155 8.71873 9.88861 8.80059 9.91728 8.7952C10.0111 8.77949 10.0991 8.81615 10.1414 8.79674C10.1806 8.77908 10.2034 8.76667 10.2229 8.75966C10.2425 8.75099 10.253 8.72949 10.2653 8.72039C10.2772 8.70798 10.2849 8.68111 10.3546 8.65797Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.73145 8.34038C9.73145 8.34038 9.66494 8.25259 9.65129 8.24186C9.63944 8.22944 9.60756 8.20258 9.59069 8.1848C9.57567 8.17076 9.56199 8.1385 9.51826 8.12611C9.50005 8.12131 9.45496 8.11053 9.44266 8.0922C9.4308 8.07291 9.44539 8.16166 9.45905 8.18536C9.47228 8.21016 9.50278 8.23539 9.53148 8.24777C9.56018 8.26018 9.59798 8.28498 9.61166 8.29242C9.62486 8.29944 9.63262 8.30813 9.654 8.31186C9.67632 8.31666 9.68545 8.31019 9.731 8.34038", fill: "#009900" }), jsx("path", { d: "M9.73145 8.34038C9.73145 8.34038 9.66494 8.25259 9.65129 8.24186C9.63944 8.22944 9.60756 8.20258 9.59069 8.1848C9.57567 8.17076 9.56199 8.1385 9.51826 8.12611C9.50005 8.12131 9.45496 8.11053 9.44266 8.0922C9.4308 8.07291 9.44539 8.16166 9.45905 8.18536C9.47228 8.21016 9.50278 8.23539 9.53148 8.24777C9.56018 8.26018 9.59798 8.28498 9.61166 8.29242C9.62486 8.29944 9.63262 8.30813 9.654 8.31186C9.67632 8.31666 9.68545 8.31019 9.731 8.34038H9.73145Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.79477 8.37637C9.79477 8.37637 9.68135 8.28161 9.66311 8.27249C9.64535 8.26229 9.61346 8.24934 9.59207 8.24066C9.56974 8.23376 9.51187 8.18527 9.48911 8.18527C9.46678 8.18527 9.42397 8.18209 9.40439 8.16583C9.38342 8.14654 9.40164 8.22991 9.42397 8.25527C9.4964 8.33216 9.44628 8.30844 9.50733 8.32307C9.54332 8.33161 9.59343 8.35696 9.61165 8.36233C9.62942 8.36937 9.63123 8.3553 9.65857 8.35752C9.68408 8.35917 9.73417 8.3527 9.79475 8.37695", fill: "#009900" }), jsx("path", { d: "M9.79477 8.37637C9.79477 8.37637 9.68135 8.28161 9.66311 8.27249C9.64535 8.26229 9.61346 8.24934 9.59207 8.24066C9.56974 8.23376 9.51187 8.18527 9.48911 8.18527C9.46678 8.18527 9.42397 8.18209 9.40439 8.16583C9.38342 8.14654 9.40164 8.22991 9.42397 8.25527C9.4964 8.33216 9.44628 8.30844 9.50733 8.32307C9.54332 8.33161 9.59343 8.35696 9.61165 8.36233C9.62942 8.36937 9.63123 8.3553 9.65857 8.35752C9.68408 8.35917 9.73417 8.3527 9.79475 8.37695L9.79477 8.37637Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.82213 8.4017C9.82213 8.4017 9.77524 8.36612 9.68276 8.34849C9.61945 8.33445 9.62219 8.33069 9.59802 8.32369C9.56932 8.3135 9.56342 8.3135 9.51192 8.31128C9.48643 8.30811 9.38484 8.34683 9.36208 8.33072C9.33975 8.31664 9.3862 8.36612 9.41491 8.37854C9.45409 8.39631 9.44953 8.42647 9.49372 8.4448C9.54064 8.4626 9.59029 8.48408 9.61762 8.4765C9.63859 8.47333 9.65406 8.46094 9.68412 8.45721C9.71283 8.45389 9.76429 8.40389 9.82169 8.40167", fill: "#009900" }), jsx("path", { d: "M9.82213 8.4017C9.82213 8.4017 9.77524 8.36612 9.68276 8.34849C9.61945 8.33445 9.62219 8.33069 9.59802 8.32369C9.56932 8.3135 9.56342 8.3135 9.51192 8.31128C9.48643 8.30811 9.38484 8.34683 9.36208 8.33072C9.33975 8.31664 9.3862 8.36612 9.41491 8.37854C9.45409 8.39631 9.44953 8.42647 9.49372 8.4448C9.54064 8.4626 9.59029 8.48408 9.61762 8.4765C9.63859 8.47333 9.65406 8.46094 9.68412 8.45721C9.71283 8.45389 9.76429 8.40389 9.82169 8.40167L9.82213 8.4017Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.83165 8.37478C9.83165 8.37478 9.85582 8.24236 9.83577 8.21218C9.82529 8.19825 9.81344 8.17663 9.81025 8.14273C9.80888 8.11103 9.78928 8.05715 9.777 8.03882C9.76515 8.02119 9.74102 7.93713 9.74694 7.91565C9.74694 7.91565 9.6818 7.99046 9.68636 8.03882C9.68772 8.08513 9.68772 8.07437 9.68636 8.09602C9.68225 8.11695 9.70138 8.19068 9.71323 8.2122C9.72508 8.23327 9.71915 8.29995 9.73144 8.31236C9.74329 8.32792 9.81616 8.38553 9.83119 8.37478", fill: "#009900" }), jsx("path", { d: "M9.83165 8.37478C9.83165 8.37478 9.85582 8.24236 9.83577 8.21218C9.82529 8.19825 9.81344 8.17663 9.81025 8.14273C9.80888 8.11103 9.78928 8.05715 9.777 8.03882C9.76515 8.02119 9.74057 7.93713 9.74694 7.91565C9.74694 7.91565 9.6818 7.99046 9.68636 8.03882C9.68772 8.08513 9.68772 8.07437 9.68636 8.09602C9.68225 8.11695 9.70138 8.19068 9.71323 8.2122C9.72508 8.23327 9.71915 8.29995 9.73144 8.31236C9.74329 8.32792 9.81616 8.38553 9.83119 8.37478H9.83165Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.82208 8.40169C9.82937 8.40649 9.78292 8.36075 9.76151 8.34997C9.74054 8.33979 9.65401 8.31071 9.64809 8.28591C9.64217 8.2596 9.5711 8.17346 9.56927 8.15032C9.56654 8.13474 9.55289 8.1003 9.55744 8.08252C9.5588 8.06474 9.56473 8.02162 9.57519 7.99696C9.58387 7.9705 9.60526 7.90917 9.62623 7.89844C9.62623 7.89844 9.64399 7.96622 9.65037 7.99158C9.65627 8.01789 9.66221 8.04697 9.67133 8.06104C9.67998 8.07495 9.71231 8.1433 9.71367 8.17032C9.71778 8.19497 9.73327 8.27956 9.736 8.2957C9.73872 8.31348 9.7966 8.38884 9.82072 8.40276", fill: "#009900" }), jsx("path", { d: "M9.82208 8.40169C9.82937 8.40649 9.78292 8.36075 9.76151 8.34997C9.74054 8.33979 9.65401 8.31071 9.64809 8.28591C9.64217 8.2596 9.5711 8.17346 9.56927 8.15032C9.56654 8.13474 9.55289 8.1003 9.55744 8.08252C9.5588 8.06474 9.56473 8.02162 9.57519 7.99696C9.58387 7.9705 9.60526 7.90917 9.62623 7.89844C9.62623 7.89844 9.64399 7.96622 9.65037 7.99158C9.65627 8.01789 9.66221 8.04697 9.67133 8.06104C9.67998 8.07495 9.71231 8.1433 9.71367 8.17032C9.71778 8.19497 9.73327 8.27956 9.736 8.2957C9.73872 8.31348 9.7966 8.38884 9.82072 8.40276L9.82208 8.40169Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.44628 8.04478C9.44766 8.06419 9.39938 8.02712 9.37524 8.02712C9.35107 8.02712 9.27684 8.03732 9.2586 8.01678C9.24085 7.99585 9.21353 7.95438 9.20258 7.94734C9.19529 7.94046 9.16022 7.87582 9.15112 7.8403C9.14245 7.80321 9.07868 7.73858 9.06958 7.731C9.06958 7.731 9.15705 7.71008 9.21353 7.75192C9.26772 7.79453 9.27091 7.78378 9.28321 7.79137C9.29644 7.79826 9.39071 7.89305 9.39665 7.92915C9.40255 7.96456 9.44174 8.02753 9.44627 8.04533", fill: "#009900" }), jsx("path", { d: "M9.44628 8.04478C9.44766 8.06419 9.39938 8.02712 9.37524 8.02712C9.35107 8.02712 9.27684 8.03732 9.2586 8.01678C9.24085 7.99585 9.21353 7.95438 9.20258 7.94734C9.19529 7.94046 9.16022 7.87582 9.15112 7.8403C9.14245 7.80321 9.07868 7.73858 9.06958 7.731C9.06958 7.731 9.15705 7.71008 9.21353 7.75192C9.26772 7.79453 9.27091 7.78378 9.28321 7.79137C9.29644 7.79826 9.39071 7.89305 9.39665 7.92915C9.40255 7.96456 9.44174 8.02753 9.44627 8.04533L9.44628 8.04478Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.44632 8.04476C9.44632 8.04476 9.36616 7.97861 9.34794 7.98232C9.33016 7.98564 9.24361 7.91081 9.23769 7.8645C9.23496 7.83973 9.1926 7.8036 9.18623 7.78748C9.1639 7.74451 9.15161 7.64654 9.12109 7.62115C9.12109 7.62115 9.20445 7.64596 9.22539 7.64969C9.26456 7.65671 9.29782 7.66376 9.31331 7.70523C9.3297 7.7445 9.34201 7.77673 9.3543 7.78003C9.36616 7.78321 9.38437 7.83323 9.3903 7.88545C9.39622 7.93549 9.44587 8.04476 9.44587 8.04476", fill: "#009900" }), jsx("path", { d: "M9.44632 8.04476C9.44632 8.04476 9.36616 7.97861 9.34794 7.98232C9.33016 7.98564 9.24361 7.91081 9.23769 7.8645C9.23496 7.83973 9.1926 7.8036 9.18623 7.78748C9.1639 7.74503 9.15161 7.64654 9.12109 7.62115C9.12109 7.62115 9.20445 7.64596 9.22539 7.64969C9.26456 7.65671 9.29782 7.66376 9.31331 7.70523C9.3297 7.7445 9.34201 7.77673 9.3543 7.78003C9.36616 7.78321 9.38437 7.83323 9.3903 7.88545C9.39622 7.93549 9.44587 8.04476 9.44587 8.04476H9.44632Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.29639 7.55064C9.30824 7.57546 9.30824 7.40594 9.3128 7.38979C9.3187 7.37202 9.33511 7.33433 9.3474 7.32035C9.35927 7.30635 9.35927 7.25629 9.36517 7.24175C9.3711 7.22777 9.36792 7.12925 9.35927 7.10394C9.35927 7.10394 9.33511 7.12494 9.32328 7.14325C9.31005 7.16102 9.29002 7.16802 9.28273 7.18955C9.27682 7.21055 9.26496 7.21055 9.25586 7.23422C9.2472 7.25522 9.2381 7.29127 9.24402 7.31982C9.24992 7.34833 9.24675 7.3591 9.24675 7.38601C9.24675 7.41079 9.27682 7.51841 9.29642 7.55064", fill: "#009900" }), jsx("path", { d: "M9.29639 7.55064C9.30824 7.57546 9.30824 7.40594 9.3128 7.38979C9.3187 7.37202 9.33511 7.33433 9.3474 7.32035C9.35927 7.30635 9.35927 7.25629 9.36517 7.24175C9.3711 7.22777 9.36792 7.12925 9.35927 7.10394C9.35927 7.10394 9.33511 7.12494 9.32328 7.14325C9.31005 7.16102 9.29002 7.16802 9.28273 7.18955C9.27682 7.21055 9.26496 7.21055 9.25586 7.23422C9.2472 7.25522 9.2381 7.29127 9.24402 7.31982C9.24992 7.34833 9.24675 7.3591 9.24675 7.38601C9.24675 7.41079 9.27682 7.51841 9.29642 7.55064", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.29778 7.56689C9.29778 7.56689 9.29188 7.51895 9.30826 7.50065C9.32331 7.4829 9.33833 7.4829 9.34425 7.47212C9.35015 7.4619 9.34698 7.44735 9.35338 7.43284C9.35928 7.41884 9.37294 7.39354 9.37432 7.38118C9.38022 7.34187 9.39846 7.2988 9.38297 7.25629C9.38297 7.25629 9.34971 7.26868 9.34061 7.27729C9.33013 7.28426 9.30281 7.31282 9.30144 7.34131C9.29734 7.37307 9.29553 7.37846 9.28502 7.39676C9.27637 7.41454 9.26407 7.46837 9.27912 7.50065C9.29553 7.53452 9.29689 7.56689 9.29689 7.56689", fill: "#009900" }), jsx("path", { d: "M9.29778 7.56689C9.29778 7.56689 9.29188 7.51895 9.30826 7.50065C9.32331 7.4829 9.33833 7.4829 9.34425 7.47212C9.35015 7.4619 9.34698 7.44735 9.35338 7.43284C9.35928 7.41884 9.37294 7.39354 9.37432 7.38118C9.38022 7.34187 9.39846 7.2988 9.38297 7.25629C9.38297 7.25629 9.34971 7.26868 9.34061 7.27729C9.33013 7.28426 9.30281 7.31282 9.30144 7.34131C9.29734 7.37307 9.29553 7.37846 9.28502 7.39676C9.27637 7.41454 9.26407 7.46837 9.27912 7.50065C9.29553 7.53452 9.29689 7.56689 9.29689 7.56689H9.29778Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.20854 7.01135C9.20854 7.01135 9.20264 6.90583 9.22814 6.87355C9.25228 6.84179 9.25821 6.78044 9.31286 6.74652C9.31286 6.74652 9.31013 6.77289 9.31286 6.79119C9.31695 6.8068 9.32334 6.85902 9.31286 6.87678C9.30421 6.89455 9.27368 6.92683 9.27368 6.94299C9.27368 6.95697 9.25271 6.99305 9.23769 7.00002C9.22267 7.00702 9.20899 7.01027 9.20899 7.01027", fill: "#009900" }), jsx("path", { d: "M9.20854 7.01135C9.20854 7.01135 9.20264 6.90583 9.22814 6.87355C9.25228 6.84179 9.25821 6.78044 9.31286 6.74652C9.31286 6.74652 9.31013 6.77289 9.31286 6.79119C9.31695 6.8068 9.32334 6.85902 9.31286 6.87678C9.30421 6.89455 9.27368 6.92683 9.27368 6.94299C9.27368 6.95697 9.25271 6.99305 9.23769 7.00002C9.22267 7.00702 9.20899 7.01027 9.20899 7.01027L9.20854 7.01135Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.20856 7.06842C9.20856 7.06842 9.20856 6.99361 9.22816 6.97208C9.24591 6.95108 9.25504 6.93817 9.26413 6.92581C9.2728 6.91181 9.2819 6.87411 9.30331 6.85959C9.32428 6.84559 9.36208 6.80791 9.36526 6.79553C9.36526 6.79553 9.37393 6.88489 9.35343 6.93333C9.3311 6.97961 9.3311 7.00492 9.30786 7.01569C9.28235 7.02592 9.27915 7.03344 9.27005 7.04044C9.2614 7.04905 9.24591 7.05819 9.23406 7.05819C9.22224 7.05819 9.20856 7.06844 9.20856 7.06844", fill: "#009900" }), jsx("path", { d: "M9.20851 7.06842C9.20851 7.06842 9.20851 6.99361 9.22811 6.97208C9.24587 6.95108 9.25499 6.93817 9.26408 6.92581C9.27276 6.91181 9.28185 6.87411 9.30327 6.85959C9.32423 6.84559 9.36204 6.80791 9.36521 6.79553C9.36521 6.79553 9.37389 6.88489 9.35338 6.93333C9.33106 6.97961 9.33106 7.00492 9.30781 7.01569C9.2823 7.02592 9.2791 7.03344 9.27001 7.04044C9.26136 7.04905 9.24587 7.05819 9.23358 7.05819C9.22172 7.05819 9.20807 7.06844 9.20807 7.06844L9.20851 7.06842Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.27958 7.56301C9.2823 7.5841 9.29598 7.5167 9.2313 7.5167C9.16615 7.5167 9.11468 7.48663 9.09328 7.46133C9.07232 7.43656 9.05866 7.41881 9.05135 7.40589C9.04089 7.39725 9.01675 7.35259 9.01355 7.33109C9.01083 7.31006 8.99258 7.22934 8.9958 7.21478C8.9958 7.21478 9.03041 7.22178 9.04409 7.23578C9.05911 7.25142 9.08781 7.25142 9.10283 7.26217C9.11787 7.27239 9.1297 7.30145 9.13927 7.31223C9.14794 7.32245 9.17525 7.32245 9.18757 7.34398C9.20079 7.36553 9.22217 7.41342 9.22537 7.43495C9.22812 7.45595 9.24906 7.47747 9.26454 7.48825C9.2796 7.49847 9.27638 7.5415 9.2796 7.56149", fill: "#009900" }), jsx("path", { d: "M9.27958 7.56301C9.2823 7.5841 9.29598 7.5167 9.2313 7.5167C9.16615 7.5167 9.11468 7.48663 9.09328 7.46133C9.07232 7.43656 9.05866 7.41881 9.05135 7.40589C9.04089 7.39725 9.01675 7.35259 9.01355 7.33109C9.01083 7.31006 8.99258 7.22934 8.9958 7.21478C8.9958 7.21478 9.03041 7.22178 9.04409 7.23578C9.05911 7.25142 9.08781 7.25142 9.10283 7.26217C9.11787 7.27239 9.1297 7.30145 9.13927 7.31223C9.14794 7.32245 9.17525 7.32245 9.18757 7.34398C9.20079 7.36553 9.22217 7.41342 9.22537 7.43495C9.22812 7.45595 9.24906 7.47747 9.26454 7.48825C9.2796 7.49847 9.27638 7.5415 9.2796 7.56149L9.27958 7.56301Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.27368 7.53451C9.27368 7.53451 9.23133 7.47212 9.20854 7.47212C9.18758 7.47212 9.13292 7.40593 9.12974 7.37901C9.12701 7.34887 9.10878 7.29507 9.09649 7.28427C9.08464 7.27405 9.06324 7.24874 9.06505 7.20407C9.06962 7.16155 9.06962 7.08997 9.06962 7.08997C9.06962 7.08997 9.08145 7.13249 9.09968 7.14324C9.11743 7.15346 9.15116 7.16801 9.15709 7.18254C9.16299 7.19654 9.18713 7.19654 9.19806 7.24121C9.20673 7.28373 9.20673 7.28051 9.2131 7.29451C9.21901 7.30848 9.23407 7.32626 9.23998 7.35532C9.24589 7.38546 9.27914 7.46081 9.27323 7.53397", fill: "#009900" }), jsx("path", { d: "M9.27368 7.53451C9.27368 7.53451 9.23133 7.47212 9.20854 7.47212C9.18758 7.47212 9.13292 7.40593 9.12974 7.37901C9.12701 7.34887 9.10878 7.29507 9.09649 7.28427C9.08464 7.27405 9.06324 7.24874 9.06505 7.20407C9.06962 7.16155 9.06962 7.08997 9.06962 7.08997C9.06962 7.08997 9.08145 7.13249 9.09968 7.14324C9.11743 7.15346 9.15116 7.16801 9.15709 7.18254C9.16299 7.19654 9.18713 7.19654 9.19806 7.24121C9.20673 7.28373 9.20673 7.28051 9.2131 7.29451C9.21901 7.30848 9.23407 7.32626 9.23998 7.35532C9.24589 7.38546 9.27914 7.46081 9.27323 7.53397L9.27368 7.53451Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.20991 7.13304C9.20852 7.15242 9.23403 7.09589 9.17662 7.07434C9.11788 7.05336 9.07689 7.01032 9.06323 6.97962C9.05138 6.95109 9.04363 6.92959 9.0377 6.9172C9.0318 6.90482 9.01995 6.85635 9.02268 6.83699C9.02404 6.81599 9.02677 6.73688 9.03316 6.72449C9.03316 6.72449 9.06187 6.74224 9.07233 6.76001C9.08281 6.7794 9.10693 6.78854 9.11925 6.80254C9.12973 6.81654 9.13429 6.84723 9.14021 6.86121C9.14611 6.87359 9.17028 6.88221 9.17618 6.90587C9.18347 6.92904 9.19122 6.97909 9.18803 7.00062C9.18667 7.02 9.19988 7.04693 9.21217 7.06306C9.22265 7.07706 9.21081 7.11473 9.20944 7.13251", fill: "#009900" }), jsx("path", { d: "M9.20991 7.13304C9.20852 7.15242 9.23403 7.09589 9.17662 7.07434C9.11788 7.05336 9.07689 7.01032 9.06323 6.97962C9.05138 6.95109 9.04363 6.92959 9.0377 6.9172C9.0318 6.90482 9.01995 6.85635 9.02268 6.83699C9.02404 6.81599 9.02677 6.73688 9.03316 6.72449C9.03316 6.72449 9.06187 6.74224 9.07233 6.76001C9.08281 6.7794 9.10693 6.78854 9.11925 6.80254C9.12973 6.81654 9.13429 6.84723 9.14021 6.86121C9.14611 6.87359 9.17028 6.88221 9.17618 6.90587C9.18347 6.92904 9.19122 6.97909 9.18803 7.00062C9.18667 7.02 9.19988 7.04693 9.21217 7.06306C9.22265 7.07706 9.21081 7.11473 9.20944 7.13251L9.20991 7.13304Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.21125 7.10446C9.21125 7.10446 9.18574 7.03503 9.16571 7.02749C9.14794 7.02052 9.11604 6.9613 9.11468 6.93438C9.11196 6.90422 9.10739 6.85041 9.09966 6.83802C9.09101 6.82402 9.07413 6.77934 9.08643 6.74167C9.09966 6.70239 9.12107 6.6507 9.12107 6.6507C9.12107 6.6507 9.13746 6.68462 9.14794 6.704C9.16298 6.74114 9.17937 6.7433 9.18118 6.75728C9.18391 6.77291 9.20215 6.78205 9.20989 6.8122C9.219 6.85308 9.20852 6.85147 9.21124 6.86763C9.2126 6.88163 9.22309 6.90316 9.22173 6.93166C9.22037 6.96021 9.23357 7.0388 9.21125 7.10341", fill: "#009900" }), jsx("path", { d: "M9.21125 7.10446C9.21125 7.10446 9.18574 7.03503 9.16571 7.02749C9.14794 7.02052 9.11604 6.9613 9.11468 6.93438C9.11196 6.90422 9.10739 6.85041 9.09966 6.83802C9.09101 6.82402 9.07413 6.77934 9.08643 6.74167C9.09966 6.70239 9.12107 6.6507 9.12107 6.6507C9.12107 6.6507 9.13746 6.68462 9.14794 6.704C9.16298 6.74114 9.17937 6.7433 9.18118 6.75728C9.18391 6.77291 9.20215 6.78205 9.20989 6.8122C9.219 6.85308 9.20852 6.85147 9.21124 6.86763C9.2126 6.88163 9.22309 6.90316 9.22173 6.93166C9.22037 6.96021 9.23357 7.0388 9.21125 7.10341V7.10446Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.25818 6.66744C9.26091 6.6572 9.2791 6.64642 9.3019 6.63728C9.32285 6.63028 9.35611 6.57323 9.37158 6.5587C9.38526 6.54307 9.39254 6.52156 9.4126 6.50862C9.43035 6.49624 9.4413 6.45159 9.4472 6.40692C9.4472 6.40692 9.39572 6.42087 9.3807 6.42472C9.36566 6.42787 9.33559 6.45103 9.3233 6.46715C9.31011 6.48493 9.29779 6.51509 9.28549 6.52209C9.27365 6.52908 9.25862 6.57214 9.25862 6.60228V6.66636", fill: "#009900" }), jsx("path", { d: "M9.25818 6.66744C9.26091 6.6572 9.2791 6.64642 9.3019 6.63728C9.32285 6.63028 9.35611 6.57323 9.37158 6.5587C9.38526 6.54307 9.39254 6.52156 9.4126 6.50862C9.43035 6.49624 9.4413 6.45159 9.4472 6.40692C9.4472 6.40692 9.39572 6.42087 9.3807 6.42472C9.36566 6.42787 9.33559 6.45103 9.3233 6.46715C9.31011 6.48493 9.29779 6.51509 9.28549 6.52209C9.27365 6.52908 9.25862 6.57214 9.25862 6.60228V6.66636L9.25818 6.66744Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.25545 6.63508C9.25545 6.63508 9.25272 6.59256 9.25272 6.57266C9.25272 6.55167 9.24088 6.49247 9.26775 6.44561C9.28552 6.41393 9.35385 6.35248 9.37207 6.3493C9.37207 6.3493 9.38392 6.40636 9.38117 6.42411C9.37844 6.44191 9.36158 6.51506 9.34793 6.52259C9.33469 6.52958 9.29825 6.61572 9.25545 6.63508Z", fill: "#009900" }), jsx("path", { d: "M9.25545 6.63508C9.25545 6.63508 9.25272 6.59256 9.25272 6.57266C9.25272 6.55167 9.24088 6.49247 9.26775 6.44561C9.28552 6.41393 9.35385 6.35248 9.37207 6.3493C9.37207 6.3493 9.38392 6.40636 9.38117 6.42411C9.37844 6.44191 9.36158 6.51506 9.34793 6.52259C9.33469 6.52958 9.29825 6.61572 9.25545 6.63508Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.23997 6.66741C9.23268 6.683 9.23724 6.61248 9.219 6.59581C9.20125 6.57642 9.19806 6.55112 9.19806 6.52259C9.19806 6.49247 9.20216 6.47249 9.20673 6.4532C9.20809 6.43543 9.25501 6.36006 9.25182 6.33911C9.25182 6.33911 9.27869 6.40843 9.28505 6.4284C9.29556 6.4532 9.27916 6.48006 9.28232 6.50157C9.28505 6.52259 9.30009 6.56242 9.28961 6.58395C9.27913 6.60334 9.25181 6.64264 9.23952 6.66795", fill: "#009900" }), jsx("path", { d: "M9.23997 6.66741C9.23268 6.683 9.23724 6.61248 9.219 6.59581C9.20125 6.57642 9.19806 6.55112 9.19806 6.52259C9.19806 6.49247 9.20216 6.47249 9.20673 6.4532C9.20809 6.43543 9.25501 6.36006 9.25182 6.33911C9.25182 6.33911 9.27869 6.40843 9.28505 6.4284C9.29556 6.4532 9.27916 6.48006 9.28232 6.50157C9.28505 6.52259 9.30009 6.56242 9.28961 6.58395C9.27913 6.60334 9.25181 6.64264 9.23952 6.66795L9.23997 6.66741Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.40255 6.29279C9.40255 6.29279 9.40529 6.28189 9.43397 6.28189C9.46085 6.28189 9.5005 6.28037 9.5128 6.26426C9.52462 6.25021 9.54603 6.23243 9.55788 6.22485C9.56973 6.21795 9.59114 6.18558 9.5957 6.16946C9.59843 6.15554 9.61982 6.12701 9.62894 6.12701C9.62894 6.12701 9.5957 6.12371 9.5579 6.13557C9.52189 6.14411 9.46997 6.16725 9.45812 6.19633C9.44627 6.22486 9.4021 6.29278 9.4021 6.29278", fill: "#009900" }), jsx("path", { d: "M9.40255 6.29279C9.40255 6.29279 9.40529 6.28189 9.43397 6.28189C9.46085 6.28189 9.5005 6.28037 9.5128 6.26426C9.52462 6.25021 9.54603 6.23243 9.55788 6.22485C9.56973 6.21795 9.59114 6.18558 9.5957 6.16946C9.59843 6.15554 9.61982 6.12701 9.62894 6.12701C9.62894 6.12701 9.5957 6.12371 9.5579 6.13557C9.52189 6.14411 9.46997 6.16725 9.45812 6.19633C9.44627 6.22486 9.4021 6.29278 9.4021 6.29278L9.40255 6.29279Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.41302 6.28581C9.41894 6.31061 9.47042 6.26101 9.48271 6.24323C9.49284 6.22789 9.50286 6.21245 9.51278 6.19693C9.51278 6.19693 9.54148 6.15599 9.54877 6.13836C9.56835 6.09896 9.56379 6.02743 9.55604 6.03282C9.54558 6.03983 9.51231 6.06298 9.50322 6.06673C9.49457 6.06986 9.47635 6.0769 9.46995 6.09468C9.46406 6.11248 9.45811 6.13726 9.44764 6.15008C9.44036 6.16097 9.38433 6.19637 9.41302 6.28581Z", fill: "#009900" }), jsx("path", { d: "M9.41302 6.28581C9.41894 6.31061 9.47042 6.26101 9.48271 6.24323C9.49284 6.22789 9.50286 6.21245 9.51278 6.19693C9.51278 6.19693 9.54148 6.15599 9.54877 6.13836C9.56835 6.09896 9.56379 6.02743 9.55604 6.03282C9.54558 6.03983 9.51231 6.06298 9.50322 6.06673C9.49457 6.06986 9.47635 6.0769 9.46995 6.09468C9.46406 6.11248 9.45811 6.13726 9.44764 6.15008C9.44036 6.16097 9.38433 6.19637 9.41302 6.28581Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M9.39346 6.28577C9.39346 6.28577 9.43581 6.25022 9.4522 6.23245C9.46998 6.21152 9.46086 6.18241 9.46998 6.16837C9.47726 6.15444 9.50004 6.12055 9.49412 6.09892C9.48822 6.07797 9.47637 6.01666 9.47637 6.01666C9.47637 6.01666 9.45404 6.0398 9.44038 6.05909C9.42397 6.07689 9.42078 6.09092 9.41486 6.11297C9.40896 6.13611 9.39711 6.15004 9.39072 6.16837C9.38481 6.18614 9.39072 6.22169 9.39346 6.24317C9.39619 6.26427 9.39346 6.28575 9.39346 6.28575", fill: "#009900" }), jsx("path", { d: "M9.39348 6.28577C9.39348 6.28577 9.43583 6.25022 9.45222 6.23245C9.47 6.21152 9.46088 6.18241 9.47 6.16837C9.47728 6.15444 9.50006 6.12055 9.49414 6.09892C9.48824 6.07797 9.47639 6.01666 9.47639 6.01666C9.47639 6.01666 9.45406 6.0398 9.43996 6.05909C9.42353 6.07689 9.42036 6.09092 9.41443 6.11297C9.40851 6.13611 9.39667 6.15004 9.39029 6.16837C9.38439 6.18614 9.39029 6.22169 9.39302 6.24317C9.39574 6.26427 9.39302 6.28575 9.39302 6.28575L9.39348 6.28577Z", stroke: "black", strokeWidth: "0.0082917" }), jsx("path", { d: "M10.0708 8.56963C10.0708 8.56963 9.86949 8.56794 9.85127 8.53792M10.1879 8.60035C10.1879 8.60035 10.0563 8.6428 9.98657 8.63205C9.9155 8.62185 9.88223 8.63907 9.86721 8.63907C9.85217 8.63907 9.77473 8.60186 9.77473 8.60186M10.3227 8.65795C10.3227 8.65795 10.2216 8.67888 10.2002 8.68648C10.1792 8.69336 10.0763 8.73963 10.0444 8.73963C10.0203 8.73963 9.95968 8.73815 9.94328 8.73963C9.91321 8.74668 9.83304 8.73963 9.81484 8.72946M9.93919 8.37106C9.93919 8.37106 10.0162 8.42422 10.0284 8.44258C10.0403 8.46199 10.1086 8.52662 10.1209 8.52662M9.93919 8.25791C9.93919 8.25791 10.0708 8.39199 10.0922 8.40977C10.1146 8.42906 10.2435 8.5761 10.259 8.59979M10.0467 8.20087C10.0467 8.20087 10.151 8.29939 10.1633 8.33869C10.1751 8.37795 10.2052 8.42425 10.2052 8.42425C10.2052 8.42425 10.2489 8.52607 10.264 8.54055C10.279 8.55459 10.3095 8.59443 10.3473 8.62074M9.45269 8.10936C9.45269 8.10936 9.56155 8.21863 9.59206 8.23958M9.40532 8.17938C9.40532 8.17938 9.516 8.26867 9.5643 8.2918C9.61437 8.31124 9.65358 8.33123 9.76108 8.34885M9.80388 8.39956C9.80388 8.39956 9.68134 8.39254 9.65995 8.39956C9.63899 8.40646 9.54334 8.38179 9.51919 8.37476C9.49505 8.36774 9.39665 8.34623 9.38436 8.34294M9.61759 7.9108C9.61759 7.9108 9.61167 7.98936 9.62032 8.02325C9.62896 8.05507 9.67132 8.14809 9.6686 8.1718C9.66587 8.19287 9.69274 8.29125 9.71826 8.30958M9.7433 7.92472C9.7433 7.92472 9.72234 8.00341 9.73146 8.03027C9.74013 8.05507 9.75515 8.10178 9.75515 8.13197C9.75515 8.16049 9.77017 8.20362 9.77612 8.2214C9.78202 8.23917 9.77337 8.3016 9.78792 8.31771C9.80298 8.33714 9.82257 8.3694 9.82257 8.3694M9.08692 7.74064C9.08692 7.74064 9.1853 7.78322 9.19759 7.81227C9.20807 7.8408 9.22766 7.84934 9.23677 7.86394M9.44766 7.63135C9.44766 7.63135 9.47318 7.74764 9.46726 7.77617C9.46136 7.8047 9.46136 7.86397 9.46136 7.88544C9.46136 7.90654 9.43447 7.99472 9.43584 8.00877M9.4085 7.53448C9.4085 7.53448 9.3994 7.60226 9.39667 7.63093C9.39392 7.65947 9.39667 7.70784 9.39072 7.72561C9.38483 7.74338 9.3757 7.8397 9.39072 7.88489M9.13837 7.63139C9.13837 7.63139 9.21853 7.71155 9.23677 7.7332C9.25452 7.75413 9.3379 7.85804 9.34107 7.8849C9.3438 7.90971 9.40165 7.98882 9.41989 8.00823M9.00354 7.2261C9.00354 7.2261 9.08372 7.31921 9.08964 7.34021C9.09555 7.36337 9.12881 7.39726 9.14566 7.40965M9.37798 7.26594C9.37798 7.26594 9.34791 7.31921 9.34791 7.33754C9.34791 7.35529 9.33607 7.40373 9.32378 7.42149C9.31465 7.43387 9.29051 7.48557 9.29234 7.51782M9.35382 7.11361C9.35382 7.11361 9.34199 7.16366 9.33607 7.19921C9.33017 7.23474 9.31374 7.2724 9.3092 7.29393C9.30328 7.31493 9.27775 7.42096 9.28687 7.48557M9.07505 7.10985C9.07505 7.10985 9.08372 7.15988 9.10513 7.18466C9.12608 7.20943 9.15932 7.2471 9.16252 7.26702C9.16524 7.29015 9.19395 7.39726 9.22446 7.43496C9.25453 7.47048 9.25772 7.50816 9.25772 7.50816M9.04318 6.74061C9.04318 6.74061 9.05227 6.80142 9.0582 6.81917C9.06412 6.83694 9.08962 6.91769 9.11423 6.94244M9.30828 6.75675C9.30828 6.75675 9.29188 6.80678 9.29051 6.82995C9.28644 6.85094 9.2682 6.87624 9.26501 6.887C9.26228 6.89722 9.24997 6.93492 9.24997 6.93492M9.36294 6.80681C9.36021 6.82995 9.32514 6.89453 9.32378 6.90531C9.31966 6.91769 9.30281 6.96774 9.28323 6.98228C9.26547 6.99628 9.2108 7.04308 9.21355 7.06249M9.12333 6.66739C9.12333 6.66739 9.1206 6.74598 9.13198 6.7745C9.14567 6.80464 9.15932 6.84772 9.16524 6.86922C9.17253 6.89024 9.17253 6.9263 9.17389 6.9516C9.178 6.97797 9.18574 7.02481 9.19942 7.04255M9.44039 6.42027C9.44039 6.42027 9.39529 6.47896 9.37525 6.50433C9.35565 6.52742 9.27685 6.62756 9.27413 6.64531M9.36614 6.36653C9.36614 6.36653 9.32378 6.47732 9.31329 6.4951C9.30464 6.51451 9.29691 6.54304 9.29691 6.54304M9.25544 6.36266C9.25544 6.36266 9.25819 6.45045 9.25544 6.47193C9.25271 6.49137 9.25271 6.52906 9.25544 6.53982C9.25819 6.55004 9.24679 6.62917 9.24359 6.64909M9.61166 6.13724C9.61166 6.13724 9.51326 6.20667 9.49824 6.22488M9.55245 6.04725L9.48592 6.1615L9.4709 6.19539M9.47683 6.0365C9.47683 6.0365 9.45452 6.0974 9.45269 6.12209C9.44859 6.14854 9.41942 6.22763 9.40577 6.25615", stroke: "black", strokeWidth: "0.00412824" }), jsx("path", { d: "M10.4744 8.59331C10.4744 8.59331 10.4876 8.54866 10.5195 8.5885C10.5195 8.5885 10.556 8.69017 10.5282 8.6939C10.5013 8.69719 10.474 8.70424 10.4708 8.68699C10.4667 8.66922 10.4735 8.59386 10.4735 8.59386", fill: "#004BB3" }), jsx("path", { d: "M10.5136 8.5772C10.5136 8.5772 10.5222 8.42326 10.5405 8.4146C10.5582 8.40755 10.6147 8.37202 10.648 8.4044C10.6812 8.43774 10.6507 8.59757 10.6393 8.61371C10.6275 8.62776 10.6093 8.67241 10.5382 8.66165L10.5296 8.62239C10.5296 8.62239 10.5655 8.61908 10.5901 8.60296C10.6156 8.58903 10.6234 8.57665 10.6216 8.56051C10.6188 8.53944 10.6202 8.45869 10.6006 8.45126C10.5828 8.44421 10.5537 8.43346 10.5537 8.43346C10.5537 8.43346 10.5268 8.55514 10.5204 8.58904L10.5145 8.5787M10.4712 8.68645C10.4712 8.68645 10.3442 8.77204 10.4093 8.90281C10.4093 8.90281 10.3824 8.90281 10.3656 8.87111C10.3656 8.87111 10.3432 8.92278 10.3642 8.95131C10.3642 8.95131 10.2781 8.86024 10.3446 8.75262C10.4125 8.64332 10.4672 8.65093 10.4672 8.65093L10.4712 8.68647", fill: "#004BB3" }), jsx("path", { d: "M10.4712 8.68646C10.4712 8.68646 10.3442 8.77204 10.4093 8.90282C10.4093 8.90282 10.3824 8.90282 10.3656 8.87112C10.3656 8.87112 10.3432 8.92278 10.3642 8.95131C10.3642 8.95131 10.2781 8.86024 10.3446 8.75263C10.4125 8.64333 10.4672 8.65093 10.4672 8.65093L10.4712 8.68648", stroke: "black", strokeWidth: "0.00554424" }), jsx("path", { d: "M10.4712 8.61477C10.4712 8.61477 10.4157 8.57011 10.3369 8.59549C10.3369 8.59549 10.3004 8.46139 10.3145 8.41826C10.3204 8.39896 10.3323 8.39733 10.3323 8.39733C10.3323 8.39733 10.2931 8.3688 10.3054 8.49586C10.3173 8.6229 10.3387 8.65846 10.3387 8.65846C10.3387 8.65846 10.443 8.66533 10.4671 8.65141L10.4712 8.61586", fill: "#004BB3" }), jsx("path", { d: "M10.4712 8.61477C10.4712 8.61477 10.4157 8.57011 10.3369 8.59549C10.3369 8.59549 10.3004 8.46139 10.3145 8.41826C10.3204 8.39896 10.3323 8.39733 10.3323 8.39733C10.3323 8.39733 10.2931 8.3688 10.3054 8.49586C10.3173 8.6229 10.3387 8.65846 10.3387 8.65846C10.3387 8.65846 10.443 8.66533 10.4671 8.65141L10.4712 8.61586V8.61477Z", stroke: "black", strokeWidth: "0.00554424" }), jsx("path", { d: "M10.4712 8.61484C10.4712 8.61484 10.361 8.39629 10.3319 8.39629C10.3319 8.39629 10.3004 8.39149 10.371 8.38237C10.3965 8.37907 10.4362 8.38237 10.4544 8.4233C10.474 8.46256 10.4876 8.5556 10.4949 8.56964C10.4949 8.56964 10.474 8.57667 10.4708 8.61429", fill: "#004BB3" }), jsx("path", { d: "M10.4712 8.61484C10.4712 8.61484 10.361 8.39629 10.3319 8.39629C10.3319 8.39629 10.3004 8.39149 10.371 8.38237C10.3965 8.37907 10.4362 8.38237 10.4544 8.4233C10.474 8.46256 10.4876 8.5556 10.4949 8.56964C10.4949 8.56964 10.474 8.57667 10.4708 8.61429L10.4712 8.61484Z", stroke: "black", strokeWidth: "0.00554424" }), jsx("path", { d: "M10.4712 8.61484C10.4712 8.61484 10.397 8.5739 10.3879 8.56315C10.3792 8.55296 10.3637 8.43073 10.3715 8.43831C10.3715 8.43831 10.3428 8.3974 10.3323 8.3974C10.3264 8.3974 10.3054 8.41517 10.3113 8.45816C10.3173 8.50295 10.3264 8.56909 10.3369 8.59596C10.3369 8.59596 10.3943 8.56964 10.4712 8.61539", fill: "#000033" }), jsx("path", { d: "M10.4712 8.61484C10.4712 8.61484 10.397 8.5739 10.3879 8.56315C10.3792 8.55296 10.3637 8.43073 10.3715 8.43831C10.3715 8.43831 10.3428 8.3974 10.3323 8.3974C10.3264 8.3974 10.3054 8.41517 10.3113 8.45816C10.3173 8.50295 10.3264 8.56909 10.3369 8.59596C10.3369 8.59596 10.3943 8.56964 10.4712 8.61539V8.61484Z", stroke: "black", strokeWidth: "0.00554424" }), jsx("path", { d: "M10.5377 8.68648C10.5377 8.68648 10.5769 8.71501 10.5769 8.77043C10.5769 8.82373 10.5965 8.92228 10.6329 8.94376C10.6329 8.94376 10.6416 8.90284 10.6539 8.89582C10.6539 8.89582 10.6899 8.94749 10.7022 8.94749C10.7022 8.94749 10.6812 8.89967 10.6812 8.87804C10.6812 8.85709 10.6634 8.77262 10.6452 8.75321C10.6275 8.73004 10.5892 8.68 10.5377 8.66223V8.68703", fill: "#004BB3" }), jsx("path", { d: "M10.5377 8.68648C10.5377 8.68648 10.5769 8.71501 10.5769 8.77043C10.5769 8.82373 10.5965 8.92228 10.6329 8.94376C10.6329 8.94376 10.6416 8.90284 10.6539 8.89582C10.6539 8.89582 10.6899 8.94749 10.7022 8.94749C10.7022 8.94749 10.6812 8.89967 10.6812 8.87804C10.6812 8.85709 10.6634 8.77262 10.6452 8.75321C10.6275 8.73004 10.5892 8.68 10.5377 8.66223V8.68703V8.68648Z", stroke: "black", strokeWidth: "0.00554424" }), jsx("path", { d: "M10.5533 8.43182L10.52 8.58741L10.5287 8.62129C10.5287 8.62129 10.5405 8.61813 10.5464 8.60037C10.5523 8.58091 10.5706 8.4485 10.581 8.44258L10.5523 8.43238", fill: "#000033" }), jsx("path", { d: "M10.5533 8.43182L10.52 8.58741L10.5287 8.62129C10.5287 8.62129 10.5405 8.61813 10.5464 8.60037C10.5523 8.58091 10.5706 8.4485 10.581 8.44258L10.5523 8.43238L10.5533 8.43182Z", stroke: "black", strokeWidth: "0.00554424" }), jsx("path", { d: "M10.4698 8.66873C10.4698 8.66873 10.4092 8.68966 10.3865 8.7456C10.3865 8.7456 10.3792 8.7102 10.4666 8.66005L10.4694 8.66871M10.5395 8.66873C10.5395 8.66873 10.5819 8.68803 10.5923 8.71653C10.5923 8.71653 10.5518 8.68651 10.5395 8.68112V8.66874M10.4698 8.62724C10.4698 8.62724 10.376 8.64504 10.3546 8.63965C10.3546 8.63965 10.3833 8.64667 10.4712 8.63799L10.4698 8.62779M10.6215 8.55946C10.6215 8.55946 10.632 8.61485 10.6393 8.61278C10.6466 8.60781 10.6616 8.51962 10.6634 8.47705C10.6648 8.43777 10.6484 8.42701 10.6352 8.43075C10.6219 8.43075 10.6142 8.46796 10.6156 8.48407C10.6156 8.49963 10.6197 8.55022 10.6215 8.55887", fill: "#00004B" }), jsx("path", { d: "M10.52 8.58794C10.52 8.58794 10.5578 8.688 10.5287 8.69336C10.5 8.69832 10.5405 8.69666 10.5214 8.62943C10.5141 8.60297 10.5018 8.57074 10.4958 8.57074C10.4958 8.57074 10.5168 8.58092 10.52 8.58849", fill: "#00004B" }), jsx("path", { d: "M10.4744 8.59332C10.4744 8.59332 10.4876 8.54867 10.5195 8.58851C10.5195 8.58851 10.556 8.69018 10.5282 8.69391C10.5013 8.6972 10.474 8.70425 10.4708 8.687C10.4667 8.66923 10.4735 8.59387 10.4735 8.59387L10.4744 8.59332ZM10.5136 8.5772C10.5136 8.5772 10.5223 8.42326 10.5405 8.4146C10.5582 8.40755 10.6147 8.37202 10.648 8.4044C10.6813 8.43774 10.6507 8.59757 10.6393 8.61371C10.6275 8.62776 10.6093 8.67241 10.5382 8.66165L10.5296 8.62239C10.5296 8.62239 10.5655 8.61908 10.5901 8.60296C10.6156 8.58903 10.6234 8.57665 10.6216 8.56051C10.6188 8.53944 10.6202 8.45869 10.6006 8.45126C10.5828 8.44421 10.5537 8.43346 10.5537 8.43346C10.5537 8.43346 10.5268 8.55514 10.5204 8.58904L10.5145 8.5787L10.5136 8.5772Z", stroke: "black", strokeWidth: "0.00554424" }), jsx("path", { d: "M10.3774 5.94021C10.3701 5.91707 10.3687 5.7615 10.3701 5.7378C10.3715 5.69687 10.4334 5.49073 10.4457 5.46757C10.4589 5.44443 10.4544 5.43906 10.4608 5.42513L10.4772 5.39661C10.4904 5.42126 10.5008 5.46275 10.5027 5.49513C10.5027 5.49513 10.4922 5.59351 10.4817 5.6383C10.4744 5.68075 10.4503 5.74221 10.4457 5.75447C10.4339 5.78463 10.4352 5.81151 10.443 5.81482L10.3779 5.93966", fill: "#004BB3" }), jsx("path", { d: "M10.4817 5.73406L10.4922 5.74645C10.5191 5.71091 10.5209 5.63925 10.5209 5.63925L10.5031 5.49457C10.5031 5.49457 10.4926 5.59294 10.4821 5.63773C10.4749 5.68018 10.4507 5.74165 10.4462 5.75391C10.4284 5.80558 10.4421 5.81109 10.4434 5.81426L10.4826 5.73406", fill: "white" }), jsx("path", { d: "M10.4926 5.74649C10.5195 5.71094 10.5213 5.63928 10.5213 5.63928C10.5213 5.63928 10.5409 5.75724 10.53 5.78259C10.5195 5.80727 10.5195 5.80025 10.5213 5.81265L10.4926 5.74652", fill: "#004BB3" }), jsx("path", { d: "M10.5213 5.81261C10.52 5.80023 10.52 5.8078 10.53 5.78257C10.5405 5.75779 10.5213 5.63926 10.5213 5.63926L10.5036 5.49458C10.5022 5.46276 10.4917 5.42127 10.4781 5.39606L10.4617 5.42458C10.4558 5.43851 10.4603 5.44388 10.4466 5.46702C10.4348 5.49018 10.3724 5.69591 10.371 5.73725C10.3697 5.76039 10.371 5.91597 10.3783 5.93967", stroke: "black", strokeWidth: "0.00828182" }), jsx("path", { d: "M10.4817 5.41492C10.4817 5.41492 10.4804 5.39179 10.479 5.3831C10.4776 5.37993 10.4895 5.40403 10.4986 5.40087C10.5163 5.4079 10.5364 5.43643 10.5409 5.44346C10.5336 5.45572 10.5154 5.48273 10.5018 5.47737C10.4913 5.47405 10.4931 5.45421 10.4899 5.44179C10.4885 5.43477 10.4826 5.42623 10.4826 5.41533", fill: "#FFCC00" }), jsx("path", { d: "M10.4817 5.41492C10.4817 5.41492 10.4804 5.39179 10.479 5.3831C10.4776 5.37993 10.4895 5.40403 10.4986 5.40087C10.5163 5.4079 10.5364 5.43643 10.5409 5.44346C10.5336 5.45572 10.5154 5.48273 10.5018 5.47737C10.4913 5.47405 10.4931 5.45421 10.4899 5.44179C10.4885 5.43477 10.4826 5.42623 10.4826 5.41533L10.4817 5.41492Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M10.4835 5.39551C10.4849 5.39717 10.4894 5.40404 10.4908 5.40626C10.4949 5.40792 10.4981 5.40626 10.504 5.40943C10.5172 5.41978 10.5218 5.42887 10.5354 5.44498M10.4953 5.41162C10.5118 5.42031 10.5209 5.43644 10.5332 5.4542V5.45089", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M10.4635 5.39866C10.4635 5.39866 10.4813 5.38846 10.4872 5.38309C10.4899 5.38141 10.474 5.4025 10.4799 5.41106C10.4813 5.43214 10.4667 5.46495 10.4603 5.47348C10.4485 5.46868 10.4348 5.46868 10.4243 5.44496C10.4202 5.43642 10.4316 5.42716 10.4394 5.41864C10.4435 5.41532 10.4544 5.40084 10.4635 5.39921", fill: "#FFCC00" }), jsx("path", { d: "M10.4635 5.39866C10.4635 5.39866 10.4813 5.38846 10.4872 5.38309C10.4899 5.38141 10.474 5.4025 10.4799 5.41106C10.4813 5.43214 10.4667 5.46495 10.4603 5.47348C10.4485 5.46868 10.4348 5.46868 10.4243 5.44496C10.4202 5.43642 10.4316 5.42716 10.4394 5.41864C10.4435 5.41532 10.4544 5.40084 10.4635 5.39921L10.4635 5.39866Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M10.4803 5.39172C10.479 5.39324 10.4744 5.40026 10.4744 5.40399C10.4744 5.40894 10.4772 5.41264 10.4758 5.41967C10.473 5.43747 10.4671 5.44601 10.4594 5.46749M10.4712 5.41154C10.4699 5.43249 10.4608 5.44875 10.4503 5.46694H10.453", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M10.4908 5.38306C10.5026 5.36747 10.5254 5.35136 10.5359 5.36211C10.5359 5.36211 10.5446 5.36913 10.5477 5.3745C10.5536 5.38141 10.5518 5.3847 10.5491 5.3938C10.5418 5.41159 10.5209 5.40247 10.5067 5.3938C10.504 5.39216 10.4963 5.38362 10.4917 5.38677C10.4858 5.38843 10.4876 5.38843 10.4858 5.38843C10.4871 5.39175 10.4899 5.39009 10.4917 5.39175C10.5036 5.3949 10.5127 5.40402 10.5277 5.41104C10.5382 5.41585 10.5578 5.40084 10.5564 5.38788C10.5564 5.37549 10.5386 5.35083 10.5295 5.35083C10.5099 5.35083 10.4949 5.36637 10.4799 5.3847C10.484 5.38141 10.4871 5.38788 10.4903 5.38306", fill: "#FFCC00" }), jsx("path", { d: "M10.4908 5.38306C10.5026 5.36747 10.5254 5.35136 10.5359 5.36211C10.5359 5.36211 10.5446 5.36913 10.5477 5.3745C10.5536 5.38141 10.5518 5.3847 10.5491 5.3938C10.5418 5.41159 10.5209 5.40247 10.5067 5.3938C10.504 5.39216 10.4963 5.38362 10.4917 5.38677C10.4858 5.38843 10.4876 5.38843 10.4858 5.38843C10.4871 5.39175 10.4899 5.39009 10.4917 5.39175C10.5036 5.3949 10.5127 5.40402 10.5277 5.41104C10.5382 5.41585 10.5578 5.40084 10.5564 5.38788C10.5564 5.37549 10.5386 5.35083 10.5295 5.35083C10.5099 5.35083 10.4949 5.36637 10.4799 5.3847C10.484 5.38141 10.4871 5.38788 10.4903 5.38306H10.4908Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M10.4804 5.38306C10.4685 5.36747 10.4458 5.35136 10.4352 5.36211C10.4352 5.36211 10.4262 5.36913 10.4234 5.3745C10.4193 5.38141 10.4193 5.3847 10.422 5.3938C10.4293 5.41159 10.4507 5.40247 10.4644 5.3938C10.4671 5.39216 10.4749 5.38362 10.4794 5.38677C10.4867 5.38843 10.4836 5.38843 10.4867 5.38843C10.484 5.39175 10.4808 5.39009 10.4781 5.39175C10.4676 5.3949 10.4585 5.40402 10.4435 5.41104C10.433 5.41585 10.4134 5.40084 10.4134 5.38788C10.4148 5.37397 10.433 5.35083 10.4421 5.35083C10.4617 5.35083 10.4785 5.36637 10.4918 5.3847C10.489 5.38141 10.4845 5.38788 10.4813 5.38306", fill: "#FFCC00" }), jsx("path", { d: "M10.4804 5.38306C10.4685 5.36747 10.4458 5.35136 10.4352 5.36211C10.4352 5.36211 10.4262 5.36913 10.4234 5.3745C10.4193 5.38141 10.4193 5.3847 10.422 5.3938C10.4293 5.41159 10.4507 5.40247 10.4644 5.3938C10.4671 5.39216 10.4749 5.38362 10.4794 5.38677C10.4867 5.38843 10.4836 5.38843 10.4867 5.38843C10.484 5.39175 10.4808 5.39009 10.4781 5.39175C10.4676 5.3949 10.4585 5.40402 10.4435 5.41104C10.433 5.41585 10.4134 5.40084 10.4134 5.38788C10.4148 5.37397 10.433 5.35083 10.4421 5.35083C10.4617 5.35083 10.4785 5.36637 10.4918 5.3847C10.489 5.38141 10.4845 5.38788 10.4813 5.38306H10.4804Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M10.4849 5.374C10.479 5.37078 10.4731 5.37705 10.4712 5.38065C10.4699 5.38544 10.4726 5.39424 10.4772 5.39424C10.4845 5.39731 10.4949 5.39584 10.4968 5.38744C10.4981 5.37919 10.4908 5.37758 10.4849 5.374Z", fill: "#FFCC00" }), jsx("path", { d: "M10.4849 5.374C10.479 5.37078 10.4731 5.37705 10.4712 5.38065C10.4699 5.38544 10.4726 5.39424 10.4772 5.39424C10.4845 5.39731 10.4949 5.39584 10.4968 5.38744C10.4981 5.37919 10.4908 5.37758 10.4849 5.374Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M10.4836 5.22864C10.4836 5.22864 10.4909 5.28404 10.515 5.32495C10.515 5.32495 10.4863 5.3605 10.4817 5.37498C10.4817 5.37498 10.4667 5.33419 10.4503 5.32329C10.4503 5.32329 10.4758 5.27547 10.4836 5.22864Z", fill: "#FFCC00" }), jsx("path", { d: "M10.4836 5.22864C10.4836 5.22864 10.4909 5.28404 10.515 5.32495C10.515 5.32495 10.4863 5.3605 10.4817 5.37498C10.4817 5.37498 10.4667 5.33419 10.4503 5.32329C10.4503 5.32329 10.4758 5.27547 10.4836 5.22864ZM10.4817 5.28789C10.4817 5.28789 10.4876 5.31254 10.495 5.3288C10.495 5.3288 10.4845 5.339 10.4817 5.34439C10.4817 5.34439 10.4758 5.3288 10.4699 5.32495C10.4699 5.32495 10.4817 5.30403 10.4817 5.28789Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M11.0457 6.84449C11.0756 6.75677 11.1076 6.5743 11.1062 6.53284C11.1003 6.3627 11.1021 6.31102 11.0885 6.13562L10.9399 6.33803C10.9427 6.40417 10.9441 6.42568 10.9399 6.46826C10.9386 6.48381 10.9295 6.56137 10.919 6.59153L11.0461 6.84396", fill: "white" }), jsx("path", { d: "M10.9186 6.59203C10.9291 6.56188 10.9382 6.48489 10.9396 6.46878C10.9437 6.42621 10.9422 6.4047 10.9396 6.33855L10.847 6.45802L10.9181 6.59202M11.299 6.75674C11.3017 6.71744 11.303 6.67438 11.303 6.65499C11.303 6.53175 11.3148 6.46339 11.303 6.33264C11.2957 6.23079 11.273 6.09465 11.2775 5.98537C11.2789 5.9537 11.2748 5.92296 11.2748 5.89221L11.0885 6.13559C11.1017 6.31099 11.1003 6.36265 11.1062 6.53281C11.1076 6.57372 11.0761 6.75674 11.0457 6.84446L11.0849 6.92305L11.2985 6.75674", fill: "#004BB3" }), jsx("path", { d: "M10.8334 6.44189L11.2684 5.87238L11.2756 5.88476L10.847 6.45744L10.8338 6.44189", fill: "#FFCC00" }), jsx("path", { d: "M10.8334 6.44189L11.2684 5.87238L11.2756 5.88476L10.847 6.45744L10.8338 6.44189H10.8334Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M11.2643 6.03113C11.2643 6.03113 11.2297 6.39077 11.1112 6.37673", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1112 6.37508C11.17 6.3784 11.2078 6.28952 11.2306 6.20723C11.2548 6.12153 11.2639 6.03003 11.2639 6.03003", stroke: "#00056B", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1112 6.37508C11.17 6.37191 11.2078 6.28192 11.2292 6.20502C11.2534 6.12264 11.2639 6.02948 11.2639 6.02948", stroke: "#000B73", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1112 6.37358C11.17 6.36863 11.2078 6.27506 11.2292 6.20175C11.2515 6.12321 11.2639 6.03005 11.2639 6.02856", stroke: "#001178", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1112 6.37194C11.17 6.36174 11.2078 6.26802 11.2278 6.20025C11.2502 6.12322 11.2643 6.03006 11.2643 6.02692", stroke: "#00167C", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1095 6.36971C11.1681 6.35578 11.2078 6.25892 11.2261 6.19801C11.2484 6.12318 11.2639 6.02795 11.2639 6.02466", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1095 6.36971C11.1681 6.35041 11.2078 6.25189 11.2261 6.19635C11.2484 6.12318 11.2639 6.0285 11.2639 6.02466", stroke: "#002289", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1095 6.36821C11.1681 6.34504 11.2078 6.24486 11.2228 6.19264C11.247 6.1232 11.262 6.02633 11.2639 6.02258", stroke: "#00288F", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1095 6.3682C11.1681 6.33801 11.2078 6.23782 11.2228 6.19097C11.2452 6.12319 11.262 6.02633 11.2639 6.02094", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1081 6.36433C11.1686 6.33263 11.2078 6.23036 11.2214 6.18891C11.2438 6.12262 11.262 6.02631 11.2639 6.01874", stroke: "#00359C", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1081 6.36436C11.1686 6.32727 11.2078 6.22117 11.2214 6.18728C11.2424 6.1232 11.262 6.02634 11.2639 6.01929", stroke: "#0039A0", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1081 6.36266C11.1669 6.3219 11.2078 6.21414 11.2183 6.18563C11.2419 6.12319 11.262 6.02467 11.2634 6.01776", stroke: "#003EA6", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1067 6.36265C11.1673 6.31638 11.2078 6.20722 11.2187 6.18186C11.2397 6.12483 11.2611 6.02465 11.2639 6.01556", stroke: "#0046AD", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2624 6.01501C11.261 6.02368 11.2402 6.12429 11.2173 6.17968C11.2082 6.19909 11.1678 6.30837 11.1071 6.3584", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2598 5.94885C11.2598 5.94885 11.1614 6.23518 11.099 6.20281", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.099 6.20338C11.1244 6.21742 11.1655 6.16094 11.1987 6.09259C11.2333 6.01927 11.2594 5.94928 11.2594 5.94928", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.099 6.20173C11.1213 6.21411 11.1641 6.16094 11.1973 6.09092C11.2338 6.01611 11.2593 5.94775 11.2593 5.94775", stroke: "#001178", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.099 6.2017C11.1167 6.21258 11.1623 6.16091 11.1955 6.08925C11.2333 6.00904 11.2589 5.9483 11.2589 5.9483", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.0976 6.20171C11.114 6.20871 11.1609 6.16092 11.196 6.0876C11.2352 6.00368 11.2593 5.94666 11.2593 5.94666", stroke: "#002086", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.0976 6.19964C11.1108 6.20668 11.1595 6.16038 11.1942 6.08555C11.2347 5.99775 11.2575 5.94446 11.2575 5.94446", stroke: "#002B91", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.0976 6.19964C11.1062 6.20444 11.1583 6.16038 11.1942 6.0817L11.2575 5.94238", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.0976 6.19966C11.1035 6.20284 11.1564 6.1604 11.1928 6.0802C11.2365 5.98539 11.2561 5.94238 11.2561 5.94238", stroke: "#0039A0", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.0976 6.19965C11.1003 6.19965 11.155 6.16039 11.1915 6.08019C11.2365 5.98002 11.2566 5.94073 11.2566 5.94073", stroke: "#0045AB", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2565 5.94019C11.2565 5.94019 11.2369 5.9741 11.19 6.07577C11.1535 6.15984 11.0962 6.19745 11.0962 6.19745M10.9396 6.39505L10.8561 6.44838M10.9336 6.48819L10.8566 6.47248", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9413 6.40039L10.8566 6.44835", stroke: "#0045AB", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9396 6.40417L10.8548 6.45048", stroke: "#003CA2", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9396 6.40948L10.8548 6.45042", stroke: "#00359C", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9396 6.41284L10.8535 6.45212", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9396 6.4165L10.8535 6.45208", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9396 6.42194L10.8535 6.45113", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9396 6.42566L10.8516 6.45323", stroke: "#00167C", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9395 6.43121L10.8502 6.45345", stroke: "#000F75", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9395 6.43439L10.8502 6.45463", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9349 6.48389L10.8548 6.4704", stroke: "#0045AB", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9349 6.47861L10.8548 6.46875", stroke: "#003CA2", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9349 6.47334L10.8535 6.46655", stroke: "#00359C", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9349 6.47029L10.8535 6.4671", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9349 6.46503H10.8516", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9368 6.45966L10.8507 6.46271", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9368 6.45416L10.8507 6.46098", stroke: "#00167C", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9382 6.45044L10.8489 6.45882", stroke: "#000F75", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9382 6.44507L10.8489 6.45868", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.9382 6.43976L10.8475 6.45695", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.299 6.75674C11.3017 6.72821 11.3017 6.69805 11.3017 6.67977C11.3017 6.5565 11.3149 6.46339 11.3031 6.33264C11.2957 6.23079 11.273 6.09465 11.2775 5.98537C11.2789 5.9537 11.2749 5.92296 11.2749 5.89221L10.8475 6.45803", stroke: "black", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.299 6.46655C11.299 6.46655 11.293 6.54143 11.2794 6.57371C11.2598 6.62001 11.2006 6.68782 11.1327 6.73843", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1308 6.73894C11.1745 6.70502 11.2156 6.66414 11.2429 6.62805C11.256 6.60869 11.2698 6.58878 11.2761 6.57264C11.2911 6.54088 11.2971 6.46558 11.2971 6.46558", stroke: "#00056B", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.129 6.73895C11.1728 6.70503 11.2123 6.66036 11.2392 6.62484C11.2543 6.60709 11.2648 6.5877 11.2739 6.57156C11.2889 6.53764 11.2961 6.46448 11.2961 6.46448", stroke: "#000B73", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1276 6.73896C11.17 6.70504 11.211 6.65876 11.2364 6.62485C11.2497 6.60548 11.2634 6.58554 11.2711 6.56779C11.2875 6.53388 11.2966 6.46063 11.2966 6.46063", stroke: "#001178", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1263 6.73733C11.1686 6.70342 11.2078 6.65497 11.2338 6.62322C11.2488 6.60547 11.2593 6.58609 11.2684 6.56617C11.2861 6.53064 11.2971 6.45911 11.2971 6.45911", stroke: "#00167C", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1244 6.73735C11.1668 6.70343 11.206 6.6534 11.2319 6.62107C11.2438 6.60332 11.2561 6.58394 11.2653 6.56404C11.2847 6.52689 11.2971 6.45691 11.2971 6.45691", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1231 6.73735C11.1654 6.70344 11.2046 6.64963 11.2292 6.61786C11.2424 6.60225 11.2534 6.58233 11.2638 6.56244C11.2816 6.52314 11.2971 6.45526 11.2971 6.45526", stroke: "#002289", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1217 6.73741C11.164 6.70188 11.2032 6.64644 11.2261 6.61577C11.2389 6.59848 11.2504 6.57993 11.2606 6.56034C11.2802 6.51944 11.2971 6.45325 11.2971 6.45325", stroke: "#00288F", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1199 6.73734C11.1623 6.70181 11.2015 6.64423 11.2243 6.61409C11.2361 6.60009 11.2465 6.57854 11.2575 6.55865C11.2785 6.51612 11.2967 6.45154 11.2967 6.45154", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1186 6.73734C11.1591 6.70021 11.1987 6.64101 11.2214 6.61246C11.232 6.59848 11.2438 6.57854 11.2548 6.55542C11.2757 6.51286 11.2953 6.44836 11.2953 6.44836", stroke: "#00359C", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1172 6.73736C11.1577 6.70022 11.1973 6.63725 11.2183 6.61033C11.2288 6.59633 11.2407 6.57481 11.2515 6.55328C11.2739 6.50859 11.2953 6.44617 11.2953 6.44617", stroke: "#0039A0", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1153 6.73736C11.1559 6.70023 11.1955 6.63562 11.2165 6.60873C11.2252 6.59635 11.2374 6.57481 11.2479 6.55167C11.272 6.50544 11.2948 6.44452 11.2948 6.44452", stroke: "#003EA6", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.114 6.73519C11.1549 6.69803 11.1941 6.63345 11.2137 6.60656C11.2223 6.59415 11.2347 6.57264 11.2465 6.54948C11.2706 6.50154 11.2948 6.44244 11.2948 6.44244", stroke: "#0046AD", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2957 6.43976C11.2957 6.43976 11.2383 6.56679 11.211 6.60448C11.1914 6.62923 11.1535 6.69759 11.1126 6.73475", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2944 6.75677C11.2324 6.80683 11.2156 6.8192 11.0853 6.91771L11.0461 6.8445C11.0461 6.8445 11.0612 6.8036 11.067 6.78207", stroke: "#00004B", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2931 6.75677C11.2343 6.80469 11.2128 6.8192 11.0857 6.91394L11.0844 6.91232L11.0484 6.84289C11.0484 6.84289 11.0512 6.83428 11.0543 6.82353C11.0603 6.81114 11.0648 6.79499 11.0675 6.7826", stroke: "#00004F", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.293 6.75677C11.2356 6.80308 11.2082 6.82297 11.0857 6.91232L11.0844 6.9091C11.0844 6.90749 11.0511 6.83966 11.0511 6.83966C11.0511 6.83966 11.0524 6.83269 11.057 6.82191C11.0612 6.80953 11.0643 6.79335 11.0675 6.7826", stroke: "#000053", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.293 6.75677C11.2369 6.7993 11.207 6.82297 11.0857 6.90855L11.0844 6.90533C11.0844 6.90371 11.0529 6.8375 11.0529 6.8375C11.0529 6.8375 11.0543 6.83052 11.057 6.81974C11.0612 6.80736 11.0657 6.79336 11.0689 6.7826", stroke: "#000056", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.293 6.75519C11.2388 6.79771 11.2023 6.8246 11.0856 6.90535L11.0844 6.90374C11.0844 6.90052 11.0557 6.8343 11.0557 6.8343C11.0557 6.8343 11.0557 6.82949 11.0584 6.81869C11.0624 6.80632 11.067 6.79391 11.0689 6.78316", stroke: "#000058", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2931 6.75519C11.2402 6.79607 11.1992 6.82677 11.0857 6.90374L11.0844 6.90052C11.0844 6.89566 11.0575 6.83107 11.0575 6.83107C11.0575 6.83107 11.0575 6.82621 11.0603 6.81707C11.0644 6.80632 11.0675 6.79394 11.0689 6.78316", stroke: "#00005C", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2931 6.75519C11.2434 6.79446 11.1965 6.82838 11.0857 6.89999L11.0844 6.89674C11.0844 6.89191 11.0603 6.82891 11.0603 6.82891C11.0603 6.82891 11.0589 6.8241 11.0616 6.81493C11.0644 6.80471 11.0675 6.79339 11.0689 6.78318", stroke: "#000060", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.293 6.75519C11.2447 6.79232 11.1919 6.82838 11.0857 6.89621L11.0844 6.89296C11.0844 6.88813 11.062 6.82514 11.062 6.82514C11.062 6.82514 11.0607 6.82193 11.0634 6.81277C11.0675 6.80255 11.0675 6.79339 11.0694 6.78263", stroke: "#000062", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2912 6.75519C11.246 6.79071 11.1882 6.82999 11.0853 6.8946L11.0839 6.89135C11.0839 6.88438 11.063 6.82352 11.0644 6.82352C11.0644 6.82352 11.0616 6.82032 11.0644 6.81116C11.067 6.80093 11.0684 6.79339 11.0684 6.78263", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2912 6.75348C11.2475 6.78901 11.1856 6.83207 11.0854 6.89126C11.084 6.89126 11.084 6.88804 11.084 6.88804C11.084 6.88106 11.0661 6.82021 11.0661 6.82021C11.0661 6.82021 11.0635 6.8186 11.0661 6.80998C11.0689 6.80137 11.0689 6.79385 11.0689 6.78362", stroke: "#00056B", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2912 6.75348C11.2488 6.7874 11.181 6.83368 11.0853 6.88748C11.0839 6.88748 11.0839 6.88587 11.0825 6.88426C11.0839 6.87565 11.0675 6.81807 11.0675 6.81807H11.0689C11.0689 6.81807 11.0648 6.81484 11.0675 6.80784C11.0703 6.79923 11.0689 6.79385 11.0689 6.78307", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2911 6.75348C11.2505 6.78524 11.1778 6.83582 11.0853 6.88587C11.0839 6.88426 11.0839 6.88265 11.0825 6.88106C11.0825 6.87404 11.0707 6.81698 11.0707 6.81698C11.0707 6.81698 11.0665 6.81376 11.0693 6.80623C11.072 6.79762 11.0707 6.79385 11.0693 6.78307", stroke: "#00096F", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2911 6.75348C11.2533 6.78201 11.1745 6.83582 11.0853 6.88211L11.0825 6.87887C11.0825 6.86865 11.072 6.81268 11.072 6.81268C11.072 6.81268 11.0679 6.81107 11.0693 6.80407C11.072 6.79546 11.072 6.79329 11.0707 6.78307", stroke: "#000B73", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2911 6.75348C11.2552 6.77985 11.1718 6.83743 11.0839 6.87887L11.0825 6.87565C11.0825 6.86489 11.0738 6.8116 11.0753 6.80946C11.0753 6.80946 11.0693 6.80784 11.0725 6.80246C11.0738 6.79385 11.0725 6.79385 11.071 6.78307", stroke: "#001178", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2911 6.75348C11.2565 6.77826 11.1686 6.83907 11.0839 6.87673C11.0839 6.87512 11.0825 6.87189 11.0825 6.87189C11.0825 6.86165 11.0753 6.80784 11.0765 6.80784C11.0765 6.80784 11.0707 6.80624 11.0725 6.80085C11.0753 6.79385 11.0725 6.79385 11.071 6.78307", stroke: "#001379", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2897 6.7514C11.2584 6.77779 11.164 6.84076 11.0839 6.87307L11.0825 6.86821C11.0825 6.85798 11.0785 6.80576 11.0798 6.80415C11.0798 6.80415 11.0725 6.80415 11.0739 6.79932C11.0753 6.79232 11.0725 6.79232 11.0711 6.78369", stroke: "#00167C", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2897 6.7514C11.2598 6.77454 11.1614 6.84238 11.0839 6.86927L11.0825 6.86607C11.0825 6.85368 11.0798 6.80199 11.0811 6.79985C11.0811 6.79985 11.0739 6.80146 11.0753 6.79662C11.078 6.78963 11.0739 6.79176 11.0711 6.78262", stroke: "#001C82", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2897 6.74976C11.2611 6.7729 11.1582 6.84287 11.0839 6.86761C11.0839 6.86603 11.0825 6.86278 11.0825 6.86278C11.0825 6.84881 11.0825 6.80034 11.0839 6.79873C11.0839 6.79873 11.0753 6.80034 11.0766 6.79551C11.078 6.78853 11.0739 6.79228 11.0725 6.78312", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2897 6.74976C11.2643 6.77076 11.1535 6.84448 11.0839 6.86387C11.0839 6.86226 11.0825 6.85903 11.0825 6.85903C11.0825 6.84503 11.0839 6.79658 11.0853 6.79497C11.0853 6.79497 11.0748 6.7982 11.078 6.79334C11.0794 6.78854 11.0739 6.79173 11.072 6.78312", stroke: "#002086", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2884 6.74976C11.2656 6.76915 11.1508 6.84609 11.0839 6.86064C11.0839 6.86064 11.0825 6.85742 11.0825 6.85581C11.0825 6.84181 11.0853 6.79495 11.0866 6.79334H11.088C11.088 6.79334 11.0775 6.79497 11.0794 6.79173C11.0807 6.78692 11.0753 6.79173 11.072 6.78312", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2884 6.74976C11.2675 6.76751 11.1477 6.84826 11.0839 6.85903C11.0825 6.85742 11.0825 6.85581 11.0825 6.85417C11.0825 6.83856 11.0884 6.79173 11.0898 6.79173C11.0898 6.79173 11.0794 6.79334 11.0794 6.79012C11.082 6.78528 11.0753 6.79173 11.072 6.78314", stroke: "#00288F", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2884 6.74976C11.2689 6.76537 11.1444 6.84987 11.0839 6.85526C11.0825 6.85364 11.0825 6.85203 11.0811 6.85042C11.0825 6.83478 11.0903 6.78956 11.0916 6.78797C11.0916 6.78797 11.0798 6.7912 11.0825 6.78797C11.0839 6.78312 11.0753 6.7912 11.072 6.78312", stroke: "#002B91", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2885 6.74976C11.2701 6.76214 11.1418 6.84987 11.0839 6.85364C11.0825 6.85042 11.0825 6.84881 11.0811 6.84667C11.0811 6.83103 11.093 6.78581 11.0949 6.7842C11.0949 6.7842 11.083 6.78745 11.083 6.78583C11.0844 6.78097 11.077 6.79064 11.0725 6.78258", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2885 6.74811C11.272 6.7605 11.1372 6.852 11.0839 6.84986C11.0824 6.84796 11.0814 6.84548 11.0811 6.84284C11.0811 6.82508 11.0949 6.78203 11.0962 6.78203C11.0962 6.78203 11.0844 6.78525 11.0844 6.78203C11.0857 6.78042 11.077 6.79064 11.0725 6.78203", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2885 6.74811C11.2752 6.7605 11.134 6.85361 11.0839 6.84661C11.0825 6.84501 11.0811 6.84339 11.0811 6.84178C11.0811 6.82239 11.0962 6.78092 11.099 6.77933C11.099 6.77933 11.0839 6.78414 11.0857 6.78255C11.0871 6.77933 11.0785 6.79117 11.0725 6.78255", stroke: "#00359C", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2884 6.74811C11.2765 6.75672 11.1308 6.85523 11.0839 6.84284C11.0825 6.84284 11.0811 6.83961 11.0811 6.83803C11.0811 6.81862 11.0989 6.77933 11.1007 6.77717V6.77556C11.1007 6.77556 11.0856 6.78253 11.0875 6.78042C11.0889 6.77717 11.0789 6.79064 11.0724 6.78202", stroke: "#00389E", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2871 6.74811C11.2784 6.75509 11.1267 6.85523 11.0844 6.84123C11.083 6.83961 11.0816 6.83639 11.0803 6.83425C11.0816 6.81486 11.1012 6.77556 11.1044 6.77339C11.1044 6.77339 11.0894 6.78042 11.0894 6.77825C11.0894 6.77503 11.0789 6.79064 11.0743 6.78148", stroke: "#003CA2", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2871 6.74811C11.2797 6.75294 11.1236 6.85739 11.0844 6.83747C11.083 6.83584 11.0816 6.83261 11.0803 6.83047C11.0803 6.81109 11.1044 6.77339 11.1057 6.76964C11.1057 6.76964 11.0894 6.77825 11.0907 6.77448C11.0907 6.77448 11.0803 6.79011 11.0743 6.78147", stroke: "#003EA6", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2871 6.74811C11.2811 6.75133 11.1203 6.859 11.0825 6.83584C11.0825 6.83261 11.0811 6.83103 11.0798 6.82886C11.0798 6.80786 11.1053 6.77017 11.1067 6.76801C11.1067 6.76801 11.0903 6.77503 11.0916 6.77503C11.0916 6.77339 11.0798 6.78903 11.0739 6.78201", stroke: "#0042A8", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2871 6.74597C11.283 6.7492 11.1158 6.86008 11.0825 6.83156C11.0825 6.82995 11.0799 6.82833 11.0799 6.82458C11.0799 6.80358 11.1067 6.7675 11.1098 6.76589L11.0935 6.77289C11.0935 6.77289 11.0803 6.78852 11.0739 6.7815", stroke: "#0045AB", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2871 6.74597C11.2857 6.74759 11.1131 6.86225 11.0825 6.82833C11.0825 6.82673 11.0798 6.82511 11.0798 6.82136C11.0798 6.7982 11.1098 6.76428 11.1112 6.76267L11.0949 6.76967C11.0949 6.76967 11.0811 6.78906 11.0739 6.78205", stroke: "#0049AF", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2871 6.74438C11.2871 6.74438 11.0889 6.87677 11.0798 6.81755C11.0798 6.79441 11.1131 6.76052 11.1131 6.76052L11.0952 6.7675C11.0952 6.7675 11.0816 6.7885 11.0743 6.7815", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.2656 5.87189C11.2643 5.84873 11.2538 5.82185 11.2402 5.82185C11.2402 5.82185 11.2297 5.82185 11.2238 5.82337C11.2165 5.82669 11.2151 5.8304 11.2133 5.83908C11.2106 5.85837 11.2329 5.86539 11.2479 5.86761C11.2506 5.86761 11.2615 5.86594 11.2643 5.87078C11.267 5.8778 11.2656 5.87559 11.267 5.8778C11.2643 5.8778 11.2629 5.87614 11.2611 5.87449C11.2493 5.87133 11.2388 5.87133 11.2219 5.86761C11.2101 5.86594 11.2023 5.83908 11.2087 5.82833C11.2161 5.81966 11.2419 5.81056 11.2498 5.81799C11.2661 5.83205 11.272 5.85356 11.2739 5.87891C11.2725 5.8741 11.2666 5.87725 11.2666 5.87189", fill: "#FFCC00" }), jsx("path", { d: "M11.2656 5.87189C11.2643 5.84873 11.2538 5.82185 11.2402 5.82185C11.2402 5.82185 11.2297 5.82185 11.2238 5.82337C11.2165 5.82669 11.2151 5.8304 11.2133 5.83908C11.2106 5.85837 11.2329 5.86539 11.2479 5.86761C11.2506 5.86761 11.2615 5.86594 11.2643 5.87078C11.267 5.8778 11.2656 5.87559 11.267 5.8778C11.2643 5.8778 11.2629 5.87614 11.2611 5.87449C11.2493 5.87133 11.2388 5.87133 11.2219 5.86761C11.2101 5.86594 11.2023 5.83908 11.2087 5.82833C11.2161 5.81966 11.2419 5.81056 11.2498 5.81799C11.2661 5.83205 11.272 5.85356 11.2739 5.87891C11.2725 5.8741 11.2666 5.87725 11.2666 5.87189H11.2656Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M11.2748 5.87892C11.2925 5.8719 11.3186 5.8756 11.3231 5.88912C11.3231 5.89076 11.3272 5.90302 11.3258 5.90853C11.3272 5.9171 11.3244 5.9208 11.3186 5.92619C11.3035 5.93485 11.2897 5.91392 11.2839 5.89766C11.2825 5.89286 11.2797 5.88374 11.2752 5.88003C11.2679 5.87835 11.2711 5.88003 11.2679 5.87835C11.2694 5.88155 11.272 5.88318 11.2739 5.88539C11.2811 5.89766 11.2844 5.90853 11.2935 5.92619C11.2976 5.93857 11.3217 5.93857 11.3281 5.92785C11.3339 5.91544 11.3294 5.88539 11.3239 5.87781C11.3076 5.86377 11.2861 5.8654 11.2665 5.87301C11.2706 5.87132 11.2706 5.88003 11.2756 5.87781", fill: "#FFCC00" }), jsx("path", { d: "M11.2748 5.87892C11.2925 5.8719 11.3186 5.8756 11.3231 5.88912C11.3231 5.88912 11.3272 5.90302 11.3258 5.90853C11.3272 5.9171 11.3244 5.9208 11.3186 5.92619C11.3035 5.93485 11.2897 5.91392 11.2839 5.89766C11.2825 5.89286 11.2797 5.88374 11.2752 5.88003C11.2679 5.87835 11.2711 5.88003 11.2679 5.87835C11.2694 5.88155 11.272 5.88318 11.2739 5.88539C11.2811 5.89766 11.2844 5.90853 11.2935 5.92619C11.2976 5.93857 11.3217 5.93857 11.3281 5.92785C11.3339 5.91544 11.3294 5.88539 11.3239 5.87781C11.3076 5.86377 11.2861 5.8654 11.2665 5.87301C11.2706 5.87132 11.2706 5.88003 11.2756 5.87781L11.2748 5.87892Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M11.2761 5.86848C11.2821 5.86848 11.2835 5.87848 11.2821 5.88367C11.2821 5.88832 11.2748 5.89193 11.2702 5.89047C11.263 5.88727 11.257 5.88046 11.2598 5.87169C11.2611 5.86329 11.2702 5.86704 11.2761 5.86848", fill: "#FFCC00" }), jsx("path", { d: "M11.2761 5.86848C11.2821 5.86848 11.2835 5.87848 11.2821 5.88367C11.2821 5.88832 11.2748 5.89193 11.2702 5.89047C11.263 5.88727 11.257 5.88046 11.2598 5.87169C11.2611 5.86329 11.2702 5.86704 11.2761 5.86848", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M11.3613 5.7663C11.3613 5.7663 11.3176 5.80351 11.2766 5.81648C11.2766 5.81648 11.2825 5.8589 11.2766 5.87187C11.2766 5.87187 11.3112 5.85407 11.3294 5.85946C11.3294 5.85946 11.338 5.79703 11.3609 5.7663", fill: "#FFCC00" }), jsx("path", { d: "M11.3613 5.7663C11.3613 5.7663 11.3176 5.80351 11.2766 5.81648C11.2766 5.81648 11.2825 5.8589 11.2766 5.87187C11.2766 5.87187 11.3112 5.85407 11.3294 5.85946C11.3294 5.85946 11.338 5.79703 11.3609 5.7663H11.3613Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M11.3281 5.80725C11.3281 5.80725 11.3102 5.82129 11.2935 5.82668C11.2935 5.82668 11.2961 5.84225 11.2935 5.84761C11.2935 5.84761 11.3066 5.8428 11.3143 5.84446C11.3143 5.84446 11.3185 5.81963 11.3276 5.80725H11.3281Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M11.2825 5.91489C11.2825 5.91489 11.2706 5.89932 11.266 5.89174C11.2634 5.88857 11.272 5.91489 11.2634 5.92191C11.256 5.94134 11.2619 5.97745 11.2634 5.98598C11.2765 5.98764 11.2889 5.99301 11.3071 5.97745C11.313 5.97043 11.3043 5.95635 11.2997 5.94562C11.2971 5.94079 11.2925 5.92246 11.2834 5.91544", fill: "#FFCC00" }), jsx("path", { d: "M11.2825 5.91489C11.2825 5.91489 11.2706 5.89932 11.266 5.89174C11.2634 5.88857 11.272 5.91489 11.2634 5.92191C11.256 5.94134 11.2619 5.97745 11.2634 5.98598C11.2765 5.98764 11.2889 5.99301 11.3071 5.97745C11.313 5.97043 11.3043 5.95635 11.2997 5.94562C11.2971 5.94079 11.2925 5.92246 11.2834 5.91544L11.2825 5.91489Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M11.2702 5.90411C11.2702 5.90577 11.2716 5.91446 11.2716 5.91653C11.2701 5.92133 11.2656 5.92355 11.2656 5.93057C11.2629 5.94837 11.2656 5.96062 11.267 5.98376M11.2716 5.9241C11.2675 5.94724 11.2716 5.96501 11.2744 5.98486H11.2716M11.2748 5.96172C11.2761 5.96874 11.2775 5.97411 11.2775 5.98486C11.2789 5.98334 11.2816 5.98652 11.2835 5.98652", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M10.4817 8.07177C10.4804 8.07177 10.4776 8.06848 10.4758 8.06696C10.4672 8.06201 10.4535 8.06201 10.4489 8.05662C10.428 8.02809 10.443 7.97435 10.4503 7.94044C10.4681 7.8779 10.4713 7.82084 10.4817 7.76172H10.4831C10.4949 7.82043 10.4963 7.8779 10.5132 7.94044C10.5236 7.97435 10.5373 8.02809 10.5159 8.05662C10.5118 8.06159 10.4981 8.06159 10.4904 8.06696C10.4876 8.06848 10.4845 8.07177 10.4817 8.07177", fill: "white" }), jsx("path", { d: "M10.4818 7.75842C10.4936 7.81711 10.4968 7.87789 10.5132 7.94099C10.5218 7.97106 10.5355 8.02121 10.5191 8.05014L10.5188 8.04627C10.5275 8.04627 10.5338 8.04459 10.5411 8.04143C10.5439 8.03977 10.5455 8.04216 10.5473 8.03883C10.5501 8.03403 10.5532 8.0303 10.5564 8.02657C10.5624 8.02327 10.5683 8.02494 10.5742 8.02161C10.5756 8.0201 10.5756 8.01844 10.5769 8.01844C10.5874 8.01142 10.5979 8.00439 10.6024 7.99212C10.6052 7.98178 10.6052 7.97269 10.6038 7.96197C10.6026 7.95518 10.6007 7.94862 10.5979 7.94252C10.5951 7.93399 10.592 7.92473 10.5874 7.91622C10.5847 7.90602 10.5801 7.89841 10.5756 7.88768C10.5742 7.88288 10.5728 7.879 10.5697 7.87527C10.5683 7.87046 10.5655 7.86661 10.5637 7.86289C10.5624 7.85808 10.5578 7.85584 10.5551 7.85048C10.5523 7.8473 10.5505 7.8473 10.5491 7.84345C10.5478 7.84345 10.5432 7.84193 10.545 7.84027C10.5437 7.84027 10.541 7.83862 10.5391 7.8371C10.5332 7.81933 10.5254 7.81064 10.5195 7.79231C10.5154 7.78543 10.5154 7.77302 10.5154 7.76381H10.4822", fill: "#004BB3" }), jsx("path", { d: "M10.4985 7.76007C10.4985 7.76007 10.5181 7.85859 10.53 7.88339C10.5418 7.90807 10.5887 7.95271 10.5568 8.02434", stroke: "#000033", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4954 7.76007C10.4954 7.76007 10.5149 7.85859 10.5286 7.88339C10.5405 7.90971 10.5888 7.95283 10.5569 8.02434", stroke: "#00004B", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.494 7.76007C10.494 7.76007 10.5131 7.85899 10.5249 7.88585C10.5368 7.91064 10.5837 7.95902 10.5504 8.03066", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4908 7.76007C10.4908 7.76007 10.5118 7.86177 10.5241 7.88712C10.5359 7.91192 10.5834 7.95388 10.5515 8.02763", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4894 7.76007C10.4894 7.76007 10.509 7.86398 10.5227 7.88876C10.5332 7.91343 10.5787 7.96565 10.545 8.03885", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4881 7.76007C10.4881 7.76007 10.5077 7.86562 10.5195 7.89029C10.5314 7.91507 10.5756 7.96895 10.5419 8.04214", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4999 7.76007C10.4999 7.76007 10.5195 7.85486 10.5332 7.88173C10.545 7.90807 10.592 7.95326 10.5601 8.02271", stroke: "#00004B", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.5031 7.76233C10.5031 7.76233 10.5209 7.85162 10.5346 7.88178C10.5464 7.90659 10.5951 7.95331 10.5633 8.02275", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.5045 7.76233C10.5045 7.76233 10.5223 7.84995 10.5378 7.88178C10.5496 7.90659 10.5965 7.95124 10.5665 8.02275", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.5063 7.76233C10.5063 7.76233 10.5241 7.84623 10.5395 7.88014C10.5514 7.90659 10.6001 7.95179 10.5682 8.02123", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.509 7.76233C10.509 7.76233 10.5254 7.84459 10.5423 7.88014C10.5541 7.90491 10.6029 7.95179 10.571 8.02123", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 7.75842C10.4712 7.81711 10.4685 7.87789 10.4502 7.94099C10.4429 7.97106 10.4293 8.02121 10.4461 8.05014L10.4448 8.04862H10.4461C10.4389 8.04862 10.4311 8.04697 10.4238 8.04382C10.4224 8.04213 10.4197 8.04213 10.4179 8.03883C10.4151 8.03397 10.4116 8.0298 10.4074 8.02657C10.4033 8.02327 10.3969 8.02494 10.3924 8.02161C10.391 8.0201 10.3897 8.01844 10.3883 8.01844C10.3778 8.01142 10.3673 8.00439 10.3628 7.99212C10.3614 7.98178 10.36 7.97269 10.3614 7.96197C10.3628 7.95491 10.3655 7.94955 10.3673 7.94252C10.3701 7.93399 10.3733 7.92473 10.3778 7.91622C10.3805 7.90602 10.3851 7.89841 10.3897 7.88768C10.391 7.88288 10.3924 7.879 10.3956 7.87527C10.3969 7.87046 10.3983 7.86661 10.4015 7.86289C10.4029 7.85808 10.4074 7.85584 10.4102 7.85048C10.4129 7.8473 10.4142 7.8473 10.4174 7.84345C10.4174 7.84345 10.4215 7.84193 10.4215 7.84027C10.4229 7.84027 10.4243 7.83862 10.4243 7.8371C10.4329 7.81933 10.4393 7.81064 10.4452 7.79231C10.4493 7.78543 10.4493 7.77302 10.4493 7.76381H10.4808", fill: "#004BB3" }), jsx("path", { d: "M10.4667 7.76007C10.4667 7.76007 10.4471 7.85859 10.4353 7.88339C10.4234 7.90807 10.3765 7.95271 10.4066 8.02434", stroke: "#000033", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4699 7.76007C10.4699 7.76007 10.4503 7.85859 10.4385 7.88339C10.4252 7.90971 10.3792 7.95656 10.4116 8.02807", stroke: "#00004B", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4712 7.76007C10.4712 7.76007 10.4517 7.86025 10.4398 7.88712C10.428 7.91192 10.381 7.96029 10.4143 8.03192", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4744 7.76007C10.4744 7.76007 10.4548 7.86177 10.4425 7.88712C10.4293 7.91192 10.3838 7.96192 10.417 8.03567", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4758 7.76007C10.4758 7.76007 10.4562 7.86398 10.4443 7.88876C10.4325 7.91343 10.3869 7.96565 10.4202 8.03885", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4771 7.76007C10.4771 7.76007 10.4594 7.86562 10.4457 7.89029C10.4339 7.91507 10.3897 7.96895 10.4234 8.04214", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4653 7.76007C10.4653 7.76007 10.4457 7.85486 10.4339 7.88173C10.422 7.90807 10.3733 7.95326 10.4052 8.02271", stroke: "#00004B", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4635 7.76233C10.4635 7.76233 10.4439 7.85162 10.4302 7.88178C10.4184 7.90659 10.3696 7.95331 10.4015 8.02275", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4603 7.76233C10.4603 7.76233 10.4426 7.84995 10.4271 7.88178C10.4166 7.90659 10.3683 7.95124 10.4002 8.02275", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4589 7.76233C10.4589 7.76233 10.4425 7.84623 10.4243 7.88014C10.4138 7.90659 10.3656 7.95179 10.3975 8.02123", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4562 7.76233C10.4562 7.76233 10.4398 7.84459 10.4229 7.88014C10.4111 7.90491 10.3642 7.95179 10.3961 8.02123", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4093 7.84619C10.4065 7.851 10.402 7.85323 10.4006 7.8586C10.3979 7.86178 10.3966 7.86562 10.3947 7.87102C10.392 7.87416 10.3906 7.87789 10.3888 7.8834C10.3847 7.8936 10.3801 7.90102 10.3769 7.91193C10.3729 7.92047 10.3697 7.92956 10.3665 7.93824C10.3651 7.94527 10.3624 7.95065 10.3606 7.95768C10.3592 7.96843 10.3606 7.97697 10.3619 7.98772C10.366 8.0001 10.3769 8.00715 10.3874 8.01418C10.3888 8.01418 10.3902 8.0157 10.3915 8.01736C10.3956 8.02065 10.402 8.01899 10.4066 8.02216C10.4107 8.02549 10.4138 8.02919 10.417 8.03458C10.4184 8.03787 10.4211 8.03787 10.4229 8.03938C10.4302 8.0427 10.438 8.04434 10.4453 8.04434M10.4453 8.04434H10.4439L10.4453 8.04586V8.04434ZM10.4453 8.04434C10.4453 8.04751 10.4466 8.04915 10.448 8.05124C10.4521 8.05605 10.4658 8.05605 10.4749 8.06158C10.4762 8.0631 10.479 8.06639 10.4808 8.06639C10.4836 8.06639 10.4867 8.0631 10.4895 8.06158C10.4968 8.05661 10.5104 8.05661 10.515 8.05124C10.5163 8.04973 10.5177 8.04807 10.5177 8.04434M10.5177 8.04434V8.04586M10.5177 8.04434C10.5264 8.04434 10.5327 8.0427 10.54 8.03939C10.5428 8.03787 10.5441 8.03787 10.5459 8.03458C10.5487 8.02977 10.5519 8.02601 10.5551 8.02216C10.561 8.01899 10.5669 8.02065 10.5728 8.01736C10.5742 8.01567 10.5756 8.01418 10.5756 8.01418C10.586 8.00715 10.5965 8.00011 10.6011 7.98772C10.6038 7.97752 10.6038 7.96843 10.6024 7.95768C10.6013 7.95089 10.5993 7.94434 10.5965 7.93824C10.5938 7.92907 10.5903 7.92025 10.586 7.91193C10.5833 7.90159 10.5787 7.89416 10.5742 7.8834C10.5728 7.87844 10.5714 7.87474 10.5683 7.87102C10.5669 7.86621 10.5642 7.86233 10.5623 7.8586C10.561 7.8538 10.5564 7.85158 10.5537 7.84619", stroke: "black", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.366 6.73242L11.1982 6.86375C11.2 6.92569 11.2 6.94583 11.1941 6.98282C11.1909 6.9952 11.1804 7.06517 11.1685 7.08834H11.1677L11.3072 7.36353C11.3416 7.29297 11.3699 7.13924 11.3699 7.10014C11.3699 6.94184 11.3744 6.89469 11.366 6.73242Z", fill: "white" }), jsx("path", { d: "M11.1686 7.08836C11.1805 7.0652 11.191 6.99523 11.1942 6.98284C11.2001 6.9457 11.2001 6.9258 11.1982 6.86334L11.0953 6.94195L11.1678 7.08836", fill: "#004BB3" }), jsx("path", { d: "M11.0853 6.92362L11.5717 6.54791L11.5805 6.5619L11.0957 6.94301L11.0853 6.92363", fill: "#FFCC00" }), jsx("path", { d: "M11.0853 6.92362L11.5717 6.54791L11.5805 6.5619L11.0957 6.94301L11.0853 6.92363", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M11.461 7.66688C11.4729 7.65834 11.4925 7.6352 11.4988 7.6137C11.5093 7.57279 11.5076 7.57429 11.5166 7.528C11.5207 7.50168 11.5207 7.4726 11.5253 7.44569C11.5312 7.41932 11.5631 7.33158 11.5645 7.29713C11.5672 7.18302 11.5991 7.10553 11.5913 6.98225C11.5855 6.8859 11.5672 6.75509 11.5762 6.65446C11.579 6.62807 11.575 6.5974 11.575 6.56885L11.3659 6.72982C11.3745 6.89451 11.3699 6.94081 11.3699 7.10013C11.3699 7.13944 11.3413 7.29498 11.3066 7.36497L11.4596 7.66743", fill: "#004BB3" }), jsx("path", { d: "M11.3093 7.36389L11.4624 7.66636C11.4729 7.6578 11.4938 7.63465 11.4988 7.61315C11.5107 7.57224 11.5093 7.57224 11.5166 7.52759C11.5226 7.50114 11.5239 7.47208 11.5271 7.44516C11.533 7.4188 11.5649 7.33105 11.5663 7.29661M11.5671 7.29608C11.5659 7.33 11.5339 7.41557 11.528 7.44249C11.5253 7.46886 11.5239 7.49791 11.5176 7.52483C11.5103 7.56948 11.5116 7.5674 11.4998 7.61041C11.4938 7.62982 11.4742 7.65506 11.4634 7.66208L11.3103 7.36336", stroke: "#00004B", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.528 7.44089C11.534 7.41394 11.5659 7.33 11.5672 7.29608C11.5659 7.33 11.5358 7.41394 11.528 7.44089ZM11.528 7.44089C11.5253 7.46725 11.5239 7.4963 11.5176 7.52317C11.5103 7.56574 11.5117 7.56574 11.4998 7.60875C11.4938 7.62819 11.4742 7.65133 11.4634 7.66042C11.4634 7.66042 11.3122 7.36497 11.3103 7.36336C11.3122 7.36497 11.462 7.65671 11.4634 7.65506C11.4742 7.64762 11.4938 7.62446 11.4998 7.60504C11.5117 7.56203 11.5103 7.56356 11.5176 7.5211C11.5239 7.49416 11.5253 7.46561 11.528 7.44089Z", stroke: "#00004F", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5672 7.29608C11.5659 7.32783 11.5358 7.41233 11.528 7.43925C11.5253 7.46562 11.5239 7.49255 11.5176 7.51781C11.5103 7.56038 11.5117 7.56038 11.4998 7.60187C11.4938 7.62116 11.4742 7.6443 11.4634 7.65354C11.462 7.65354 11.3136 7.36553 11.3103 7.36336M11.5672 7.29608C11.5659 7.32783 11.5358 7.41019 11.5294 7.43711C11.5253 7.46188 11.5235 7.49038 11.5176 7.51574C11.5103 7.55817 11.5117 7.55817 11.4998 7.598C11.4938 7.61743 11.4742 7.64058 11.4634 7.64967C11.462 7.64967 11.3136 7.36497 11.3103 7.36336", stroke: "#000051", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5672 7.2961C11.5659 7.32785 11.5358 7.4086 11.5294 7.43552C11.5253 7.46027 11.5235 7.48879 11.5176 7.5141C11.5103 7.55503 11.5117 7.55503 11.4998 7.59651C11.4938 7.6158 11.4742 7.6373 11.4634 7.64653C11.4606 7.64817 11.3136 7.36555 11.3103 7.36391M11.5672 7.29608C11.5659 7.32783 11.5358 7.4086 11.5294 7.4339C11.5253 7.46027 11.5235 7.48718 11.5176 7.51249C11.5103 7.55338 11.5103 7.55338 11.4998 7.59265C11.4938 7.61207 11.4742 7.63523 11.4634 7.64269C11.4593 7.64432 11.3148 7.36555 11.3103 7.36338", stroke: "#000053", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5294 7.43011C11.5358 7.40533 11.5659 7.32622 11.5672 7.29608C11.5659 7.32783 11.5358 7.40697 11.5294 7.43388C11.5253 7.45863 11.5235 7.48555 11.5176 7.51086C11.5103 7.55018 11.5103 7.55018 11.498 7.59095C11.4921 7.60875 11.4739 7.6304 11.4634 7.63894C11.4593 7.64058 11.3148 7.36497 11.3103 7.36336C11.3148 7.36497 11.4593 7.63672 11.4634 7.63521C11.4739 7.62819 11.4921 7.60504 11.498 7.58725C11.5103 7.54799 11.5089 7.54799 11.5176 7.50869C11.5235 7.48338 11.5253 7.45647 11.5294 7.43011ZM11.5294 7.43011C11.5253 7.45486 11.5235 7.48014 11.5176 7.50491C11.5089 7.54578 11.5103 7.54578 11.498 7.58354C11.4921 7.60283 11.4739 7.62446 11.4634 7.63134C11.4575 7.63302 11.3148 7.36497 11.3103 7.3628", stroke: "#000056", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.3103 7.36336C11.3167 7.36497 11.4575 7.62982 11.4634 7.62819C11.4743 7.62116 11.4907 7.59965 11.4967 7.58022C11.5103 7.54261 11.5089 7.54261 11.5176 7.5033C11.5235 7.48016 11.5253 7.45325 11.5294 7.4285C11.5372 7.40319 11.5659 7.32622 11.5672 7.29608C11.5659 7.32622 11.5372 7.40158 11.5294 7.42633C11.5253 7.4511 11.5222 7.478 11.5176 7.49952C11.5089 7.54041 11.5103 7.54041 11.4967 7.57818C11.4907 7.59593 11.4743 7.61743 11.462 7.62446C11.4579 7.62763 11.3181 7.3666 11.3108 7.36336", stroke: "#000058", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5671 7.29608C11.5659 7.32622 11.5372 7.40158 11.5294 7.42633C11.5253 7.4495 11.5221 7.47425 11.5176 7.49791C11.5088 7.53725 11.5103 7.53725 11.4966 7.57486C11.4907 7.59263 11.4725 7.61412 11.462 7.6228C11.456 7.62446 11.3181 7.36711 11.3107 7.36336M11.5659 7.29608C11.5659 7.32461 11.5372 7.39997 11.5298 7.42472C11.5258 7.44786 11.5226 7.47316 11.5179 7.4963C11.5093 7.53558 11.5093 7.53558 11.4971 7.57335C11.4911 7.59097 11.4729 7.61038 11.4624 7.6195C11.4565 7.62116 11.3185 7.36714 11.3112 7.36389", stroke: "#00005C", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.29608C11.5659 7.32461 11.5372 7.39782 11.5299 7.42311C11.5258 7.44625 11.5226 7.471 11.5179 7.49469C11.5093 7.53392 11.5093 7.53392 11.4971 7.5695C11.4911 7.58725 11.4729 7.60875 11.4625 7.61577C11.4551 7.61743 11.3203 7.36714 11.3112 7.36336M11.5659 7.29608C11.5659 7.32245 11.5372 7.39619 11.5299 7.42094C11.5258 7.44572 11.5226 7.46886 11.5179 7.49254C11.5093 7.52966 11.5093 7.52966 11.4971 7.56577C11.4911 7.58354 11.4729 7.60502 11.4625 7.61204C11.4551 7.61522 11.3203 7.36714 11.3112 7.36336", stroke: "#00005E", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.29449C11.5659 7.32302 11.5372 7.39622 11.5299 7.4215C11.5258 7.44252 11.5226 7.46779 11.5167 7.49094C11.5081 7.52803 11.5081 7.52803 11.4971 7.56246C11.4911 7.58027 11.4729 7.59968 11.4625 7.60878C11.4551 7.61207 11.3203 7.36716 11.3112 7.36391M11.5659 7.29449C11.5659 7.32302 11.5372 7.39461 11.5299 7.41774M11.5659 7.29449C11.5659 7.32302 11.539 7.39299 11.5299 7.41774M11.5299 7.41774C11.5258 7.4409 11.5226 7.46563 11.5167 7.48718C11.5081 7.5243 11.5081 7.5243 11.4971 7.5604C11.4898 7.5782 11.4729 7.59747 11.4625 7.60505C11.4538 7.60822 11.3203 7.36715 11.3112 7.36338C11.3217 7.36716 11.4538 7.60449 11.4625 7.60132C11.4734 7.59429 11.4897 7.57433 11.4957 7.55874C11.5081 7.52264 11.5081 7.52264 11.5167 7.48557C11.5226 7.46402 11.5258 7.4409 11.5299 7.41774Z", stroke: "#000060", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.3107 7.36391C11.3212 7.36716 11.4515 7.60134 11.462 7.59802C11.4729 7.591 11.4892 7.57115 11.4952 7.55559C11.5076 7.52112 11.5076 7.52112 11.5162 7.48396C11.5226 7.46241 11.5253 7.43927 11.5312 7.41614C11.5389 7.39082 11.5659 7.32302 11.5659 7.29449C11.5659 7.32086 11.5389 7.39082 11.5312 7.41397C11.5253 7.43713 11.5226 7.46027 11.5162 7.48179C11.5076 7.51727 11.5076 7.51727 11.4952 7.55117C11.4892 7.56687 11.4729 7.58671 11.462 7.59596C11.4515 7.59747 11.3212 7.36716 11.3107 7.36338", stroke: "#000062", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.29449C11.5659 7.32086 11.5389 7.38922 11.5312 7.41397C11.5253 7.43497 11.5226 7.45865 11.5162 7.48018C11.5076 7.51576 11.5076 7.51576 11.4952 7.54801C11.4892 7.56579 11.4729 7.58357 11.462 7.59059C11.4515 7.59539 11.3226 7.36877 11.3107 7.36338M11.5659 7.29449C11.5659 7.32086 11.5389 7.38922 11.5312 7.41235C11.5253 7.43336 11.5226 7.45702 11.5162 7.47857C11.5076 7.51249 11.5076 7.51249 11.4952 7.54635C11.4892 7.56247 11.4729 7.58027 11.462 7.58727C11.4501 7.59208 11.3244 7.36877 11.3107 7.36338", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.3107 7.36338C11.3244 7.36877 11.4501 7.58837 11.462 7.58508C11.4729 7.57818 11.4892 7.55819 11.4952 7.54263C11.5057 7.51033 11.5076 7.51033 11.5162 7.47479C11.5226 7.45541 11.5253 7.43174 11.5312 7.41075C11.5389 7.38758 11.5659 7.32086 11.5659 7.29449C11.5659 7.32086 11.5389 7.38543 11.5312 7.40861C11.5253 7.43013 11.5226 7.45327 11.5162 7.47318C11.5076 7.50655 11.5057 7.50871 11.4952 7.54097C11.488 7.55504 11.4729 7.57488 11.462 7.5819C11.4488 7.58508 11.3244 7.36877 11.3107 7.36339", stroke: "#000268", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.29449C11.5659 7.31925 11.5403 7.38383 11.5313 7.40861C11.5253 7.42797 11.5226 7.44949 11.5162 7.47102C11.5076 7.50494 11.5057 7.50494 11.4938 7.53726C11.488 7.55283 11.4715 7.57115 11.4625 7.57818C11.4493 7.58298 11.3249 7.36877 11.3112 7.36338M11.5659 7.29449C11.5659 7.31925 11.5403 7.38383 11.5313 7.40538M11.5659 7.29449C11.5659 7.31925 11.5403 7.38222 11.5313 7.40538M11.5313 7.40538C11.5253 7.42636 11.5226 7.44788 11.5162 7.4694C11.5076 7.50116 11.5057 7.50333 11.4938 7.53339C11.488 7.5491 11.4715 7.56742 11.4606 7.57433C11.4488 7.57928 11.3258 7.36877 11.3107 7.36339M11.5313 7.40538C11.5253 7.42636 11.5226 7.44627 11.5162 7.46618C11.5076 7.5001 11.5057 7.5001 11.4938 7.53024C11.4866 7.5458 11.4715 7.56413 11.4606 7.57115C11.4474 7.57433 11.3258 7.37091 11.3107 7.36338", stroke: "#00056B", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.29449C11.5659 7.31763 11.5403 7.38005 11.5313 7.40374C11.5253 7.42313 11.5226 7.44627 11.5162 7.46457C11.5076 7.49633 11.5057 7.49849 11.4938 7.52856C11.4866 7.54263 11.4715 7.5604 11.4606 7.56786C11.4474 7.57281 11.3258 7.3709 11.3107 7.36391M11.5659 7.29449C11.5659 7.31763 11.5417 7.37844 11.5313 7.40161C11.5253 7.42097 11.5226 7.44249 11.5162 7.46241C11.5076 7.49416 11.5057 7.49633 11.4938 7.52485C11.4866 7.54042 11.4715 7.55876 11.4606 7.56413C11.4474 7.56894 11.3272 7.37091 11.3107 7.36391", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.3107 7.36285C11.3272 7.37038 11.4455 7.56466 11.4606 7.55985C11.4715 7.55449 11.4866 7.53671 11.4938 7.52264C11.5043 7.49202 11.5076 7.4904 11.5162 7.46027C11.5226 7.4409 11.5253 7.42097 11.5313 7.40161C11.5417 7.37844 11.5659 7.31763 11.5659 7.29449C11.5659 7.31763 11.5417 7.37683 11.5313 7.39999C11.5253 7.41774 11.5226 7.43927 11.5162 7.45865C11.5076 7.48879 11.5043 7.49041 11.4938 7.51949C11.4866 7.53339 11.4702 7.54964 11.4606 7.55875C11.4443 7.56206 11.3289 7.37089 11.3107 7.36391", stroke: "#00096F", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.3107 7.36391C11.3289 7.37091 11.4443 7.5604 11.4606 7.55338C11.4702 7.54801 11.4866 7.53024 11.4938 7.51617C11.5043 7.48716 11.5057 7.48557 11.5162 7.45541C11.5226 7.43766 11.5253 7.41774 11.5313 7.39838C11.5417 7.37683 11.5659 7.31763 11.5659 7.29449C11.5659 7.31547 11.5417 7.37469 11.5313 7.39621C11.5253 7.4156 11.5226 7.43552 11.5148 7.45327C11.5062 7.4834 11.5043 7.48502 11.4925 7.51412C11.4866 7.52803 11.4702 7.54428 11.4611 7.54965C11.4447 7.55656 11.3294 7.3709 11.3112 7.36338", stroke: "#000B73", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.3107 7.36391C11.3308 7.37091 11.4429 7.55282 11.4593 7.54801C11.4702 7.54096 11.4852 7.52485 11.4925 7.51088C11.5043 7.4834 11.5062 7.48179 11.5148 7.45166C11.5226 7.4339 11.5253 7.41397 11.5313 7.39461C11.5417 7.37307 11.5659 7.31547 11.5659 7.29449C11.5659 7.31547 11.5417 7.37146 11.5313 7.39299M11.5313 7.39299C11.5253 7.41236 11.5226 7.43229 11.5148 7.45004C11.5062 7.47857 11.5043 7.48018 11.4925 7.50871C11.4852 7.52112 11.4702 7.53726 11.4593 7.54428C11.4429 7.54909 11.3308 7.37091 11.3107 7.36341M11.5313 7.39299C11.5253 7.41074 11.5226 7.43013 11.5148 7.44841C11.5062 7.47696 11.5043 7.47857 11.4907 7.50549C11.4847 7.51783 11.4697 7.53394 11.4593 7.54096C11.4429 7.54801 11.3308 7.37091 11.3107 7.36393", stroke: "#000F75", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.3107 7.36391C11.3322 7.37254 11.4415 7.54207 11.4593 7.53726C11.4697 7.53024 11.4847 7.51576 11.4907 7.50171C11.503 7.47479 11.5062 7.47264 11.5148 7.44627C11.5226 7.42797 11.5253 7.4086 11.5313 7.39082C11.5435 7.3693 11.5659 7.31547 11.5659 7.29449C11.5659 7.31386 11.5435 7.36768 11.5313 7.38922C11.5253 7.40699 11.5226 7.42636 11.5148 7.44252C11.5062 7.47102 11.503 7.47263 11.4907 7.49955C11.4847 7.51194 11.4697 7.52803 11.4593 7.53339C11.4415 7.54042 11.3322 7.37254 11.3107 7.36339", stroke: "#001178", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.3107 7.36391C11.3322 7.37307 11.4415 7.53726 11.4593 7.53024C11.4697 7.52485 11.4847 7.50871 11.4907 7.49633C11.503 7.47102 11.5062 7.46727 11.5148 7.4409C11.5226 7.42313 11.5253 7.40482 11.5313 7.38922C11.5435 7.36607 11.5659 7.31386 11.5659 7.29449C11.5659 7.31386 11.5435 7.36607 11.5313 7.38543C11.5253 7.40321 11.5226 7.42258 11.5148 7.43874C11.5062 7.46511 11.503 7.46727 11.4907 7.49204C11.4847 7.5044 11.4697 7.5206 11.4593 7.52596C11.4397 7.53298 11.3335 7.37202 11.3107 7.36338", stroke: "#001379", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.3107 7.36283C11.3335 7.37202 11.4397 7.52913 11.4593 7.52211C11.4697 7.51672 11.4834 7.50279 11.4907 7.4904C11.5016 7.46563 11.5062 7.4619 11.5148 7.43713C11.5226 7.42097 11.5253 7.40107 11.5313 7.38543C11.5435 7.36391 11.5659 7.31386 11.5659 7.29449C11.5659 7.31225 11.5435 7.36391 11.5313 7.38383C11.5253 7.4016 11.5208 7.41774 11.5148 7.43552C11.5062 7.46027 11.5016 7.46188 11.4907 7.48718C11.4834 7.49955 11.4697 7.51355 11.4593 7.52113C11.4383 7.52803 11.3353 7.37254 11.3107 7.36391", stroke: "#00167C", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.29449C11.5659 7.31225 11.5435 7.3623 11.5313 7.38222C11.5253 7.39785 11.5208 7.41613 11.5148 7.4339C11.5062 7.45865 11.5016 7.46027 11.4907 7.48557C11.4834 7.49579 11.4697 7.51035 11.4593 7.51727C11.4383 7.5243 11.3353 7.37254 11.3107 7.36338C11.3353 7.37254 11.4383 7.5206 11.4593 7.51194C11.4684 7.50816 11.4834 7.49204 11.4893 7.48179C11.5016 7.45865 11.5062 7.45488 11.5148 7.43013C11.5208 7.41397 11.5253 7.39785 11.5313 7.38005M11.5659 7.29449C11.5659 7.31225 11.5435 7.36068 11.5313 7.38005M11.5659 7.29449C11.5659 7.31008 11.5449 7.35852 11.5313 7.38005M11.5313 7.38005C11.5253 7.39568 11.5208 7.4118 11.5148 7.42797C11.5062 7.45274 11.5016 7.45435 11.4893 7.47802C11.4834 7.4904 11.4684 7.50279 11.4593 7.50979C11.4369 7.51672 11.3367 7.372 11.3107 7.36339", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.3107 7.36283C11.3367 7.372 11.4369 7.51467 11.4593 7.50602C11.4684 7.49902 11.4834 7.48665 11.4893 7.47427C11.5016 7.45274 11.5062 7.44952 11.5148 7.42636C11.5208 7.41019 11.5253 7.39243 11.5313 7.37844C11.5449 7.35852 11.5659 7.31008 11.5659 7.29449C11.5659 7.31008 11.5449 7.35691 11.5313 7.37683C11.5253 7.39246 11.5208 7.40858 11.5148 7.42313C11.5062 7.44788 11.5016 7.44952 11.4893 7.47316C11.482 7.4834 11.4684 7.49794 11.4593 7.50332C11.4369 7.51033 11.3367 7.37468 11.3107 7.36391", stroke: "#001C82", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.3107 7.36444C11.3385 7.37522 11.4352 7.50871 11.4593 7.5001C11.4684 7.49471 11.482 7.48179 11.4893 7.47155C11.4997 7.44789 11.5043 7.44627 11.5148 7.42152C11.5208 7.40699 11.5253 7.39082 11.5313 7.37683C11.5449 7.3553 11.5659 7.31008 11.5659 7.29449C11.5659 7.31008 11.5463 7.35313 11.5325 7.37307C11.5253 7.38868 11.5208 7.40483 11.5148 7.41936C11.5043 7.44252 11.4997 7.44574 11.4893 7.46727C11.482 7.47749 11.4684 7.4904 11.4593 7.49579C11.4338 7.5044 11.3385 7.37415 11.3107 7.36338", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.2923C11.5659 7.30844 11.5463 7.35311 11.5325 7.37305C11.5267 7.38703 11.5208 7.40319 11.5148 7.41771C11.5043 7.44088 11.4998 7.44249 11.4893 7.46399C11.482 7.47424 11.4684 7.48716 11.4579 7.49255C11.4338 7.50116 11.3399 7.37466 11.3112 7.36388M11.5659 7.2923C11.5659 7.30844 11.5463 7.35149 11.5325 7.37088C11.5267 7.38488 11.5208 7.40102 11.5129 7.41557C11.5043 7.43655 11.4998 7.44035 11.4875 7.46024C11.4802 7.4726 11.4679 7.48338 11.4574 7.48877C11.4333 7.49738 11.3394 7.37466 11.3107 7.36388", stroke: "#002086", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.2923C11.5659 7.30844 11.5463 7.35149 11.5325 7.36927C11.5267 7.38327 11.5208 7.39941 11.5129 7.41394C11.5043 7.43494 11.4998 7.43871 11.4875 7.45863C11.4802 7.46885 11.4679 7.47963 11.4574 7.48502C11.4319 7.49524 11.3394 7.37574 11.3107 7.36335C11.3408 7.37574 11.4319 7.49146 11.4574 7.48285C11.4679 7.47746 11.4802 7.46455 11.4875 7.45432C11.4998 7.43441 11.5043 7.43063 11.5129 7.40963C11.5208 7.39724 11.5267 7.38113 11.5325 7.36711M11.5659 7.2923C11.5659 7.30844 11.5463 7.34774 11.5325 7.36711M11.5325 7.36711C11.5267 7.37949 11.5208 7.39563 11.5129 7.40802C11.5043 7.42955 11.4998 7.43279 11.4875 7.45271C11.4802 7.46132 11.4679 7.47369 11.4574 7.47908C11.4319 7.48769 11.3408 7.37519 11.3107 7.3628", stroke: "#002289", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.2923C11.5659 7.3063 11.5463 7.34558 11.5325 7.36552C11.5267 7.37788 11.5208 7.39188 11.5129 7.40641C11.5043 7.4258 11.498 7.42955 11.4861 7.44894C11.4802 7.45916 11.4684 7.46994 11.4574 7.47371C11.4305 7.48393 11.3408 7.37519 11.3107 7.36283M11.5659 7.2923C11.5659 7.3063 11.5481 7.34558 11.5325 7.36388C11.5267 7.37794 11.5201 7.39159 11.5129 7.40478C11.5043 7.42419 11.498 7.42794 11.4861 7.44571C11.4802 7.45594 11.4684 7.46671 11.4574 7.47208C11.4305 7.4823 11.3422 7.37574 11.3107 7.3628", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.2923C11.5659 7.30469 11.5481 7.34397 11.5325 7.36388C11.5267 7.37627 11.5208 7.38866 11.5129 7.40319C11.5043 7.42255 11.498 7.42633 11.4861 7.44249C11.4802 7.45271 11.4665 7.46347 11.4574 7.46885C11.4305 7.47907 11.3422 7.37574 11.3107 7.36335C11.3422 7.37574 11.4288 7.47369 11.4574 7.4651C11.4679 7.45846 11.4776 7.45012 11.4861 7.44032C11.498 7.42202 11.5043 7.4188 11.5129 7.40102C11.5208 7.38866 11.5267 7.37252 11.5325 7.36013C11.5481 7.34235 11.5659 7.30469 11.5659 7.2923", stroke: "#00288F", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.2923C11.5659 7.30469 11.5481 7.34022 11.5325 7.36013C11.5267 7.37252 11.5208 7.38488 11.5117 7.39724C11.5043 7.41663 11.4966 7.42041 11.4861 7.43816C11.4789 7.44677 11.4665 7.45755 11.4574 7.46132C11.4288 7.47155 11.3422 7.37574 11.3107 7.3628M11.5659 7.2923C11.5659 7.30469 11.5481 7.34022 11.5325 7.35849C11.5267 7.37088 11.5208 7.38327 11.5117 7.39563C11.5043 7.41341 11.4966 7.41663 11.4861 7.43494C11.4789 7.44355 11.4665 7.45271 11.4574 7.4581C11.4274 7.46832 11.344 7.37574 11.3107 7.36335", stroke: "#002B91", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.2923C11.5659 7.30469 11.5481 7.3386 11.5325 7.35635C11.5267 7.36874 11.5208 7.38113 11.5117 7.39349C11.5043 7.41124 11.4966 7.41449 11.4861 7.43063C11.4789 7.43924 11.4665 7.44839 11.4574 7.45377C11.4274 7.46399 11.3454 7.37519 11.3107 7.36066M11.3107 7.36119C11.3454 7.37521 11.4274 7.46078 11.4574 7.45218C11.4665 7.44677 11.4789 7.43763 11.4861 7.42741C11.4966 7.41341 11.5043 7.40802 11.5117 7.39027C11.5208 7.37949 11.5267 7.36713 11.5325 7.35474C11.5481 7.3386 11.5659 7.30252 11.5659 7.2923C11.5659 7.30252 11.5481 7.33483 11.5325 7.35311C11.5267 7.36552 11.5208 7.37788 11.5117 7.38866C11.5043 7.40641 11.4966 7.40963 11.4847 7.4258C11.4789 7.43441 11.4651 7.44355 11.4579 7.44678C11.4264 7.45916 11.3458 7.37736 11.3112 7.36119", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.2923C11.5659 7.30252 11.5494 7.33483 11.5325 7.35311C11.5267 7.36335 11.5208 7.37627 11.5117 7.38703C11.503 7.40266 11.4966 7.40802 11.4847 7.42255C11.4775 7.43116 11.4651 7.44035 11.4579 7.44571C11.4264 7.45594 11.3458 7.37788 11.3112 7.36174M11.5659 7.2923C11.5659 7.30252 11.5494 7.33319 11.5325 7.35149C11.5267 7.36174 11.5208 7.37466 11.5117 7.38488C11.503 7.40049 11.4966 7.40424 11.4847 7.42041C11.4775 7.42739 11.4651 7.43602 11.456 7.44141C11.4259 7.45163 11.3472 7.37735 11.3107 7.36119", stroke: "#002F96", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.2923C11.5659 7.30252 11.5494 7.33319 11.5325 7.34935C11.5267 7.36013 11.5208 7.37252 11.5117 7.38327C11.503 7.39724 11.4952 7.40263 11.4847 7.41719C11.4775 7.4258 11.4651 7.4328 11.456 7.43817C11.4247 7.44839 11.3472 7.37735 11.3107 7.36119C11.3472 7.37735 11.4228 7.44677 11.456 7.43441C11.4651 7.42902 11.4775 7.42202 11.4847 7.41341C11.4952 7.40049 11.503 7.3951 11.5117 7.3795C11.5208 7.37088 11.5267 7.35797 11.5325 7.34774C11.5494 7.3316 11.5659 7.30091 11.5659 7.2923", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.2923C11.5659 7.30091 11.5494 7.32945 11.5325 7.34774C11.5265 7.3586 11.5195 7.3687 11.5117 7.37788C11.503 7.39188 11.4952 7.39724 11.4847 7.40963C11.4761 7.41824 11.4651 7.42741 11.456 7.43063C11.4228 7.44088 11.3485 7.37735 11.3107 7.36119M11.5659 7.2923C11.5659 7.30091 11.5494 7.32783 11.5325 7.34558C11.5267 7.35421 11.5208 7.36497 11.5117 7.37574C11.503 7.38974 11.4952 7.3951 11.4847 7.40749C11.4761 7.41447 11.4651 7.42312 11.456 7.42688C11.4228 7.43924 11.3499 7.3768 11.3107 7.36066", stroke: "#00359C", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.2923C11.5659 7.30091 11.5494 7.32783 11.5325 7.34397C11.5267 7.35258 11.5208 7.36552 11.5117 7.37413C11.503 7.38811 11.4952 7.39188 11.483 7.40424C11.4756 7.41285 11.4651 7.41988 11.456 7.42363C11.4214 7.43602 11.3499 7.37735 11.3107 7.36119C11.3499 7.37735 11.4214 7.42902 11.456 7.41663C11.4651 7.41285 11.4756 7.40588 11.483 7.39888C11.4952 7.38596 11.5012 7.38273 11.5117 7.37035C11.5196 7.36129 11.5266 7.35118 11.5325 7.34022C11.5508 7.32622 11.5659 7.29928 11.5659 7.2923C11.5659 7.30091 11.5494 7.32622 11.5325 7.34235C11.5267 7.35258 11.5208 7.36335 11.5117 7.37252C11.503 7.38488 11.4952 7.39027 11.483 7.40263C11.4756 7.40963 11.4651 7.41663 11.456 7.42041C11.4214 7.43279 11.3499 7.37788 11.3107 7.36172", stroke: "#00389E", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.2923C11.5659 7.29928 11.5509 7.32244 11.5326 7.34022C11.5267 7.34883 11.5194 7.35797 11.5117 7.36658C11.5012 7.37896 11.4938 7.38435 11.483 7.3951C11.4757 7.4021 11.4651 7.4091 11.4543 7.41449C11.4197 7.42688 11.3513 7.37896 11.3103 7.36119C11.3513 7.37896 11.4197 7.4231 11.4543 7.4091C11.4651 7.40696 11.4757 7.39996 11.483 7.39135C11.4938 7.38274 11.5012 7.37735 11.5117 7.36497C11.5194 7.35635 11.5267 7.34722 11.5326 7.3386C11.5509 7.32244 11.5659 7.29713 11.5659 7.2923", stroke: "#0039A0", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.2923C11.5659 7.29713 11.5526 7.32083 11.5326 7.33699C11.5261 7.34632 11.5191 7.35513 11.5117 7.36336C11.5012 7.37574 11.4938 7.37896 11.483 7.38974C11.474 7.39678 11.4644 7.40273 11.4543 7.40749C11.4197 7.41988 11.3513 7.37896 11.3103 7.36119M11.5659 7.2923C11.5659 7.29713 11.5526 7.32083 11.5326 7.33483C11.526 7.34456 11.5185 7.3534 11.5103 7.3612C11.5016 7.37197 11.4938 7.37683 11.4835 7.38758C11.4747 7.39241 11.4639 7.39996 11.4547 7.40319C11.4187 7.41557 11.3536 7.37842 11.3108 7.36066", stroke: "#003CA2", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.2923C11.5659 7.29713 11.5526 7.31867 11.5325 7.33483C11.5267 7.34181 11.5194 7.35097 11.5103 7.3596C11.5016 7.3698 11.4938 7.37358 11.4834 7.38435C11.4747 7.38919 11.4638 7.39672 11.4546 7.39996C11.4187 7.41394 11.3535 7.37896 11.3107 7.36066M11.5659 7.2923C11.5659 7.29713 11.5526 7.31707 11.5325 7.33319C11.5254 7.34185 11.518 7.35012 11.5103 7.35797C11.5016 7.36658 11.4938 7.37197 11.4816 7.38113C11.4742 7.3881 11.4639 7.39349 11.4546 7.39672C11.4169 7.4091 11.3535 7.37896 11.3107 7.36119", stroke: "#003EA6", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.2923C11.5659 7.29552 11.5526 7.31544 11.5344 7.3316C11.5272 7.33858 11.5194 7.34722 11.5103 7.35474C11.5016 7.36497 11.4938 7.37035 11.4816 7.37788C11.4742 7.38488 11.4639 7.39027 11.4546 7.39349C11.4169 7.40749 11.3549 7.37949 11.3107 7.36174M11.5659 7.2923C11.5659 7.29552 11.5526 7.31544 11.5344 7.32944C11.5272 7.33805 11.5194 7.34505 11.5103 7.35258C11.5016 7.36119 11.4925 7.36658 11.4816 7.37574C11.4742 7.38058 11.4639 7.38596 11.4546 7.38974C11.4169 7.40371 11.3549 7.37949 11.3107 7.36119C11.3563 7.37896 11.4156 7.39996 11.4546 7.38758C11.4638 7.38219 11.4729 7.3768 11.4802 7.37197C11.4925 7.36497 11.5016 7.35958 11.5103 7.35097C11.5194 7.34183 11.5272 7.33481 11.5344 7.32783C11.5526 7.3133 11.5659 7.29552 11.5659 7.2923Z", stroke: "#0042A8", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.2923C11.5659 7.29552 11.5526 7.31169 11.5344 7.32783C11.5271 7.33267 11.5193 7.34021 11.5102 7.34722C11.5016 7.35744 11.4925 7.36119 11.4802 7.37035C11.4729 7.37519 11.4638 7.37896 11.4546 7.38274C11.4155 7.39672 11.3563 7.37949 11.3093 7.36174M11.5659 7.2923C11.5659 7.29552 11.554 7.31006 11.5344 7.32622C11.5271 7.33319 11.5193 7.34022 11.5102 7.34558C11.5016 7.35421 11.4907 7.35958 11.4802 7.36658C11.4729 7.37144 11.4638 7.3768 11.4546 7.37896C11.4155 7.39458 11.3563 7.37896 11.3093 7.36119", stroke: "#0045AB", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.2923C11.5659 7.2923 11.554 7.31006 11.5344 7.32406C11.5271 7.32891 11.5193 7.33805 11.5102 7.34344C11.5016 7.35205 11.4907 7.35744 11.4802 7.3628C11.4729 7.36766 11.4638 7.37144 11.4546 7.3768C11.4142 7.3908 11.3581 7.38003 11.3093 7.36119C11.3581 7.38058 11.4128 7.38758 11.4546 7.37357C11.4638 7.3698 11.4729 7.36444 11.4802 7.36119C11.4907 7.35421 11.5016 7.3488 11.5102 7.34183C11.5193 7.33482 11.5271 7.32944 11.5344 7.32244C11.554 7.30844 11.5659 7.29391 11.5659 7.2923", stroke: "#0046AD", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.2923C11.5659 7.29391 11.554 7.30844 11.5344 7.32244C11.5271 7.32727 11.5193 7.33267 11.5102 7.34021C11.5016 7.34719 11.4907 7.35258 11.4802 7.35797C11.4729 7.3628 11.4638 7.36658 11.4546 7.37035C11.4128 7.38435 11.3581 7.38058 11.3093 7.36174C11.3595 7.38058 11.4128 7.38221 11.4546 7.36658C11.4638 7.36281 11.4729 7.35902 11.4802 7.35421C11.4907 7.34883 11.5016 7.34341 11.5102 7.3386C11.5193 7.33105 11.5271 7.32567 11.5344 7.32083C11.554 7.30469 11.5659 7.2923 11.5659 7.2923", stroke: "#0049AF", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5659 7.2923C11.5659 7.2923 11.554 7.30469 11.5344 7.31867C11.5272 7.32352 11.5194 7.32891 11.5103 7.3343C11.5016 7.34127 11.4907 7.34666 11.4802 7.35205C11.4711 7.35527 11.4638 7.35903 11.4546 7.36227C11.411 7.37627 11.3595 7.38003 11.3093 7.36066M11.5659 7.2923C11.5659 7.2923 11.4355 7.41394 11.3085 7.36174", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5717 6.81219C11.5717 6.81219 11.5463 7.00758 11.5358 7.03613C11.5285 7.06085 11.4751 7.17174 11.395 7.19704", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5717 6.81219C11.5717 6.81219 11.5449 7.00541 11.5339 7.03233C11.5253 7.0571 11.4766 7.16477 11.3946 7.19704", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5704 6.81055C11.5704 6.81055 11.5435 7.00218 11.5325 7.03232C11.5221 7.05709 11.4784 7.15775 11.395 7.19703", stroke: "#000B73", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5704 6.81055C11.5704 6.81055 11.5417 7.00218 11.5312 7.0307C11.5207 7.05548 11.4801 7.1502 11.395 7.19542", stroke: "#001379", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5704 6.81055C11.5704 6.81055 11.539 7.00002 11.528 7.02695C11.5176 7.05332 11.4797 7.1432 11.3946 7.19489", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5704 6.81055C11.5704 6.81055 11.5372 6.9984 11.5267 7.02695C11.5162 7.0517 11.4816 7.13406 11.395 7.19489", stroke: "#002086", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5691 6.81055C11.5691 6.81055 11.5358 6.9968 11.5253 7.02534C11.5149 7.05009 11.483 7.12706 11.3951 7.19328", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5691 6.81055C11.5691 6.81055 11.5326 6.99465 11.5222 7.0237C11.5117 7.05009 11.4843 7.12007 11.3937 7.19381", stroke: "#002B91", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5691 6.81055C11.5691 6.81055 11.5313 6.99304 11.5208 7.02156C11.5103 7.04793 11.4848 7.11251 11.3937 7.19328", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5691 6.80896C11.5691 6.80896 11.5299 6.99306 11.5176 7.01998C11.5072 7.04634 11.4862 7.10392 11.3937 7.19331", stroke: "#00389E", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5691 6.80896C11.5691 6.80896 11.5285 6.98984 11.5162 7.01834C11.5057 7.04473 11.4875 7.09695 11.3937 7.19167", stroke: "#003EA6", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5672 6.80896C11.5672 6.80896 11.5263 6.98984 11.5143 7.01673C11.5026 7.04312 11.4888 7.08995 11.3932 7.19006", stroke: "#0046AD", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5672 6.80682C11.5672 6.80682 11.5248 6.98768 11.5112 7.01407C11.4993 7.04043 11.4888 7.08189 11.3932 7.18954", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5613 6.6922C11.5613 6.6922 11.5403 6.96778 11.3735 7.04314", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5599 6.6922C11.5599 6.6922 11.5525 6.77993 11.5175 6.86551C11.492 6.9317 11.4478 7.00653 11.3735 7.04259", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.56 6.6922C11.56 6.6922 11.5495 6.78154 11.5162 6.86551C11.4921 6.92419 11.4484 7.00333 11.3741 7.04259", stroke: "#000B73", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.56 6.6922C11.56 6.69382 11.5468 6.78529 11.5148 6.86226C11.4907 6.91934 11.447 7.00008 11.3741 7.04098", stroke: "#001379", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.56 6.6922C11.56 6.69382 11.5435 6.78693 11.5117 6.86226C11.4907 6.91395 11.4465 6.99792 11.3741 7.03937", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.56 6.6922C11.5586 6.69543 11.5421 6.7907 11.5103 6.86012C11.4907 6.90642 11.447 6.99417 11.3741 7.03884", stroke: "#002086", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.558 6.6922C11.558 6.69543 11.5384 6.79231 11.5084 6.85851C11.4906 6.90156 11.4464 6.99092 11.3735 7.03939", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.558 6.69049C11.558 6.69535 11.5357 6.79437 11.5066 6.85682C11.4901 6.89395 11.4459 6.98709 11.3735 7.0377", stroke: "#002B91", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.558 6.69049C11.5567 6.69535 11.5325 6.79762 11.5052 6.85521C11.4887 6.89073 11.4464 6.98548 11.3735 7.03767", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.558 6.69049C11.5567 6.69748 11.5312 6.79976 11.502 6.85521C11.4887 6.88373 11.4464 6.98223 11.3735 7.03767", stroke: "#00389E", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.558 6.69049C11.5553 6.69748 11.5279 6.80137 11.5007 6.85357C11.4887 6.87834 11.4464 6.97848 11.3735 7.03606", stroke: "#003EA6", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5567 6.69049C11.5553 6.69748 11.5252 6.80462 11.4992 6.85143C11.4887 6.87082 11.4464 6.9747 11.3735 7.03551", stroke: "#0046AD", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5568 6.69049C11.5554 6.69748 11.5222 6.80676 11.4961 6.84982C11.4875 6.86545 11.4465 6.97309 11.3736 7.03607", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.56 6.61517C11.56 6.61517 11.5117 6.83692 11.3769 6.89075", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5599 6.61517C11.5599 6.61517 11.5421 6.69375 11.4966 6.76911C11.4679 6.82078 11.4255 6.87083 11.3772 6.89075", stroke: "#00056B", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.56 6.61517C11.56 6.61517 11.5404 6.69214 11.4948 6.76694C11.4647 6.81861 11.4224 6.87244 11.3769 6.89022", stroke: "#00096F", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5581 6.61359C11.5581 6.61359 11.5385 6.69056 11.4948 6.76536C11.4634 6.81864 11.4178 6.87247 11.375 6.89025", stroke: "#000F75", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5581 6.61194C11.5581 6.61194 11.5385 6.68674 11.493 6.76588C11.4597 6.81755 11.4142 6.87516 11.375 6.89077", stroke: "#00167C", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5581 6.61194C11.5581 6.61194 11.5372 6.68516 11.4902 6.76213C11.457 6.81702 11.4101 6.87463 11.375 6.88916", stroke: "#001C82", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5581 6.61194C11.5581 6.61194 11.5372 6.68516 11.4885 6.76052C11.4538 6.81755 11.4051 6.87677 11.375 6.88915", stroke: "#002086", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5581 6.6098C11.5581 6.6098 11.5358 6.68299 11.4885 6.75835C11.4524 6.81541 11.4023 6.87785 11.375 6.8886", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5581 6.6098C11.5581 6.6098 11.5358 6.67922 11.4857 6.75619C11.4497 6.81487 11.3977 6.87785 11.375 6.88646", stroke: "#002B91", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5581 6.6098C11.5581 6.6098 11.5339 6.67763 11.4838 6.7546C11.446 6.81326 11.3932 6.87944 11.375 6.88699", stroke: "#002F96", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5581 6.60822C11.5581 6.60822 11.5326 6.67605 11.4825 6.75302C11.4433 6.81166 11.39 6.88165 11.375 6.88702", stroke: "#00359C", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5567 6.60822C11.5567 6.60822 11.5325 6.67441 11.4824 6.75302C11.4419 6.81166 11.3872 6.88165 11.3735 6.88702", stroke: "#003CA2", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5567 6.60822C11.5567 6.60822 11.5312 6.67224 11.4796 6.74922C11.4405 6.81166 11.3831 6.88326 11.3735 6.88704", stroke: "#0042A8", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5567 6.60657C11.5567 6.60657 11.5312 6.67062 11.4779 6.74758C11.4373 6.81003 11.3781 6.88542 11.3735 6.887", stroke: "#0046AD", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5568 6.60437C11.5568 6.60437 11.5313 6.66683 11.4766 6.74542C11.4342 6.80947 11.3736 6.88483 11.3736 6.88483M11.1973 6.91819L11.1048 6.93757M11.1882 7.00055L11.1048 6.95966", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1987 6.91986L11.1062 6.93705", stroke: "#0045AB", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1973 6.92523L11.1048 6.93721", stroke: "#003CA2", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1973 6.92902L11.1048 6.93734", stroke: "#00359C", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1973 6.93219L11.1035 6.93893", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1973 6.93756L11.1035 6.93913", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1973 6.94134L11.1021 6.93976", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1973 6.94501L11.1007 6.94031", stroke: "#00167C", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.196 6.94816L11.1007 6.94141", stroke: "#000F75", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.196 6.95184L11.0994 6.94196", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1901 6.99521L11.1053 6.95807", stroke: "#0045AB", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1901 6.99144L11.104 6.95593", stroke: "#003CA2", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1901 6.98814L11.104 6.95422", stroke: "#00359C", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1914 6.98184L11.1021 6.9527", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1914 6.97815L11.1007 6.95056", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1914 6.97438L11.1007 6.94885", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1928 6.96916L11.099 6.94885", stroke: "#00167C", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1942 6.96388L11.099 6.94513", stroke: "#000F75", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1942 6.96076L11.0976 6.94513", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1941 6.95703L11.0957 6.94354", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.4611 7.66688C11.473 7.65834 11.4926 7.6352 11.4989 7.6137C11.5094 7.57279 11.5076 7.57429 11.5167 7.528C11.5208 7.50168 11.5208 7.4726 11.5253 7.44569C11.5313 7.41932 11.5631 7.33158 11.5645 7.29713C11.5672 7.18302 11.5992 7.10553 11.5913 6.98225C11.5855 6.8859 11.5672 6.75509 11.5763 6.65446C11.5791 6.62807 11.575 6.5974 11.575 6.56885L11.0949 6.94456", stroke: "black", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5795 6.54038C11.5836 6.51938 11.5781 6.49027 11.5645 6.48713C11.5645 6.48713 11.554 6.48381 11.5481 6.48544C11.5408 6.48544 11.5394 6.48864 11.5363 6.49623C11.5289 6.5156 11.5481 6.52799 11.5631 6.53338C11.5659 6.53499 11.575 6.53661 11.5763 6.54199C11.5791 6.5506 11.5777 6.54685 11.5791 6.5506C11.5763 6.549 11.5763 6.54577 11.5731 6.54361C11.5626 6.53663 11.5521 6.53499 11.5367 6.52583C11.5262 6.52102 11.5248 6.49193 11.5325 6.48491C11.5413 6.47638 11.569 6.47789 11.575 6.48491C11.5868 6.50269 11.5882 6.52747 11.5855 6.55113C11.5855 6.54632 11.5795 6.54791 11.5795 6.54091", fill: "#FFCC00" }), jsx("path", { d: "M11.5795 6.54038C11.5836 6.51938 11.5781 6.49027 11.5645 6.48713C11.5645 6.48713 11.554 6.48381 11.5481 6.48544C11.5408 6.48544 11.5394 6.48864 11.5363 6.49623C11.5289 6.5156 11.5481 6.52799 11.5631 6.53338C11.5659 6.53499 11.575 6.53661 11.5763 6.54199C11.5791 6.5506 11.5777 6.54685 11.5791 6.5506C11.5763 6.549 11.5763 6.54577 11.5731 6.54361C11.5626 6.53663 11.5521 6.53499 11.5367 6.52583C11.5262 6.52102 11.5248 6.49193 11.5325 6.48491C11.5413 6.47638 11.569 6.47789 11.575 6.48491C11.5868 6.50269 11.5882 6.52747 11.5855 6.55113C11.5855 6.54632 11.5795 6.54791 11.5795 6.54091V6.54038Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M11.5873 6.55109C11.6068 6.55109 11.6296 6.5597 11.631 6.57425C11.631 6.57748 11.6324 6.58986 11.631 6.59523C11.6296 6.60384 11.6283 6.60761 11.6205 6.60923C11.6028 6.61409 11.5951 6.58986 11.5918 6.57208C11.5918 6.56886 11.5905 6.55809 11.5877 6.55434C11.5805 6.55109 11.5818 6.5527 11.5805 6.55109C11.5818 6.5527 11.5832 6.55434 11.5846 6.55809C11.5886 6.57047 11.5905 6.58448 11.5951 6.60278C11.5977 6.61678 11.6205 6.62214 11.6283 6.61356C11.6369 6.6049 11.6388 6.57264 11.6342 6.56564C11.6209 6.54787 11.6009 6.54248 11.58 6.54248C11.5841 6.54409 11.5827 6.5527 11.5872 6.55109", fill: "#FFCC00" }), jsx("path", { d: "M11.5873 6.55109C11.6068 6.55109 11.6296 6.5597 11.631 6.57425C11.631 6.57748 11.6324 6.58986 11.631 6.59523C11.6296 6.60384 11.6283 6.60761 11.6205 6.60923C11.6028 6.61409 11.5951 6.58986 11.5918 6.57208C11.5918 6.56886 11.5905 6.55809 11.5877 6.55434C11.5805 6.55109 11.5818 6.5527 11.5805 6.55109C11.5818 6.5527 11.5832 6.55434 11.5846 6.55809C11.5886 6.57047 11.5905 6.58448 11.5951 6.60278C11.5977 6.61678 11.6205 6.62215 11.6283 6.61356C11.6369 6.6049 11.6388 6.57264 11.6342 6.56564C11.6209 6.54787 11.6009 6.54248 11.58 6.54248C11.5841 6.54409 11.5827 6.5527 11.5872 6.55109", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M11.5913 6.54177C11.5955 6.54489 11.5955 6.55166 11.5941 6.55687C11.5913 6.56156 11.5836 6.56361 11.5809 6.55999C11.5736 6.55687 11.569 6.54647 11.5736 6.53968C11.5777 6.53293 11.5855 6.53812 11.5913 6.54126", fill: "#FFCC00" }), jsx("path", { d: "M11.5913 6.54177C11.5955 6.54489 11.5955 6.55166 11.5941 6.55687C11.5913 6.56156 11.5836 6.56361 11.5809 6.55999C11.5736 6.55687 11.569 6.54647 11.5736 6.53968C11.5777 6.53293 11.5855 6.53812 11.5913 6.54126V6.54177Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M11.6929 6.4651C11.6929 6.4651 11.6433 6.48975 11.6004 6.48975C11.6004 6.48975 11.5977 6.53232 11.59 6.54471C11.59 6.54471 11.6278 6.53773 11.6443 6.54632C11.6443 6.54632 11.6651 6.48771 11.6925 6.46399", fill: "#FFCC00" }), jsx("path", { d: "M11.6929 6.4651C11.6929 6.4651 11.6433 6.48975 11.6004 6.48975C11.6004 6.48975 11.5977 6.53232 11.59 6.54471C11.59 6.54471 11.6278 6.53773 11.6443 6.54632C11.6443 6.54632 11.6651 6.48771 11.6925 6.46399L11.6929 6.4651Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M11.6524 6.49512C11.6524 6.49512 11.6328 6.50546 11.6159 6.50546C11.6159 6.50546 11.6146 6.521 11.6118 6.52639C11.6118 6.52639 11.6268 6.52478 11.6328 6.528C11.6328 6.528 11.64 6.50323 11.6524 6.49457L11.6524 6.49512Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M11.5872 6.58831C11.5872 6.58831 11.5786 6.56892 11.5754 6.56192C11.574 6.5587 11.5767 6.58506 11.5681 6.58831C11.5563 6.60606 11.5549 6.64158 11.5549 6.65233C11.5667 6.6572 11.5791 6.66636 11.5987 6.65395C11.6059 6.64914 11.6013 6.63459 11.5973 6.62219C11.5973 6.61522 11.5958 6.59745 11.5886 6.58829", fill: "#FFCC00" }), jsx("path", { d: "M11.5872 6.58831C11.5872 6.58831 11.5786 6.56892 11.5754 6.56192C11.574 6.5587 11.5767 6.58506 11.5681 6.58831C11.5563 6.60606 11.5549 6.64158 11.5549 6.65233C11.5667 6.6572 11.5791 6.66636 11.5987 6.65395C11.6059 6.64914 11.6013 6.63459 11.5973 6.62219C11.5973 6.61522 11.5958 6.59745 11.5886 6.58829L11.5872 6.58831Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M11.5782 6.57269C11.5782 6.57593 11.5767 6.58832 11.5767 6.58669C11.5767 6.58186 11.5727 6.59155 11.5709 6.59369C11.5636 6.60986 11.5622 6.62007 11.559 6.65074M11.5736 6.59908C11.5695 6.62222 11.5664 6.62222 11.5664 6.65452L11.565 6.65291M11.575 6.62061C11.5709 6.63622 11.5709 6.64537 11.5709 6.65452L11.5767 6.65774", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M11.1153 7.75843C11.0761 7.79936 11.0051 7.82085 10.9928 7.83174C10.9673 7.85267 10.9295 7.88492 10.8657 7.8888C10.8174 7.8936 10.796 7.87845 10.7477 7.87099C10.6921 7.86397 10.7536 7.87417 10.7013 7.86065C10.6744 7.85214 10.6744 7.84675 10.6379 7.83766C10.6111 7.82899 10.5837 7.82195 10.5669 7.79509C10.5596 7.78489 10.5536 7.77565 10.5536 7.75953H10.5177C10.5149 7.77195 10.525 7.79508 10.5282 7.80418C10.5295 7.8075 10.5354 7.81493 10.5368 7.82044C10.5427 7.8327 10.5409 7.82897 10.5518 7.83973C10.5532 7.84138 10.5651 7.8538 10.5682 7.85532C10.5755 7.86234 10.5815 7.86936 10.5892 7.87102C10.6252 7.8779 10.642 7.88658 10.6753 7.89952C10.7081 7.90972 10.6903 7.90808 10.7158 7.91511C10.7263 7.91829 10.7518 7.92916 10.7641 7.93067C10.7864 7.93548 10.7896 7.93935 10.8124 7.94474C10.8712 7.96031 10.929 7.95713 10.9864 7.95176C11.0106 7.95009 11.0698 7.93606 11.0894 7.91992C11.1253 7.88976 11.206 7.87749 11.2406 7.84841C11.2465 7.84511 11.2675 7.8327 11.272 7.82734C11.3052 7.79343 11.3339 7.78488 11.3704 7.75787H11.1145", fill: "#004BB3" }), jsx("path", { d: "M10.8352 7.75843C10.8097 7.77414 10.7974 7.79937 10.7263 7.82624C10.6994 7.82624 10.6689 7.84028 10.6429 7.83862C10.6748 7.84731 10.6748 7.85269 10.7003 7.85972C10.7532 7.87362 10.6917 7.8629 10.7468 7.86992C10.7951 7.87694 10.8165 7.89306 10.8648 7.88769C10.9281 7.88437 10.9659 7.85215 10.9919 7.83064C11.0037 7.82044 11.0753 7.79881 11.1144 7.75732H10.8343", fill: "white" }), jsx("path", { d: "M10.8351 7.75842H10.5518C10.5518 7.77413 10.5577 7.78322 10.565 7.79397C10.5814 7.82043 10.6088 7.82789 10.6361 7.83655C10.6648 7.84345 10.6949 7.82621 10.7254 7.82621C10.7996 7.79991 10.8087 7.77083 10.8342 7.75842", fill: "#004BB3" }), jsx("path", { d: "M11.1095 7.75842C11.1095 7.75842 11.159 7.76164 11.1623 7.76164C11.165 7.76164 11.365 7.75842 11.365 7.75842", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1095 7.76007C11.1095 7.76007 11.1578 7.76314 11.1636 7.76472C11.1678 7.76635 11.365 7.76168 11.365 7.76168", stroke: "#000B73", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1095 7.76233C11.1095 7.76233 11.1578 7.76698 11.1636 7.76898C11.1724 7.76898 11.3623 7.76233 11.3623 7.76233", stroke: "#001379", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1095 7.76233C11.1095 7.76233 11.155 7.76898 11.1655 7.77059C11.176 7.77377 11.3609 7.76379 11.3609 7.76379", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1081 7.76379C11.1081 7.76379 11.1532 7.77061 11.1655 7.7738C11.1786 7.77687 11.359 7.76379 11.359 7.76379", stroke: "#002086", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1081 7.76379C11.1081 7.76379 11.1518 7.7738 11.1669 7.7774C11.1832 7.78048 11.359 7.7654 11.359 7.7654", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1067 7.76379C11.1067 7.76379 11.1504 7.7758 11.1686 7.78101C11.1865 7.78566 11.3564 7.76754 11.3564 7.76754", stroke: "#002B91", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1067 7.7655C11.1067 7.7655 11.149 7.77909 11.1686 7.78427C11.1896 7.78734 11.355 7.76708 11.355 7.76708", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1067 7.7677C11.1067 7.7677 11.1473 7.78275 11.17 7.78794C11.1942 7.79262 11.355 7.76917 11.355 7.76917", stroke: "#00389E", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1067 7.7677C11.1067 7.7677 11.1459 7.78489 11.1719 7.79155C11.196 7.79636 11.3523 7.77131 11.3523 7.77131", stroke: "#003EA6", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1067 7.76917C11.1067 7.76917 11.1445 7.78796 11.1731 7.79315C11.2001 7.79994 11.3504 7.77077 11.3504 7.77077", stroke: "#0046AD", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.3672 7.75842H11.1095", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.349 7.77288C11.349 7.77288 11.2037 7.80355 11.1732 7.79676C11.1432 7.79008 11.1053 7.76917 11.1053 7.76917", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.0734 7.89245C11.0734 7.89245 10.9796 7.90753 10.9764 7.90753C10.975 7.90753 10.9236 7.90287 10.9209 7.90287L10.8753 7.89087", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.0775 7.89087C11.0775 7.89087 10.9824 7.90806 10.9764 7.90606C10.9723 7.90444 10.9253 7.90125 10.9222 7.90125C10.9195 7.90125 10.8798 7.89138 10.8798 7.89138", stroke: "#001178", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.0839 7.8877C11.0839 7.8877 10.9855 7.90639 10.9764 7.90277C10.9705 7.90277 10.9268 7.89971 10.9236 7.89971C10.9195 7.89971 10.8844 7.88933 10.8844 7.88933", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.0884 7.88379C11.0884 7.88379 10.9886 7.90419 10.975 7.901C10.9677 7.901 10.9299 7.89793 10.9236 7.89793C10.9194 7.89631 10.8889 7.88953 10.8889 7.88953", stroke: "#002086", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.0944 7.88232C11.0944 7.88232 10.9914 7.90259 10.975 7.89954C10.9663 7.89791 10.9313 7.89633 10.9253 7.89473C10.9195 7.89473 10.8939 7.89008 10.8939 7.89008", stroke: "#002B91", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.0989 7.87842C11.0989 7.87842 10.9946 7.90241 10.9732 7.89721C10.9627 7.89561 10.934 7.89414 10.9249 7.89256C10.9176 7.89256 10.898 7.88789 10.898 7.88789", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1048 7.87689C11.1048 7.87689 10.9974 7.90074 10.9732 7.89555C10.9613 7.89408 10.9353 7.8909 10.9262 7.8909C10.9176 7.88927 10.9008 7.88783 10.9008 7.88783", stroke: "#0039A0", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1095 7.87469C11.1095 7.87469 11.0005 7.90015 10.9732 7.89349C10.9582 7.89031 10.9386 7.88884 10.9263 7.88884C10.9176 7.88721 10.9053 7.88721 10.9053 7.88721", stroke: "#0045AB", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.067 7.89613L10.9764 7.90972L10.9208 7.90654L10.8725 7.89307", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.1153 7.87152C11.1153 7.87152 11.0032 7.90005 10.9714 7.89247C10.9413 7.88544 10.9094 7.88544 10.9094 7.88544M10.6712 7.88766C10.6712 7.88766 10.6138 7.86286 10.5833 7.85045C10.5291 7.8258 10.5227 7.76116 10.5227 7.76116M10.6776 7.86616C10.6776 7.86616 10.643 7.85045 10.6143 7.83763C10.5355 7.80208 10.5446 7.75897 10.5446 7.75897", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.6835 7.86935C10.6835 7.86935 10.6366 7.84992 10.6138 7.83916C10.6006 7.83436 10.5838 7.82525 10.5778 7.81987C10.5674 7.81285 10.5537 7.79673 10.551 7.78971C10.5437 7.77729 10.5423 7.75952 10.5423 7.75952", stroke: "#003CA2", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.688 7.87471C10.688 7.87471 10.6306 7.84994 10.6138 7.84082C10.6033 7.83765 10.5837 7.82678 10.5778 7.82305C10.5705 7.81603 10.5523 7.79991 10.5491 7.79452C10.545 7.78433 10.5405 7.75897 10.5405 7.75897", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.694 7.87844C10.694 7.87844 10.6243 7.84992 10.6138 7.84453C10.6079 7.84137 10.5824 7.82896 10.5778 7.82677C10.5737 7.8236 10.551 7.80044 10.5478 7.79671C10.545 7.79177 10.5386 7.75952 10.5386 7.75952", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.6985 7.8838C10.6985 7.8838 10.6183 7.84991 10.6138 7.84675C10.6097 7.84507 10.5805 7.83268 10.5792 7.83116C10.5764 7.8295 10.5477 7.80264 10.5477 7.80098C10.5464 7.79769 10.5359 7.76172 10.5359 7.76172", stroke: "#000F75", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.6776 7.88763C10.6776 7.88763 10.6079 7.85747 10.5838 7.84674C10.5674 7.8397 10.5492 7.82192 10.5414 7.80954C10.5296 7.79024 10.525 7.76172 10.525 7.76172", stroke: "#003CA2", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.6848 7.88763C10.6848 7.88763 10.6001 7.85211 10.5819 7.84302C10.57 7.83804 10.5473 7.81656 10.5427 7.80747C10.5336 7.7934 10.5263 7.76117 10.5263 7.76117", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.6912 7.88932C10.6912 7.88932 10.5928 7.84453 10.5824 7.84136C10.5737 7.83804 10.5478 7.81283 10.5446 7.80744C10.5373 7.79727 10.5295 7.76117 10.5295 7.76117", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.6971 7.88932C10.6971 7.88932 10.5869 7.83915 10.5805 7.83764C10.5764 7.83598 10.5459 7.80899 10.5445 7.80581C10.5418 7.801 10.5313 7.76117 10.5313 7.76117", stroke: "#000F75", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.7031 7.88932L10.5792 7.83376L10.5459 7.8036L10.5341 7.76117", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.5591 7.75842C10.5591 7.75842 10.612 7.76164 10.6152 7.76164C10.6179 7.76164 10.8256 7.75842 10.8256 7.75842", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.5591 7.76007C10.5591 7.76007 10.6106 7.76314 10.6152 7.76472C10.6211 7.76635 10.8242 7.76168 10.8242 7.76168", stroke: "#000B73", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.5578 7.76233C10.5578 7.76233 10.6088 7.76698 10.6166 7.76898C10.6239 7.76898 10.8225 7.76233 10.8225 7.76233", stroke: "#001379", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.5578 7.76233C10.5578 7.76233 10.6075 7.76898 10.6184 7.77059C10.6289 7.77377 10.8211 7.76379 10.8211 7.76379", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.5578 7.76379C10.5578 7.76379 10.6043 7.77061 10.6184 7.7738C10.6316 7.77687 10.8197 7.76379 10.8197 7.76379", stroke: "#002086", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.5578 7.76379C10.5578 7.76379 10.6029 7.7738 10.6197 7.7774C10.6348 7.78048 10.8184 7.7654 10.8184 7.7654", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.556 7.76379C10.556 7.76379 10.6011 7.7758 10.6193 7.78101C10.6389 7.78566 10.8161 7.76754 10.8161 7.76754", stroke: "#002B91", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.556 7.7655C10.556 7.7655 10.5997 7.77909 10.6211 7.78427C10.6421 7.78734 10.8147 7.76708 10.8147 7.76708", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.556 7.7677C10.556 7.7677 10.5979 7.78275 10.6211 7.78794C10.6453 7.79262 10.8133 7.76917 10.8133 7.76917", stroke: "#00389E", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.556 7.7677C10.556 7.7677 10.5965 7.78489 10.6225 7.79155C10.6493 7.79636 10.812 7.77131 10.812 7.77131", stroke: "#003EA6", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.556 7.76917C10.556 7.76917 10.5933 7.78796 10.6238 7.79315C10.6525 7.79994 10.8101 7.77077 10.8101 7.77077", stroke: "#0046AD", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.8274 7.75842H10.5609", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.8079 7.77288C10.8079 7.77288 10.658 7.80355 10.6261 7.79676C10.5947 7.79008 10.5551 7.76917 10.5551 7.76917", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.5149 7.75841C10.5122 7.77082 10.5222 7.79396 10.5254 7.8032C10.5268 7.80638 10.5327 7.81395 10.5341 7.81931C10.54 7.83172 10.5382 7.82786 10.5491 7.83861C10.5505 7.84028 10.5623 7.85267 10.5655 7.85431C10.5728 7.86122 10.5787 7.86824 10.5865 7.8699C10.6224 7.87692 10.6393 7.88546 10.6726 7.89842C10.7053 7.90862 10.6876 7.90697 10.7131 7.91399C10.7236 7.91728 10.7491 7.92803 10.7614 7.92955C10.7837 7.93453 10.7869 7.93823 10.8097 7.94362C10.8684 7.95919 10.9262 7.956 10.9836 7.95064C11.0078 7.94899 11.067 7.93506 11.0866 7.9188C11.1226 7.88879 11.2032 7.87637 11.2378 7.84729C11.2438 7.84399 11.2648 7.83172 11.2693 7.82622C11.3026 7.7923 11.3312 7.78377 11.3676 7.7569", stroke: "black", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.91957 6.84449C9.8895 6.75677 9.85762 6.5743 9.85899 6.53284C9.86628 6.3627 9.8631 6.31102 9.87674 6.13562L10.0266 6.33803C10.0225 6.40417 10.0225 6.42568 10.0266 6.46826C10.028 6.48381 10.0357 6.56137 10.0462 6.59153L9.91912 6.84396", fill: "white" }), jsx("path", { d: "M10.0467 6.59203C10.0362 6.56188 10.0289 6.48489 10.0271 6.46878C10.023 6.42621 10.023 6.4047 10.0271 6.33855L10.1178 6.45802L10.0467 6.59202M9.66634 6.75674C9.66497 6.71744 9.66225 6.67438 9.66225 6.65499C9.66225 6.53175 9.6504 6.46339 9.66225 6.33264C9.6709 6.23079 9.69231 6.09465 9.68776 5.98537C9.68639 5.9537 9.69048 5.92296 9.69184 5.89221L9.87677 6.13559C9.86358 6.31099 9.86631 6.36265 9.85902 6.53281C9.85766 6.57372 9.88909 6.75674 9.9196 6.84446L9.88044 6.92305L9.66681 6.75674", fill: "#004BB3" }), jsx("path", { d: "M10.1314 6.44189L9.69641 5.87238L9.68774 5.88476L10.1182 6.45744L10.1314 6.44189Z", fill: "#FFCC00" }), jsx("path", { d: "M10.1314 6.44189L9.69641 5.87238L9.68774 5.88476L10.1182 6.45744L10.1314 6.44189Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.70099 6.03113C9.70099 6.03113 9.73559 6.39077 9.85405 6.37673", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85402 6.37508C9.79526 6.3784 9.75562 6.28952 9.73468 6.20723C9.71235 6.12153 9.70142 6.03003 9.70142 6.03003", stroke: "#00056B", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85402 6.37508C9.79526 6.37191 9.75562 6.28192 9.73604 6.20502C9.7119 6.12264 9.70142 6.02948 9.70142 6.02948", stroke: "#000B73", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85581 6.37358C9.79522 6.36863 9.75605 6.27506 9.73645 6.20175C9.71413 6.12321 9.70321 6.03005 9.70184 6.02856", stroke: "#001178", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85585 6.37194C9.79525 6.36174 9.75609 6.26802 9.73785 6.20025C9.71554 6.12322 9.70325 6.03006 9.70142 6.02692", stroke: "#00167C", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85585 6.36971C9.79526 6.35578 9.75609 6.25892 9.73922 6.19801C9.71691 6.12318 9.70325 6.02795 9.70142 6.02466", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85585 6.36971C9.79709 6.35041 9.75609 6.25189 9.7406 6.19635C9.71828 6.12318 9.70325 6.0285 9.70325 6.02466", stroke: "#002289", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85722 6.36821C9.79663 6.34504 9.75609 6.24486 9.74058 6.19264C9.71963 6.1232 9.70325 6.02633 9.70325 6.02258", stroke: "#00288F", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85722 6.3682C9.79663 6.33801 9.75609 6.23782 9.74377 6.19097C9.71963 6.12319 9.70325 6.02633 9.70325 6.02094", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85722 6.36433C9.79845 6.33263 9.75609 6.23036 9.74377 6.18891C9.72146 6.12262 9.70325 6.02631 9.70325 6.01874", stroke: "#00359C", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85722 6.36436C9.79845 6.32727 9.75609 6.22117 9.74514 6.18728C9.72282 6.1232 9.70325 6.02634 9.70325 6.01929", stroke: "#0039A0", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85722 6.36266C9.79845 6.3219 9.75609 6.21414 9.74697 6.18563C9.72466 6.12319 9.70325 6.02467 9.70325 6.01776", stroke: "#003EA6", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85854 6.36265C9.79796 6.31638 9.75558 6.20722 9.74648 6.18186C9.72552 6.12483 9.70412 6.02465 9.70276 6.01556", stroke: "#0046AD", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.70276 6.01501C9.70412 6.02368 9.72507 6.12429 9.74784 6.17968C9.75514 6.19909 9.79751 6.30837 9.85807 6.3584", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.70551 5.94885C9.70551 5.94885 9.80389 6.23518 9.86766 6.20281", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.8677 6.20338C9.84083 6.21742 9.79983 6.16094 9.76658 6.09259C9.73197 6.01927 9.70599 5.94928 9.70599 5.94928", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.8677 6.20173C9.84356 6.21411 9.8012 6.16094 9.76796 6.09092C9.74561 6.04425 9.72494 5.99648 9.70599 5.94775", stroke: "#001178", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.86762 6.2017C9.84665 6.21258 9.80248 6.16091 9.76788 6.08925C9.73006 6.00904 9.70728 5.9483 9.70728 5.9483", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.86764 6.20171C9.85125 6.20871 9.80433 6.16092 9.77107 6.0876C9.73008 6.00368 9.70776 5.94666 9.70776 5.94666", stroke: "#002086", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.86764 6.19964C9.85443 6.20668 9.80569 6.16038 9.77107 6.08555C9.73008 5.99775 9.70776 5.94446 9.70776 5.94446", stroke: "#002B91", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.86762 6.19964C9.85716 6.20444 9.80704 6.16038 9.77241 6.0817C9.73006 5.99239 9.70728 5.94238 9.70728 5.94238", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.86768 6.19966C9.86177 6.20284 9.80891 6.1604 9.77247 6.0802C9.73012 5.98539 9.70917 5.94238 9.70917 5.94238", stroke: "#0039A0", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.86765 6.19965C9.86493 6.19965 9.81025 6.16039 9.77382 6.08019C9.73009 5.98002 9.70868 5.94073 9.70868 5.94073", stroke: "#0045AB", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.70868 5.94019C9.70868 5.94019 9.72965 5.9741 9.77382 6.07577C9.81164 6.15984 9.86766 6.19745 9.86766 6.19745M10.0271 6.39505L10.1086 6.44838M10.0316 6.48819L10.1086 6.47248", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0239 6.40039L10.1086 6.44835", stroke: "#0045AB", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0239 6.40417L10.11 6.45048", stroke: "#003CA2", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0239 6.40948L10.11 6.45042", stroke: "#00359C", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0253 6.41284L10.1114 6.45212", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0253 6.4165L10.1114 6.45208", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0253 6.42194L10.1132 6.45113", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0253 6.42566L10.1132 6.45323", stroke: "#00167C", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0253 6.43121L10.1146 6.45345", stroke: "#000F75", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0253 6.43439L10.1146 6.45463", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0317 6.48389L10.1086 6.4704", stroke: "#0045AB", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0317 6.47861L10.1105 6.46875", stroke: "#003CA2", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0298 6.47334L10.1114 6.46655", stroke: "#00359C", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0298 6.47029L10.1114 6.4671", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0284 6.46503H10.1132", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0284 6.45966L10.1132 6.46271", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0284 6.45416L10.1145 6.46098", stroke: "#00167C", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0284 6.45044L10.1164 6.45882", stroke: "#000F75", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0284 6.44507L10.1177 6.45868", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.0271 6.43976L10.1178 6.45695", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.66637 6.75674C9.665 6.72821 9.66364 6.69805 9.66364 6.67977C9.665 6.5565 9.65041 6.46339 9.66228 6.33264C9.67092 6.23079 9.69234 6.09465 9.68778 5.98537C9.68641 5.9537 9.69051 5.92296 9.69187 5.89221L10.1178 6.45803", stroke: "black", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.66632 6.46655C9.66632 6.46655 9.67041 6.54143 9.6859 6.57371C9.7055 6.62001 9.76472 6.68782 9.83258 6.73843", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.8344 6.73894C9.79067 6.70502 9.75149 6.66414 9.72416 6.62805C9.70913 6.60869 9.69728 6.58878 9.68816 6.57264C9.67495 6.54088 9.66858 6.46558 9.66858 6.46558", stroke: "#00056B", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.83627 6.73895C9.79251 6.70503 9.75289 6.66036 9.72602 6.62484C9.71279 6.60709 9.69915 6.5877 9.69276 6.57156C9.67635 6.53764 9.66907 6.46448 9.66907 6.46448", stroke: "#000B73", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.83758 6.73896C9.79385 6.70504 9.75422 6.65876 9.72872 6.62485C9.71548 6.60548 9.70321 6.58554 9.69409 6.56779C9.67768 6.53388 9.66858 6.46063 9.66858 6.46063", stroke: "#001178", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.83894 6.73733C9.79522 6.70342 9.75558 6.65497 9.73008 6.62322C9.71823 6.60547 9.70593 6.58609 9.69684 6.56617C9.68043 6.53064 9.66858 6.45911 9.66858 6.45911", stroke: "#00167C", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.8408 6.73735C9.79844 6.70343 9.75926 6.6534 9.73331 6.62107C9.72146 6.60332 9.70917 6.58394 9.70005 6.56404C9.68227 6.52689 9.66998 6.45691 9.66998 6.45691", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.84217 6.73735C9.79981 6.70344 9.76065 6.64963 9.73648 6.61786C9.72367 6.60092 9.71252 6.58233 9.70324 6.56244C9.68364 6.52314 9.66998 6.45526 9.66998 6.45526", stroke: "#002289", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.84352 6.73741C9.80297 6.70188 9.76199 6.64644 9.73921 6.61577C9.72637 6.59847 9.71479 6.57993 9.70459 6.56034C9.68501 6.51944 9.66998 6.45325 9.66998 6.45325", stroke: "#00288F", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.84537 6.73734C9.80437 6.70181 9.76382 6.64423 9.74104 6.61409C9.73056 6.60009 9.71873 6.57854 9.70778 6.55865C9.68682 6.51612 9.66998 6.45154 9.66998 6.45154", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.84673 6.73734C9.80618 6.70021 9.76655 6.64101 9.74377 6.61246C9.73331 6.59848 9.72146 6.57854 9.71053 6.55542C9.6882 6.51286 9.66998 6.44836 9.66998 6.44836", stroke: "#00359C", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.84809 6.73736C9.80754 6.70022 9.76793 6.63725 9.74697 6.61033C9.73649 6.59633 9.72465 6.57481 9.71371 6.55328C9.69139 6.50859 9.66998 6.44617 9.66998 6.44617", stroke: "#0039A0", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.84989 6.73736C9.80889 6.70023 9.77111 6.63562 9.75015 6.60873C9.73966 6.59635 9.72782 6.57481 9.71552 6.55167C9.69319 6.50544 9.67041 6.44452 9.67041 6.44452", stroke: "#003EA6", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85127 6.73519C9.81073 6.69803 9.77245 6.63345 9.75151 6.60656C9.74286 6.59415 9.73055 6.57264 9.72008 6.54948C9.69457 6.50154 9.67041 6.44244 9.67041 6.44244", stroke: "#0046AD", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.66949 6.43976C9.66949 6.43976 9.7269 6.56679 9.75422 6.60448C9.7738 6.62923 9.81298 6.69759 9.85261 6.73475", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.6709 6.75677C9.7342 6.80683 9.7497 6.8192 9.87998 6.91771L9.91915 6.8445C9.91915 6.8445 9.90411 6.8036 9.8982 6.78207", stroke: "#00004B", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67224 6.75677C9.73282 6.80469 9.7524 6.8192 9.87995 6.91394L9.88131 6.91232L9.91594 6.84289C9.91594 6.84289 9.91457 6.83428 9.91003 6.82353C9.90567 6.81005 9.90171 6.7964 9.89816 6.7826", stroke: "#00004F", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67224 6.75677C9.72964 6.80308 9.75559 6.82297 9.87995 6.91232L9.88131 6.9091C9.88131 6.90749 9.91457 6.83966 9.91457 6.83966C9.91457 6.83966 9.91321 6.83269 9.91048 6.82191C9.90639 6.80953 9.90183 6.79335 9.89863 6.7826", stroke: "#000053", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67224 6.75677C9.72826 6.7993 9.76015 6.82297 9.87995 6.90855L9.88131 6.90533C9.88131 6.90371 9.91137 6.8375 9.91137 6.8375C9.91137 6.8375 9.91137 6.83052 9.90731 6.81974C9.90456 6.80736 9.9 6.79336 9.89863 6.7826", stroke: "#000056", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67224 6.75519C9.72689 6.79771 9.76288 6.8246 9.87995 6.90535L9.88131 6.90374C9.88131 6.90052 9.91001 6.8343 9.91001 6.8343C9.91001 6.8343 9.91001 6.82949 9.90729 6.81869C9.90319 6.80632 9.9 6.79391 9.89863 6.78316", stroke: "#000058", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67224 6.75519C9.72508 6.79607 9.76608 6.82677 9.87995 6.90374L9.88131 6.90052C9.88131 6.89566 9.9082 6.83107 9.9082 6.83107C9.9082 6.83107 9.9082 6.82621 9.90545 6.81707C9.90138 6.80632 9.89955 6.79394 9.89816 6.78316", stroke: "#00005C", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67224 6.75519C9.72371 6.79446 9.77064 6.82838 9.87995 6.89999L9.88269 6.89674C9.88269 6.89191 9.90501 6.82891 9.90501 6.82891C9.90501 6.82891 9.90639 6.8241 9.90364 6.81493C9.90091 6.80471 9.89772 6.79339 9.89772 6.78318", stroke: "#000060", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67224 6.75519C9.72233 6.79232 9.77336 6.82838 9.87995 6.89621L9.88269 6.89296C9.88269 6.88813 9.90364 6.82514 9.90364 6.82514C9.90364 6.82514 9.90501 6.82193 9.90228 6.81277C9.89955 6.80255 9.89816 6.79339 9.89635 6.78263", stroke: "#000062", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67224 6.75519C9.71916 6.79071 9.77656 6.82999 9.87995 6.8946L9.88269 6.89135C9.88269 6.88438 9.90228 6.82352 9.90046 6.82352C9.90046 6.82352 9.90319 6.82032 9.90046 6.81116C9.89771 6.80093 9.89771 6.79339 9.89635 6.78263", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67407 6.75348C9.71779 6.78901 9.78155 6.83207 9.87995 6.89126L9.88269 6.88804C9.88269 6.88106 9.8991 6.82021 9.8991 6.82021C9.8991 6.82021 9.90183 6.8186 9.8991 6.80998C9.89635 6.80137 9.89635 6.79385 9.89635 6.78362", stroke: "#00056B", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67407 6.75348C9.71596 6.7874 9.78293 6.83368 9.87995 6.88748C9.88131 6.88748 9.88269 6.88426 9.88269 6.88426C9.88269 6.87565 9.89771 6.81807 9.89771 6.81807C9.89771 6.81807 9.90046 6.81484 9.8991 6.80784C9.89499 6.79923 9.89635 6.79385 9.89635 6.78307", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67407 6.75348C9.7146 6.78524 9.78749 6.83582 9.87995 6.88587C9.88131 6.88426 9.88269 6.88265 9.88269 6.88106C9.88269 6.87404 9.89454 6.81698 9.89454 6.81698C9.89454 6.81698 9.89863 6.81376 9.89727 6.80623C9.89454 6.79762 9.89454 6.79385 9.89454 6.78307", stroke: "#00096F", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67542 6.75348C9.7408 6.80227 9.80916 6.84527 9.87993 6.88211L9.88267 6.87887C9.88267 6.86865 9.89316 6.81268 9.89316 6.81268C9.89316 6.81268 9.89723 6.81107 9.89589 6.80407C9.89316 6.79546 9.89452 6.79329 9.89452 6.78307", stroke: "#000B73", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67542 6.75348C9.7114 6.77985 9.7934 6.83743 9.87993 6.87887L9.88267 6.87565C9.88267 6.86489 9.89133 6.8116 9.88997 6.80946C9.88997 6.80946 9.89725 6.80784 9.89405 6.80246C9.89133 6.79385 9.89405 6.79385 9.89405 6.78307", stroke: "#001178", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67542 6.75348C9.70866 6.77826 9.79796 6.83907 9.88129 6.87673L9.88267 6.87189C9.88267 6.86165 9.88997 6.80784 9.88858 6.80784C9.88858 6.80784 9.89452 6.80624 9.89269 6.80085C9.88997 6.79385 9.89269 6.79385 9.89405 6.78307", stroke: "#001379", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67542 6.7514C9.70685 6.77779 9.80113 6.84076 9.88129 6.87307C9.88267 6.87307 9.88267 6.86821 9.88267 6.86821C9.88267 6.85798 9.88677 6.80576 9.88677 6.80415C9.88677 6.80415 9.89269 6.80415 9.89086 6.79932C9.88813 6.79232 9.89224 6.79232 9.89361 6.78369", stroke: "#00167C", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67542 6.7514C9.70548 6.77454 9.80386 6.84238 9.88129 6.86927C9.88267 6.86927 9.88267 6.86607 9.88267 6.86607C9.88267 6.85368 9.8854 6.80199 9.88404 6.79985C9.88404 6.79985 9.89269 6.80146 9.88994 6.79662C9.8886 6.78963 9.89269 6.79176 9.89405 6.78262", stroke: "#001C82", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67542 6.74976C9.70412 6.7729 9.80842 6.84287 9.88129 6.86761C9.88267 6.86603 9.88267 6.86278 9.88404 6.86278C9.88404 6.84881 9.88267 6.80034 9.88267 6.79873C9.88267 6.79873 9.88997 6.80034 9.88858 6.79551C9.88723 6.78853 9.89133 6.79228 9.89452 6.78312", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67542 6.74976C9.70228 6.77076 9.81161 6.84448 9.88129 6.86387C9.88267 6.86226 9.88267 6.86064 9.88404 6.85903C9.88404 6.84503 9.88129 6.79658 9.87993 6.79497C9.87993 6.79497 9.8886 6.7982 9.8886 6.79334C9.88585 6.78854 9.88997 6.79173 9.8945 6.78312", stroke: "#002086", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67542 6.74976C9.70092 6.76915 9.81434 6.84609 9.88129 6.86064C9.88267 6.86064 9.88404 6.85742 9.88404 6.85581C9.88404 6.84181 9.87993 6.79495 9.87814 6.79334C9.87814 6.79334 9.8886 6.79497 9.88677 6.79173C9.88404 6.78692 9.8895 6.79173 9.89405 6.78312", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67682 6.74976C9.69778 6.76751 9.81755 6.84826 9.88133 6.85903C9.88271 6.85742 9.88408 6.85581 9.88408 6.85417C9.88408 6.83856 9.87677 6.79173 9.87677 6.79173C9.87677 6.79173 9.88727 6.79334 9.8841 6.79012C9.8841 6.78528 9.89 6.79173 9.89273 6.78314", stroke: "#00288F", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67682 6.74976C9.6964 6.76537 9.82075 6.84987 9.88133 6.85526C9.88271 6.85364 9.88408 6.85203 9.88408 6.85042C9.88408 6.83478 9.8754 6.78956 9.87359 6.78797C9.87359 6.78797 9.88407 6.7912 9.88407 6.78797C9.88271 6.78312 9.88998 6.7912 9.89273 6.78312", stroke: "#002B91", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67682 6.74976C9.69458 6.76214 9.82531 6.84987 9.88271 6.85364C9.88271 6.85042 9.88408 6.84881 9.88408 6.84667C9.88408 6.83103 9.87359 6.78581 9.87223 6.7842C9.87223 6.7842 9.88408 6.78745 9.88271 6.78583C9.88133 6.78097 9.88861 6.79064 9.89319 6.78258", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67682 6.74811C9.6932 6.7605 9.82806 6.852 9.88271 6.84986C9.88271 6.84823 9.88408 6.845 9.88408 6.84284C9.88408 6.82508 9.87086 6.78203 9.86904 6.78203C9.86904 6.78203 9.88226 6.78525 9.88088 6.78203C9.87952 6.78042 9.88816 6.79064 9.89273 6.78203", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67682 6.74811C9.69183 6.7605 9.83123 6.85361 9.88271 6.84661C9.88271 6.84501 9.88408 6.84339 9.88408 6.84178C9.88408 6.82239 9.86904 6.78092 9.86767 6.77933C9.86767 6.77933 9.87952 6.78414 9.87952 6.78255C9.87815 6.77933 9.88816 6.79117 9.89274 6.78255", stroke: "#00359C", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67682 6.74811C9.69002 6.75672 9.83579 6.85523 9.88271 6.84284C9.88271 6.84284 9.88408 6.83961 9.88408 6.83803C9.88408 6.81862 9.86767 6.77933 9.86631 6.77717V6.77556C9.86631 6.77556 9.87953 6.78253 9.87815 6.78042C9.87815 6.77717 9.8868 6.79064 9.89319 6.78202", stroke: "#00389E", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67682 6.74811C9.68728 6.75509 9.83897 6.85523 9.88271 6.84123C9.88408 6.83961 9.88408 6.83639 9.88408 6.83425C9.88408 6.81486 9.86449 6.77556 9.86311 6.77339C9.86311 6.77339 9.87817 6.78042 9.87634 6.77825C9.87634 6.77503 9.8868 6.79064 9.89273 6.78148", stroke: "#003CA2", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67822 6.74811C9.68551 6.75294 9.84176 6.85739 9.88276 6.83747C9.88412 6.83584 9.88412 6.83261 9.88549 6.83047C9.88412 6.81109 9.86317 6.77339 9.86134 6.76964C9.86134 6.76964 9.87636 6.77825 9.87636 6.77448C9.87501 6.77448 9.88685 6.79011 9.89277 6.78147", stroke: "#003EA6", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67822 6.74811C9.68413 6.75133 9.84494 6.859 9.88276 6.83584C9.88412 6.83261 9.88412 6.83103 9.88549 6.82886C9.88549 6.80786 9.85998 6.77017 9.85861 6.76801C9.85861 6.76801 9.87501 6.77503 9.87364 6.77503C9.87364 6.77339 9.88549 6.78903 9.89324 6.78201", stroke: "#0042A8", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67822 6.74597C9.68232 6.7492 9.84766 6.86008 9.88276 6.83156C9.88412 6.82995 9.88412 6.82833 9.88549 6.82458C9.88549 6.80358 9.85861 6.7675 9.85679 6.76589L9.87319 6.77289C9.87183 6.77128 9.88504 6.78852 9.89094 6.7815", stroke: "#0045AB", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67822 6.74597C9.68095 6.74759 9.85223 6.86225 9.88276 6.82833C9.88412 6.82673 9.88549 6.82511 9.88549 6.82136C9.88549 6.7982 9.85679 6.76428 9.85406 6.76267L9.87183 6.76967C9.87183 6.76967 9.88366 6.78906 9.89141 6.78205", stroke: "#0049AF", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.67999 6.74438C9.67999 6.74438 9.87675 6.87677 9.88587 6.81755C9.88587 6.79441 9.85263 6.76052 9.85263 6.76052L9.8704 6.7675C9.8704 6.7675 9.88359 6.7885 9.89134 6.7815", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.70097 5.87189C9.70097 5.84873 9.71145 5.82185 9.72511 5.82185C9.72511 5.82185 9.73559 5.82185 9.74152 5.82337C9.74881 5.82669 9.75017 5.8304 9.75198 5.83908C9.75473 5.85837 9.73421 5.86539 9.71874 5.86761C9.71463 5.86761 9.7037 5.86594 9.70234 5.87078C9.69824 5.8778 9.70097 5.87559 9.69824 5.8778C9.70097 5.8778 9.70234 5.87614 9.70415 5.87449C9.71738 5.87133 9.72829 5.87133 9.7447 5.86761C9.75517 5.86594 9.76247 5.83908 9.75654 5.82833C9.75062 5.81966 9.72328 5.81056 9.71555 5.81799C9.69914 5.83205 9.69322 5.85356 9.69141 5.87891C9.69276 5.8741 9.69869 5.87725 9.70005 5.87189", fill: "#FFCC00" }), jsx("path", { d: "M9.70097 5.87189C9.70097 5.84873 9.71145 5.82185 9.72511 5.82185C9.72511 5.82185 9.73559 5.82185 9.74152 5.82337C9.74881 5.82669 9.75017 5.8304 9.75198 5.83908C9.75473 5.85837 9.73421 5.86539 9.71874 5.86761C9.71463 5.86761 9.7037 5.86594 9.70234 5.87078C9.69824 5.8778 9.70097 5.87559 9.69824 5.8778C9.70097 5.8778 9.70234 5.87614 9.70415 5.87449C9.71738 5.87133 9.72829 5.87133 9.7447 5.86761C9.75517 5.86594 9.76247 5.83908 9.75654 5.82833C9.75062 5.81966 9.72328 5.81056 9.71555 5.81799C9.69914 5.83205 9.69322 5.85356 9.69141 5.87891C9.69276 5.8741 9.69869 5.87725 9.70005 5.87189H9.70097Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.69044 5.87892C9.67267 5.8719 9.64853 5.8756 9.64399 5.88912C9.64399 5.89076 9.63988 5.90302 9.63988 5.90853C9.63988 5.9171 9.64125 5.9208 9.649 5.92619C9.66221 5.93485 9.67587 5.91392 9.68179 5.89766C9.68315 5.89286 9.68588 5.88374 9.69044 5.88003C9.69773 5.87835 9.69637 5.88003 9.69773 5.87835C9.69637 5.88155 9.69364 5.88318 9.69183 5.88539C9.68588 5.89766 9.68134 5.90853 9.67223 5.92619C9.66632 5.93857 9.644 5.93857 9.63762 5.92785C9.63168 5.91544 9.63624 5.88539 9.64352 5.87781C9.65856 5.86377 9.67951 5.8654 9.6991 5.87301C9.69637 5.87132 9.69503 5.88003 9.69044 5.87781", fill: "#FFCC00" }), jsx("path", { d: "M9.69044 5.87892C9.67267 5.8719 9.64853 5.8756 9.64399 5.88912C9.64399 5.88912 9.63988 5.90302 9.63988 5.90853C9.63988 5.9171 9.64125 5.9208 9.649 5.92619C9.66221 5.93485 9.67587 5.91392 9.68179 5.89766C9.68315 5.89286 9.68588 5.88374 9.69044 5.88003C9.69773 5.87835 9.69637 5.88003 9.69773 5.87835C9.69637 5.88155 9.69364 5.88318 9.69183 5.88539C9.68588 5.89766 9.68134 5.90853 9.67223 5.92619C9.66632 5.93857 9.644 5.93857 9.63762 5.92785C9.63168 5.91544 9.63624 5.88539 9.64352 5.87781C9.65856 5.86377 9.67951 5.8654 9.6991 5.87301C9.69637 5.87132 9.69503 5.88003 9.69044 5.87781V5.87892Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.68908 5.86848C9.68317 5.86848 9.68179 5.87848 9.68317 5.88367C9.68317 5.88832 9.69045 5.89193 9.695 5.89047C9.70229 5.88727 9.70821 5.88046 9.70685 5.87169C9.70412 5.86329 9.695 5.86704 9.68908 5.86848Z", fill: "#FFCC00" }), jsx("path", { d: "M9.68908 5.86848C9.68317 5.86848 9.68179 5.87848 9.68317 5.88367C9.68317 5.88832 9.69045 5.89193 9.695 5.89047C9.70229 5.88727 9.70821 5.88046 9.70685 5.87169C9.70412 5.86329 9.695 5.86704 9.68908 5.86848Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.60529 5.7663C9.60529 5.7663 9.64903 5.80351 9.68866 5.81648C9.68866 5.81648 9.68274 5.8589 9.68866 5.87187C9.68866 5.87187 9.65404 5.85407 9.63582 5.85946C9.63582 5.85946 9.62715 5.79703 9.60575 5.7663", fill: "#FFCC00" }), jsx("path", { d: "M9.60529 5.7663C9.60529 5.7663 9.64903 5.80351 9.68866 5.81648C9.68866 5.81648 9.68274 5.8589 9.68866 5.87187C9.68866 5.87187 9.65404 5.85407 9.63582 5.85946C9.63582 5.85946 9.62715 5.79703 9.60575 5.7663H9.60529Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.63898 5.80725C9.63898 5.80725 9.65536 5.82129 9.67222 5.82668C9.67222 5.82668 9.66949 5.84225 9.67222 5.84761C9.67222 5.84761 9.659 5.8428 9.65125 5.84446C9.65125 5.84446 9.64853 5.81963 9.63943 5.80725H9.63898Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.68273 5.91489C9.68273 5.91489 9.69594 5.89932 9.70049 5.89174C9.70185 5.88857 9.6932 5.91489 9.70185 5.92191C9.70916 5.94134 9.70324 5.97745 9.70185 5.98598C9.68821 5.98764 9.67634 5.99301 9.65951 5.97745C9.65359 5.97043 9.66088 5.95635 9.66541 5.94562C9.66816 5.94079 9.67454 5.92246 9.68182 5.91544", fill: "#FFCC00" }), jsx("path", { d: "M9.68273 5.91489C9.68273 5.91489 9.69594 5.89932 9.70049 5.89174C9.70185 5.88857 9.6932 5.91489 9.70185 5.92191C9.70916 5.94134 9.70324 5.97745 9.70185 5.98598C9.68821 5.98764 9.67634 5.99301 9.65951 5.97745C9.65359 5.97043 9.66088 5.95635 9.66541 5.94562C9.66816 5.94079 9.67454 5.92246 9.68182 5.91544L9.68273 5.91489Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.69502 5.90411C9.69502 5.90577 9.69365 5.91446 9.69365 5.91653C9.69501 5.92133 9.69955 5.92355 9.70094 5.93057C9.7023 5.94837 9.69957 5.96062 9.69821 5.98376M9.69365 5.9241C9.69774 5.94724 9.69365 5.96501 9.69229 5.98486H9.69365M9.69045 5.96172C9.68773 5.96874 9.68773 5.97411 9.68773 5.98486C9.68636 5.98334 9.68362 5.98652 9.68182 5.98652", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M10.4817 8.07177C10.4844 8.07177 10.4876 8.06848 10.4903 8.06696C10.4976 8.06201 10.5113 8.06201 10.5158 8.05662C10.5368 8.02809 10.5231 7.97435 10.5131 7.94044C10.4967 7.8779 10.4953 7.82084 10.483 7.76172H10.4817C10.4712 7.82043 10.4685 7.8779 10.4502 7.94044C10.443 7.97435 10.4279 8.02809 10.4489 8.05662C10.453 8.06159 10.4666 8.06159 10.4758 8.06696C10.4771 8.06848 10.4798 8.07177 10.4817 8.07177", fill: "white" }), jsx("path", { d: "M10.4817 7.75842C10.4712 7.81711 10.4685 7.87789 10.4502 7.94099C10.4429 7.97106 10.4293 8.02121 10.4461 8.05014L10.4448 8.04862H10.4461C10.4389 8.04862 10.4311 8.04697 10.4238 8.04382C10.4224 8.04213 10.4197 8.04213 10.4179 8.03883C10.4151 8.03397 10.4116 8.0298 10.4074 8.02657C10.4033 8.02327 10.3969 8.02494 10.3924 8.02161C10.391 8.0201 10.3897 8.01844 10.3883 8.01844C10.3778 8.01142 10.3673 8.00439 10.3628 7.99212C10.3614 7.98178 10.36 7.97269 10.3614 7.96197C10.3628 7.95491 10.3655 7.94955 10.3673 7.94252C10.3701 7.93399 10.3733 7.92473 10.3778 7.91622C10.3805 7.90602 10.3851 7.89841 10.3897 7.88768C10.391 7.88288 10.3924 7.879 10.3956 7.87527C10.3969 7.87046 10.3983 7.86661 10.4015 7.86289C10.4029 7.85808 10.4074 7.85584 10.4102 7.85048C10.4129 7.8473 10.4068 7.85035 10.41 7.84653C10.41 7.84653 10.4175 7.83674 10.4175 7.83508C10.4189 7.83508 10.4241 7.83273 10.4241 7.83121C10.4327 7.81341 10.4393 7.81064 10.4452 7.79232C10.4493 7.78543 10.4493 7.77302 10.4493 7.76381H10.4808", fill: "#004BB3" }), jsx("path", { d: "M10.4667 7.76007C10.4667 7.76007 10.4471 7.85859 10.4353 7.88339C10.4234 7.90807 10.3765 7.95271 10.4066 8.02434", stroke: "#000033", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4699 7.76007C10.4699 7.76007 10.4503 7.85859 10.4385 7.88339C10.4252 7.90971 10.3792 7.95656 10.4116 8.02807", stroke: "#00004B", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4712 7.76007C10.4712 7.76007 10.4517 7.86025 10.4398 7.88712C10.428 7.91192 10.381 7.96029 10.4143 8.03192", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4744 7.76007C10.4744 7.76007 10.4548 7.86177 10.4425 7.88712C10.4293 7.91192 10.3838 7.96192 10.417 8.03567", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4758 7.76007C10.4758 7.76007 10.4562 7.86398 10.4443 7.88876C10.4325 7.91343 10.3869 7.96565 10.4202 8.03885", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4771 7.76007C10.4771 7.76007 10.4594 7.86562 10.4457 7.89029C10.4339 7.91507 10.3897 7.96895 10.4234 8.04214", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4653 7.76007C10.4653 7.76007 10.4457 7.85486 10.4339 7.88173C10.422 7.90807 10.3733 7.95326 10.4052 8.02271", stroke: "#00004B", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4635 7.76233C10.4635 7.76233 10.4439 7.85162 10.4302 7.88178C10.4184 7.90659 10.3696 7.95331 10.4015 8.02275", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4603 7.76233C10.4603 7.76233 10.4426 7.84995 10.4271 7.88178C10.4166 7.90659 10.3683 7.95124 10.4002 8.02275", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4589 7.76233C10.4589 7.76233 10.4425 7.84623 10.4243 7.88014C10.4138 7.90659 10.3656 7.95179 10.3975 8.02123", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4562 7.76233C10.4562 7.76233 10.4398 7.84459 10.4229 7.88014C10.4111 7.90491 10.3642 7.95179 10.3961 8.02123", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4818 7.75842C10.4936 7.81711 10.4968 7.87789 10.5132 7.94099C10.5218 7.97106 10.5355 8.02121 10.5191 8.05014L10.5193 8.04646C10.5279 8.04646 10.5341 8.0443 10.5414 8.04112C10.5441 8.03944 10.5455 8.03999 10.5473 8.0367C10.5501 8.03189 10.5532 8.0303 10.5564 8.0266C10.5624 8.02327 10.5683 8.02491 10.5742 8.02161C10.5756 8.0201 10.5756 8.01844 10.5769 8.01844C10.5874 8.01142 10.5979 8.00439 10.6024 7.99212C10.6052 7.98178 10.6052 7.97269 10.6038 7.96197C10.6027 7.95518 10.6007 7.94863 10.5979 7.94252C10.5951 7.93399 10.592 7.92473 10.5874 7.91622C10.5847 7.90602 10.5801 7.89841 10.5756 7.88768C10.5742 7.88288 10.5728 7.879 10.5697 7.87527C10.5683 7.87046 10.5656 7.86661 10.5637 7.86289C10.5624 7.85808 10.5578 7.85584 10.5551 7.85048C10.5513 7.84258 10.5487 7.84352 10.5473 7.83965C10.546 7.83965 10.5454 7.84121 10.5472 7.83955C10.5459 7.83955 10.5437 7.83596 10.5419 7.83445C10.535 7.82634 10.5261 7.80859 10.5195 7.79232C10.5154 7.78541 10.5154 7.77302 10.5154 7.76378H10.4822", fill: "#004BB3" }), jsx("path", { d: "M10.4985 7.76007C10.4985 7.76007 10.5181 7.85859 10.53 7.88339C10.5418 7.90807 10.5887 7.95271 10.5568 8.02434", stroke: "#000033", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4954 7.76007C10.4954 7.76007 10.5149 7.85859 10.5286 7.88339C10.5405 7.90971 10.5927 7.94745 10.5608 8.01896", stroke: "#00004B", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.494 7.76007C10.494 7.76007 10.5136 7.86025 10.5255 7.88712C10.5373 7.91192 10.5857 7.95631 10.5525 8.02794", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4908 7.76007C10.4908 7.76007 10.5118 7.86177 10.5241 7.88712C10.5358 7.91173 10.5829 7.95509 10.5525 8.02794M10.5525 8.02794C10.5523 8.02827 10.5517 8.02827 10.5516 8.0286C10.5515 8.02884 10.5564 8.0224 10.5525 8.02794Z", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4894 7.76007C10.4894 7.76007 10.509 7.86398 10.5227 7.88876C10.5332 7.91343 10.5787 7.96565 10.545 8.03885", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4881 7.76007C10.4881 7.76007 10.5077 7.86562 10.5195 7.89029C10.5314 7.91507 10.5756 7.96895 10.5419 8.04214", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4999 7.76007C10.4999 7.76007 10.5195 7.85486 10.5332 7.88173C10.545 7.90807 10.592 7.95326 10.5601 8.02271", stroke: "#00004B", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.5031 7.76233C10.5031 7.76233 10.5209 7.85162 10.5346 7.88178C10.5464 7.90659 10.5951 7.95331 10.5633 8.02275", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.5045 7.76233C10.5045 7.76233 10.5223 7.84995 10.5378 7.88178C10.5496 7.90659 10.5965 7.95124 10.5665 8.02275", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.5063 7.76233C10.5063 7.76233 10.5241 7.84623 10.5395 7.88014C10.5514 7.90659 10.6001 7.95179 10.5682 8.02123", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.509 7.76233C10.509 7.76233 10.5254 7.84459 10.5423 7.88014C10.5541 7.90491 10.6029 7.95179 10.571 8.02123", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.5491 7.83862C10.5519 7.84343 10.5612 7.85805 10.5626 7.86342C10.564 7.86659 10.5667 7.87044 10.5685 7.87583C10.5712 7.87898 10.5726 7.88271 10.5744 7.88821C10.5785 7.89841 10.5831 7.90584 10.5863 7.91674C10.5904 7.92528 10.5936 7.93437 10.5968 7.94305C10.5995 7.95008 10.6008 7.95546 10.6027 7.96249C10.604 7.97325 10.604 7.98178 10.6013 7.99253C10.5972 8.00492 10.5863 8.01197 10.5758 8.019C10.5758 8.019 10.5744 8.02051 10.5731 8.02216C10.5672 8.02546 10.5612 8.0238 10.5553 8.02697C10.5526 8.0303 10.5494 8.034 10.5462 8.03939C10.5448 8.04268 10.5435 8.04268 10.5403 8.0442C10.5332 8.04763 10.5256 8.04931 10.518 8.04915V8.05067V8.04916C10.518 8.05233 10.5166 8.05397 10.5152 8.05606C10.5111 8.06086 10.4975 8.06086 10.4897 8.0664C10.487 8.06791 10.4838 8.07121 10.4811 8.07121C10.4797 8.07121 10.477 8.06791 10.4751 8.0664C10.4665 8.06142 10.4528 8.06142 10.4483 8.05606C10.4469 8.05454 10.4455 8.05288 10.4455 8.04916M10.4455 8.04916V8.05067M10.4455 8.04916C10.4382 8.04916 10.4305 8.04752 10.4232 8.04421C10.4218 8.04268 10.4191 8.04268 10.4173 8.03939C10.4145 8.03451 10.4109 8.0303 10.4068 8.02698C10.4027 8.0238 10.3963 8.02546 10.3918 8.02217C10.3904 8.02048 10.389 8.019 10.3877 8.019C10.3772 8.01197 10.3667 8.00492 10.3622 7.99253C10.3608 7.98234 10.3594 7.97325 10.3608 7.96249C10.3622 7.95546 10.3649 7.95008 10.3667 7.94305C10.3694 7.9344 10.3726 7.92528 10.3772 7.91674C10.3799 7.9064 10.3845 7.89897 10.389 7.88821C10.3904 7.88326 10.3918 7.87955 10.395 7.87583C10.3963 7.87102 10.3977 7.86715 10.4009 7.86342C10.4023 7.85861 10.4116 7.84722 10.4144 7.84183", stroke: "black", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.5988 6.73242C9.59168 6.89469 9.5948 6.94184 9.5948 7.10017C9.59345 7.13929 9.62321 7.29342 9.65761 7.36387L9.79715 7.08834H9.79659C9.78475 7.06518 9.77427 6.99523 9.77109 6.98284C9.76519 6.9459 9.76519 6.92569 9.76698 6.86402L9.5988 6.73242Z", fill: "white" }), jsx("path", { d: "M9.79663 7.08836C9.78476 7.0652 9.77428 6.99523 9.77111 6.98284C9.76518 6.9457 9.76518 6.9258 9.76699 6.86334L9.86995 6.94195L9.79752 7.08836", fill: "#004BB3" }), jsx("path", { d: "M9.87998 6.92362L9.39348 6.54791L9.38483 6.5619L9.86996 6.94301L9.88044 6.92363", fill: "#FFCC00" }), jsx("path", { d: "M9.87998 6.92362L9.39348 6.54791L9.38483 6.5619L9.86996 6.94301L9.88044 6.92363L9.87998 6.92362Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.50419 7.66688C9.49372 7.65834 9.47412 7.6352 9.4682 7.6137C9.455 7.57279 9.45774 7.57429 9.44864 7.528C9.44453 7.50168 9.44453 7.4726 9.43816 7.44569C9.4354 7.41932 9.40216 7.33158 9.40033 7.29713C9.3976 7.18302 9.36573 7.10553 9.37346 6.98225C9.37936 6.8859 9.3976 6.75509 9.38851 6.65446C9.38576 6.62807 9.38987 6.5974 9.38987 6.56885L9.59892 6.72982C9.59165 6.89451 9.59485 6.94081 9.59485 7.10013C9.59349 7.13944 9.62355 7.29498 9.65816 7.36497L9.50513 7.66743", fill: "#004BB3" }), jsx("path", { d: "M9.65536 7.36389L9.50229 7.66636C9.49049 7.6578 9.47225 7.63465 9.46452 7.61315C9.45403 7.57224 9.45586 7.57224 9.44674 7.52759C9.44265 7.50114 9.44265 7.47208 9.43809 7.44516C9.43219 7.4188 9.40027 7.33105 9.3989 7.29661M9.39801 7.29608C9.39937 7.33 9.43125 7.41557 9.43718 7.44249C9.44126 7.46886 9.44126 7.49791 9.44583 7.52483C9.4545 7.56948 9.45311 7.5674 9.46541 7.61041C9.47133 7.62982 9.49093 7.65506 9.50184 7.66208L9.65492 7.36336", stroke: "#00004B", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39801 7.29608C9.39937 7.33 9.43125 7.41394 9.43581 7.44089M9.43581 7.44089C9.44171 7.46725 9.44171 7.4963 9.44766 7.52317C9.45631 7.56574 9.45356 7.56574 9.46541 7.60875C9.47133 7.62819 9.49093 7.65133 9.50184 7.66042C9.50184 7.66042 9.65308 7.36497 9.65492 7.36336C9.65308 7.36497 9.50323 7.65671 9.50184 7.65506C9.49093 7.64762 9.47133 7.62446 9.46541 7.60504C9.45356 7.56203 9.45631 7.56356 9.44766 7.5211C9.44171 7.49416 9.44171 7.46561 9.43581 7.44089Z", stroke: "#00004F", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.65492 7.36336C9.65308 7.36553 9.5046 7.65354 9.50184 7.65354C9.49093 7.6443 9.47133 7.62116 9.46541 7.60187C9.45356 7.56038 9.45631 7.56038 9.44766 7.51781C9.44171 7.49255 9.44171 7.46562 9.43581 7.43925C9.43125 7.41233 9.39937 7.32783 9.39801 7.29608C9.39937 7.32783 9.43125 7.41019 9.43581 7.43711C9.44171 7.46188 9.44171 7.49038 9.44766 7.51574C9.45631 7.55817 9.45356 7.55817 9.46724 7.598C9.47315 7.61743 9.49138 7.64058 9.50323 7.64967C9.5046 7.64967 9.65172 7.36497 9.65447 7.36336", stroke: "#000051", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39803 7.2961C9.39939 7.32785 9.42944 7.4086 9.43583 7.43552C9.44173 7.46027 9.44173 7.48879 9.44768 7.5141C9.45633 7.55503 9.45358 7.55503 9.46726 7.59651C9.47316 7.6158 9.4914 7.6373 9.50325 7.64653C9.50461 7.64817 9.65174 7.36555 9.65449 7.36391M9.39801 7.29608C9.39939 7.32783 9.42944 7.4086 9.43583 7.4339C9.44173 7.46027 9.44173 7.48718 9.44768 7.51249C9.45633 7.55338 9.45496 7.55338 9.46726 7.59265C9.47316 7.61207 9.4914 7.63523 9.50325 7.64269C9.50598 7.64432 9.64991 7.36555 9.65449 7.36338", stroke: "#000053", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39803 7.29608C9.39939 7.32783 9.42944 7.40697 9.43583 7.43388C9.44173 7.45863 9.44173 7.48555 9.44768 7.51086C9.45633 7.55018 9.45496 7.55018 9.46726 7.59095C9.47316 7.60875 9.49277 7.6304 9.50325 7.63894C9.50598 7.64058 9.64991 7.36497 9.65449 7.36336C9.64991 7.36497 9.50598 7.63672 9.50325 7.63521C9.49277 7.62819 9.47316 7.60504 9.46726 7.58725C9.45496 7.54799 9.45633 7.54799 9.44768 7.50869C9.44173 7.48338 9.44173 7.45647 9.43583 7.43011M9.39801 7.29608C9.39939 7.32622 9.42944 7.40533 9.43583 7.43011M9.43583 7.43011C9.44173 7.45486 9.44173 7.48014 9.44768 7.50491C9.45633 7.54578 9.45496 7.54578 9.46726 7.58354C9.47316 7.60283 9.49277 7.62446 9.50325 7.63134C9.50734 7.63302 9.64855 7.36497 9.65449 7.3628", stroke: "#000056", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39803 7.29608C9.39939 7.32622 9.42944 7.40319 9.43583 7.4285C9.44173 7.45325 9.44173 7.48016 9.44768 7.5033C9.45633 7.54261 9.45633 7.54261 9.46726 7.58022C9.47316 7.59965 9.49277 7.62116 9.50325 7.62819C9.50734 7.62982 9.64855 7.36497 9.65449 7.36336M9.39801 7.29608C9.39939 7.32622 9.42944 7.40158 9.43583 7.42633C9.44173 7.4511 9.44173 7.478 9.44768 7.49952C9.45633 7.54041 9.45633 7.54041 9.46862 7.57818C9.47453 7.59593 9.49277 7.61743 9.50323 7.62446C9.50917 7.62763 9.64857 7.3666 9.65447 7.36336", stroke: "#000058", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.65445 7.36336C9.64717 7.36711 9.50915 7.62446 9.50321 7.6228C9.49275 7.61412 9.47451 7.59263 9.4686 7.57486C9.45631 7.53725 9.45631 7.53725 9.44766 7.49791C9.44171 7.47425 9.44171 7.4495 9.43581 7.42633C9.42942 7.40158 9.39937 7.32622 9.39801 7.29608C9.39937 7.32461 9.42805 7.39997 9.43581 7.42472C9.44171 7.44786 9.44171 7.47316 9.44766 7.4963C9.45631 7.53558 9.45631 7.53558 9.4686 7.57335C9.47451 7.59097 9.49275 7.61038 9.50321 7.6195C9.50915 7.62116 9.64717 7.36714 9.65445 7.36389", stroke: "#00005C", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39801 7.29608C9.39937 7.32461 9.42805 7.39782 9.43581 7.42311C9.44171 7.44625 9.4431 7.471 9.44766 7.49469C9.45631 7.53392 9.45631 7.53392 9.4686 7.5695C9.47451 7.58725 9.49275 7.60875 9.50321 7.61577C9.51052 7.61743 9.64717 7.36714 9.65445 7.36336M9.39801 7.29608C9.39937 7.32245 9.42805 7.39619 9.43581 7.42094C9.44171 7.44572 9.4431 7.46886 9.44766 7.49254C9.45631 7.52966 9.45631 7.52966 9.4686 7.56577C9.47451 7.58354 9.49275 7.60502 9.50321 7.61204C9.51052 7.61522 9.64717 7.36714 9.65445 7.36336", stroke: "#00005E", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39801 7.29449C9.39937 7.32302 9.42805 7.39622 9.43581 7.4215C9.44171 7.44252 9.4431 7.46779 9.44766 7.49094C9.45631 7.52803 9.45631 7.52803 9.4686 7.56246C9.47451 7.58027 9.49275 7.59968 9.50321 7.60878C9.51052 7.61207 9.64535 7.36716 9.65445 7.36391M9.39801 7.29449C9.39937 7.32302 9.42624 7.39461 9.43581 7.41774M9.39801 7.29449C9.39937 7.32302 9.42624 7.39299 9.43581 7.41774M9.43581 7.41774C9.44171 7.4409 9.4431 7.46563 9.44766 7.48718C9.45812 7.5243 9.45812 7.5243 9.4686 7.5604C9.47451 7.5782 9.49275 7.59747 9.50321 7.60505C9.51188 7.60822 9.64399 7.36715 9.65445 7.36338M9.43581 7.41774C9.4399 7.4409 9.4431 7.46402 9.44903 7.48557C9.45812 7.52264 9.45812 7.52264 9.46998 7.55874C9.47589 7.57433 9.4923 7.59429 9.50323 7.60132C9.51371 7.60449 9.64399 7.36716 9.65447 7.36338", stroke: "#000060", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39803 7.29449C9.39939 7.32302 9.42626 7.39082 9.43583 7.41614C9.43992 7.43927 9.44312 7.46241 9.44904 7.48396C9.45814 7.52112 9.45814 7.52112 9.47 7.55559C9.47591 7.57115 9.49413 7.591 9.50325 7.59802C9.51373 7.60134 9.644 7.36716 9.65449 7.36391M9.39801 7.29449C9.39939 7.32086 9.42626 7.39082 9.43583 7.41397C9.43992 7.43713 9.44312 7.46027 9.44904 7.48179C9.45814 7.51727 9.45814 7.51727 9.47 7.55117C9.47591 7.56687 9.49413 7.58671 9.50461 7.59596C9.51326 7.59747 9.644 7.36716 9.65446 7.36338", stroke: "#000062", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39801 7.29449C9.39937 7.32086 9.42624 7.38922 9.43581 7.41397C9.4399 7.43497 9.4431 7.45865 9.44903 7.48018C9.45812 7.51576 9.45812 7.51576 9.46998 7.54801C9.47726 7.56579 9.49411 7.58357 9.5046 7.59059C9.51507 7.59539 9.6426 7.36877 9.65445 7.36338M9.39801 7.29449C9.39937 7.32086 9.42625 7.38922 9.43581 7.41235C9.4399 7.43336 9.4431 7.45702 9.44903 7.47857C9.45812 7.51249 9.45812 7.51249 9.47133 7.54635C9.47725 7.56247 9.49366 7.58027 9.5046 7.58727C9.51507 7.59208 9.6426 7.36877 9.65445 7.36338", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.65445 7.36338C9.6426 7.36877 9.51507 7.58837 9.5046 7.58508C9.49366 7.57818 9.47725 7.55819 9.47133 7.54263C9.45812 7.51033 9.45812 7.51033 9.44903 7.47479C9.4431 7.45541 9.4399 7.43174 9.43581 7.41075C9.42624 7.38758 9.39937 7.32086 9.39801 7.29449C9.39937 7.32086 9.42625 7.38543 9.43581 7.40861C9.4399 7.43013 9.4431 7.45327 9.44903 7.47318C9.45812 7.50655 9.45949 7.50871 9.47133 7.54097C9.47725 7.55504 9.49366 7.57488 9.5046 7.5819C9.51644 7.58508 9.64077 7.36877 9.65445 7.36339", stroke: "#000268", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39801 7.29449C9.39937 7.31925 9.42489 7.38383 9.43581 7.40861C9.4399 7.42797 9.4431 7.44949 9.44903 7.47102C9.45812 7.50494 9.45949 7.50494 9.47133 7.53726C9.47725 7.55283 9.49366 7.57115 9.5046 7.57818C9.51644 7.58298 9.63943 7.36877 9.65445 7.36338M9.39801 7.29449C9.39937 7.31925 9.42488 7.38383 9.43581 7.40538M9.39801 7.29449C9.39937 7.31925 9.42489 7.38222 9.43581 7.40538M9.43581 7.40538C9.4399 7.42636 9.4431 7.44788 9.45083 7.4694C9.45812 7.50116 9.45949 7.50333 9.4718 7.53339C9.4777 7.5491 9.49411 7.56742 9.50506 7.57433C9.51689 7.57928 9.63987 7.36877 9.65491 7.36339M9.43581 7.40538C9.4399 7.42636 9.4431 7.44627 9.45083 7.46618C9.45812 7.5001 9.46132 7.5001 9.4718 7.53024C9.4777 7.5458 9.49411 7.56413 9.50506 7.57115C9.51825 7.57433 9.63987 7.37091 9.65491 7.36338", stroke: "#00056B", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39801 7.29449C9.39937 7.31763 9.42489 7.38005 9.43581 7.40374C9.4399 7.42313 9.4431 7.44627 9.45083 7.46457C9.45812 7.49633 9.46132 7.49849 9.4718 7.52856C9.47909 7.54263 9.49411 7.5604 9.50506 7.56786C9.51825 7.57281 9.63987 7.3709 9.65491 7.36391M9.39801 7.29449C9.39937 7.31763 9.42489 7.37844 9.43581 7.40161C9.4399 7.42097 9.4431 7.44249 9.45083 7.46241C9.45812 7.49416 9.46132 7.49633 9.4718 7.52485C9.47909 7.54042 9.49411 7.55876 9.50506 7.56413C9.52009 7.56894 9.63852 7.37091 9.65491 7.36391", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.65445 7.36285C9.63806 7.37038 9.51964 7.56466 9.5046 7.55985C9.49413 7.55449 9.47907 7.53671 9.47316 7.52264C9.46132 7.49202 9.45812 7.4904 9.45083 7.46027C9.44446 7.4409 9.4399 7.42097 9.43581 7.40161C9.42489 7.37844 9.39937 7.31763 9.39801 7.29449C9.39937 7.31763 9.42488 7.37683 9.43398 7.39999C9.4399 7.41774 9.44446 7.43927 9.45039 7.45865C9.45767 7.48879 9.46085 7.49041 9.4727 7.51949C9.47862 7.53339 9.49366 7.54964 9.50413 7.55875C9.51917 7.56206 9.63759 7.37089 9.654 7.36391", stroke: "#00096F", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39943 7.29449C9.39943 7.31763 9.42355 7.37683 9.43403 7.39838C9.43996 7.41774 9.44451 7.43766 9.45044 7.45541C9.45773 7.48557 9.4609 7.48716 9.47275 7.51617C9.47867 7.53024 9.49508 7.54801 9.50418 7.55338C9.52058 7.5604 9.63584 7.37091 9.65406 7.36391M9.39941 7.29449C9.39941 7.31547 9.42355 7.37469 9.43403 7.39621C9.43996 7.4156 9.44451 7.43552 9.45044 7.45327C9.45909 7.4834 9.4609 7.48502 9.47275 7.51412C9.47867 7.52803 9.49508 7.54428 9.50418 7.54965C9.52058 7.55656 9.63584 7.3709 9.65406 7.36338", stroke: "#000B73", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39943 7.29449C9.39943 7.31547 9.42355 7.37307 9.43403 7.39461C9.43996 7.41397 9.44451 7.4339 9.45044 7.45166C9.45909 7.48179 9.4609 7.4834 9.47275 7.51088C9.47867 7.52485 9.49508 7.54096 9.50418 7.54801C9.52058 7.55282 9.63584 7.37091 9.65406 7.36391M9.39941 7.29449C9.39941 7.31547 9.42355 7.37146 9.43403 7.39299M9.43403 7.39299C9.43996 7.41236 9.44451 7.43229 9.45044 7.45004C9.45909 7.47857 9.46229 7.48018 9.47275 7.50871C9.48004 7.52112 9.49508 7.53726 9.50418 7.54428C9.52195 7.54909 9.63445 7.37091 9.65406 7.36341M9.43403 7.39299C9.43996 7.41074 9.44451 7.43013 9.45044 7.44841C9.45909 7.47696 9.46229 7.47857 9.47275 7.50549C9.48004 7.51783 9.49508 7.53394 9.50601 7.54096C9.52378 7.54801 9.63445 7.37091 9.65451 7.36393", stroke: "#000F75", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.65449 7.36391C9.63308 7.37254 9.52377 7.54207 9.506 7.53726C9.49554 7.53024 9.48047 7.51576 9.47457 7.50171C9.46228 7.47479 9.45908 7.47264 9.45043 7.44627C9.4445 7.42797 9.43994 7.4086 9.43402 7.39082C9.42354 7.3693 9.39941 7.31547 9.39941 7.29449C9.39941 7.31386 9.42354 7.36768 9.43402 7.38922C9.43994 7.40699 9.4445 7.42636 9.45043 7.44252C9.45908 7.47102 9.46228 7.47263 9.47457 7.49955C9.48185 7.51194 9.49554 7.52803 9.506 7.53339C9.52377 7.54042 9.63308 7.37254 9.65449 7.36339", stroke: "#001178", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.65449 7.36391C9.63308 7.37307 9.52558 7.53726 9.506 7.53024C9.49554 7.52485 9.48185 7.50871 9.47457 7.49633C9.46228 7.47102 9.45908 7.46727 9.45043 7.4409C9.4445 7.42313 9.43994 7.40482 9.43402 7.38922C9.42354 7.36607 9.39941 7.31386 9.39941 7.29449C9.39941 7.31386 9.42173 7.36607 9.43402 7.38543C9.43994 7.40321 9.4445 7.42258 9.45043 7.43874C9.45908 7.46511 9.46228 7.46727 9.47457 7.49204C9.48185 7.5044 9.49554 7.5206 9.506 7.52596C9.52558 7.53298 9.63172 7.37202 9.65449 7.36338", stroke: "#001379", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.65449 7.36283C9.63172 7.37202 9.52558 7.52913 9.506 7.52211C9.49554 7.51672 9.48185 7.50279 9.47457 7.4904C9.46228 7.46563 9.45908 7.4619 9.45043 7.43713C9.4445 7.42097 9.43994 7.40107 9.43402 7.38543C9.42173 7.36391 9.39941 7.31386 9.39941 7.29449C9.39941 7.31225 9.42173 7.36391 9.43402 7.38383C9.43994 7.4016 9.4445 7.41774 9.45043 7.43552C9.46089 7.46027 9.46364 7.46188 9.47457 7.48718C9.48185 7.49955 9.49554 7.51355 9.506 7.52113C9.52696 7.52803 9.63172 7.37254 9.65449 7.36391", stroke: "#00167C", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.65451 7.36338C9.62991 7.37254 9.52698 7.5243 9.50601 7.51727C9.49555 7.51035 9.48187 7.49579 9.47458 7.48557C9.46365 7.46027 9.4609 7.45865 9.45044 7.4339C9.44451 7.41613 9.43996 7.39785 9.43403 7.38222C9.42174 7.3623 9.39943 7.31225 9.39943 7.29449C9.39943 7.31225 9.42037 7.36068 9.43403 7.38005M9.43403 7.38005C9.43996 7.39785 9.44451 7.41397 9.4518 7.43013C9.46045 7.45488 9.46365 7.45865 9.47412 7.48179C9.4814 7.49204 9.49508 7.50816 9.50556 7.51194C9.52651 7.5206 9.62947 7.37254 9.65406 7.36338M9.43403 7.38005C9.42037 7.35852 9.39941 7.31008 9.39941 7.29449M9.43403 7.38005C9.43996 7.39568 9.44451 7.4118 9.4518 7.42797C9.46045 7.45274 9.46365 7.45435 9.47594 7.47802C9.48323 7.4904 9.49691 7.50279 9.50601 7.50979C9.52834 7.51672 9.62856 7.372 9.65451 7.36339", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.65449 7.36283C9.62854 7.372 9.52833 7.51467 9.506 7.50602C9.4969 7.49902 9.48322 7.48665 9.47593 7.47427C9.46364 7.45274 9.46044 7.44952 9.45179 7.42636C9.4445 7.41019 9.43994 7.39243 9.43402 7.37844C9.42036 7.35852 9.39941 7.31008 9.39941 7.29449C9.39941 7.31008 9.42036 7.35691 9.43402 7.37683C9.43994 7.39246 9.4445 7.40858 9.45179 7.42313C9.46044 7.44788 9.46364 7.44952 9.47593 7.47316C9.48322 7.4834 9.4969 7.49794 9.506 7.50332C9.53014 7.51033 9.62854 7.37468 9.65449 7.36391", stroke: "#001C82", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.65449 7.36444C9.62716 7.37522 9.53014 7.50871 9.506 7.5001C9.49688 7.49471 9.4832 7.48179 9.4773 7.47155C9.46364 7.44789 9.46044 7.44627 9.45179 7.42152C9.4445 7.40699 9.43994 7.39082 9.43402 7.37683C9.42036 7.3553 9.39941 7.31008 9.39941 7.29449C9.39941 7.31008 9.42036 7.35313 9.43402 7.37307C9.43994 7.38868 9.4445 7.40483 9.45179 7.41936C9.46044 7.44252 9.465 7.44574 9.4773 7.46727C9.4832 7.47749 9.49688 7.4904 9.506 7.49579C9.53014 7.5044 9.62716 7.37415 9.65449 7.36338", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39941 7.2923C9.39941 7.30844 9.42036 7.35311 9.43402 7.37305C9.43994 7.38703 9.4445 7.40319 9.45179 7.41771C9.46044 7.44088 9.465 7.44249 9.4773 7.46399C9.4832 7.47424 9.49688 7.48716 9.506 7.49255C9.53151 7.50116 9.62716 7.37466 9.65449 7.36388M9.39942 7.2923C9.39942 7.30844 9.42036 7.35149 9.43402 7.37088C9.43994 7.38488 9.4445 7.40102 9.45179 7.41557C9.46044 7.43655 9.465 7.44035 9.4773 7.46024C9.48458 7.4726 9.49688 7.48338 9.50736 7.48877C9.53151 7.49738 9.62534 7.37466 9.65404 7.36388", stroke: "#002086", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39943 7.2923C9.39943 7.30844 9.41901 7.35149 9.43403 7.36927C9.43996 7.38327 9.44451 7.39941 9.4518 7.41394C9.46045 7.43494 9.46683 7.43871 9.47731 7.45863C9.4846 7.46885 9.49828 7.47963 9.50737 7.48502C9.53152 7.49524 9.62536 7.37574 9.65406 7.36335C9.62536 7.37574 9.53288 7.49146 9.50737 7.48285C9.49828 7.47746 9.4846 7.46455 9.47731 7.45432C9.46683 7.43441 9.46045 7.43063 9.4518 7.40963C9.44451 7.39724 9.43996 7.38113 9.43403 7.36711M9.39941 7.2923C9.39941 7.30844 9.41902 7.34774 9.43403 7.36711M9.43403 7.36711C9.43996 7.37949 9.44451 7.39563 9.4518 7.40802C9.46045 7.42955 9.46683 7.43279 9.47731 7.45271C9.4846 7.46132 9.49828 7.47369 9.50737 7.47908C9.53425 7.48769 9.62536 7.37519 9.65406 7.3628", stroke: "#002289", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39943 7.2923C9.39943 7.3063 9.41901 7.34558 9.43403 7.36552C9.43996 7.37788 9.44451 7.39188 9.4518 7.40641C9.46045 7.4258 9.46683 7.42955 9.47731 7.44894C9.4846 7.45916 9.49828 7.46994 9.50737 7.47371C9.53425 7.48393 9.62401 7.37519 9.65406 7.36283M9.39941 7.2923C9.39941 7.3063 9.41902 7.34558 9.43403 7.36388C9.43996 7.37788 9.44451 7.39027 9.4518 7.40478C9.46045 7.42419 9.46683 7.42794 9.47867 7.44571C9.48459 7.45594 9.49828 7.46671 9.50737 7.47208C9.53425 7.4823 9.62218 7.37574 9.65406 7.3628", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39943 7.2923C9.39943 7.30469 9.41901 7.34397 9.43403 7.36388C9.43996 7.37627 9.44451 7.38866 9.4518 7.40319C9.46045 7.42255 9.46683 7.42633 9.47867 7.44249C9.48459 7.45271 9.49828 7.46347 9.50737 7.46885C9.53607 7.47907 9.62218 7.37574 9.65406 7.36335C9.62218 7.37574 9.53607 7.47369 9.50737 7.4651C9.49828 7.45971 9.48596 7.44894 9.47867 7.44032C9.46683 7.42202 9.46228 7.4188 9.4518 7.40102C9.44451 7.38866 9.43996 7.37252 9.43403 7.36013C9.41902 7.34235 9.39941 7.30469 9.39941 7.2923", stroke: "#00288F", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39943 7.2923C9.39943 7.30469 9.41718 7.34022 9.43403 7.36013C9.43996 7.37252 9.44451 7.38488 9.4518 7.39724C9.46228 7.41663 9.46819 7.42041 9.47867 7.43816C9.48596 7.44677 9.49828 7.45755 9.50874 7.46132C9.53561 7.47155 9.6208 7.37574 9.65406 7.3628M9.39941 7.2923C9.39941 7.30469 9.41718 7.34022 9.43403 7.35849C9.43996 7.37088 9.44451 7.38327 9.4518 7.39563C9.46228 7.41341 9.46819 7.41663 9.47867 7.43494C9.48596 7.44355 9.49828 7.45271 9.50874 7.4581C9.53744 7.46832 9.6208 7.37574 9.65406 7.36335", stroke: "#002B91", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39941 7.2923C9.39941 7.30469 9.41717 7.3386 9.43266 7.35635C9.43994 7.36874 9.44587 7.38113 9.45362 7.39349C9.46228 7.41124 9.46864 7.41449 9.47913 7.43063C9.48642 7.43924 9.49871 7.44839 9.50919 7.45377C9.5379 7.46399 9.62123 7.37519 9.65449 7.36066M9.65449 7.36119C9.62123 7.37521 9.5379 7.46078 9.50919 7.45218C9.49871 7.44677 9.48778 7.43763 9.47913 7.42741C9.46864 7.41341 9.46228 7.40802 9.45362 7.39027C9.44587 7.37949 9.43994 7.36713 9.43266 7.35474C9.41717 7.3386 9.39942 7.30252 9.39942 7.2923C9.39942 7.30252 9.4158 7.33483 9.43266 7.35311C9.43994 7.36552 9.44587 7.37788 9.45362 7.38866C9.46228 7.40641 9.46864 7.40963 9.4805 7.4258C9.48778 7.43441 9.49826 7.44355 9.50873 7.44678C9.53879 7.45916 9.61942 7.37736 9.65404 7.36119", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39943 7.2923C9.39943 7.30252 9.41582 7.33483 9.43267 7.35311C9.43996 7.36335 9.44588 7.37627 9.45363 7.38703C9.46229 7.40266 9.46866 7.40802 9.48051 7.42255C9.48779 7.43116 9.49828 7.44035 9.50874 7.44571C9.5388 7.45594 9.61762 7.37788 9.65406 7.36174M9.39941 7.2923C9.39941 7.30252 9.41581 7.33319 9.43267 7.35149C9.43996 7.36174 9.44588 7.37466 9.45363 7.38488C9.46229 7.40049 9.46866 7.40424 9.48051 7.42041C9.48779 7.42739 9.50009 7.43602 9.50874 7.44141C9.54017 7.45163 9.61762 7.37735 9.65406 7.36119", stroke: "#002F96", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39943 7.2923C9.39943 7.30252 9.41582 7.33319 9.43267 7.34935C9.43996 7.36013 9.44588 7.37252 9.45363 7.38327C9.46229 7.39724 9.47002 7.40263 9.48051 7.41719C9.48779 7.4258 9.50009 7.4328 9.50874 7.43817C9.54017 7.44839 9.61762 7.37735 9.65406 7.36119M9.39941 7.2923C9.39941 7.30091 9.41581 7.3316 9.43267 7.34774C9.43996 7.35797 9.44588 7.37088 9.45363 7.3795C9.46229 7.3951 9.47002 7.40049 9.48233 7.41341C9.48824 7.42202 9.50009 7.42902 9.50921 7.43441C9.54245 7.44677 9.6167 7.37735 9.6545 7.36119", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39941 7.2923C9.39941 7.30091 9.4158 7.32945 9.43266 7.34774C9.43994 7.35797 9.44587 7.36713 9.45362 7.37788C9.46228 7.39188 9.47001 7.39724 9.48232 7.40963C9.4896 7.41824 9.50008 7.42741 9.5092 7.43063C9.54244 7.44088 9.61669 7.37735 9.65449 7.36119M9.39941 7.2923C9.39941 7.30091 9.4158 7.32783 9.43266 7.34558C9.43994 7.35421 9.44587 7.36497 9.45362 7.37574C9.46228 7.38974 9.47001 7.3951 9.48232 7.40749C9.4896 7.41447 9.50008 7.42312 9.5092 7.42688C9.54244 7.43924 9.61669 7.3768 9.65449 7.36066", stroke: "#00359C", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39941 7.2923C9.39941 7.30091 9.4158 7.32783 9.43266 7.34397C9.43994 7.35258 9.44587 7.36552 9.45362 7.37413C9.46228 7.38811 9.47137 7.39188 9.48232 7.40424C9.4896 7.41285 9.50008 7.41988 9.5092 7.42363C9.5438 7.43602 9.61669 7.37735 9.65449 7.36119C9.61488 7.37735 9.54563 7.42902 9.5092 7.41663C9.4995 7.41244 9.49043 7.40645 9.48232 7.39888C9.47137 7.38596 9.46228 7.38273 9.45362 7.37035C9.44587 7.35958 9.43856 7.35097 9.43266 7.34022C9.41444 7.32622 9.39941 7.29928 9.39941 7.2923C9.39941 7.30091 9.41444 7.32622 9.43266 7.34235C9.43994 7.35258 9.44587 7.36335 9.45362 7.37252C9.46228 7.38488 9.47137 7.39027 9.48232 7.40263C9.4896 7.40963 9.50008 7.41663 9.5092 7.42041C9.5438 7.43279 9.61488 7.37788 9.65449 7.36172", stroke: "#00389E", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39941 7.2923C9.39941 7.29928 9.41444 7.32244 9.43266 7.34022C9.43856 7.34883 9.44587 7.35797 9.45362 7.36658C9.46228 7.37896 9.47137 7.38435 9.48232 7.3951C9.4896 7.4021 9.50008 7.4091 9.5092 7.41449C9.54563 7.42688 9.61488 7.37896 9.65449 7.36119C9.6135 7.37896 9.54563 7.4231 9.5092 7.4091C9.50008 7.40696 9.4896 7.39996 9.48232 7.39135C9.47137 7.38274 9.46409 7.37735 9.45362 7.36497C9.44587 7.35635 9.43856 7.34722 9.43266 7.3386C9.41444 7.32244 9.39941 7.29713 9.39941 7.2923", stroke: "#0039A0", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39941 7.2923C9.39941 7.29713 9.41444 7.32083 9.43266 7.33699C9.43856 7.34558 9.44587 7.35474 9.45362 7.36336C9.46409 7.37574 9.47137 7.37896 9.48369 7.38974C9.49098 7.39672 9.50008 7.4021 9.51056 7.40749C9.54655 7.41988 9.6135 7.37896 9.65449 7.36119M9.39942 7.2923C9.39942 7.29713 9.41444 7.32083 9.43083 7.33483L9.45315 7.3612C9.46363 7.37197 9.47092 7.37683 9.48322 7.38758C9.49051 7.39241 9.49963 7.39996 9.51009 7.40319C9.54608 7.41557 9.61122 7.37842 9.65404 7.36066", stroke: "#003CA2", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39943 7.2923C9.39943 7.29713 9.41445 7.31867 9.43084 7.33483C9.43814 7.34181 9.44588 7.35097 9.45317 7.3596C9.46364 7.3698 9.47275 7.37358 9.48323 7.38435C9.49052 7.38919 9.49964 7.39672 9.5101 7.39996C9.54609 7.41394 9.61123 7.37896 9.65406 7.36066M9.39941 7.2923C9.39941 7.29713 9.41445 7.31707 9.43084 7.33319C9.43814 7.34022 9.44588 7.34883 9.455 7.35797C9.46365 7.36658 9.47275 7.37197 9.4837 7.38113C9.49099 7.3881 9.50146 7.39349 9.51057 7.39672C9.54837 7.4091 9.6117 7.37896 9.65451 7.36119", stroke: "#003EA6", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39941 7.2923C9.39941 7.29552 9.41307 7.31544 9.43083 7.3316C9.43813 7.33858 9.44587 7.34722 9.45499 7.35474C9.46364 7.36497 9.47274 7.37035 9.48369 7.37788C9.49192 7.38468 9.50098 7.38995 9.51056 7.39349C9.54836 7.40749 9.6103 7.37949 9.65449 7.36174M9.39942 7.2923C9.39942 7.29552 9.41307 7.31544 9.43083 7.32944C9.43813 7.33805 9.44587 7.34505 9.45499 7.35258C9.46364 7.36119 9.47274 7.36658 9.48369 7.37574C9.49234 7.38058 9.50144 7.38596 9.51056 7.38974C9.54836 7.40371 9.6103 7.37949 9.65449 7.36119C9.6103 7.37896 9.54974 7.39996 9.51056 7.38758C9.50144 7.38219 9.49234 7.3768 9.48369 7.37197C9.47274 7.36497 9.46364 7.35958 9.45499 7.35097C9.44587 7.34183 9.43813 7.33481 9.43083 7.32783C9.41307 7.3133 9.39942 7.29552 9.39942 7.2923Z", stroke: "#0042A8", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39941 7.2923C9.39941 7.29552 9.41307 7.31169 9.43083 7.32783C9.43813 7.33267 9.44587 7.34021 9.45499 7.34722C9.46364 7.35744 9.47274 7.36119 9.48505 7.37035C9.49234 7.37519 9.50144 7.37896 9.51056 7.38274C9.55111 7.39672 9.60896 7.37949 9.65449 7.36174M9.39942 7.2923C9.39942 7.29552 9.41307 7.31006 9.43083 7.32622C9.43813 7.33319 9.44587 7.34022 9.45499 7.34558C9.46364 7.35421 9.47274 7.35958 9.48505 7.36658C9.49234 7.37144 9.50144 7.3768 9.51056 7.37896C9.55111 7.39458 9.60896 7.37896 9.65449 7.36119", stroke: "#0045AB", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39941 7.2923C9.39941 7.2923 9.41307 7.31006 9.43083 7.32406C9.43813 7.32891 9.44587 7.33805 9.45499 7.34344C9.46364 7.35205 9.47457 7.35744 9.48505 7.3628C9.49234 7.36766 9.50281 7.37144 9.51056 7.3768C9.55111 7.3908 9.60712 7.38003 9.65449 7.36119C9.60712 7.38058 9.5529 7.38758 9.51056 7.37357C9.50281 7.3698 9.4937 7.36444 9.48505 7.36119C9.47457 7.35421 9.46364 7.3488 9.45499 7.34183C9.44587 7.33482 9.43813 7.32944 9.43083 7.32244C9.41307 7.30844 9.39942 7.29391 9.39942 7.2923", stroke: "#0046AD", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39941 7.2923C9.39941 7.29391 9.41126 7.30844 9.43083 7.32244C9.43914 7.32786 9.44721 7.33379 9.45499 7.34021C9.46364 7.34719 9.47457 7.35258 9.48505 7.35797C9.4937 7.3628 9.50281 7.36658 9.51056 7.37035C9.5529 7.38435 9.60712 7.38058 9.65449 7.36174M9.39942 7.2923C9.39942 7.2923 9.41126 7.30469 9.43083 7.32083C9.43813 7.32567 9.44587 7.33105 9.45635 7.3386C9.46364 7.34341 9.4741 7.34883 9.48458 7.35421C9.49326 7.35902 9.50236 7.36281 9.51009 7.36658C9.55247 7.38221 9.60529 7.38058 9.65404 7.36174", stroke: "#0049AF", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39943 7.2923C9.39943 7.2923 9.41127 7.30469 9.43084 7.31867C9.43814 7.32352 9.44588 7.32891 9.45636 7.3343C9.46365 7.34127 9.47411 7.34666 9.48459 7.35205C9.49327 7.35527 9.50237 7.35903 9.5101 7.36227C9.55385 7.37627 9.6053 7.38003 9.65406 7.36066M9.39941 7.2923C9.39941 7.2923 9.53107 7.41394 9.65542 7.36174", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39349 6.81219C9.39349 6.81219 9.419 7.00758 9.42946 7.03613C9.43675 7.06085 9.49006 7.17174 9.56886 7.19704", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39349 6.81219C9.39349 6.81219 9.42037 7.00541 9.4313 7.03233C9.43995 7.0571 9.4887 7.16477 9.57067 7.19704", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39484 6.81055C9.39484 6.81055 9.42354 7.00218 9.434 7.03232C9.44128 7.05709 9.48821 7.15775 9.57019 7.19703", stroke: "#000B73", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39484 6.81055C9.39484 6.81055 9.42488 7.00218 9.43536 7.0307C9.44403 7.05548 9.48503 7.1502 9.57019 7.19542", stroke: "#001379", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39484 6.81055C9.39484 6.81055 9.42626 7.00002 9.43717 7.02695C9.44768 7.05332 9.48548 7.1432 9.57019 7.19489", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39484 6.81055C9.39484 6.81055 9.42807 6.9984 9.43992 7.02695C9.44859 7.0517 9.48367 7.13406 9.57019 7.19489", stroke: "#002086", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39484 6.81055C9.39484 6.81055 9.42944 6.9968 9.44175 7.02534C9.45222 7.05009 9.48228 7.12706 9.57019 7.19328", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39624 6.81055C9.39624 6.81055 9.43085 6.99465 9.44316 7.0237C9.45362 7.05009 9.48232 7.12007 9.57024 7.19381", stroke: "#002B91", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39624 6.81055C9.39624 6.81055 9.43404 6.99304 9.44452 7.02156C9.45637 7.04793 9.48095 7.11251 9.57162 7.19328", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39801 6.80896C9.39801 6.80896 9.43581 6.99306 9.44766 7.01998C9.45812 7.04634 9.47909 7.10392 9.57156 7.19331", stroke: "#00389E", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39801 6.80896C9.39801 6.80896 9.43718 6.98984 9.44903 7.01834C9.46085 7.04473 9.47773 7.09695 9.57156 7.19167", stroke: "#003EA6", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39801 6.80896C9.39801 6.80896 9.44035 6.98984 9.45084 7.01673C9.46268 7.04312 9.4777 7.08995 9.57337 7.19006", stroke: "#0046AD", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.39801 6.80682C9.39801 6.80682 9.44173 6.98768 9.45219 7.01407C9.46405 7.04043 9.47636 7.08189 9.57291 7.18954", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40393 6.6922C9.40393 6.6922 9.42486 6.96778 9.59159 7.04314", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40393 6.6922C9.40529 6.6922 9.41439 6.77993 9.44765 6.86551C9.47316 6.9317 9.51733 7.00653 9.59157 7.04259", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40533 6.6922C9.40533 6.6922 9.4158 6.78154 9.44906 6.86551C9.4732 6.92419 9.51737 7.00333 9.59118 7.04259", stroke: "#000B73", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40533 6.6922C9.40533 6.69382 9.41854 6.78529 9.45043 6.86226C9.47456 6.91934 9.51692 7.00008 9.59118 7.04098", stroke: "#001379", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40533 6.6922C9.40533 6.69382 9.42036 6.78693 9.4536 6.86226C9.47456 6.91395 9.51692 6.99792 9.59118 7.03937", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40533 6.6922C9.4067 6.69543 9.42309 6.7907 9.45498 6.86012C9.47456 6.90642 9.51829 6.99417 9.59116 7.03884", stroke: "#002086", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.4071 6.6922C9.4071 6.69543 9.42669 6.79231 9.45722 6.85851C9.47497 6.90156 9.51916 6.99092 9.59204 7.03939", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.4071 6.69049C9.40847 6.69535 9.42942 6.79437 9.45859 6.85682C9.47497 6.89395 9.51916 6.98709 9.59159 7.0377", stroke: "#002B91", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.4071 6.69049C9.40847 6.69535 9.43125 6.79762 9.46178 6.85521C9.4768 6.89073 9.51916 6.98548 9.59205 7.03767", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40851 6.69049C9.40851 6.69748 9.43402 6.79976 9.46272 6.85521C9.47595 6.88373 9.51829 6.98223 9.59116 7.03767", stroke: "#00389E", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40851 6.69049C9.40988 6.69748 9.43721 6.80137 9.46408 6.85357C9.47731 6.87834 9.51829 6.97848 9.59118 7.03606", stroke: "#003EA6", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40851 6.69049C9.40988 6.69748 9.43995 6.80462 9.46728 6.85143C9.47776 6.87082 9.51874 6.9747 9.59118 7.03551", stroke: "#0046AD", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40851 6.69049C9.40988 6.69748 9.44177 6.80676 9.46911 6.84982C9.47776 6.86545 9.51874 6.97309 9.59163 7.03607", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40533 6.61517C9.40533 6.61517 9.4536 6.83692 9.59027 6.89075", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40533 6.61517C9.40533 6.61517 9.4249 6.69375 9.46864 6.76911C9.49734 6.82078 9.53968 6.87083 9.58982 6.89075", stroke: "#00056B", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40533 6.61517C9.40533 6.61517 9.4249 6.69214 9.46864 6.76694C9.50007 6.81861 9.5429 6.87244 9.58982 6.89022", stroke: "#00096F", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40533 6.61359C9.40533 6.61359 9.42631 6.69056 9.47184 6.76536C9.50326 6.81864 9.54744 6.87247 9.58982 6.89025", stroke: "#000F75", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.4071 6.61194C9.4071 6.61194 9.42669 6.68674 9.47361 6.76588C9.50506 6.81755 9.55243 6.87516 9.59022 6.89077", stroke: "#00167C", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.4071 6.61194C9.4071 6.61194 9.42808 6.68516 9.47497 6.76213C9.50823 6.81702 9.55515 6.87463 9.58978 6.88916", stroke: "#001C82", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.4071 6.61194C9.4071 6.61194 9.42942 6.68516 9.47497 6.76052C9.51096 6.81755 9.55971 6.87677 9.58978 6.88915", stroke: "#002086", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.4071 6.6098C9.4071 6.6098 9.42942 6.68299 9.47817 6.75835C9.51416 6.81541 9.56289 6.87785 9.59023 6.8886", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40851 6.6098C9.40851 6.6098 9.42948 6.67922 9.47958 6.75619C9.51601 6.81487 9.56749 6.87785 9.58982 6.88646", stroke: "#002B91", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40851 6.6098C9.40851 6.6098 9.43082 6.67763 9.48094 6.7546C9.51829 6.81326 9.57021 6.87944 9.58982 6.88699", stroke: "#002F96", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40851 6.60822C9.40851 6.60822 9.43082 6.67605 9.48277 6.75302C9.52057 6.81166 9.57522 6.88165 9.59025 6.88702", stroke: "#00359C", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40851 6.60822C9.40851 6.60822 9.43265 6.67441 9.48413 6.75302C9.5233 6.81166 9.57934 6.88165 9.58982 6.88702", stroke: "#003CA2", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40851 6.60822C9.40851 6.60822 9.43402 6.67224 9.4855 6.74922C9.52602 6.81166 9.5839 6.88326 9.58982 6.88704", stroke: "#0042A8", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40851 6.60657C9.40851 6.60657 9.43402 6.67062 9.48731 6.74758C9.52785 6.81003 9.58707 6.88542 9.59163 6.887", stroke: "#0046AD", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.40851 6.60437C9.40851 6.60437 9.43538 6.66683 9.48869 6.74542C9.53103 6.80947 9.59163 6.88483 9.59163 6.88483M9.76791 6.91819L9.86039 6.93757M9.77703 7.00055L9.86039 6.95966", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.76654 6.91986L9.85902 6.93705", stroke: "#0045AB", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.76654 6.92523L9.86038 6.93721", stroke: "#003CA2", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.76794 6.92902L9.86178 6.93734", stroke: "#00359C", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.76794 6.93219L9.86178 6.93893", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.76794 6.93756L9.86315 6.93913", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.76794 6.94134L9.86315 6.93976", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.76794 6.94501L9.86451 6.94031", stroke: "#00167C", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.76794 6.94816L9.86632 6.94141", stroke: "#000F75", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.76929 6.95184L9.86586 6.94196", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.77704 6.99521L9.86176 6.95807", stroke: "#0045AB", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.77521 6.99144L9.86131 6.95593", stroke: "#003CA2", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.77521 6.98814L9.86315 6.95422", stroke: "#00359C", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.7738 6.98184L9.8631 6.9527", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.7738 6.97815L9.86447 6.95056", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.7738 6.97438L9.86628 6.94885", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.77246 6.96916L9.8663 6.94885", stroke: "#00167C", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.77246 6.96388L9.86767 6.94513", stroke: "#000F75", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.77246 6.96076L9.86767 6.94513", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.77112 6.95703L9.8695 6.94354", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.50419 7.66688C9.49372 7.65834 9.47412 7.6352 9.4682 7.6137C9.455 7.57279 9.45774 7.57429 9.44864 7.528C9.44453 7.50168 9.44453 7.4726 9.43816 7.44569C9.4354 7.41932 9.40172 7.33158 9.40033 7.29713C9.3976 7.18302 9.36573 7.10553 9.37346 6.98225C9.37936 6.8859 9.3976 6.75509 9.38851 6.65446C9.38576 6.62807 9.38987 6.5974 9.38987 6.56885L9.86998 6.94456", stroke: "black", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.38572 6.54038C9.383 6.51938 9.38709 6.49027 9.40077 6.48713C9.40213 6.48713 9.41125 6.48381 9.41716 6.48544C9.42444 6.48544 9.42583 6.48864 9.43038 6.49623C9.43629 6.5156 9.41716 6.52799 9.40351 6.53338C9.3994 6.53499 9.39029 6.53661 9.38846 6.54199C9.38572 6.5506 9.38709 6.54685 9.38572 6.5506C9.38847 6.549 9.38847 6.54577 9.39165 6.54361C9.40213 6.53663 9.41262 6.53499 9.42764 6.52583C9.43948 6.52102 9.44087 6.49193 9.43356 6.48491C9.42489 6.47638 9.39757 6.47789 9.3912 6.48491C9.37797 6.50269 9.37616 6.52747 9.37936 6.55113C9.37936 6.54632 9.38664 6.54791 9.38526 6.54091", fill: "#FFCC00" }), jsx("path", { d: "M9.38572 6.54038C9.383 6.51938 9.38709 6.49027 9.40077 6.48713C9.40077 6.48713 9.41125 6.48381 9.41716 6.48544C9.42444 6.48544 9.42583 6.48864 9.43038 6.49623C9.43629 6.5156 9.41716 6.52799 9.40351 6.53338C9.3994 6.53499 9.39029 6.53661 9.38846 6.54199C9.38572 6.5506 9.38709 6.54685 9.38572 6.5506C9.38847 6.549 9.38847 6.54577 9.39165 6.54361C9.40213 6.53663 9.41262 6.53499 9.42764 6.52583C9.43948 6.52102 9.44087 6.49193 9.43356 6.48491C9.42489 6.47638 9.39757 6.47789 9.3912 6.48491C9.37797 6.50269 9.37616 6.52747 9.37936 6.55113C9.37936 6.54632 9.38664 6.54791 9.38526 6.54091L9.38572 6.54038Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.37794 6.55109C9.36018 6.55109 9.33557 6.5597 9.3342 6.57425C9.3342 6.57748 9.33284 6.58986 9.3342 6.59523C9.33557 6.60384 9.33831 6.60761 9.34468 6.60923C9.36245 6.61409 9.37019 6.58986 9.37339 6.57208C9.37339 6.56886 9.37339 6.55809 9.37748 6.55434C9.38477 6.55109 9.3834 6.5527 9.38477 6.55109C9.38299 6.55304 9.38159 6.55543 9.38067 6.55809C9.37658 6.57047 9.37658 6.58448 9.3702 6.60278C9.36746 6.61678 9.34469 6.62214 9.33695 6.61356C9.32828 6.6049 9.3251 6.57264 9.33105 6.56564C9.34424 6.54787 9.36565 6.54248 9.38523 6.54248C9.38251 6.54409 9.38251 6.5527 9.37794 6.55109Z", fill: "#FFCC00" }), jsx("path", { d: "M9.37794 6.55109C9.36018 6.55109 9.33557 6.5597 9.3342 6.57425C9.3342 6.57748 9.33284 6.58986 9.3342 6.59523C9.33557 6.60384 9.33831 6.60761 9.34468 6.60923C9.36245 6.61409 9.37019 6.58986 9.37339 6.57208C9.37339 6.56886 9.37339 6.55809 9.37748 6.55434C9.38477 6.55109 9.3834 6.5527 9.38477 6.55109C9.38299 6.55304 9.38159 6.55543 9.38067 6.55809C9.37658 6.57047 9.37658 6.58448 9.3702 6.60278C9.36746 6.61678 9.34469 6.62215 9.33695 6.61356C9.32828 6.6049 9.3251 6.57264 9.33105 6.56564C9.34424 6.54787 9.36565 6.54248 9.38523 6.54248C9.38251 6.54409 9.38251 6.5527 9.37794 6.55109Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.37344 6.54177C9.36935 6.54489 9.36935 6.55166 9.37208 6.55687C9.37344 6.56156 9.38118 6.56361 9.38392 6.55999C9.39122 6.55687 9.39575 6.54647 9.39122 6.53968C9.3871 6.53293 9.38073 6.53812 9.37344 6.54126", fill: "#FFCC00" }), jsx("path", { d: "M9.37344 6.54177C9.36935 6.54489 9.36935 6.55166 9.37208 6.55687C9.37344 6.56156 9.38118 6.56361 9.38392 6.55999C9.39122 6.55687 9.39575 6.54647 9.39122 6.53968C9.3871 6.53293 9.38073 6.53812 9.37344 6.54126V6.54177Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.27191 6.4651C9.27191 6.4651 9.32338 6.48975 9.36436 6.48975C9.36436 6.48975 9.36573 6.53232 9.37485 6.54471C9.37485 6.54471 9.33886 6.53773 9.32064 6.54632C9.32064 6.54632 9.29968 6.48771 9.27236 6.46399", fill: "#FFCC00" }), jsx("path", { d: "M9.27191 6.4651C9.27191 6.4651 9.32338 6.48975 9.36436 6.48975C9.36436 6.48975 9.36573 6.53232 9.37485 6.54471C9.37485 6.54471 9.33841 6.53773 9.32064 6.54632C9.32064 6.54632 9.29968 6.48771 9.27236 6.46399L9.27191 6.4651Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.31282 6.49512C9.31282 6.49512 9.33379 6.50546 9.35063 6.50546C9.35063 6.50546 9.35063 6.521 9.35474 6.52639C9.35474 6.52639 9.3397 6.52478 9.33377 6.528C9.33377 6.528 9.32512 6.50323 9.31281 6.49457L9.31282 6.49512Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.37799 6.58831C9.37799 6.58831 9.38664 6.56892 9.38983 6.56192C9.3912 6.5587 9.38848 6.58506 9.39713 6.58831C9.40895 6.60606 9.41215 6.64158 9.41215 6.65233C9.39849 6.6572 9.38664 6.66636 9.3666 6.65395C9.35932 6.64914 9.36523 6.63459 9.3666 6.62219C9.36934 6.61522 9.3707 6.59745 9.37708 6.58829", fill: "#FFCC00" }), jsx("path", { d: "M9.37799 6.58831C9.37799 6.58831 9.38664 6.56892 9.38983 6.56192C9.3912 6.5587 9.38848 6.58506 9.39713 6.58831C9.40895 6.60606 9.41215 6.64158 9.41215 6.65233C9.39849 6.6572 9.38664 6.66636 9.3666 6.65395C9.35932 6.64914 9.36523 6.63459 9.3666 6.62219C9.36934 6.61522 9.3707 6.59745 9.37708 6.58829L9.37799 6.58831Z", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.38708 6.57269C9.38708 6.57593 9.38847 6.58832 9.38847 6.58669C9.38847 6.58186 9.39253 6.59155 9.39437 6.59369C9.40166 6.60986 9.40304 6.62007 9.40622 6.65074M9.39164 6.59908C9.39573 6.62222 9.39893 6.62222 9.39893 6.65452L9.40166 6.65291M9.39164 6.62061C9.39437 6.63622 9.393 6.64537 9.39437 6.65452L9.38847 6.65774", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.85125 7.75843C9.88905 7.79936 9.96011 7.82085 9.9724 7.83174C9.99791 7.85267 10.0357 7.88492 10.1008 7.8888C10.1478 7.8936 10.1687 7.87845 10.2175 7.87099C10.2735 7.86397 10.2102 7.87417 10.2644 7.86065C10.2913 7.85214 10.2913 7.84675 10.3295 7.83766C10.3564 7.82899 10.3837 7.82195 10.4006 7.79509C10.4065 7.78489 10.4111 7.77565 10.4124 7.75953H10.4489C10.453 7.77195 10.443 7.79508 10.4384 7.80418C10.437 7.8075 10.4325 7.81493 10.4297 7.82044C10.4239 7.8327 10.4256 7.82897 10.4165 7.83973C10.4138 7.84138 10.4015 7.8538 10.3983 7.85532C10.391 7.86234 10.3851 7.86936 10.376 7.87102C10.3414 7.8779 10.3263 7.88658 10.2913 7.89952C10.258 7.90972 10.2762 7.90808 10.2521 7.91511C10.2389 7.91829 10.2147 7.92916 10.2024 7.93067C10.1801 7.93548 10.1769 7.93935 10.1542 7.94474C10.0954 7.96031 10.0375 7.95713 9.98016 7.95176C9.956 7.95009 9.89678 7.93606 9.8772 7.91992C9.84077 7.88976 9.76197 7.87749 9.72595 7.84841C9.72189 7.84511 9.69909 7.8327 9.69455 7.82734C9.66174 7.79343 9.63259 7.78488 9.59796 7.75787H9.85397", fill: "#004BB3" }), jsx("path", { d: "M10.1301 7.75843C10.1556 7.77414 10.1679 7.79937 10.2389 7.82624C10.2658 7.82624 10.2963 7.84028 10.3223 7.83862C10.2909 7.84731 10.2909 7.85269 10.2649 7.85972C10.2107 7.87362 10.2736 7.8629 10.218 7.86992C10.1697 7.87694 10.1483 7.89306 10.1014 7.88769C10.0362 7.88437 9.99843 7.85215 9.97293 7.83064C9.96108 7.82044 9.88955 7.79881 9.85175 7.75732H10.1305", fill: "white" }), jsx("path", { d: "M10.1301 7.75842H10.4134C10.412 7.77413 10.4075 7.78322 10.4015 7.79397C10.3852 7.82043 10.3578 7.82789 10.3305 7.83655C10.3004 7.84345 10.2699 7.82621 10.2398 7.82621C10.1656 7.79991 10.1565 7.77083 10.131 7.75842", fill: "#004BB3" }), jsx("path", { d: "M9.85582 7.75842C9.85582 7.75842 9.80615 7.76164 9.80296 7.76164C9.80023 7.76164 9.60028 7.75842 9.60028 7.75842", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85586 7.76007C9.85586 7.76007 9.8062 7.76314 9.80301 7.76472C9.7971 7.76635 9.60168 7.76168 9.60168 7.76168", stroke: "#000B73", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85721 7.76233C9.85721 7.76233 9.8089 7.76698 9.80164 7.76898C9.79433 7.76898 9.60303 7.76233 9.60303 7.76233", stroke: "#001379", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85719 7.76233C9.85719 7.76233 9.81071 7.76898 9.79978 7.77059C9.7893 7.77377 9.60437 7.76379 9.60437 7.76379", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85721 7.76379C9.85721 7.76379 9.8121 7.77061 9.7998 7.7738C9.78657 7.77687 9.6062 7.76379 9.6062 7.76379", stroke: "#002086", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85723 7.76379C9.85723 7.76379 9.81348 7.7738 9.79846 7.7774C9.78342 7.78048 9.6076 7.7654 9.6076 7.7654", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.8572 7.76379C9.8572 7.76379 9.81482 7.7758 9.79662 7.78101C9.77883 7.78566 9.60895 7.76754 9.60895 7.76754", stroke: "#002B91", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85855 7.7655C9.85855 7.7655 9.81617 7.77909 9.79522 7.78427C9.77564 7.78734 9.61029 7.76708 9.61029 7.76708", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85857 7.7677C9.85857 7.7677 9.81802 7.78275 9.79524 7.78794C9.77291 7.79262 9.61212 7.76917 9.61212 7.76917", stroke: "#00389E", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85857 7.7677C9.85857 7.7677 9.81938 7.78489 9.79343 7.79155C9.76792 7.79636 9.61304 7.77131 9.61304 7.77131", stroke: "#003EA6", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85856 7.76917C9.85856 7.76917 9.82074 7.78796 9.79343 7.79315C9.76473 7.79994 9.61487 7.77077 9.61487 7.77077", stroke: "#0046AD", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.59796 7.75842H9.85581", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.61621 7.77288C9.61621 7.77288 9.76154 7.80355 9.79206 7.79676C9.82347 7.79008 9.85993 7.76917 9.85993 7.76917", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.89362 7.89245C9.89362 7.89245 9.98609 7.90753 9.98882 7.90753C9.99018 7.90753 10.043 7.90287 10.0449 7.90287L10.0904 7.89087", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.8877 7.89087C9.8877 7.89087 9.98289 7.90806 9.99064 7.90606C9.99336 7.90444 10.0421 7.90125 10.0435 7.90125C10.0462 7.90125 10.0858 7.89138 10.0858 7.89138", stroke: "#001178", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.88318 7.8877C9.88318 7.8877 9.97975 7.90639 9.99068 7.90277C9.99479 7.90277 10.039 7.89971 10.0435 7.89971C10.0463 7.89971 10.0813 7.88933 10.0813 7.88933", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.87677 7.88379C9.87677 7.88379 9.97653 7.90419 9.99022 7.901C9.9975 7.901 10.0371 7.89793 10.0417 7.89793C10.0458 7.89631 10.0763 7.88953 10.0763 7.88953", stroke: "#002086", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.87219 7.88232C9.87219 7.88232 9.97332 7.90259 9.99017 7.89954C9.99883 7.89791 10.0339 7.89633 10.0417 7.89473C10.0476 7.89473 10.0717 7.89008 10.0717 7.89008", stroke: "#002B91", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.86633 7.87842C9.86633 7.87842 9.97063 7.90241 9.99205 7.89721C10.0025 7.89561 10.0326 7.89414 10.0404 7.89256C10.0476 7.89256 10.0686 7.88789 10.0686 7.88789", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.86176 7.87689C9.86176 7.87689 9.96789 7.90074 9.99203 7.89555C10.0053 7.89408 10.0312 7.8909 10.0385 7.8909C10.0472 7.88927 10.064 7.88783 10.064 7.88783", stroke: "#0039A0", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85583 7.87469C9.85583 7.87469 9.96469 7.90015 9.99201 7.89349C10.0071 7.89031 10.028 7.88884 10.0385 7.88884C10.0471 7.88721 10.0595 7.88721 10.0595 7.88721", stroke: "#0045AB", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.89813 7.89613L9.9888 7.90972L10.0448 7.90654L10.0931 7.89307", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.85126 7.87152C9.85126 7.87152 9.96329 7.90005 9.99336 7.89247C10.0234 7.88544 10.0553 7.88544 10.0553 7.88544M10.2936 7.88766C10.2936 7.88766 10.3523 7.86286 10.3815 7.85045C10.4357 7.8258 10.4421 7.76116 10.4421 7.76116M10.2876 7.86616C10.2876 7.86616 10.3222 7.85045 10.3528 7.83763C10.4298 7.80208 10.4206 7.75897 10.4206 7.75897", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.2831 7.86935C10.2831 7.86935 10.3282 7.84992 10.3528 7.83916C10.3646 7.83436 10.3797 7.82525 10.3888 7.81987C10.3992 7.81285 10.4111 7.79673 10.4156 7.78971C10.4215 7.77729 10.4215 7.75952 10.4215 7.75952", stroke: "#003CA2", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.2772 7.87471C10.2772 7.87471 10.3346 7.84994 10.3528 7.84082C10.3601 7.83765 10.3815 7.82678 10.3874 7.82305C10.3947 7.81603 10.4129 7.79991 10.4161 7.79452C10.422 7.78433 10.4248 7.75897 10.4248 7.75897", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.2726 7.87844C10.2726 7.87844 10.341 7.84992 10.3528 7.84453C10.3587 7.84137 10.3829 7.82896 10.3861 7.82677C10.392 7.8236 10.4161 7.80044 10.4175 7.79671C10.4202 7.79177 10.4262 7.75952 10.4262 7.75952", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.2667 7.8838C10.2667 7.8838 10.3468 7.84991 10.3528 7.84675C10.3541 7.84507 10.3842 7.83268 10.386 7.83116C10.3888 7.8295 10.4175 7.80264 10.4175 7.80098C10.4202 7.79769 10.4293 7.76172 10.4293 7.76172", stroke: "#000F75", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.2877 7.88763C10.2877 7.88763 10.3587 7.85747 10.3815 7.84674C10.3992 7.8397 10.4161 7.82192 10.4239 7.80954C10.4357 7.79024 10.4403 7.76172 10.4403 7.76172", stroke: "#003CA2", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.2803 7.88763C10.2803 7.88763 10.3651 7.85211 10.3833 7.84302C10.3951 7.83804 10.4179 7.81656 10.4224 7.80747C10.4311 7.7934 10.4375 7.76117 10.4375 7.76117", stroke: "#002D93", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.2739 7.88932C10.2739 7.88932 10.3723 7.84453 10.3842 7.84136C10.3915 7.83804 10.4174 7.81283 10.422 7.80744C10.4279 7.79727 10.4352 7.76117 10.4352 7.76117", stroke: "#001E85", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.2681 7.88932C10.2681 7.88932 10.3783 7.83915 10.3847 7.83764C10.3888 7.83598 10.4179 7.80899 10.4207 7.80581C10.4234 7.801 10.4344 7.76117 10.4344 7.76117", stroke: "#000F75", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.2621 7.88932L10.386 7.83376L10.4193 7.8036L10.4312 7.76117", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4061 7.75842C10.4061 7.75842 10.3532 7.76164 10.3519 7.76164C10.3491 7.76164 10.1401 7.75842 10.1401 7.75842", stroke: "#00066D", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4061 7.76007C10.4061 7.76007 10.3546 7.76314 10.35 7.76472C10.3441 7.76635 10.141 7.76168 10.141 7.76168", stroke: "#000B73", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4075 7.76233C10.4075 7.76233 10.3578 7.76698 10.3487 7.76898C10.3414 7.76898 10.1428 7.76233 10.1428 7.76233", stroke: "#001379", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4074 7.76233C10.4074 7.76233 10.3592 7.76898 10.3487 7.77059C10.3382 7.77377 10.1442 7.76379 10.1442 7.76379", stroke: "#00187E", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4074 7.76379C10.4074 7.76379 10.3605 7.77061 10.3468 7.7738C10.3336 7.77687 10.1455 7.76379 10.1455 7.76379", stroke: "#002086", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4075 7.76379C10.4075 7.76379 10.3624 7.7738 10.3469 7.7774C10.3305 7.78048 10.1469 7.7654 10.1469 7.7654", stroke: "#00258B", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4075 7.76379C10.4075 7.76379 10.3637 7.7758 10.3455 7.78101C10.3278 7.78566 10.1487 7.76754 10.1487 7.76754", stroke: "#002B91", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4093 7.7655C10.4093 7.7655 10.3655 7.77909 10.3441 7.78427C10.3232 7.78734 10.1505 7.76708 10.1505 7.76708", stroke: "#003399", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4093 7.7677C10.4093 7.7677 10.3683 7.78275 10.3428 7.78794C10.3205 7.79262 10.1519 7.76917 10.1519 7.76917", stroke: "#00389E", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4106 7.7677C10.4106 7.7677 10.3683 7.78489 10.3427 7.79155C10.3159 7.79636 10.1551 7.77131 10.1551 7.77131", stroke: "#003EA6", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4106 7.76917C10.4106 7.76917 10.3701 7.78796 10.3409 7.79315C10.3122 7.79994 10.156 7.77077 10.156 7.77077", stroke: "#0046AD", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.1378 7.75842H10.4061", stroke: "#000066", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.156 7.77288C10.156 7.77288 10.3091 7.80355 10.3409 7.79676C10.371 7.79008 10.4106 7.76917 10.4106 7.76917", stroke: "#004BB3", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4498 7.75841C10.4539 7.77082 10.4439 7.79396 10.4393 7.8032C10.438 7.80638 10.4334 7.81395 10.4307 7.81931C10.4247 7.83172 10.4266 7.82786 10.4175 7.83861C10.4147 7.84028 10.4024 7.85267 10.3992 7.85431C10.3919 7.86122 10.386 7.86824 10.3769 7.8699C10.3423 7.87692 10.3272 7.88546 10.2922 7.89842C10.2589 7.90862 10.2771 7.90697 10.253 7.91399C10.2398 7.91728 10.2157 7.92803 10.2033 7.92955C10.181 7.93453 10.1779 7.93823 10.1551 7.94362C10.0963 7.95919 10.0385 7.956 9.98106 7.95064C9.95694 7.94899 9.8977 7.93506 9.87812 7.9188C9.84168 7.88879 9.76286 7.87637 9.72688 7.84729C9.72278 7.84399 9.70001 7.83172 9.69547 7.82622C9.66266 7.7923 9.63351 7.78377 9.59888 7.7569", stroke: "black", strokeWidth: "0.00553672" }), jsx("path", { d: "M11.5066 7.75842L10.4822 5.73462L9.45905 7.75842H11.5066Z", fill: "#FFCC00", stroke: "black", strokeWidth: "0.0138418" }), jsx("path", { d: "M11.4082 7.69226L10.4821 5.86536L9.55927 7.69226H11.4082Z", fill: "white" }), jsx("path", { d: "M10.3214 6.18566C10.3651 6.13933 10.4179 6.11951 10.4803 6.11951H10.4844C10.5432 6.11951 10.6038 6.13726 10.6434 6.18566", stroke: "#00A8FF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3214 6.18725C10.3637 6.13927 10.4179 6.12316 10.4803 6.12109H10.4844C10.545 6.12109 10.607 6.13872 10.6448 6.18724", stroke: "#009EFF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3195 6.18891C10.3618 6.14095 10.4179 6.12262 10.4803 6.12262H10.4844C10.5463 6.12262 10.6083 6.14039 10.6465 6.19043", stroke: "#0096FF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3182 6.19266C10.3605 6.14262 10.4179 6.12488 10.4804 6.12488H10.4863C10.5482 6.12488 10.6102 6.14265 10.6498 6.19432", stroke: "#008BFF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3168 6.19432C10.3591 6.14417 10.4179 6.12651 10.4817 6.12488H10.4858C10.5491 6.12651 10.6115 6.14417 10.6511 6.19805", stroke: "#0082FF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3149 6.19593C10.3573 6.14412 10.416 6.12646 10.4817 6.12646H10.4857C10.5509 6.12798 10.6129 6.14742 10.6525 6.2013", stroke: "#0079FF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3149 6.19965C10.3559 6.14799 10.416 6.12799 10.4817 6.12799H10.4857C10.5536 6.12968 10.6142 6.14909 10.6552 6.20503", stroke: "#006FFF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3033 6.22117C10.3516 6.16042 10.4121 6.14264 10.4837 6.14264H10.4877C10.5666 6.14415 10.6331 6.17432 10.6727 6.23895", stroke: "#1609FF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3044 6.21801C10.3514 6.16098 10.4119 6.14321 10.483 6.14099H10.4871C10.5641 6.14265 10.6292 6.17282 10.6689 6.23578", stroke: "#1316FF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3058 6.21578C10.3527 6.15708 10.4115 6.13873 10.4812 6.13873H10.4853C10.5609 6.14039 10.6274 6.16892 10.667 6.23189", stroke: "#1120FF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3058 6.21411C10.3527 6.15706 10.4115 6.1393 10.4812 6.13721H10.4853C10.5595 6.13873 10.6247 6.16574 10.6657 6.22815", stroke: "#0F2DFF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.309 6.21038C10.3527 6.15499 10.412 6.13721 10.4817 6.13721H10.4844C10.5586 6.13721 10.6238 6.16189 10.6648 6.22486", stroke: "#0938FF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.309 6.20877C10.3527 6.15339 10.4133 6.13562 10.4803 6.13562H10.4844C10.5568 6.13562 10.6219 6.15876 10.6616 6.21952", stroke: "#0645FF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3104 6.20726C10.3527 6.15174 10.4133 6.13397 10.4798 6.13397H10.4839C10.555 6.13397 10.6183 6.15504 10.6597 6.21638", stroke: "#054FFF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3122 6.20335C10.3527 6.15002 10.4133 6.13184 10.4803 6.13184H10.483C10.5541 6.13184 10.6179 6.15112 10.6584 6.21203", stroke: "#025CFF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3801 6.06551C10.4101 6.04069 10.442 6.03381 10.4812 6.03381C10.519 6.03381 10.5536 6.04069 10.5823 6.06386", stroke: "#FF0500", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3801 6.0671C10.4101 6.0423 10.442 6.03528 10.4812 6.03528C10.519 6.03528 10.5536 6.0423 10.5823 6.06544", stroke: "#FF0B00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3787 6.06871C10.4102 6.04391 10.442 6.03687 10.4817 6.03687C10.5195 6.03687 10.5559 6.04391 10.586 6.06705", stroke: "#FF1100", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3787 6.07241C10.4088 6.04763 10.442 6.03851 10.4817 6.03851C10.5208 6.03851 10.5559 6.04706 10.586 6.06871", stroke: "#FF1800", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3773 6.07432C10.4074 6.04952 10.4425 6.04041 10.4816 6.04041C10.5208 6.04041 10.5573 6.04897 10.5873 6.07213", stroke: "#FF1E00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3755 6.07585C10.4069 6.05119 10.442 6.04193 10.4812 6.04193C10.5203 6.04193 10.5568 6.05064 10.5868 6.07378", stroke: "#FF2500", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3755 6.07967C10.4056 6.05266 10.4406 6.04413 10.4812 6.04413C10.5203 6.04413 10.5581 6.05266 10.5887 6.0758", stroke: "#FF2D00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3742 6.08114C10.4056 6.05481 10.4407 6.04572 10.4817 6.04572C10.5227 6.04572 10.5605 6.05427 10.5906 6.07963", stroke: "#FF3300", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3742 6.08334C10.4043 6.05703 10.4407 6.04779 10.4817 6.04779C10.5227 6.04779 10.5605 6.05647 10.592 6.0817", stroke: "#FF3900", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3728 6.08505C10.4043 6.05859 10.4407 6.0495 10.4817 6.0495C10.5227 6.0495 10.5618 6.0597 10.5919 6.08341", stroke: "#FF3E00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.371 6.0871C10.4024 6.06079 10.4389 6.0517 10.4812 6.0517C10.5222 6.0517 10.5614 6.06245 10.5933 6.08558", stroke: "#FF4500", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3482 6.13506C10.3815 6.10336 10.4375 6.0871 10.483 6.0871C10.5313 6.0871 10.5842 6.10281 10.6192 6.13506", stroke: "#FFF500", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.35 6.13188C10.3832 6.10003 10.4379 6.08557 10.483 6.08557C10.5299 6.08557 10.5827 6.0995 10.6178 6.13339", stroke: "#FFEB00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3514 6.12968C10.3846 6.098 10.4375 6.08337 10.483 6.08337C10.5299 6.08337 10.5814 6.09745 10.616 6.12968", stroke: "#FFE000", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3528 6.12649C10.386 6.09633 10.4375 6.08173 10.4831 6.08173C10.53 6.08173 10.5815 6.09577 10.6147 6.12649", stroke: "#FFD600", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3528 6.12485C10.386 6.09467 10.4375 6.0802 10.4831 6.0802C10.5281 6.0802 10.5783 6.09411 10.6133 6.12485", stroke: "#FFCF00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3546 6.12114C10.3892 6.09096 10.4379 6.07635 10.4835 6.07635C10.5286 6.07635 10.5787 6.09041 10.6119 6.12266", stroke: "#FFC500", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.356 6.11949C10.3892 6.08931 10.4375 6.07483 10.4831 6.07483C10.5281 6.07483 10.5769 6.08876 10.6101 6.11948", stroke: "#FFB900", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3573 6.11564C10.3905 6.08711 10.4375 6.07318 10.483 6.07318C10.5281 6.07318 10.5755 6.08711 10.6087 6.11564", stroke: "#FFAF00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3592 6.11411C10.3924 6.08392 10.438 6.07153 10.4835 6.07153C10.5273 6.07153 10.576 6.08558 10.6074 6.11411", stroke: "#FFA600", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3605 6.11023C10.3919 6.08172 10.4375 6.06946 10.483 6.06946C10.5249 6.06946 10.5723 6.08172 10.6056 6.11023", stroke: "#FF9C00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3605 6.10872C10.3937 6.08022 10.4393 6.06781 10.483 6.06781C10.5249 6.06781 10.5723 6.08022 10.6037 6.10709", stroke: "#FF9100", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3632 6.10488C10.3947 6.07635 10.4389 6.06396 10.483 6.06396C10.5249 6.06396 10.571 6.07635 10.6024 6.10488", stroke: "#FF8600", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3632 6.10341C10.3965 6.07488 10.4389 6.0625 10.483 6.0625C10.5249 6.0625 10.5691 6.07488 10.6024 6.10175", stroke: "#FF7C00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3651 6.09952C10.3965 6.07318 10.4393 6.06024 10.483 6.06024C10.5236 6.06024 10.5677 6.07262 10.5996 6.09952", stroke: "#FF7500", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3665 6.09801C10.3997 6.06949 10.4389 6.05859 10.4831 6.05859C10.5236 6.05859 10.5664 6.06949 10.5979 6.09635", stroke: "#FF6B00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3678 6.09418C10.3992 6.06786 10.4389 6.05713 10.4831 6.05713C10.5236 6.05713 10.5664 6.0673 10.5978 6.09418", stroke: "#FF6000", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3696 6.09263C10.4011 6.06399 10.4393 6.05542 10.483 6.05542C10.5222 6.05542 10.5646 6.06617 10.5965 6.09097", stroke: "#FF5600", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3437 6.13876C10.3801 6.10708 10.4343 6.09094 10.4831 6.09094C10.5327 6.09094 10.586 6.10653 10.6206 6.14097", stroke: "#EBFF00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3423 6.14262C10.3801 6.10707 10.4348 6.09259 10.483 6.09259C10.5327 6.09259 10.5874 6.11022 10.6238 6.14413", stroke: "#D6FF00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3409 6.14578C10.3801 6.10874 10.4334 6.09412 10.483 6.09412C10.5327 6.09412 10.5887 6.11191 10.6238 6.14578", stroke: "#C2FF00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3395 6.14963C10.3819 6.11021 10.432 6.09631 10.4835 6.09631C10.5331 6.09631 10.5891 6.11409 10.6256 6.14963", stroke: "#ADFF00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3377 6.1512C10.3814 6.11192 10.4316 6.09802 10.4816 6.09802C10.5345 6.09802 10.5905 6.11565 10.6269 6.15117", stroke: "#99FF00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3364 6.15499C10.3815 6.11242 10.4288 6.09949 10.4817 6.09949C10.5345 6.09949 10.5919 6.11726 10.6284 6.15499", stroke: "#85FF00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3364 6.15874C10.3815 6.11409 10.4288 6.10168 10.4817 6.10168C10.5345 6.10168 10.5937 6.11948 10.6302 6.15653", stroke: "#6FFF00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3332 6.16192C10.3828 6.1141 10.427 6.10168 10.4817 6.10168C10.5359 6.10168 10.5937 6.12264 10.6302 6.16038", stroke: "#5CFF00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3318 6.1641C10.3832 6.11616 10.4256 6.10541 10.4816 6.10541C10.5359 6.10541 10.5951 6.12484 10.6315 6.16246", stroke: "#46FF00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3241 6.18028C10.3696 6.13398 10.4207 6.11786 10.4831 6.11786C10.5405 6.11786 10.6024 6.13563 10.6407 6.18028", stroke: "#05B9E2", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3259 6.18028C10.371 6.13246 10.4211 6.11414 10.4835 6.11414C10.5409 6.11414 10.6015 6.13342 10.6411 6.17655", stroke: "#09C5C6", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3259 6.17656C10.3723 6.13026 10.4224 6.11414 10.4835 6.11414C10.5409 6.11414 10.6015 6.13192 10.6393 6.17434", stroke: "#11CCAB", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3273 6.17438C10.3742 6.12654 10.4224 6.11194 10.4831 6.11194C10.5391 6.11194 10.5997 6.13137 10.6375 6.17284", stroke: "#16D38F", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3273 6.17433C10.3755 6.12485 10.4224 6.11023 10.4817 6.11023C10.5391 6.11023 10.5997 6.12966 10.6361 6.17115", stroke: "#1CDE6F", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3286 6.17277C10.3783 6.12262 10.4225 6.11023 10.4817 6.11023C10.539 6.11023 10.5983 6.12964 10.6361 6.16892", stroke: "#20E653", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3304 6.17121C10.3801 6.12118 10.4243 6.10876 10.4817 6.10876C10.5377 6.10876 10.5983 6.12805 10.6347 6.16733", stroke: "#28ED38", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.3304 6.16948C10.3815 6.11945 10.4243 6.10706 10.4817 6.10706C10.5359 6.10706 10.5983 6.12647 10.6347 6.1663", stroke: "#2DF81C", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.5819 6.06187C10.5532 6.03871 10.52 6.03168 10.4822 6.03168C10.443 6.03168 10.4124 6.0387 10.3824 6.06351", stroke: "#FF0000", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.6744 6.24435C10.6352 6.17654 10.5655 6.14417 10.4849 6.14417C10.4106 6.14417 10.3519 6.16194 10.3018 6.22282", stroke: "#1800FF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.6425 6.18028C10.6033 6.13563 10.5427 6.11786 10.4835 6.11786C10.4215 6.11786 10.3682 6.13563 10.3227 6.18191", stroke: "#00B3FF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.6575 6.20872C10.6151 6.15004 10.5518 6.13019 10.4816 6.13019C10.4165 6.13019 10.3545 6.14799 10.3122 6.2017", stroke: "#0066FF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.6215 6.13872C10.5869 6.10483 10.5322 6.08868 10.4839 6.08868C10.437 6.08868 10.381 6.10427 10.3464 6.13666", stroke: "#FFFF00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.5942 6.0871C10.5641 6.06396 10.5232 6.0517 10.4821 6.0517C10.4398 6.0517 10.4033 6.06245 10.3719 6.09095", stroke: "#FF4B00", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.6334 6.1641C10.5974 6.12706 10.5368 6.10541 10.4821 6.10541C10.4247 6.10541 10.3838 6.11782 10.3323 6.16782", stroke: "#33FF00", strokeWidth: "0.00553672" }), jsx("path", { d: "M9.83168 7.14917L9.55884 7.69174H11.4082L11.1327 7.14917H9.83215", fill: "#0088E8" }), jsx("path", { d: "M10.5318 7.46612C10.556 7.47309 10.5847 7.4785 10.6133 7.46772C10.6525 7.4575 10.6903 7.43059 10.7372 7.43597C10.7705 7.4392 10.816 7.47311 10.8721 7.47311C10.9263 7.47311 10.9449 7.44997 10.9932 7.4392C11.0265 7.43059 11.0429 7.43597 11.0794 7.44406C11.1203 7.45267 11.1413 7.4812 11.211 7.4742", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.8194 7.54519C9.84947 7.51666 9.90412 7.50596 9.9465 7.51666C10.0007 7.53071 10.0235 7.54685 10.0827 7.54685C10.1251 7.54519 10.1629 7.51134 10.207 7.51134C10.2795 7.51134 10.2827 7.52907 10.3478 7.54312C10.3658 7.54629 10.384 7.54629 10.402 7.54312C10.4262 7.53832 10.4476 7.52907 10.4653 7.51666C10.4863 7.50435 10.5378 7.50649 10.5637 7.50973C10.6093 7.51459 10.627 7.5361 10.638 7.53831C10.6621 7.54685 10.6894 7.55058 10.7195 7.54146C10.7587 7.52756 10.7951 7.49681 10.8434 7.50434C10.8767 7.50757 10.9222 7.54685 10.9769 7.54685C11.0329 7.54685 11.0512 7.52054 11.0976 7.50757C11.1322 7.49896 11.149 7.50434 11.1855 7.51243C11.2264 7.52258 11.2474 7.55498 11.3172 7.54795", stroke: "white", strokeWidth: "0.0152144" }), jsx("path", { d: "M9.7146 7.48449C9.74466 7.45972 9.79934 7.44894 9.8417 7.45972C9.89591 7.47208 9.92048 7.48608 9.97788 7.48608C10.0216 7.48447 10.0581 7.45433 10.1018 7.45433C10.176 7.45433 10.1774 7.46994 10.2426 7.48286C10.2605 7.48609 10.2788 7.48609 10.2967 7.48286C10.3209 7.47963 10.3419 7.46886 10.3619 7.45972C10.3797 7.4495 10.433 7.45111 10.4584 7.45272C10.5036 7.45755 10.5218 7.47586 10.5327 7.47908C10.5568 7.48394 10.5855 7.48769 10.6143 7.48069C10.6534 7.46833 10.6912 7.44141 10.7382 7.44733C10.7714 7.45055 10.8183 7.48663 10.873 7.48447C10.9272 7.48447 10.9473 7.46133 10.9937 7.45055C11.027 7.44194 11.0438 7.44733 11.0798 7.45539C11.1203 7.46561 11.1432 7.49255 11.2128 7.48555", stroke: "white", strokeWidth: "0.0110502" }), jsx("path", { d: "M9.61938 7.66153C9.64945 7.63134 9.70412 7.61855 9.74649 7.63134C9.80069 7.64541 9.82526 7.66537 9.88266 7.66319C9.92641 7.66319 9.96421 7.62391 10.0066 7.62391C10.0808 7.62391 10.0822 7.6432 10.1474 7.66098C10.1637 7.6643 10.1851 7.6643 10.2029 7.66098C10.2252 7.65395 10.2466 7.6432 10.2662 7.63093C10.2858 7.61855 10.3373 7.62059 10.3628 7.62391C10.4079 7.62871 10.4261 7.65022 10.4371 7.65561C10.4612 7.66264 10.4899 7.668 10.5204 7.65725C10.5596 7.64168 10.596 7.60931 10.6429 7.61633C10.6762 7.61951 10.7231 7.66264 10.7778 7.66264C10.832 7.66264 10.852 7.6341 10.8989 7.62006C10.9322 7.60986 10.9486 7.61689 10.985 7.62501C11.0274 7.63728 11.0483 7.67283 11.1181 7.6658", stroke: "white", strokeWidth: "0.0199834" }), jsx("path", { d: "M9.64355 7.55841C9.67499 7.5344 9.72966 7.52561 9.772 7.5344C9.82623 7.54641 9.85082 7.56 9.90822 7.56C9.9278 7.56 9.94602 7.5532 9.96379 7.54641", stroke: "white", strokeWidth: "0.0110502" }), jsx("path", { d: "M9.92419 7.45379C9.93284 7.45057 9.95882 7.43604 9.99525 7.43604C10.0695 7.43604 10.0221 7.43604 10.0877 7.45003C10.1041 7.45326 10.151 7.45326 10.1647 7.43979M10.8111 7.68689C10.8352 7.68208 10.8548 7.67284 10.8762 7.66209C10.8958 7.65134 10.9459 7.65356 10.9728 7.65729C11.0183 7.66209 11.0361 7.68042 11.047 7.68205C11.0708 7.68896 11.0999 7.69228 11.1286 7.68359C11.1678 7.67118 11.2056 7.64431 11.2525 7.64968C11.2857 7.65449 11.3327 7.68896 11.3873 7.68896", stroke: "black", strokeWidth: "0.0097009" }), jsx("path", { d: "M10.9245 7.44468C10.9786 7.44468 10.9987 7.42154 11.0457 7.41076C11.0789 7.40215 11.0952 7.40754 11.1317 7.41561C11.1741 7.42423 11.195 7.45276 11.2648 7.44575", stroke: "white", strokeWidth: "0.0110502" }), jsx("path", { d: "M9.62213 7.66854C9.65356 7.64374 9.70821 7.633 9.74921 7.64374C9.80341 7.65613 9.82801 7.6702 9.88677 7.6702C9.92913 7.66854 9.96696 7.63836 10.0111 7.63836C10.0836 7.63836 10.0867 7.65395 10.1505 7.66688C10.1685 7.67019 10.1868 7.67019 10.2047 7.66688C10.2289 7.66374 10.2498 7.6545 10.2699 7.64374C10.2894 7.63354 10.3409 7.63521 10.3664 7.63893C10.4115 7.64223 10.4297 7.65986 10.4407 7.66371", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.73877 7.58782C9.77067 7.56302 9.82487 7.5539 9.86587 7.56302C9.92006 7.57543 9.94467 7.59155 10.002 7.58948C10.0458 7.58782 10.0822 7.55765 10.126 7.55929C10.2002 7.55929 10.2029 7.57336 10.2667 7.58782C10.2847 7.59099 10.303 7.59099 10.3209 7.58782C10.3451 7.58301 10.366 7.57377 10.3861 7.56302C10.4057 7.55448 10.4571 7.55448 10.4826 7.55821C10.5277 7.56302 10.546 7.58135 10.5569 7.58298C10.581 7.59003 10.6097 7.59321 10.6384 7.58467C10.6776 7.57433 10.7154 7.54746 10.7623 7.55061C10.7983 7.55558 10.8457 7.59003 10.8971 7.59003C10.9513 7.59003 10.9714 7.56687 11.0183 7.55612C11.0515 7.54746 11.0679 7.55116 11.1062 7.56095C11.1454 7.56949 11.1681 7.59802 11.2365 7.59099", stroke: "black", strokeWidth: "0.0199834" }), jsx("path", { d: "M10.2954 6.23411C10.3528 6.2002 10.412 6.18079 10.4817 6.18079C10.5482 6.18079 10.6193 6.20929 10.6739 6.24484L10.8707 6.63133C10.8707 6.88538 10.6949 7.09476 10.4813 7.09476C10.2681 7.09476 10.0936 6.89079 10.0918 6.63294L10.2945 6.23356L10.2954 6.23411Z", stroke: "#FFF3F3", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.18546C10.5468 6.18546 10.6179 6.21396 10.6726 6.24951L10.8648 6.63063C10.8648 6.8793 10.6935 7.08707 10.4812 7.08707C10.2694 7.08707 10.0995 6.88683 10.0981 6.63222L10.2981 6.23823C10.3542 6.20652 10.4129 6.18488 10.4812 6.18488L10.4817 6.18546Z", stroke: "#FFF3EF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.19096C10.5468 6.19096 10.6152 6.21949 10.6693 6.25504C10.6693 6.25504 10.8602 6.62916 10.8602 6.6308C10.8602 6.87782 10.6889 7.08185 10.4812 7.08185C10.2739 7.08185 10.1041 6.88163 10.1022 6.63241C10.1022 6.6308 10.2976 6.24595 10.299 6.24376C10.355 6.21206 10.4124 6.19043 10.4808 6.19043L10.4817 6.19096Z", stroke: "#FFEFEF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.19592C10.545 6.19592 10.6133 6.22445 10.6666 6.25835C10.668 6.25986 10.8543 6.62701 10.8543 6.63078C10.8543 6.87407 10.6876 7.07644 10.4817 7.07644C10.2772 7.07644 10.1091 6.87945 10.1091 6.6324C10.1091 6.62915 10.2999 6.25076 10.3013 6.2491C10.3573 6.2174 10.4147 6.19593 10.4813 6.19593L10.4817 6.19592Z", stroke: "#FFEFED", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.20337C10.545 6.20337 10.6119 6.23189 10.6634 6.26426C10.6661 6.26745 10.8497 6.62755 10.8497 6.63293C10.8497 6.87083 10.6848 7.06998 10.4817 7.06998C10.2789 7.06998 10.115 6.87676 10.1136 6.63293C10.1136 6.62968 10.3013 6.25725 10.3045 6.25506C10.3587 6.22336 10.4165 6.20337 10.4817 6.20337M10.4817 6.20873C10.5436 6.20873 10.6101 6.23725 10.662 6.26966C10.6648 6.27118 10.8451 6.62755 10.8451 6.63293C10.8451 6.86707 10.6816 7.06462 10.4817 7.06462C10.2817 7.06462 10.1195 6.87301 10.1181 6.63293C10.1181 6.62807 10.3045 6.26427 10.3077 6.26042C10.3605 6.23036 10.4165 6.20873 10.4817 6.20873Z", stroke: "#FFEDEB", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.21579C10.5436 6.21579 10.6087 6.2421 10.6589 6.27448C10.663 6.27766 10.8393 6.62542 10.8393 6.63239C10.8393 6.86494 10.6789 7.05655 10.4817 7.05655C10.2849 7.05655 10.1254 6.8687 10.1241 6.63242C10.1241 6.62756 10.304 6.26912 10.309 6.26524C10.3632 6.23356 10.4179 6.21521 10.4817 6.21521L10.4817 6.21579Z", stroke: "#FFEBE8", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.2212C10.5423 6.2212 10.6074 6.24751 10.6575 6.27988C10.6616 6.28306 10.8347 6.62329 10.8347 6.63246C10.8347 6.86121 10.6757 7.05176 10.4817 7.05176C10.2881 7.05176 10.13 6.86551 10.1287 6.63246C10.1287 6.62546 10.3059 6.27454 10.3118 6.27067C10.3628 6.24061 10.4175 6.22064 10.4812 6.22064L10.4817 6.2212Z", stroke: "#FFEBE6", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.22654C10.5404 6.22654 10.6042 6.253 10.6543 6.28525C10.6602 6.28843 10.8283 6.62327 10.8283 6.63244C10.8283 6.85635 10.6725 7.0442 10.4812 7.0442C10.2904 7.0442 10.1341 6.86172 10.1341 6.63241C10.1341 6.62383 10.3081 6.27989 10.314 6.27616C10.3641 6.24598 10.4197 6.22601 10.4808 6.22601L10.4817 6.22654Z", stroke: "#FFE8E6", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.23413C10.5405 6.23413 10.6028 6.2589 10.6511 6.29116C10.657 6.29433 10.8238 6.62218 10.8238 6.63296C10.8238 6.85473 10.6693 7.03934 10.4812 7.03934C10.2935 7.03934 10.1405 6.86062 10.1387 6.63296C10.1387 6.62435 10.3099 6.28746 10.3159 6.28192C10.3674 6.25191 10.4202 6.23413 10.4807 6.23413H10.4817Z", stroke: "#FFE8E2", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.23895C10.5391 6.23895 10.6015 6.26375 10.6498 6.29601C10.6557 6.30082 10.8179 6.62167 10.8179 6.63245C10.8179 6.85096 10.6667 7.03343 10.4813 7.03343C10.295 7.03343 10.1451 6.85472 10.1451 6.63245C10.1451 6.6222 10.3118 6.29229 10.3191 6.28692C10.3692 6.25839 10.422 6.23895 10.4813 6.23895H10.4817Z", stroke: "#FFE6E0", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.24652C10.5391 6.24652 10.5997 6.2712 10.647 6.30136C10.6543 6.30617 10.8138 6.62004 10.8138 6.63243C10.8138 6.8472 10.6639 7.02642 10.4817 7.02642C10.2999 7.02642 10.1514 6.85309 10.1501 6.63457C10.1501 6.62218 10.3136 6.29819 10.3214 6.29282C10.371 6.26429 10.4225 6.24652 10.4817 6.24652", stroke: "#FFE6DE", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.25195C10.5377 6.25195 10.5983 6.27661 10.6438 6.30735C10.6525 6.31215 10.8073 6.62062 10.8073 6.63301C10.8073 6.844 10.662 7.02164 10.4817 7.02164C10.3017 7.02164 10.156 6.84992 10.1546 6.63515C10.1546 6.62115 10.3149 6.30569 10.324 6.29878C10.3723 6.27069 10.4238 6.25251 10.4817 6.25251L10.4817 6.25195Z", stroke: "#FFE2DE", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.25726C10.5359 6.25726 10.5969 6.28191 10.6407 6.31266C10.6511 6.31746 10.8028 6.61895 10.8028 6.63295C10.8028 6.84233 10.6589 7.01404 10.4817 7.01404C10.4395 7.01419 10.3977 7.00448 10.3586 6.98546C10.3196 6.96645 10.2842 6.9385 10.2543 6.90323C10.2245 6.86796 10.2008 6.82607 10.1847 6.77996C10.1686 6.73385 10.1604 6.68444 10.1605 6.63456C10.1605 6.62056 10.3163 6.31059 10.3272 6.30356C10.3742 6.27504 10.4238 6.25726 10.4817 6.25726", stroke: "#FFE2DC", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.26968C10.5359 6.26968 10.5919 6.29282 10.6361 6.32135C10.6466 6.32989 10.7937 6.61682 10.7937 6.63296C10.7937 6.83534 10.653 7.0017 10.4817 7.0017C10.3109 7.0017 10.171 6.83909 10.171 6.63457C10.171 6.61682 10.3209 6.32135 10.3318 6.31433C10.3787 6.28786 10.427 6.26968 10.4817 6.26968M10.4817 6.26429C10.5359 6.26429 10.5938 6.28746 10.6393 6.3175C10.6498 6.32452 10.7983 6.61627 10.7983 6.63243C10.7983 6.83804 10.6561 7.00814 10.4817 7.00814C10.3077 7.00814 10.1665 6.84182 10.1651 6.63403C10.1651 6.6184 10.3195 6.31543 10.3305 6.30838C10.3756 6.28192 10.4257 6.26373 10.4817 6.26373L10.4817 6.26429Z", stroke: "#FFE0D9", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.27655C10.5346 6.27655 10.5892 6.29969 10.6348 6.3267C10.6452 6.33527 10.7878 6.61678 10.7878 6.63295C10.7878 6.83156 10.6503 6.99627 10.4817 6.99627C10.3136 6.99627 10.1774 6.83533 10.1756 6.63456C10.1756 6.61681 10.3223 6.3267 10.3332 6.3197C10.3783 6.29336 10.4271 6.2771 10.4817 6.2771L10.4817 6.27655Z", stroke: "#FFDED6", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.28192C10.5345 6.28192 10.5874 6.30508 10.6316 6.3321C10.642 6.34064 10.7828 6.61465 10.7828 6.63296C10.7828 6.82779 10.6466 6.99089 10.4812 6.99089C10.3164 6.99089 10.1815 6.83157 10.1815 6.63457C10.1815 6.61521 10.3236 6.33376 10.3359 6.32453C10.3797 6.2997 10.4284 6.28195 10.4812 6.28195L10.4817 6.28192Z", stroke: "#FFDED3", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.28949C10.5332 6.28949 10.586 6.31097 10.6284 6.33743C10.6402 6.34597 10.7769 6.61462 10.7769 6.63292C10.7769 6.82453 10.6434 6.98549 10.4812 6.98549C10.3191 6.98549 10.1875 6.82831 10.1861 6.63454C10.1861 6.61517 10.3255 6.33909 10.3392 6.3304C10.3815 6.3056 10.4284 6.28949 10.4812 6.28949H10.4817Z", stroke: "#FFDCD3", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.29486C10.5332 6.29486 10.5846 6.31593 10.6256 6.34283C10.6388 6.35136 10.7723 6.61302 10.7723 6.63293C10.7723 6.8224 10.6407 6.97851 10.4812 6.97851C10.3209 6.97851 10.192 6.82456 10.1906 6.63507C10.1906 6.61409 10.3268 6.34501 10.3418 6.33633C10.3842 6.31156 10.4297 6.29541 10.4812 6.29541L10.4817 6.29486Z", stroke: "#FFDCD1", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.30023C10.5318 6.30023 10.5828 6.32133 10.6238 6.34819C10.637 6.35839 10.7659 6.61141 10.7659 6.63293C10.7659 6.81916 10.6388 6.97312 10.4812 6.97312C10.3236 6.97312 10.1965 6.82293 10.1965 6.63508C10.1965 6.61193 10.33 6.35245 10.3432 6.34172C10.3856 6.31692 10.4312 6.30079 10.4808 6.30079L10.4817 6.30023ZM10.4817 6.30728C10.53 6.30728 10.5815 6.32669 10.6211 6.35356C10.6361 6.36376 10.7618 6.61141 10.7618 6.63293C10.7618 6.8154 10.6361 6.96612 10.4817 6.96612C10.3273 6.96612 10.2029 6.81972 10.2015 6.63508C10.2015 6.61193 10.3318 6.35784 10.3469 6.34708C10.3874 6.32229 10.4316 6.30781 10.4817 6.30781L10.4817 6.30728Z", stroke: "#FFD9CF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4818 6.31268C10.53 6.31268 10.5783 6.33212 10.6179 6.35898C10.6343 6.36918 10.7555 6.60984 10.7555 6.63297C10.7555 6.81169 10.6316 6.96077 10.4813 6.96077C10.33 6.96077 10.2071 6.81597 10.2057 6.63511C10.2057 6.61034 10.3328 6.36324 10.3478 6.35249C10.3888 6.32783 10.4325 6.31323 10.4808 6.31323L10.4818 6.31268Z", stroke: "#FFD6CC", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.3197C10.5286 6.3197 10.5769 6.33914 10.6152 6.36435C10.6316 6.37454 10.7514 6.60984 10.7514 6.63298C10.7514 6.80845 10.6302 6.95325 10.4817 6.95325C10.3332 6.95325 10.2139 6.81167 10.212 6.63459C10.212 6.60981 10.3332 6.36974 10.3514 6.35732C10.3906 6.33418 10.433 6.3197 10.4817 6.3197", stroke: "#FFD6C9", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.32507C10.5286 6.32507 10.5755 6.34449 10.6133 6.36972C10.6298 6.3821 10.7464 6.60765 10.7464 6.63296C10.7464 6.80467 10.627 6.94781 10.4812 6.94781C10.3359 6.94781 10.2175 6.80842 10.2161 6.63457C10.2161 6.6082 10.3359 6.37508 10.3523 6.36269C10.3915 6.33952 10.4339 6.32507 10.4808 6.32507H10.4817Z", stroke: "#FFD3C9", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.33044C10.5273 6.33044 10.5742 6.34988 10.6102 6.37509C10.6279 6.3875 10.7404 6.60769 10.7404 6.63296C10.7404 6.80307 10.6238 6.94246 10.4812 6.94246C10.3373 6.94246 10.222 6.80468 10.222 6.63458C10.222 6.60821 10.3369 6.38048 10.3551 6.3682C10.3943 6.34504 10.4339 6.331 10.4808 6.331L10.4817 6.33044Z", stroke: "#FFD3C6", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.33801C10.5254 6.33801 10.5723 6.35581 10.6088 6.37895C10.6265 6.39122 10.7359 6.60604 10.7359 6.63295C10.7359 6.79928 10.6211 6.93546 10.4812 6.93546C10.3418 6.93546 10.2266 6.80143 10.2266 6.63457C10.2266 6.6082 10.3386 6.38749 10.3582 6.37359C10.3947 6.35249 10.4352 6.33801 10.4808 6.33801H10.4817Z", stroke: "#FFD1C5", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.34338C10.5254 6.34338 10.571 6.36116 10.6061 6.3843C10.6256 6.39822 10.73 6.60439 10.73 6.63455C10.73 6.79549 10.6179 6.93005 10.4817 6.93005C10.3441 6.93005 10.2335 6.79765 10.2316 6.63455C10.2316 6.60602 10.3405 6.39117 10.3605 6.37894C10.3965 6.35784 10.4375 6.34338 10.4812 6.34338H10.4817Z", stroke: "#FFD1C2", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4818 6.3504C10.5241 6.3504 10.5678 6.3682 10.6029 6.38968C10.6239 6.4036 10.7254 6.60443 10.7254 6.63456C10.7254 6.79173 10.6152 6.92254 10.4817 6.92254C10.4497 6.92258 10.418 6.91517 10.3884 6.90071C10.3588 6.88626 10.332 6.86505 10.3093 6.8383C10.2867 6.81155 10.2687 6.77978 10.2565 6.74483C10.2443 6.70987 10.238 6.6724 10.238 6.63457C10.238 6.60443 10.3423 6.39824 10.3638 6.38432C10.4002 6.36322 10.438 6.3504 10.4817 6.3504", stroke: "#FFCFC2", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.35577C10.5241 6.35577 10.5664 6.37133 10.5997 6.39505C10.6207 6.40895 10.7195 6.60441 10.7195 6.6351C10.7195 6.78905 10.6134 6.91768 10.4817 6.91768C10.3501 6.91768 10.2439 6.79226 10.2426 6.63508C10.2426 6.60494 10.3437 6.40414 10.3651 6.39021C10.4011 6.36915 10.4394 6.35633 10.4817 6.35633V6.35577Z", stroke: "#FFCFBE", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.36265C10.5227 6.36265 10.565 6.37838 10.5983 6.39987C10.6192 6.41393 10.7149 6.60225 10.7149 6.63402C10.7149 6.78419 10.6106 6.9096 10.4817 6.9096C10.3532 6.9096 10.2485 6.78635 10.2485 6.63402C10.2485 6.60226 10.3469 6.4084 10.3678 6.39394C10.4024 6.37451 10.4389 6.36224 10.4812 6.36224L10.4817 6.36265ZM10.4817 6.36819C10.5227 6.36819 10.5618 6.38375 10.5951 6.40523C10.6174 6.42137 10.7085 6.60225 10.7085 6.63402C10.7085 6.78044 10.6074 6.90421 10.4812 6.90421C10.3555 6.90421 10.2526 6.78471 10.2526 6.63402C10.2526 6.60226 10.3478 6.41545 10.3705 6.39987C10.4038 6.37894 10.4402 6.36818 10.4808 6.36818L10.4817 6.36819Z", stroke: "#FFCCBC", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4818 6.3736C10.5209 6.3736 10.5605 6.38915 10.5938 6.41066C10.6148 6.42625 10.704 6.60068 10.704 6.6346C10.704 6.7794 10.6043 6.89942 10.4813 6.89942C10.3588 6.89942 10.2585 6.78157 10.2585 6.6346C10.2585 6.60068 10.3492 6.42142 10.3734 6.40585C10.4048 6.38642 10.4412 6.374 10.4808 6.374L10.4818 6.3736Z", stroke: "#FFC9B9", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.37891C10.5195 6.37891 10.5587 6.39447 10.5906 6.41595C10.6129 6.43154 10.6981 6.59847 10.6981 6.63453C10.6981 6.77555 10.6015 6.89238 10.4812 6.89238C10.4525 6.89251 10.4241 6.88593 10.3976 6.87302C10.3711 6.8601 10.347 6.84112 10.3267 6.81714C10.3064 6.79317 10.2904 6.7647 10.2794 6.73335C10.2685 6.70201 10.2629 6.66842 10.2631 6.63453C10.2631 6.599 10.351 6.4267 10.3751 6.41059C10.4065 6.39115 10.4416 6.37891 10.4808 6.37891L10.4817 6.37891Z", stroke: "#FFC9B8", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.38581C10.5195 6.38581 10.5573 6.39985 10.5874 6.42136C10.6115 6.43706 10.6935 6.59848 10.6935 6.63454C10.6935 6.77234 10.5983 6.88698 10.4812 6.88698C10.3633 6.88698 10.2694 6.77448 10.2681 6.63454C10.2681 6.59901 10.3528 6.43432 10.3783 6.41599C10.4097 6.3967 10.4434 6.3858 10.4813 6.3858L10.4817 6.38581Z", stroke: "#FFC6B8", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.39117C10.5181 6.39117 10.5559 6.40689 10.586 6.42673C10.6101 6.44453 10.6889 6.59688 10.6889 6.63455C10.6889 6.76858 10.5951 6.87946 10.4812 6.87946C10.3678 6.87946 10.2739 6.77019 10.2739 6.63455C10.2739 6.5974 10.3541 6.43969 10.3801 6.42137C10.4115 6.40359 10.4434 6.39117 10.4812 6.39117H10.4817Z", stroke: "#FFC6B5", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4818 6.39673C10.5182 6.39673 10.5542 6.41229 10.5829 6.43213C10.6084 6.44991 10.6826 6.5969 10.6826 6.63457C10.6826 6.76482 10.592 6.87409 10.4813 6.87409C10.3692 6.87409 10.2799 6.76698 10.2786 6.63457C10.2786 6.59742 10.3574 6.44507 10.3829 6.42675C10.4116 6.40897 10.4448 6.39673 10.4813 6.39673H10.4818ZM10.4818 6.40416C10.5164 6.40416 10.5514 6.41657 10.5801 6.43808C10.6074 6.45583 10.6785 6.59527 10.6785 6.6351C10.6785 6.76215 10.5892 6.86764 10.4817 6.86764C10.3729 6.86764 10.2849 6.7659 10.2849 6.6351C10.2849 6.59582 10.3592 6.45265 10.3861 6.43269C10.4129 6.41489 10.4448 6.40416 10.4813 6.40416H10.4818Z", stroke: "#FFC5B3", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.40949C10.5149 6.40949 10.5496 6.42356 10.5769 6.44133C10.6038 6.46062 10.6721 6.59523 10.6721 6.63453C10.6721 6.75939 10.5874 6.86167 10.4812 6.86167C10.3756 6.86167 10.289 6.75992 10.289 6.63453C10.289 6.59523 10.3601 6.45745 10.3874 6.43746C10.4161 6.41969 10.4462 6.40894 10.4812 6.40894L10.4817 6.40949Z", stroke: "#FFC2AF", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.4165C10.515 6.4165 10.5482 6.42892 10.5756 6.44669C10.6024 6.46598 10.668 6.59308 10.668 6.63453C10.668 6.75616 10.5833 6.85629 10.4817 6.85629C10.3788 6.85629 10.2954 6.75616 10.2954 6.63453C10.2954 6.59363 10.3619 6.46281 10.3906 6.44281C10.4175 6.4267 10.448 6.41653 10.4813 6.41653L10.4817 6.4165Z", stroke: "#FFC2AD", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.42194C10.5131 6.42194 10.5468 6.43435 10.5723 6.45212C10.601 6.47153 10.6616 6.59151 10.6616 6.63457C10.6616 6.75245 10.5814 6.84934 10.4812 6.84934C10.4573 6.8494 10.4337 6.84388 10.4116 6.83311C10.3895 6.82234 10.3694 6.80652 10.3526 6.78657C10.3357 6.76661 10.3223 6.74291 10.3132 6.71683C10.3041 6.69074 10.2994 6.66279 10.2994 6.63457C10.2994 6.59204 10.3628 6.46824 10.3919 6.44839C10.4188 6.43269 10.4479 6.42194 10.4812 6.42194H10.4817Z", stroke: "#FFBEAD", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4818 6.42896C10.5132 6.42896 10.5451 6.43915 10.571 6.45748C10.5993 6.47899 10.6571 6.5915 10.6571 6.63457C10.6571 6.74867 10.5783 6.84394 10.4813 6.84394C10.3847 6.84394 10.3059 6.75081 10.3041 6.63457C10.3041 6.59204 10.3647 6.47526 10.3947 6.45376C10.4213 6.43733 10.4509 6.42883 10.4808 6.42898L10.4818 6.42896Z", stroke: "#FFBEAB", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.43439C10.5117 6.43439 10.5423 6.44677 10.5678 6.46289C10.5978 6.48384 10.6511 6.59155 10.6511 6.63461C10.6511 6.7471 10.5755 6.83699 10.4817 6.83699C10.3865 6.83699 10.3109 6.74763 10.3109 6.63461C10.3109 6.58994 10.3664 6.48066 10.397 6.45918C10.4224 6.44511 10.4498 6.43439 10.4817 6.43439", stroke: "#FFBCA8", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.43976C10.5118 6.43976 10.5405 6.45217 10.5651 6.46829C10.5951 6.48921 10.6466 6.58995 10.6466 6.63462C10.6466 6.74172 10.5723 6.83161 10.4812 6.83161C10.4593 6.83169 10.4376 6.82665 10.4174 6.81677C10.3971 6.8069 10.3787 6.79239 10.3632 6.77408C10.3477 6.75578 10.3354 6.73403 10.3271 6.71009C10.3187 6.68616 10.3145 6.66051 10.3145 6.63462C10.3145 6.58995 10.3674 6.48606 10.3992 6.46456C10.4234 6.45051 10.4507 6.43976 10.4808 6.43976H10.4817Z", stroke: "#FFBCA6", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.44727C10.5104 6.44727 10.5391 6.45747 10.5618 6.47359C10.5933 6.49454 10.6421 6.58988 10.6421 6.63455C10.6421 6.74005 10.5696 6.82402 10.4817 6.82402C10.4606 6.82416 10.4397 6.81936 10.4202 6.80989C10.4007 6.80042 10.383 6.78647 10.368 6.76884C10.3531 6.75122 10.3413 6.73028 10.3333 6.70723C10.3253 6.68418 10.3212 6.65948 10.3214 6.63455C10.3214 6.58827 10.3696 6.49136 10.4029 6.46988C10.427 6.45581 10.453 6.44672 10.4817 6.44672L10.4817 6.44727Z", stroke: "#FFB9A6", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4818 6.45262C10.5086 6.45262 10.5359 6.46282 10.5605 6.47896C10.592 6.50209 10.6361 6.58826 10.6361 6.63454C10.6361 6.73628 10.5664 6.81862 10.4817 6.81862C10.4613 6.81863 10.441 6.81388 10.4221 6.80463C10.4032 6.79539 10.386 6.78183 10.3715 6.76473C10.3571 6.74764 10.3456 6.72734 10.3378 6.705C10.3299 6.68266 10.3259 6.65872 10.3259 6.63454C10.3259 6.58662 10.371 6.49892 10.4061 6.47523C10.4292 6.45994 10.4553 6.45196 10.4817 6.45209L10.4818 6.45262Z", stroke: "#FFB9A2", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.45966C10.5086 6.45966 10.5346 6.4682 10.5573 6.48431C10.5888 6.50747 10.6316 6.58606 10.6316 6.63453C10.6316 6.73302 10.5651 6.81324 10.4817 6.81324C10.3984 6.81324 10.3318 6.73302 10.3318 6.63453C10.3318 6.58661 10.3742 6.5043 10.4075 6.48058C10.4284 6.46654 10.4544 6.45966 10.4817 6.45966M10.4817 6.46502C10.5072 6.46502 10.5332 6.47522 10.5541 6.48967C10.5874 6.51284 10.6252 6.58608 10.6252 6.63453C10.6252 6.72927 10.56 6.80624 10.4813 6.80624C10.4427 6.80622 10.4058 6.78812 10.3785 6.75592C10.3513 6.72372 10.336 6.68006 10.3359 6.63453C10.3359 6.58447 10.3751 6.50968 10.4102 6.48816C10.4312 6.47245 10.4539 6.46502 10.4812 6.46502H10.4817Z", stroke: "#FFB8A0", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.4704C10.5069 6.47031 10.5316 6.47888 10.5527 6.49508C10.586 6.51827 10.6206 6.58449 10.6206 6.63454C10.6206 6.72768 10.5573 6.80086 10.4812 6.80086C10.4024 6.80086 10.3418 6.72768 10.3405 6.63454C10.3405 6.58449 10.3764 6.51504 10.4115 6.49135C10.4325 6.47896 10.4552 6.47042 10.4812 6.47042L10.4817 6.4704Z", stroke: "#FFB59E", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.47729C10.5059 6.47729 10.53 6.48432 10.5496 6.50044C10.5842 6.52526 10.6147 6.58449 10.6147 6.63454C10.6147 6.72389 10.556 6.79387 10.4812 6.79387C10.407 6.79387 10.3464 6.72442 10.3464 6.63454C10.3464 6.58287 10.3779 6.52204 10.4143 6.49671C10.4339 6.48433 10.4548 6.4773 10.4808 6.4773L10.4817 6.47729Z", stroke: "#FFB59C", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.48285C10.504 6.48285 10.5286 6.49139 10.5469 6.50378C10.5828 6.52855 10.6102 6.58236 10.6102 6.63405C10.6102 6.71964 10.5528 6.78799 10.4817 6.78799C10.4107 6.78799 10.3514 6.72016 10.3514 6.63619C10.3514 6.58291 10.3801 6.52692 10.4179 6.50214C10.4357 6.48973 10.4571 6.48285 10.4812 6.48285H10.4817Z", stroke: "#FFB39C", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.78203C10.4978 6.78211 10.5138 6.77841 10.5287 6.77116C10.5436 6.76392 10.5571 6.75325 10.5685 6.73979C10.5799 6.72633 10.5889 6.71033 10.595 6.69273C10.6012 6.67512 10.6043 6.65626 10.6042 6.63722C10.6042 6.55487 10.55 6.49078 10.4817 6.49078C10.412 6.49078 10.3578 6.55487 10.3578 6.63722C10.3578 6.71742 10.412 6.78203 10.4817 6.78203", stroke: "#FFB399", strokeWidth: "0.00553672" }), jsx("path", { d: "M10.4817 6.78363C10.5496 6.78363 10.606 6.71742 10.606 6.63723C10.606 6.55703 10.55 6.49078 10.4817 6.49078C10.4138 6.49078 10.3578 6.55648 10.3578 6.63722C10.3578 6.71742 10.4134 6.78363 10.4817 6.78363", stroke: "white", strokeWidth: "0.00414091" }), jsx("path", { d: "M10.4817 6.78363C10.5496 6.78363 10.606 6.71742 10.606 6.63723C10.606 6.55703 10.55 6.49078 10.4817 6.49078C10.4138 6.49078 10.3578 6.55648 10.3578 6.63722C10.3578 6.71742 10.4134 6.78363 10.4817 6.78363", fill: "white" }), jsx("path", { d: "M10.509 6.49194L10.5222 6.41492M10.4953 6.48972L10.5026 6.41119M10.4817 6.48972V6.40953M10.4698 6.48972L10.4639 6.41119M10.4562 6.49194L10.4425 6.41492M10.4438 6.49733L10.4229 6.42028M10.432 6.50269L10.4051 6.42952M10.4211 6.50806L10.3865 6.44027M10.4092 6.51669L10.37 6.45266M10.4001 6.52747L10.3532 6.46661M10.3892 6.53821L10.3395 6.48491M10.3819 6.55113L10.3277 6.50324M10.3742 6.56194L10.3154 6.5226M10.3678 6.57591L10.3058 6.54415M10.3632 6.59044L10.2999 6.56566M10.3591 6.60444L10.294 6.58883M10.3573 6.62058L10.2908 6.61196M10.3573 6.63674H10.2894M10.3573 6.65127L10.2908 6.65988M10.3591 6.66741L10.294 6.68305M10.3632 6.68194L10.2981 6.7067M10.3678 6.69594L10.3058 6.72768M10.3742 6.71046L10.3017 6.76216M10.3801 6.72285L10.2348 6.8461M10.3892 6.73521L10.2316 6.89779M10.3969 6.74602L10.2685 6.91607M10.4074 6.75516L10.3108 6.91071M10.4183 6.7659L10.3172 6.97531M10.4302 6.77129L10.3742 6.92307M10.4425 6.77829L10.3851 6.98767M10.4543 6.78207L10.4302 6.92307M10.468 6.78368L10.4502 7.00004M10.494 6.78368L10.5012 6.86227M10.5076 6.78207L10.5468 6.98606M10.5199 6.77829L10.5532 6.89779M10.5318 6.77291L10.6106 6.97314M10.5441 6.76591L10.6288 6.93601M10.5546 6.75677L10.6757 6.94462M10.565 6.74816L10.6712 6.89296M10.5741 6.73738L10.7318 6.90532M10.5819 6.72444L10.668 6.79768M10.5896 6.71207L10.6484 6.75138M10.5955 6.69755L10.6575 6.7293M10.6001 6.68357L10.6634 6.7083M10.6047 6.66902L10.6698 6.68466M10.606 6.65288L10.6725 6.66148M10.6078 6.6367H10.6743M10.606 6.62273L10.6725 6.61573M10.6046 6.6082L10.6698 6.59043M10.6001 6.59204L10.6652 6.56727M10.5969 6.57752L10.6575 6.54576M10.591 6.56352L10.6498 6.52421M10.5832 6.55115L10.6374 6.50489M10.5759 6.53821L10.6256 6.48491M10.5668 6.52746L10.6106 6.46877M10.5559 6.51668L10.5951 6.45417M10.5454 6.50973L10.5787 6.44026M10.5331 6.50269L10.56 6.42951M10.5213 6.49732L10.5423 6.42249M10.4817 6.30191V6.24115M10.4243 6.30893L10.4138 6.25024M10.3678 6.33044L10.3468 6.27504M10.3168 6.36654L10.2853 6.31639M10.2726 6.41284L10.2334 6.3719M10.238 6.47043L10.1924 6.4386M10.2134 6.53282L10.1637 6.51343M10.1997 6.6012L10.1487 6.59634M10.1997 6.67115L10.1487 6.67817M10.2134 6.7406L10.1619 6.75837M10.7272 6.8052L10.7727 6.83534M10.7518 6.7406L10.8001 6.75998M10.7636 6.67279L10.8146 6.67976M10.7636 6.60279L10.8146 6.59798M10.7518 6.53496L10.8014 6.5156M10.7272 6.47043L10.7727 6.44026M10.6926 6.41492L10.7318 6.3719M10.6502 6.3682L10.6789 6.31802M10.5987 6.33265L10.6197 6.2756M10.5409 6.30893L10.5514 6.25024", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M10.5546 6.70506C10.5546 6.70506 10.5368 6.69484 10.5259 6.69484C10.5154 6.69484 10.4703 6.69161 10.4503 6.69806C10.4398 6.70131 10.4325 6.71206 10.4325 6.71206C10.4325 6.71206 10.4443 6.72609 10.4689 6.72983C10.4944 6.73145 10.5095 6.72983 10.5231 6.72498C10.5382 6.72017 10.5546 6.70561 10.5546 6.70561V6.70506Z", fill: "#E60000", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M10.4348 6.68351C10.4348 6.68351 10.4361 6.64263 10.4603 6.59255C10.4603 6.59255 10.453 6.60657 10.4484 6.61893C10.4484 6.61893 10.4352 6.62755 10.4275 6.61571C10.4188 6.6071 10.4234 6.60333 10.4289 6.58716C10.4348 6.57694 10.433 6.56618 10.4407 6.55866C10.4466 6.55166 10.4526 6.55005 10.4694 6.55005C10.4858 6.55005 10.4963 6.55166 10.5099 6.5748C10.5218 6.59416 10.5295 6.61193 10.5355 6.62271C10.5487 6.64908 10.5487 6.67977 10.5487 6.67977L10.5527 6.70454C10.5527 6.70454 10.535 6.69429 10.524 6.69429C10.5136 6.69429 10.4685 6.69104 10.4484 6.69752C10.438 6.70077 10.4307 6.71152 10.4307 6.71152C10.4307 6.71152 10.4234 6.69215 10.4334 6.68299L10.4348 6.68351Z", fill: "#E60000", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M10.4348 6.68329C10.4348 6.68329 10.448 6.67499 10.4922 6.67499C10.545 6.67654 10.5464 6.67964 10.5496 6.68487", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M10.4803 6.91282V6.69804C10.4803 6.69804 10.4862 6.69107 10.4999 6.69804V6.91121C10.4999 6.91121 10.504 7.07593 10.4895 7.07379C10.4717 7.07379 10.4808 7.03665 10.4808 6.91282H10.4803Z", fill: "#FFCC00", stroke: "black", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.76336 7.28536C9.77201 7.28694 9.79343 7.26755 9.79935 7.26219C9.808 7.25733 9.81256 7.24119 9.81893 7.23203C9.82622 7.22342 9.84764 7.21105 9.85673 7.20353C9.89911 7.17337 9.91867 7.15561 9.94738 7.10878C9.98793 7.04472 10.0335 6.99092 10.0927 6.95323C10.1105 6.94084 10.1396 6.94461 10.1592 6.95483C10.1651 6.95806 10.1742 6.96506 10.1802 6.97259C10.2043 6.99575 10.2389 7.01189 10.2785 7.02589C10.3177 7.03989 10.3268 7.07056 10.3573 7.10286C10.3727 7.11895 10.3901 7.1322 10.4088 7.14217C10.4102 7.14377 10.4147 7.15078 10.4161 7.15239C10.4325 7.168 10.4521 7.18092 10.4676 7.19491C10.4963 7.22503 10.5218 7.25572 10.5491 7.28802C10.5537 7.29286 10.5551 7.30366 10.5596 7.30741C10.5792 7.33055 10.5988 7.35369 10.6229 7.36822C10.6484 7.38222 10.6698 7.40213 10.6926 7.41827C10.4576 7.42852 10.2426 7.4113 10.0061 7.41991H9.96242C9.94601 7.41827 9.93555 7.41991 9.91731 7.41991C9.84627 7.41991 9.77794 7.41991 9.69458 7.41827L9.76109 7.28425", fill: "#009900" }), jsx("path", { d: "M10.0709 6.96991C10.0827 6.96831 10.0768 6.96506 10.0873 6.97314M10.0499 6.98606C10.0617 6.98445 10.0663 6.97584 10.0754 6.98767M10.039 6.9952C10.0431 6.9952 10.0476 6.98822 10.0645 7.00003M10.0271 7.01297C10.0376 7.00975 10.0435 7.01137 10.054 7.01459M10.0121 7.02534C10.0239 7.02053 10.0299 7.0302 10.0435 7.02697M9.99661 7.04364C10.0053 7.04364 10.0071 7.04042 10.0144 7.04364C10.0235 7.04527 10.0217 7.04364 10.0308 7.04527M9.98023 7.06142C9.98887 7.06142 9.99205 7.05978 9.99981 7.06142C10.0103 7.06303 10.0071 7.06303 10.0176 7.06142M9.9711 7.07754C9.98887 7.07595 9.99342 7.07595 10.0057 7.08081M9.94651 7.11524C9.96154 7.11039 9.96883 7.11039 9.98112 7.11686M9.70099 7.41452C9.74927 7.40591 9.80712 7.41613 9.8554 7.40754M9.95425 7.09749C9.9661 7.09263 9.9629 7.09425 9.97521 7.09586C9.98843 7.09747 9.99297 7.09908 9.99616 7.09747M9.93467 7.13139C9.94651 7.12278 9.96154 7.12817 9.97383 7.13139M9.96655 7.14592C9.95334 7.14269 9.93967 7.14592 9.926 7.14592M9.95561 7.16367C9.94242 7.15886 9.92691 7.15669 9.91189 7.16044M9.89367 7.17608C9.91006 7.17608 9.92644 7.17122 9.94515 7.17767M9.87863 7.19222C9.8964 7.18522 9.91506 7.19058 9.93467 7.19382M9.86041 7.20458C9.88 7.20297 9.89821 7.20297 9.91781 7.20297C9.92054 7.20297 9.92647 7.19975 9.92966 7.20457M9.92419 7.21753C9.89549 7.2245 9.86678 7.21913 9.83627 7.22075M9.90733 7.23528C9.89868 7.23528 9.88319 7.24011 9.86998 7.2385C9.86862 7.2385 9.86589 7.23528 9.86269 7.23528C9.84765 7.23528 9.83262 7.23528 9.81897 7.24011M9.81168 7.25305C9.81758 7.2498 9.82532 7.24819 9.83126 7.25141C9.84903 7.25305 9.86725 7.25141 9.88411 7.25627C9.88819 7.25789 9.89276 7.2595 9.89915 7.2595M9.8012 7.26219C9.81441 7.26219 9.8267 7.26058 9.84038 7.2638C9.85677 7.26703 9.87362 7.27241 9.89003 7.27241H9.88866M9.7889 7.27294C9.80256 7.27294 9.81577 7.27616 9.82989 7.27993C9.84765 7.28316 9.8677 7.27833 9.88411 7.28316M9.77249 7.28371C9.79026 7.29233 9.8103 7.28533 9.8299 7.28855C9.84765 7.29178 9.86451 7.29178 9.88274 7.29555M9.7602 7.30147C9.78707 7.30147 9.81622 7.30147 9.84492 7.30632C9.85221 7.30794 9.86589 7.3133 9.87635 7.30955M9.74974 7.31602C9.77661 7.32086 9.80576 7.31602 9.83307 7.32463C9.84595 7.32794 9.85909 7.32957 9.87226 7.32947H9.86953M9.73879 7.34077C9.74017 7.33916 9.74469 7.33755 9.74609 7.33755C9.76841 7.33755 9.78982 7.34077 9.8126 7.33916C9.83035 7.33755 9.8504 7.33591 9.86678 7.34238H9.86542M9.7283 7.35691C9.77205 7.35207 9.81758 7.35852 9.86133 7.35691M9.72057 7.37308C9.76749 7.37789 9.81441 7.37308 9.85996 7.37789M9.71328 7.38922C9.73425 7.39405 9.75383 7.38761 9.77386 7.39244C9.7889 7.39566 9.80256 7.39727 9.81758 7.39566C9.83081 7.39085 9.8431 7.39566 9.8554 7.39405M10.0454 7.1653H10.0495M10.0408 7.17228C10.0422 7.17228 10.0449 7.16906 10.0449 7.17228M10.0344 7.18142H10.0449M10.0317 7.18844H10.0435M10.0226 7.19758C10.0299 7.19758 10.0358 7.19922 10.0435 7.19922H10.0422M10.0167 7.20997C10.0239 7.20675 10.033 7.20997 10.0408 7.20675H10.0394M10.0057 7.2245H10.039H10.0376M9.99981 7.23366C10.0117 7.23366 10.0239 7.23203 10.0344 7.23528M9.99207 7.24766C10.0053 7.24605 10.0208 7.24766 10.034 7.24927M9.98429 7.26219C9.99297 7.26058 10.0007 7.26703 10.0098 7.26916C10.0157 7.2708 10.0217 7.26916 10.0276 7.26756M9.98159 7.27294C9.99525 7.2778 10.0103 7.27993 10.0226 7.27993M9.97383 7.28532C9.98568 7.28532 9.99616 7.28855 10.0071 7.2923C10.013 7.29394 10.0176 7.2923 10.0221 7.2923M9.95881 7.30525C9.97383 7.29827 9.99024 7.30364 10.0057 7.30847C10.0098 7.31008 10.0162 7.30847 10.0221 7.30847H10.0208M9.95745 7.31761C9.97383 7.3128 9.99205 7.3128 10.0071 7.32086H10.0157M9.94652 7.33377C9.96883 7.33863 9.99205 7.33055 10.013 7.33702M9.94059 7.34452C9.95836 7.35314 9.9784 7.34452 9.99661 7.35152C10.0025 7.35314 10.0098 7.35314 10.0162 7.34992M9.92874 7.36068C9.93641 7.35712 9.94474 7.35601 9.95289 7.35746C9.97385 7.36444 9.99205 7.36068 10.0117 7.36444M9.91781 7.37683C9.92191 7.37683 9.92647 7.38005 9.93102 7.37844C9.9579 7.37364 9.98523 7.37844 10.0112 7.37683M9.91189 7.38921C9.93286 7.39783 9.95425 7.38921 9.9784 7.39619C9.98568 7.39943 9.99797 7.40105 10.0071 7.39619M9.90414 7.40752C9.93559 7.40913 9.96746 7.40591 10.0053 7.41074M10.0891 7.18522C10.0918 7.18522 10.095 7.18844 10.0977 7.18844M10.0845 7.19758C10.0886 7.19597 10.0918 7.19436 10.0964 7.19597M10.0818 7.20836C10.0877 7.20836 10.0923 7.20675 10.0982 7.20997M10.0772 7.22289C10.0832 7.22289 10.0923 7.22289 10.0982 7.2245M10.0709 7.23688C10.0795 7.23366 10.0886 7.2385 10.0977 7.23528M10.0695 7.24766C10.0782 7.25089 10.0873 7.24766 10.0968 7.24927V7.24767M10.0649 7.26378C10.0722 7.26378 10.0813 7.26219 10.0891 7.26541C10.0918 7.26703 10.095 7.26541 10.0977 7.2638M10.0636 7.27833C10.0754 7.2735 10.0859 7.28155 10.0982 7.27833M10.059 7.2961C10.0709 7.2961 10.0832 7.29771 10.0968 7.2961M10.0545 7.31064C10.0586 7.30902 10.0649 7.30366 10.0709 7.30741C10.0782 7.31064 10.0873 7.30902 10.0964 7.31064M10.0513 7.32677C10.0663 7.3198 10.0813 7.33002 10.0964 7.32194M10.0499 7.34292C10.0558 7.3413 10.0631 7.3413 10.0709 7.34292C10.0795 7.34616 10.0886 7.34452 10.0977 7.34292M10.0454 7.35855C10.0617 7.35369 10.0818 7.35855 10.0996 7.35691L10.0982 7.35852M10.0344 7.37307C10.0567 7.37146 10.0813 7.36822 10.1041 7.36822M10.0376 7.38922C10.0617 7.38438 10.0891 7.38599 10.1146 7.38599M10.033 7.40536C10.0586 7.41022 10.0631 7.40374 10.0891 7.40374C10.0932 7.40374 10.1146 7.39891 10.1192 7.39677H10.1342M10.033 7.41452C10.0709 7.41127 10.1119 7.41774 10.151 7.40754M9.86316 7.40913H9.89459M10.0135 7.41452C10.0176 7.41613 10.0221 7.41288 10.0239 7.41613M10.162 7.41074C10.1934 7.40752 10.2253 7.41774 10.2572 7.41074M10.1456 7.39838C10.1665 7.39139 10.1847 7.39675 10.2043 7.40161C10.2057 7.40161 10.2057 7.40483 10.2071 7.40643C10.2248 7.40966 10.2417 7.40643 10.2581 7.40483M10.033 7.39622H10.0121M9.9055 7.39083C9.89231 7.39244 9.87863 7.39244 9.86316 7.39405M10.1724 7.03989H10.1784M10.1756 7.05064C10.177 7.05064 10.1797 7.05064 10.1829 7.04903M10.177 7.06678C10.177 7.06517 10.1784 7.06356 10.1784 7.06356H10.187M10.1802 7.07756C10.1843 7.07433 10.1888 7.07595 10.1952 7.07595M10.1966 7.0867C10.1925 7.0867 10.1879 7.08833 10.1834 7.08994M10.1893 7.10447C10.1934 7.10125 10.198 7.10125 10.2025 7.10125M10.2089 7.11363H10.1893M10.1952 7.126C10.2025 7.126 10.2089 7.12761 10.2148 7.12278M10.2198 7.14C10.2125 7.14 10.2048 7.14 10.1989 7.14322M10.203 7.1583C10.2102 7.15992 10.2194 7.1583 10.2271 7.15344M10.229 7.16367C10.2216 7.16692 10.2139 7.16853 10.2066 7.17066M10.2107 7.18522C10.2194 7.18036 10.2317 7.18522 10.2408 7.18199M10.244 7.19597C10.2367 7.19597 10.2276 7.19436 10.2198 7.19597C10.2171 7.19758 10.2157 7.19922 10.2125 7.19922M10.218 7.22289C10.2239 7.21966 10.2298 7.21428 10.2376 7.21589C10.2376 7.21105 10.2417 7.21589 10.2449 7.21266C10.2462 7.21106 10.249 7.21266 10.2522 7.21266M10.2576 7.2283C10.2472 7.22666 10.2353 7.22989 10.223 7.2315M10.2257 7.24928C10.239 7.24441 10.2526 7.24441 10.2667 7.24066M10.2271 7.26919C10.2421 7.26594 10.2572 7.26594 10.2722 7.25894M10.2831 7.2708C10.2667 7.27403 10.2485 7.2708 10.2335 7.27941M10.2362 7.29769C10.2389 7.29932 10.2403 7.30094 10.2435 7.30094C10.2585 7.29233 10.2749 7.28694 10.2904 7.28856M10.2954 7.3031C10.2804 7.31332 10.2622 7.30791 10.244 7.31008C10.2426 7.31008 10.2412 7.31171 10.238 7.31332M10.244 7.32677C10.2636 7.32355 10.2818 7.32194 10.3014 7.31816M10.3136 7.33377C10.2986 7.33539 10.2836 7.33216 10.2686 7.33539C10.2613 7.33702 10.2549 7.34025 10.2476 7.34238M10.2499 7.35691C10.2526 7.35691 10.2558 7.35852 10.2572 7.3553C10.2768 7.34292 10.2991 7.34669 10.3205 7.34669M10.3273 7.36068C10.3096 7.36068 10.2913 7.35586 10.2731 7.3623C10.2672 7.36555 10.2613 7.36927 10.2535 7.36927M10.259 7.38544C10.2695 7.38383 10.2786 7.37846 10.2877 7.37683C10.3073 7.37361 10.3269 7.37522 10.3483 7.37522M10.3483 7.3876C10.3364 7.38438 10.3241 7.38438 10.3137 7.3876C10.2959 7.39244 10.2804 7.39783 10.2622 7.39783M10.2726 7.40913C10.2863 7.40752 10.2995 7.40216 10.3132 7.39891C10.3251 7.39566 10.3355 7.39727 10.3478 7.39727M10.2727 7.41827C10.2936 7.41505 10.315 7.41827 10.336 7.41129C10.3433 7.40805 10.351 7.41288 10.3583 7.41129M10.3592 7.40161C10.3956 7.40483 10.4302 7.39675 10.4653 7.40483M10.3665 7.41451C10.3706 7.41613 10.3738 7.41127 10.377 7.41127C10.4057 7.41127 10.4344 7.41288 10.4649 7.41452M10.4544 7.32677H10.4585M10.4562 7.33755C10.459 7.33916 10.4635 7.33269 10.4667 7.33755M10.459 7.34991H10.4767M10.4635 7.36768C10.4695 7.35907 10.4786 7.36768 10.4845 7.36283M10.4681 7.38383C10.4754 7.37685 10.4877 7.38544 10.495 7.37685M10.4699 7.39622C10.4817 7.39299 10.494 7.39783 10.5045 7.38924M10.4745 7.40913C10.4922 7.40052 10.5123 7.41397 10.5287 7.39891M10.4758 7.41991C10.4982 7.41127 10.5214 7.41991 10.5437 7.41827M10.5578 7.41827C10.5967 7.41666 10.6356 7.41666 10.6744 7.41827M10.541 7.40161C10.5756 7.40483 10.6271 7.40161 10.6699 7.40483", stroke: "#007200", strokeWidth: "0.00414091" }), jsx("path", { d: "M9.76336 7.28536C9.77201 7.28694 9.79343 7.26755 9.79935 7.26219C9.808 7.25733 9.81256 7.24119 9.81893 7.23203C9.82622 7.22342 9.84764 7.21105 9.85673 7.20353C9.89911 7.17337 9.91867 7.15561 9.94738 7.10878C9.98793 7.04472 10.0335 6.99092 10.0927 6.95323C10.1105 6.94084 10.1396 6.94461 10.1592 6.95483C10.1651 6.95806 10.1742 6.96506 10.1802 6.97259C10.2043 6.99575 10.2389 7.01189 10.2785 7.02589C10.3177 7.03989 10.3268 7.07056 10.3573 7.10286C10.3727 7.11895 10.3901 7.1322 10.4088 7.14217C10.4102 7.14377 10.4147 7.15078 10.4161 7.15239C10.4325 7.168 10.4521 7.18092 10.4676 7.19491C10.4963 7.22503 10.5218 7.25572 10.5491 7.28802C10.5537 7.29286 10.5551 7.30366 10.5596 7.30741C10.5792 7.33055 10.5988 7.35369 10.6229 7.36822C10.6484 7.38222 10.6698 7.40213 10.6926 7.41827C10.4576 7.42852 10.2426 7.4113 10.0061 7.41991H9.96242C9.94601 7.41827 9.93555 7.41991 9.91731 7.41991C9.84627 7.41991 9.77794 7.41991 9.69458 7.41827", stroke: "black", strokeWidth: "0.00828182" }), jsx("path", { d: "M10.6867 7.41289C10.6671 7.39892 10.6475 7.38278 10.6261 7.37039C10.6019 7.35639 10.5823 7.33325 10.5628 7.30954C10.5587 7.30633 10.5568 7.29558 10.5523 7.29017C10.5254 7.25842 10.4994 7.22775 10.4707 7.19706C10.4557 7.18306 10.4361 7.17068 10.4193 7.15454C10.4179 7.15293 10.4134 7.14593 10.412 7.14432C10.3932 7.13449 10.3758 7.12124 10.3605 7.10503C10.3409 7.08403 10.3304 7.06412 10.314 7.04796V7.04635C10.3245 7.03937 10.335 7.03073 10.3455 7.02321C10.3605 7.0146 10.3846 7.01621 10.4015 7.02643C10.4074 7.02806 10.4133 7.03343 10.4193 7.03881C10.4389 7.05818 10.4676 7.07273 10.5008 7.08509C10.5341 7.09532 10.5414 7.12062 10.5673 7.14756C10.5792 7.15993 10.5928 7.17229 10.6079 7.17932C10.6092 7.18092 10.6119 7.18629 10.6138 7.18954C10.6288 7.20192 10.6452 7.21053 10.6575 7.22504C10.6806 7.25013 10.7032 7.27579 10.7254 7.30201C10.7281 7.30526 10.7295 7.31442 10.7327 7.31818C10.7504 7.33755 10.7673 7.35747 10.7869 7.36822C10.8065 7.38061 10.8247 7.39676 10.8443 7.40914C10.7914 7.41237 10.7399 7.41237 10.6867 7.41237H10.6853", fill: "#009900" }), jsx("path", { d: "M10.35 7.08833C10.3528 7.08833 10.3756 7.08348 10.3783 7.08348M10.3573 7.09531C10.3646 7.09531 10.3815 7.09531 10.3874 7.0905M10.3696 7.10825L10.3906 7.10339H10.3992M10.3787 7.11525C10.3815 7.11365 10.4102 7.11525 10.4152 7.11365M10.4225 7.12225C10.4165 7.12225 10.3942 7.12386 10.391 7.12706M10.4106 7.14217C10.4134 7.13892 10.4302 7.13517 10.4361 7.13517M10.4498 7.14755C10.4425 7.14755 10.4275 7.14917 10.4197 7.14917M10.4348 7.16366C10.4421 7.16206 10.4557 7.16044 10.4603 7.15669M10.4758 7.17067C10.4671 7.17067 10.4562 7.17228 10.4457 7.17228M10.4589 7.18522C10.4694 7.18522 10.4831 7.18522 10.4903 7.18361M10.5017 7.19059C10.4958 7.19383 10.4821 7.19544 10.4749 7.19759M10.4881 7.21214C10.4953 7.20728 10.509 7.21053 10.5195 7.20728M10.5304 7.21914C10.52 7.21914 10.5108 7.21914 10.5035 7.22075C10.5022 7.22075 10.5008 7.22236 10.4963 7.22236M10.5623 7.24766C10.5473 7.24605 10.5368 7.24927 10.5245 7.25089M10.5363 7.26756C10.5482 7.26058 10.5632 7.26275 10.5773 7.25895M10.5669 7.31064C10.5696 7.31224 10.5833 7.30902 10.5865 7.30902C10.6074 7.3058 10.6106 7.30041 10.6302 7.30203M10.6411 7.31225C10.6156 7.31709 10.6065 7.31709 10.5869 7.32086C10.5842 7.32086 10.5783 7.32247 10.5764 7.32247M10.5878 7.33377C10.6074 7.32894 10.6347 7.33055 10.6543 7.32678M10.6757 7.33916C10.6607 7.34238 10.6411 7.33916 10.6261 7.34238C10.6202 7.344 10.6065 7.34561 10.5992 7.34725M10.6183 7.3623C10.6197 7.3623 10.6243 7.3623 10.6256 7.36069C10.6407 7.34831 10.6662 7.35208 10.6889 7.35208M10.7049 7.36391C10.6826 7.36391 10.6735 7.36391 10.6566 7.36555C10.6507 7.36716 10.6416 7.37036 10.6343 7.37036M10.6516 7.38544C10.6726 7.38063 10.7104 7.37683 10.6876 7.37847C10.7086 7.37683 10.7117 7.37683 10.7359 7.37683M10.7422 7.38544C10.7272 7.38384 10.7122 7.38384 10.7031 7.38706C10.6944 7.3903 10.6972 7.39191 10.6671 7.39405M10.6789 7.40161C10.694 7.39999 10.6953 7.40161 10.709 7.39675C10.7195 7.39352 10.7331 7.39513 10.7464 7.39513M10.6867 7.40913C10.709 7.40591 10.7108 7.40591 10.7336 7.40752C10.7409 7.40752 10.7454 7.40752 10.7532 7.40591M10.3423 7.07755C10.3482 7.07433 10.351 7.07272 10.3601 7.07433C10.3587 7.06948 10.3642 7.07433 10.3674 7.07111C10.3674 7.06948 10.3714 7.07111 10.3746 7.07111M10.3318 7.06517C10.3377 7.06195 10.3423 7.06195 10.3514 7.06356C10.3487 7.05872 10.3573 7.06356 10.3573 7.06033C10.3587 7.05873 10.3632 7.06033 10.3678 7.06033M10.5076 7.24066C10.5136 7.23741 10.5136 7.2358 10.5227 7.23741C10.52 7.23259 10.5313 7.23741 10.5332 7.23419C10.5332 7.23259 10.5436 7.23419 10.5468 7.23419M10.5455 7.28158C10.5587 7.27834 10.5769 7.27834 10.5892 7.27134M10.6106 7.28911C10.5942 7.29234 10.5682 7.29072 10.5564 7.29772M10.3546 7.04689C10.3382 7.04529 10.3368 7.0517 10.3245 7.0517", stroke: "#007200", strokeWidth: "0.00414091" }), jsx("path", { d: "M10.6867 7.41289C10.6671 7.39892 10.6475 7.38278 10.6261 7.37039C10.6019 7.35639 10.5823 7.33325 10.5628 7.30954C10.5587 7.30633 10.5568 7.29558 10.5523 7.29017C10.5254 7.25842 10.4994 7.22775 10.4707 7.19706C10.4557 7.18306 10.4361 7.17068 10.4193 7.15454C10.4179 7.15293 10.4134 7.14593 10.412 7.14432C10.3931 7.13462 10.3757 7.12135 10.3605 7.10503C10.3409 7.08403 10.3304 7.06412 10.314 7.04796V7.04635C10.3245 7.03937 10.335 7.03073 10.3455 7.02321C10.3605 7.0146 10.3846 7.01621 10.4015 7.02643C10.4074 7.02806 10.4133 7.03343 10.4193 7.03881C10.4389 7.05818 10.4676 7.07273 10.5008 7.08509C10.5341 7.09532 10.5414 7.12062 10.5673 7.14756C10.5792 7.15993 10.5928 7.17229 10.6079 7.17932C10.6092 7.18092 10.6119 7.18629 10.6138 7.18954C10.6288 7.20192 10.6452 7.21053 10.6575 7.22504C10.6806 7.25013 10.7032 7.27579 10.7254 7.30201C10.7281 7.30526 10.7295 7.31442 10.7327 7.31818C10.7504 7.33755 10.7673 7.35747 10.7869 7.36822C10.8065 7.38061 10.8247 7.39676 10.8443 7.40914C10.7914 7.41237 10.7399 7.41237 10.6867 7.41237H10.6853L10.6867 7.41289Z", stroke: "black", strokeWidth: "0.00828182" }), jsx("path", { d: "M10.4771 7.07378C10.4844 7.07538 10.4921 7.07861 10.4994 7.08239C10.5327 7.09261 10.54 7.11789 10.5659 7.14481C10.5778 7.1572 10.5914 7.16958 10.6065 7.17656C10.6078 7.1782 10.6105 7.18358 10.6124 7.1868C10.6274 7.19919 10.6438 7.20778 10.6561 7.22233C10.6792 7.24742 10.7018 7.27308 10.724 7.2993C10.7267 7.30253 10.7281 7.31169 10.7313 7.31544C10.749 7.33483 10.7659 7.35474 10.7855 7.36552C10.8032 7.37574 10.8187 7.38866 10.8338 7.40103C10.8775 7.40103 10.9199 7.39941 10.9654 7.3978C10.9472 7.38542 10.9322 7.37143 10.9126 7.36066C10.8948 7.35044 10.8793 7.33213 10.8643 7.31438C10.8615 7.31277 10.8602 7.30413 10.857 7.30038C10.8368 7.27668 10.8161 7.25353 10.7951 7.23094C10.7832 7.21856 10.7695 7.20995 10.7559 7.19702C10.7545 7.19702 10.7518 7.19003 10.75 7.19003C10.7367 7.18141 10.7244 7.17225 10.7121 7.15989C10.6898 7.13511 10.6821 7.11361 10.6516 7.10284C10.6229 7.09261 10.5974 7.07806 10.5773 7.06194C10.5732 7.05708 10.5668 7.05169 10.5623 7.04953C10.5459 7.04092 10.5245 7.03717 10.5108 7.04631C10.499 7.05492 10.4867 7.06408 10.4762 7.07484", fill: "#009900" }), jsx("path", { d: "M10.5291 7.09905C10.5305 7.09905 10.5487 7.09583 10.5514 7.09583M10.535 7.10822C10.5455 7.105 10.5546 7.10821 10.5605 7.10336M10.5441 7.119L10.5619 7.11575C10.5646 7.11414 10.5678 7.11414 10.5706 7.11414M10.5532 7.12761C10.556 7.12436 10.5787 7.12597 10.5847 7.12436M10.591 7.13297C10.587 7.13297 10.5655 7.13619 10.561 7.1378M10.5728 7.15128C10.5756 7.14805 10.5983 7.14428 10.6042 7.14641M10.617 7.15611C10.6097 7.15611 10.5901 7.15775 10.5838 7.15775M10.5942 7.16905C10.6015 7.16905 10.6243 7.16741 10.6275 7.16419M10.6393 7.17766C10.632 7.17766 10.6197 7.17766 10.6111 7.17925M10.6197 7.19055C10.6289 7.19055 10.6471 7.19055 10.653 7.18733M10.6639 7.1938C10.658 7.19702 10.6416 7.20077 10.6357 7.20241M10.6503 7.21372C10.6576 7.20888 10.6712 7.21211 10.6803 7.20888M10.6894 7.22072C10.6821 7.22072 10.673 7.22072 10.6671 7.22233C10.6644 7.22233 10.663 7.22555 10.6598 7.22394M10.7199 7.24763C10.7067 7.24602 10.6958 7.24924 10.6853 7.25086M10.6958 7.26591C10.7077 7.26111 10.7213 7.26111 10.735 7.25893M10.7273 7.30683C10.73 7.30844 10.7391 7.30361 10.7405 7.30361C10.7614 7.30199 10.7628 7.29663 10.7828 7.29663M10.7928 7.30683C10.7705 7.31168 10.7614 7.31383 10.7427 7.31383C10.7414 7.31383 10.7341 7.31544 10.7323 7.31705M10.7423 7.32674C10.76 7.32352 10.786 7.32352 10.8042 7.32191M10.8243 7.33213C10.8106 7.33374 10.7942 7.33213 10.7792 7.33536C10.7733 7.33699 10.7596 7.33699 10.7537 7.3386M10.7714 7.35366C10.7742 7.35366 10.7755 7.35366 10.7787 7.35205C10.7919 7.34126 10.8165 7.34344 10.8375 7.34344M10.8502 7.35366C10.8306 7.35366 10.8215 7.35526 10.8065 7.35688C10.7978 7.35849 10.7855 7.36174 10.7842 7.36174M10.7974 7.37304C10.817 7.3698 10.8562 7.36605 10.8352 7.36819C10.8548 7.36658 10.8593 7.36658 10.8808 7.36658M10.8853 7.3768C10.8716 7.37358 10.8598 7.37358 10.8507 7.3768C10.8434 7.37841 10.8402 7.38165 10.8115 7.3838M10.8215 7.3908C10.8348 7.38919 10.8425 7.38919 10.8548 7.38596C10.8639 7.38274 10.8776 7.38436 10.8894 7.38436M10.8352 7.39835C10.853 7.39672 10.8562 7.39349 10.8776 7.3951C10.8849 7.3951 10.888 7.39349 10.8953 7.39349M10.5181 7.08991C10.5223 7.08831 10.5209 7.08667 10.5286 7.08667C10.5346 7.08505 10.5391 7.0883 10.5405 7.08505C10.5405 7.08505 10.5446 7.08345 10.5478 7.08345M10.5045 7.08292C10.5104 7.07969 10.5118 7.07592 10.5195 7.07805C10.5268 7.07645 10.53 7.07805 10.5314 7.07483H10.54M10.673 7.24063C10.6771 7.23738 10.6744 7.23577 10.6835 7.23738C10.6808 7.23416 10.6908 7.23738 10.6922 7.23578C10.6935 7.23416 10.7013 7.23416 10.7058 7.23416M10.7049 7.2783C10.7168 7.27508 10.7336 7.27508 10.7441 7.26969M10.7637 7.28532C10.7487 7.28853 10.7304 7.28532 10.7186 7.2923M10.5291 7.063C10.5141 7.06139 10.5022 7.06997 10.4931 7.077", stroke: "#007200", strokeWidth: "0.00414091" }), jsx("path", { d: "M10.4771 7.07378C10.4844 7.07538 10.4921 7.07861 10.4994 7.08239C10.5327 7.09261 10.54 7.11789 10.5659 7.14481C10.5778 7.1572 10.5914 7.16958 10.6065 7.17656C10.6078 7.1782 10.6105 7.18358 10.6124 7.1868C10.6274 7.19919 10.6438 7.20778 10.6561 7.22233C10.6792 7.24742 10.7018 7.27308 10.724 7.2993C10.7267 7.30253 10.7281 7.31169 10.7313 7.31544C10.749 7.33483 10.7659 7.35474 10.7855 7.36552C10.8032 7.37574 10.8187 7.38866 10.8338 7.40103C10.8775 7.40103 10.9199 7.39941 10.9654 7.3978C10.9472 7.38542 10.9322 7.37143 10.9126 7.36066C10.8948 7.35044 10.8793 7.33213 10.8643 7.31438C10.8615 7.31277 10.8602 7.30413 10.857 7.30038C10.8368 7.27668 10.8161 7.25353 10.7951 7.23094C10.7832 7.21856 10.7695 7.20995 10.7559 7.19702C10.7545 7.19702 10.7518 7.19003 10.75 7.19003C10.7367 7.18141 10.7244 7.17225 10.7121 7.15989C10.6898 7.13511 10.6821 7.11361 10.6516 7.10284C10.6229 7.09261 10.5974 7.07806 10.5773 7.06194C10.5732 7.05708 10.5668 7.05169 10.5623 7.04953C10.5459 7.04092 10.5245 7.03717 10.5108 7.04631C10.499 7.05492 10.4867 7.06408 10.4762 7.07484L10.4771 7.07378Z", stroke: "black", strokeWidth: "0.00828182" }), jsx("path", { d: "M10.6926 7.13294C10.6985 7.14156 10.7045 7.15072 10.7136 7.15933C10.7254 7.17169 10.7377 7.18031 10.7514 7.18947C10.7528 7.18947 10.7555 7.19644 10.7573 7.19644C10.7705 7.20886 10.7842 7.21747 10.7965 7.23037C10.8175 7.25353 10.837 7.27505 10.8584 7.2998C10.8612 7.30305 10.8625 7.31219 10.8657 7.3138C10.8808 7.33158 10.8958 7.34933 10.914 7.36011C10.9258 7.36708 10.9363 7.37572 10.9487 7.38325H10.9473C10.9987 7.38325 11.0502 7.38325 11.1017 7.38163C11.0885 7.37141 11.0761 7.36063 11.0593 7.35148C11.0443 7.34286 11.0338 7.32834 11.0202 7.31436C11.0174 7.31275 11.0174 7.30736 11.0142 7.30197C10.9979 7.28258 10.981 7.26483 10.9645 7.24653C10.9559 7.2363 10.9437 7.22876 10.9332 7.22014C10.9318 7.21853 10.9291 7.2153 10.9291 7.21316C10.9172 7.2083 10.9081 7.19917 10.8976 7.19C10.8798 7.17062 10.8753 7.15072 10.8507 7.14372C10.8252 7.1335 10.8038 7.12433 10.7901 7.10981C10.786 7.10658 10.7815 7.1012 10.7769 7.09958C10.7651 7.09472 10.7482 7.09097 10.7364 7.09797C10.7213 7.10819 10.7077 7.11895 10.694 7.1335", fill: "#009900" }), jsx("path", { d: "M10.7108 7.15451C10.7121 7.15451 10.7331 7.15129 10.7331 7.15129M10.7167 7.1599C10.7254 7.15829 10.7363 7.1599 10.7408 7.15668M10.7258 7.16904L10.7422 7.16582C10.7436 7.16421 10.7463 7.16582 10.7495 7.16582M10.7317 7.17604C10.7345 7.17282 10.7572 7.17282 10.7605 7.17282M10.7654 7.17979C10.7627 7.17821 10.7445 7.18143 10.7431 7.18304M10.7545 7.19218C10.7572 7.19057 10.7709 7.18896 10.7755 7.18896M10.785 7.19595C10.7809 7.19595 10.7641 7.19757 10.7595 7.19757M10.7682 7.20671C10.7741 7.20671 10.7891 7.20512 10.7937 7.2019M10.8033 7.21373H10.7809M10.7864 7.22287C10.7937 7.22287 10.8074 7.22287 10.8137 7.22126M10.8215 7.22612C10.8174 7.22934 10.8037 7.23093 10.7991 7.23093M10.8064 7.24064C10.8124 7.2374 10.8274 7.24064 10.8333 7.23901M10.8424 7.24603C10.8351 7.24603 10.8274 7.24603 10.8228 7.24764H10.8169M10.8638 7.26754C10.8547 7.26593 10.8429 7.27079 10.8338 7.27079M10.8443 7.27993C10.8515 7.2767 10.8652 7.2767 10.8757 7.27509M10.8652 7.31062C10.8666 7.31222 10.8784 7.31062 10.8802 7.31062C10.8953 7.309 10.898 7.30364 10.9117 7.30578M10.9199 7.31384C10.9035 7.31545 10.8957 7.31707 10.8821 7.31707C10.8807 7.31707 10.8748 7.31867 10.8716 7.31867M10.8789 7.32676C10.8921 7.32354 10.9167 7.32515 10.9303 7.32354M10.9445 7.33215C10.934 7.33376 10.9203 7.33215 10.9098 7.33376C10.9026 7.33537 10.8889 7.337 10.8889 7.337M10.8989 7.34831C10.9016 7.34831 10.914 7.34506 10.914 7.34506C10.9317 7.34346 10.9381 7.34184 10.9549 7.34023M10.9654 7.34829C10.9491 7.34829 10.9431 7.3499 10.9308 7.35151C10.9235 7.35151 10.9098 7.35636 10.9085 7.35636M10.9212 7.36606C10.9331 7.36281 10.9663 7.35907 10.9527 7.35907C10.9677 7.35907 10.9704 7.35907 10.9859 7.35745M10.9914 7.36606C10.9823 7.36445 10.9718 7.36445 10.9645 7.36606C10.9604 7.36767 10.9554 7.36929 10.9326 7.37087M10.9412 7.37681C10.9518 7.3752 10.9577 7.37681 10.9668 7.37359C10.9754 7.37036 10.9864 7.37198 10.9936 7.37198M10.9504 7.38381C10.964 7.38059 10.9687 7.37897 10.9864 7.38059C10.9891 7.38059 10.9936 7.38059 10.9996 7.37897M10.7062 7.14753C10.7103 7.1459 10.7121 7.14268 10.7181 7.14429C10.7222 7.14268 10.7254 7.14429 10.7254 7.14268C10.7267 7.14107 10.7295 7.14107 10.7326 7.14107M10.6985 7.13998C10.7026 7.13838 10.7044 7.13515 10.7103 7.13515H10.7194C10.7194 7.13353 10.7235 7.13353 10.7254 7.13353M10.8242 7.26003C10.8283 7.2584 10.8283 7.2584 10.836 7.2584C10.8333 7.25679 10.842 7.2584 10.8433 7.25679H10.852M10.8534 7.2907C10.862 7.28909 10.8743 7.28909 10.8834 7.28371M10.8989 7.29609C10.8871 7.2977 10.8702 7.29609 10.8611 7.3009M10.7167 7.12599C10.7062 7.12437 10.7035 7.12921 10.6957 7.1346", stroke: "#007200", strokeWidth: "0.00414091" }), jsx("path", { d: "M10.6926 7.13294C10.6985 7.14156 10.7045 7.15072 10.7136 7.15933C10.7254 7.17169 10.7377 7.18031 10.7514 7.18947C10.7528 7.18947 10.7555 7.19644 10.7573 7.19644C10.7705 7.20886 10.7842 7.21747 10.7965 7.23037C10.8175 7.25353 10.837 7.27505 10.8584 7.2998C10.8612 7.30305 10.8625 7.31219 10.8657 7.3138C10.8808 7.33158 10.8958 7.34933 10.914 7.36011C10.9258 7.36708 10.9363 7.37572 10.9487 7.38325H10.9473C10.9987 7.38325 11.0502 7.38325 11.1017 7.38163C11.0885 7.37141 11.0761 7.36063 11.0593 7.35148C11.0443 7.34286 11.0338 7.32834 11.0202 7.31436C11.0174 7.31275 11.0174 7.30736 11.0142 7.30197C10.9979 7.28258 10.981 7.26483 10.9645 7.24653C10.9559 7.2363 10.9437 7.22876 10.9332 7.22014C10.9318 7.21853 10.9291 7.2153 10.9291 7.21316C10.9172 7.2083 10.9081 7.19917 10.8976 7.19C10.8798 7.17062 10.8753 7.15072 10.8507 7.14372C10.8252 7.1335 10.8038 7.12433 10.7901 7.10981C10.786 7.10658 10.7815 7.1012 10.7769 7.09958C10.7651 7.09472 10.7482 7.09097 10.7364 7.09797C10.7213 7.10819 10.7077 7.11895 10.694 7.1335L10.6926 7.13294Z", stroke: "black", strokeWidth: "0.00828182" }), jsx("path", { d: "M11.0925 7.3736C11.0839 7.36499 11.0734 7.36122 11.0615 7.35369C11.0465 7.34507 11.0361 7.33055 11.0223 7.31654C11.0197 7.31494 11.0197 7.30955 11.0165 7.30416C11.0001 7.28478 10.9833 7.26703 10.9669 7.24872C10.9582 7.23849 10.9458 7.23096 10.9353 7.22235C10.9341 7.22074 10.9313 7.21752 10.9313 7.21536C10.9195 7.21052 10.9103 7.20135 10.8999 7.19222C10.8848 7.17445 10.8789 7.16046 10.8621 7.14969H10.8634C10.8713 7.14218 10.8799 7.13568 10.8889 7.13031C10.8994 7.12333 10.9131 7.12708 10.925 7.13191C10.9263 7.13355 10.9308 7.13677 10.9353 7.14055C10.9472 7.15292 10.964 7.16153 10.9869 7.16906C11.0065 7.17605 11.011 7.19222 11.0274 7.20835C11.0347 7.21697 11.0438 7.22397 11.0529 7.22935C11.0543 7.22935 11.0557 7.23419 11.057 7.23419C11.0657 7.24117 11.0766 7.24819 11.0839 7.25733C11.099 7.27296 11.1126 7.28908 11.1263 7.30525C11.129 7.30846 11.129 7.31385 11.1322 7.31546C11.1427 7.32569 11.1532 7.33863 11.1654 7.34561C11.1786 7.35424 11.1896 7.36341 11.2014 7.372C11.1654 7.3736 11.129 7.3736 11.0925 7.3736Z", fill: "#009900" }), jsx("path", { d: "M10.8761 7.16368C10.8775 7.16368 10.8957 7.16045 10.8971 7.16045M10.882 7.17068C10.888 7.16907 10.8998 7.16907 10.903 7.16587M10.888 7.17607L10.9058 7.17284H10.9117M10.8971 7.18684C10.8985 7.18523 10.9181 7.18201 10.9213 7.18201M10.9276 7.18682C10.9236 7.18523 10.9053 7.19006 10.9021 7.19168M10.9121 7.19923C10.9135 7.1976 10.9298 7.19437 10.9345 7.19599M10.9445 7.20298C10.9403 7.20298 10.9249 7.20298 10.919 7.20621M10.9276 7.21215C10.9317 7.21215 10.9486 7.21054 10.9518 7.20729M10.9609 7.21754C10.9568 7.21754 10.9432 7.21914 10.9353 7.22076M10.9458 7.22829C10.9518 7.22829 10.9668 7.22829 10.9713 7.22504M10.9778 7.2299C10.9737 7.23312 10.9582 7.23312 10.9536 7.23476M10.9654 7.24442C10.9682 7.2412 10.9833 7.24282 10.9895 7.2412M10.9974 7.24767C10.99 7.24767 10.9841 7.24767 10.9795 7.24928C10.9782 7.2509 10.9737 7.2509 10.9723 7.2509M11.0169 7.26757C11.0082 7.26596 10.9974 7.27081 10.99 7.27081M10.9974 7.27996C11.0046 7.27673 11.0182 7.27673 11.0287 7.27512M11.0187 7.30903C11.0201 7.30903 11.0306 7.30742 11.032 7.30742C11.0469 7.30581 11.0497 7.30256 11.062 7.30417M11.0684 7.31065C11.0533 7.31387 11.0461 7.31387 11.0337 7.31548H11.0251M11.0306 7.32517C11.0424 7.32356 11.0652 7.32195 11.0775 7.32034M11.093 7.3284C11.0825 7.3284 11.0689 7.3284 11.0598 7.33003C11.0524 7.33164 11.0402 7.33164 11.0402 7.33326M11.0502 7.34292C11.0515 7.34292 11.0634 7.33971 11.0634 7.33971C11.0784 7.33809 11.0844 7.33648 11.1012 7.33487M11.1112 7.34292C11.0961 7.34292 11.0903 7.34292 11.0798 7.34453C11.0725 7.34617 11.062 7.35153 11.0588 7.35153M11.0702 7.35853C11.082 7.35531 11.1126 7.35156 11.1002 7.35371C11.1121 7.35209 11.1153 7.35209 11.1303 7.35209M11.1353 7.35853C11.1262 7.35692 11.1157 7.35531 11.1098 7.35853C11.1057 7.36017 11.1012 7.36178 11.0811 7.36339M11.0884 7.3677C11.0971 7.3677 11.1048 7.3677 11.1126 7.36448C11.1198 7.36284 11.129 7.36448 11.1381 7.36448M11.0957 7.37523C11.109 7.37362 11.1135 7.37201 11.1303 7.37201H11.1422M10.8716 7.15615C10.8757 7.15454 10.8757 7.15293 10.8821 7.15293H10.8912C10.8912 7.15293 10.8939 7.15131 10.8971 7.15131M10.8652 7.15131C10.8693 7.14809 10.8693 7.14645 10.8757 7.14809C10.8798 7.14645 10.883 7.14809 10.8843 7.14645C10.8843 7.14645 10.8871 7.14485 10.8903 7.14485M10.9805 7.2622C10.9833 7.26059 10.9864 7.26059 10.9909 7.26059C10.9895 7.25735 10.9969 7.26059 10.9982 7.25896H11.0074M11.0046 7.28912C11.0132 7.28751 11.027 7.28751 11.0347 7.28426M11.0502 7.29451C11.0383 7.29612 11.0201 7.29287 11.011 7.29773M10.8821 7.13679C10.8716 7.13518 10.8689 7.14001 10.8625 7.1454", stroke: "#007200", strokeWidth: "0.00414091" }), jsx("path", { d: "M11.0925 7.3736C11.0839 7.36499 11.0734 7.36122 11.0615 7.35369C11.0465 7.34507 11.0361 7.33055 11.0223 7.31654C11.0197 7.31494 11.0197 7.30955 11.0165 7.30416C11.0001 7.28478 10.9833 7.26703 10.9669 7.24872C10.9582 7.23849 10.9458 7.23096 10.9353 7.22235C10.9341 7.22074 10.9313 7.21752 10.9313 7.21536C10.9195 7.21052 10.9103 7.20135 10.8999 7.19222C10.8848 7.17445 10.8789 7.16046 10.8621 7.14969H10.8634C10.8713 7.14218 10.8799 7.13568 10.8889 7.13031C10.8994 7.12333 10.9131 7.12708 10.925 7.13191C10.9263 7.13355 10.9308 7.13677 10.9353 7.14055C10.9472 7.15292 10.964 7.16153 10.9869 7.16906C11.0065 7.17605 11.011 7.19222 11.0274 7.20835C11.0347 7.21697 11.0438 7.22397 11.0529 7.22935C11.0543 7.22935 11.0557 7.23419 11.057 7.23419C11.0657 7.24117 11.0766 7.24819 11.0839 7.25733C11.099 7.27296 11.1126 7.28908 11.1263 7.30525C11.129 7.30846 11.129 7.31385 11.1322 7.31546C11.1427 7.32569 11.1532 7.33863 11.1654 7.34561C11.1786 7.35424 11.1896 7.36341 11.2014 7.372C11.1654 7.3736 11.129 7.3736 11.0925 7.3736Z", stroke: "black", strokeWidth: "0.00828182" }), jsx("path", { d: "M10.6695 6.75169L10.7167 6.77865L10.7186 6.77408C10.7123 6.7675 10.712 6.76535 10.7152 6.754L10.711 6.75161L10.7059 6.76396L10.6723 6.74477L10.6695 6.75169ZM10.7174 6.73136C10.726 6.73398 10.734 6.72804 10.7365 6.71669C10.7392 6.70442 10.7354 6.6957 10.7232 6.69152L10.7216 6.69897C10.73 6.70216 10.7326 6.7074 10.731 6.71476C10.7296 6.72153 10.7244 6.72536 10.7189 6.7237C10.7149 6.72248 10.7121 6.71864 10.7107 6.71252L10.7087 6.7036C10.7054 6.68924 10.7014 6.68414 10.6903 6.68005L10.6816 6.72L10.6878 6.7219L10.6947 6.69033C10.6987 6.69236 10.7008 6.69588 10.7028 6.70435L10.7049 6.714C10.7068 6.72353 10.7112 6.72946 10.7174 6.73136ZM10.7059 6.67425C10.7118 6.67464 10.716 6.67142 10.7192 6.66445C10.7222 6.67104 10.7247 6.67331 10.7297 6.67364C10.7379 6.67419 10.744 6.66698 10.7445 6.65598C10.745 6.64507 10.7396 6.63701 10.7314 6.63647C10.7266 6.63614 10.7238 6.63806 10.7202 6.64412C10.7176 6.63686 10.7137 6.6331 10.708 6.63272C10.6984 6.63208 10.6916 6.64021 10.691 6.65242C10.6904 6.66464 10.6964 6.67362 10.7059 6.67425ZM10.7299 6.66578C10.725 6.66545 10.722 6.66096 10.7223 6.6545C10.7226 6.64805 10.726 6.64399 10.731 6.64431C10.736 6.64465 10.739 6.64914 10.7387 6.6556C10.7384 6.66214 10.735 6.66612 10.7299 6.66578ZM10.7062 6.66639C10.7 6.66598 10.6964 6.66049 10.6968 6.65263C10.6972 6.64513 10.7013 6.64015 10.7075 6.64056C10.7136 6.64097 10.7172 6.64646 10.7168 6.65414C10.7164 6.66182 10.7124 6.6668 10.7062 6.66639ZM10.6912 6.61025L10.7431 6.60171L10.7425 6.59669C10.7342 6.59532 10.7329 6.59377 10.7303 6.5822L10.7257 6.58296L10.7273 6.59655L10.6903 6.60263L10.6912 6.61025ZM10.6804 6.55217L10.6859 6.54903L10.6719 6.51525L10.6885 6.50567L10.7014 6.53686L10.7069 6.53371L10.694 6.50253L10.7095 6.4936L10.7228 6.52597L10.7283 6.52282L10.7119 6.48315L10.6635 6.51108L10.6804 6.55217ZM10.6786 6.4794C10.6914 6.4667 10.6939 6.45144 10.6851 6.43906L10.6718 6.42026L10.6305 6.46124L10.6438 6.48005C10.6526 6.49236 10.6658 6.49217 10.6786 6.4794ZM10.6742 6.47324C10.6637 6.48358 10.6546 6.48401 10.6477 6.47437L10.6395 6.46286L10.6715 6.43109L10.6797 6.4426C10.6866 6.45224 10.6847 6.46278 10.6742 6.47324ZM10.6066 6.43722L10.6096 6.43104L10.5822 6.41203L10.5915 6.39318L10.6169 6.41072L10.6199 6.40454L10.5946 6.38699L10.6033 6.36942L10.6296 6.38763L10.6327 6.38145L10.6005 6.35913L10.5732 6.4141L10.6066 6.43722ZM10.5643 6.40867L10.5647 6.40674C10.5627 6.40387 10.5627 6.40149 10.5646 6.39333C10.567 6.38321 10.5665 6.37975 10.5616 6.37496C10.5682 6.37361 10.5716 6.37014 10.5733 6.36318C10.5759 6.3526 10.5718 6.34488 10.5616 6.34138L10.5377 6.33315L10.5226 6.39432L10.5292 6.3966L10.5357 6.37025L10.5528 6.37613C10.5586 6.37814 10.5606 6.38245 10.5586 6.38997L10.5572 6.3954C10.5562 6.39915 10.5559 6.40307 10.5562 6.4059L10.5643 6.40867ZM10.5662 6.36189C10.5644 6.36911 10.5605 6.3713 10.5534 6.36888L10.5374 6.36337L10.5426 6.34231L10.5586 6.34782C10.566 6.35036 10.5679 6.35501 10.5662 6.36189ZM10.5131 6.37401C10.5133 6.36632 10.5105 6.36156 10.5038 6.3581C10.5087 6.35561 10.5115 6.35102 10.5117 6.34455C10.512 6.33529 10.5064 6.32813 10.4962 6.32766L10.4744 6.32666L10.4723 6.39033L10.4966 6.39145C10.5063 6.39189 10.5127 6.38449 10.5131 6.37401ZM10.5048 6.34537C10.5046 6.35184 10.5013 6.35536 10.4936 6.35501L10.4803 6.3544L10.481 6.33414L10.4943 6.33475C10.5019 6.3351 10.505 6.33891 10.5048 6.34537ZM10.5062 6.37378C10.506 6.37989 10.5027 6.38455 10.4962 6.38425L10.4794 6.38349L10.4801 6.36156L10.4969 6.36233C10.5034 6.36263 10.5064 6.36758 10.5062 6.37378ZM10.4608 6.39051L10.4488 6.3284L10.4395 6.33091L10.4347 6.38915L10.4087 6.33925L10.3994 6.34176L10.4114 6.40388L10.4177 6.40216L10.4077 6.3501L10.4327 6.39813L10.4397 6.39622L10.4444 6.34017L10.4545 6.39223L10.4608 6.39051ZM10.4024 6.40861L10.3996 6.40229L10.3715 6.42L10.3628 6.40073L10.3887 6.38437L10.3858 6.37805L10.3599 6.39441L10.3518 6.37645L10.3787 6.35947L10.3758 6.35315L10.3429 6.37396L10.3683 6.43016L10.4024 6.40861ZM10.3581 6.43965L10.3251 6.38922L10.3196 6.39419L10.3526 6.44462L10.3581 6.43965ZM10.3104 6.41148L10.306 6.40655L10.2769 6.44289L10.2813 6.44781L10.2935 6.43257L10.3283 6.47141L10.333 6.4655L10.2982 6.42666L10.3104 6.41148ZM10.28 6.46893C10.2713 6.46285 10.2633 6.46553 10.2579 6.47638L10.2466 6.49905L10.2931 6.53139L10.2966 6.52438L10.2769 6.51068L10.2855 6.49343C10.29 6.48439 10.2877 6.47429 10.28 6.46893ZM10.2761 6.47605C10.2812 6.4796 10.2823 6.48572 10.2789 6.49243L10.2716 6.50704L10.2553 6.49568L10.2626 6.48107C10.266 6.47437 10.271 6.47251 10.2761 6.47605ZM10.2884 6.543L10.2826 6.54091L10.2733 6.57686L10.2556 6.57049L10.2642 6.5373L10.2584 6.53521L10.2498 6.56841L10.2333 6.56247L10.2422 6.52802L10.2364 6.52593L10.2255 6.56816L10.2771 6.58673L10.2884 6.543ZM10.2602 6.59749C10.2535 6.59701 10.2484 6.60155 10.246 6.61005L10.2416 6.62576C10.2395 6.63332 10.2372 6.63596 10.233 6.63566C10.2276 6.63527 10.2238 6.62931 10.2242 6.62076C10.2248 6.61064 10.229 6.60516 10.236 6.60566L10.2364 6.59798C10.2258 6.59723 10.2192 6.60543 10.2185 6.62009C10.2178 6.63405 10.2238 6.64315 10.2336 6.64384C10.2402 6.64431 10.2445 6.6405 10.2468 6.63226L10.2511 6.61672C10.2533 6.60882 10.2562 6.60535 10.2604 6.60565C10.2663 6.60607 10.2695 6.61155 10.269 6.62254C10.2684 6.63458 10.263 6.64016 10.2553 6.63961L10.2549 6.64729C10.2676 6.64819 10.2743 6.63851 10.275 6.6235C10.2758 6.60736 10.2698 6.59817 10.2602 6.59749ZM10.2588 6.68595C10.2487 6.689 10.2439 6.69888 10.2464 6.71039C10.2473 6.71463 10.249 6.71773 10.2519 6.72054L10.2382 6.72217L10.2328 6.6972L10.2266 6.6991L10.2333 6.73008L10.2609 6.72646L10.2594 6.71961C10.2551 6.71721 10.2533 6.7147 10.2523 6.71004C10.2505 6.702 10.2538 6.69559 10.2613 6.6933C10.2686 6.69107 10.2738 6.6948 10.2756 6.70293C10.277 6.70944 10.2751 6.71427 10.2698 6.7178L10.2714 6.72524C10.2809 6.71971 10.2835 6.71172 10.2811 6.70105C10.2785 6.68895 10.2695 6.68267 10.2588 6.68595ZM10.2918 6.74083L10.2446 6.76779L10.2465 6.77235C10.2547 6.77065 10.2564 6.77165 10.2619 6.78171L10.2661 6.77931L10.261 6.76696L10.2947 6.74776L10.2918 6.74083Z", fill: "#E60000" }), jsx("path", { d: "M11.4082 7.69226L10.4821 5.86536L9.55927 7.69226H11.4082Z", stroke: "black", strokeWidth: "0.0097009" }), jsx("path", { d: "M9.93918 8.14177C9.9542 8.13309 9.93643 8.10235 9.93643 8.10235L9.99247 8.08845C9.96513 8.07437 9.92414 8.07825 9.92414 8.07825C9.91367 8.08845 9.91548 8.10139 9.91367 8.10993C9.91229 8.12012 9.91229 8.13472 9.91774 8.14177C9.92369 8.14658 9.93918 8.14177 9.93918 8.14177Z", fill: "white", stroke: "black", strokeWidth: "0.0097009" }), jsx("path", { d: "M9.93597 8.10179C9.93597 8.10179 9.95375 8.13198 9.9387 8.14121L10.0371 8.12012C10.0371 8.12012 10.0221 8.10774 9.99199 8.08844L9.93597 8.10179Z", fill: "white", stroke: "black", strokeWidth: "0.0097009" }), jsx("path", { d: "M11.0261 8.14177C11.011 8.13309 11.0288 8.10235 11.0288 8.10235L10.9728 8.08845C10.9996 8.07437 11.0407 8.07825 11.0407 8.07825C11.0511 8.08845 11.0493 8.10139 11.0511 8.10993C11.0524 8.12012 11.0524 8.13472 11.047 8.14177C11.0411 8.14658 11.0261 8.14177 11.0261 8.14177Z", fill: "white", stroke: "black", strokeWidth: "0.0097009" }), jsx("path", { d: "M11.0293 8.10179C11.0293 8.10179 11.0116 8.13198 11.0266 8.14121L10.9282 8.12012C10.9282 8.12012 10.9432 8.10774 10.9733 8.08844L11.0293 8.10179Z", fill: "white", stroke: "black", strokeWidth: "0.0097009" }), jsx("path", { d: "M10.4818 8.28494C10.5132 8.28494 10.5469 8.28494 10.6876 8.24401C10.8284 8.20475 10.9454 8.10291 10.9723 8.08845C10.9992 8.07438 11.0402 8.07825 11.0402 8.07825C11.0252 8.06045 10.9814 8.01196 10.9208 8.01196C10.8589 8.01196 10.8849 8.01196 10.8316 8.03842C10.7801 8.0631 10.6712 8.14219 10.4877 8.14219H10.4849C10.3 8.14219 10.1866 8.06363 10.1333 8.03842C10.0822 8.01196 10.1046 8.01196 10.044 8.01196C9.98202 8.01196 9.93966 8.05992 9.92462 8.07825C9.92462 8.07825 9.96516 8.07493 9.99295 8.08845C10.0198 8.10236 10.1369 8.20475 10.2777 8.24401C10.4184 8.28494 10.4535 8.28494 10.4822 8.28494H10.4818Z", fill: "white", stroke: "black", strokeWidth: "0.0097009" }), jsx("path", { d: "M10.8705 8.12873L10.8437 8.06264L10.8553 8.05609C10.8637 8.05137 10.8701 8.04873 10.8745 8.04819C10.8808 8.04737 10.8866 8.04888 10.8919 8.0527C10.8972 8.05651 10.9014 8.06224 10.9045 8.06991C10.9072 8.07653 10.9084 8.08304 10.908 8.08945C10.9076 8.09584 10.9059 8.10133 10.903 8.10592C10.9002 8.11049 10.8952 8.11474 10.8883 8.11868L10.8705 8.12873ZM10.8733 8.11946L10.8798 8.1158C10.8875 8.11144 10.8926 8.10784 10.8952 8.10501C10.8987 8.10102 10.9008 8.09625 10.9016 8.0907C10.9023 8.08511 10.9014 8.07928 10.8989 8.0732C10.8963 8.06682 10.8928 8.06211 10.8884 8.05906C10.8839 8.05601 10.8791 8.05497 10.8737 8.05592C10.8697 8.05664 10.8637 8.05927 10.8557 8.06381L10.8517 8.06604L10.8733 8.11946ZM10.8093 8.08401L10.8623 8.13499L10.8563 8.13842L10.8387 8.12177L10.8146 8.13555L10.8148 8.16223L10.8086 8.1658L10.8079 8.0848L10.8093 8.08401ZM10.8143 8.09838L10.8145 8.12776L10.8336 8.11682L10.8143 8.09838ZM10.7522 8.12213L10.7498 8.11558L10.7811 8.09985L10.7835 8.1064L10.7708 8.11279L10.7927 8.17364L10.7869 8.17656L10.765 8.11572L10.7522 8.12213ZM10.71 8.13293L10.7216 8.12797C10.7281 8.1252 10.7325 8.12364 10.735 8.12328C10.7388 8.12274 10.7422 8.12355 10.7453 8.12571C10.7484 8.12785 10.7507 8.13116 10.752 8.13565C10.7532 8.1394 10.7534 8.14302 10.7528 8.1465C10.7522 8.14997 10.7507 8.15304 10.7484 8.15569C10.7461 8.15831 10.7425 8.16068 10.7376 8.1628L10.7684 8.18587L10.7611 8.18895L10.7304 8.16587L10.7271 8.16729L10.7369 8.19932L10.7311 8.20181L10.71 8.13293ZM10.7179 8.13718L10.725 8.1606L10.7351 8.1564C10.739 8.15474 10.7417 8.15308 10.7433 8.15142C10.7449 8.14974 10.7459 8.14773 10.7464 8.14539C10.7468 8.143 10.7467 8.14062 10.746 8.13825C10.7453 8.13594 10.7441 8.13407 10.7425 8.13265C10.7408 8.1312 10.739 8.13043 10.7371 8.13036C10.7351 8.13028 10.7321 8.13109 10.7281 8.1328L10.7179 8.13718ZM10.6695 8.1469L10.7037 8.13548L10.7054 8.14243L10.6772 8.15186L10.6824 8.1739L10.7104 8.16455L10.7121 8.17145L10.6841 8.1808L10.6907 8.20845L10.7187 8.1991L10.7203 8.20604L10.6864 8.21739L10.6695 8.1469ZM10.6252 8.15821L10.6371 8.1552C10.6419 8.154 10.6458 8.15375 10.6486 8.15446C10.6514 8.15515 10.6538 8.1567 10.6558 8.15912C10.6578 8.16153 10.6591 8.16444 10.6597 8.16785C10.6603 8.17103 10.6602 8.17411 10.6593 8.17707C10.6585 8.18 10.6569 8.18259 10.6547 8.18486C10.658 8.18533 10.6607 8.18621 10.6628 8.18751C10.6648 8.18877 10.6665 8.1905 10.6678 8.1927C10.6692 8.19486 10.6702 8.19735 10.6707 8.20018C10.6717 8.20593 10.6708 8.21124 10.6679 8.21614C10.6651 8.22099 10.6607 8.22416 10.6547 8.22567L10.6381 8.22985L10.6252 8.15821ZM10.6324 8.16373L10.6365 8.18667L10.64 8.1858C10.6442 8.18474 10.6472 8.18351 10.649 8.18211C10.6508 8.18067 10.6521 8.17881 10.6529 8.17654C10.6537 8.17424 10.6539 8.17187 10.6534 8.16944C10.6528 8.16616 10.6514 8.16384 10.6491 8.16248C10.6469 8.16107 10.6436 8.16091 10.6394 8.16197L10.6324 8.16373ZM10.6378 8.19388L10.6427 8.22135L10.6502 8.21946C10.6547 8.21835 10.6578 8.21703 10.6597 8.21551C10.6616 8.21395 10.6629 8.21193 10.6638 8.20945C10.6646 8.20695 10.6649 8.20444 10.6644 8.20191C10.6638 8.19873 10.6624 8.19617 10.6603 8.19424C10.6581 8.19231 10.6554 8.1913 10.6521 8.19119C10.65 8.19113 10.6463 8.19173 10.6412 8.19302L10.6378 8.19388ZM10.6059 8.16261L10.612 8.1612L10.6239 8.23307L10.6179 8.23448L10.6059 8.16261ZM10.5685 8.17086L10.5746 8.16954L10.5846 8.23465L10.6081 8.22963L10.6091 8.23658L10.5796 8.24293L10.5685 8.17086ZM10.4926 8.25543L10.4877 8.18241L10.4891 8.18229L10.5339 8.23436L10.5302 8.17846L10.5362 8.1779L10.5411 8.25091L10.5397 8.25104L10.4953 8.19964L10.499 8.25483L10.4926 8.25543ZM10.4528 8.17825C10.4622 8.17913 10.4698 8.18355 10.4756 8.19152C10.4814 8.19949 10.4839 8.20887 10.4832 8.21966C10.4825 8.23035 10.4787 8.23912 10.4719 8.24597C10.4652 8.25283 10.4572 8.25584 10.4482 8.25499C10.439 8.25413 10.4316 8.2497 10.4258 8.2417C10.42 8.2337 10.4174 8.22443 10.4181 8.21391C10.4186 8.2069 10.4205 8.20053 10.4237 8.19481C10.427 8.18909 10.4312 8.18477 10.4364 8.18186C10.4416 8.17892 10.4471 8.17771 10.4528 8.17825ZM10.4527 8.18543C10.4481 8.185 10.4437 8.186 10.4394 8.18843C10.4351 8.19086 10.4317 8.19435 10.4291 8.1989C10.4264 8.20345 10.4249 8.20866 10.4245 8.21451C10.424 8.22318 10.426 8.23075 10.4307 8.23721C10.4354 8.24365 10.4413 8.2472 10.4485 8.24787C10.4533 8.24832 10.4578 8.24736 10.462 8.245C10.4663 8.24263 10.4697 8.23917 10.4723 8.23462C10.4749 8.23007 10.4764 8.22488 10.4768 8.21906C10.4772 8.21327 10.4764 8.20793 10.4744 8.20305C10.4725 8.19814 10.4695 8.19408 10.4656 8.19088C10.4616 8.18768 10.4573 8.18586 10.4527 8.18543ZM10.4082 8.17308L10.4143 8.17424L10.4045 8.24656L10.3984 8.2454L10.4082 8.17308ZM10.3365 8.23214L10.3479 8.16015L10.3492 8.16045L10.381 8.22453L10.3897 8.16943L10.3957 8.17076L10.3843 8.24275L10.3829 8.24245L10.3514 8.17912L10.3428 8.23354L10.3365 8.23214ZM10.2948 8.14668L10.3009 8.14828L10.2927 8.19143C10.2918 8.19655 10.2912 8.19976 10.2912 8.20107C10.2909 8.20397 10.2912 8.20652 10.2919 8.20872C10.2927 8.21089 10.2941 8.21292 10.2961 8.21482C10.2981 8.21668 10.3003 8.21791 10.3026 8.21852C10.3046 8.21905 10.3066 8.21905 10.3086 8.21853C10.3107 8.21801 10.3125 8.21702 10.314 8.21556C10.3156 8.2141 10.3169 8.21219 10.318 8.20981C10.3187 8.20811 10.3196 8.20444 10.3207 8.1988L10.3288 8.15564L10.3349 8.15724L10.3267 8.20039C10.3255 8.20677 10.324 8.2118 10.3222 8.21547C10.3204 8.21912 10.3177 8.22198 10.3139 8.22406C10.3102 8.22614 10.3061 8.22659 10.3016 8.22541C10.2968 8.22412 10.2928 8.22164 10.2899 8.21797C10.2869 8.2143 10.2853 8.21004 10.2849 8.20519C10.2847 8.20221 10.2853 8.19709 10.2867 8.18984L10.2948 8.14668ZM10.2149 8.17938L10.2209 8.17786C10.2222 8.1869 10.2252 8.19235 10.2298 8.19421C10.2317 8.195 10.2338 8.19521 10.2358 8.19484C10.2378 8.19443 10.2396 8.1935 10.241 8.19204C10.2424 8.19059 10.2434 8.18883 10.244 8.18679C10.2447 8.18447 10.2447 8.18192 10.244 8.17916C10.2431 8.17534 10.2408 8.17028 10.2372 8.16399C10.2335 8.15765 10.2314 8.15326 10.2308 8.15083C10.2296 8.14673 10.2296 8.14278 10.2307 8.13898C10.2316 8.13596 10.233 8.13346 10.2349 8.13147C10.2369 8.12948 10.2391 8.12822 10.2417 8.12769C10.2444 8.12715 10.247 8.1274 10.2496 8.12845C10.2524 8.12956 10.2547 8.13142 10.2567 8.13402C10.2586 8.13659 10.2603 8.14059 10.2618 8.14601L10.2557 8.14837C10.2545 8.14402 10.2533 8.14099 10.252 8.13925C10.2508 8.13753 10.2493 8.1363 10.2474 8.13557C10.2451 8.13461 10.2429 8.13468 10.2409 8.13577C10.2389 8.13686 10.2376 8.13865 10.2368 8.14113C10.2364 8.14264 10.2363 8.14421 10.2364 8.14584C10.2365 8.14747 10.237 8.1494 10.238 8.15163C10.2385 8.15282 10.2403 8.15615 10.2435 8.16161C10.2473 8.16809 10.2497 8.17343 10.2506 8.17765C10.2515 8.18186 10.2514 8.18572 10.2504 8.1892C10.249 8.19423 10.2461 8.19795 10.2418 8.20035C10.2375 8.20276 10.233 8.20303 10.2284 8.20117C10.2248 8.19974 10.2219 8.19732 10.2197 8.19392C10.2174 8.19049 10.2158 8.18565 10.2149 8.17938ZM10.1999 8.10573C10.2085 8.11007 10.2145 8.11711 10.2179 8.12685C10.2213 8.13658 10.2211 8.14643 10.2176 8.15639C10.214 8.16625 10.2081 8.17316 10.1998 8.17711C10.1915 8.18107 10.1832 8.18095 10.1749 8.17675C10.1664 8.1725 10.1605 8.16549 10.1572 8.15573C10.1538 8.14596 10.1539 8.13622 10.1574 8.12651C10.1597 8.12003 10.1632 8.11469 10.1678 8.11049C10.1725 8.1063 10.1777 8.1038 10.1834 8.10298C10.1891 8.10214 10.1946 8.10305 10.1999 8.10573ZM10.1978 8.11246C10.1936 8.11035 10.1891 8.10964 10.1844 8.11033C10.1797 8.11103 10.1755 8.11305 10.1718 8.11638C10.1681 8.11971 10.1653 8.12408 10.1633 8.12949C10.1604 8.13749 10.1603 8.14543 10.163 8.15331C10.1658 8.16118 10.1704 8.16677 10.177 8.1701C10.1815 8.17232 10.186 8.17311 10.1907 8.17246C10.1953 8.17182 10.1995 8.16983 10.2032 8.16648C10.2069 8.16315 10.2097 8.1588 10.2117 8.15342C10.2136 8.14808 10.2143 8.14272 10.2137 8.13735C10.2132 8.13196 10.2115 8.127 10.2086 8.12248C10.2057 8.11796 10.2021 8.11462 10.1978 8.11246ZM10.1566 8.0843L10.1622 8.08749L10.1352 8.15341L10.1296 8.15022L10.1566 8.0843ZM10.0729 8.11658L10.1006 8.05103L10.1121 8.05781C10.1204 8.06269 10.1261 8.06703 10.1292 8.07081C10.1336 8.07621 10.1362 8.08254 10.1369 8.08981C10.1376 8.0971 10.1363 8.10455 10.1331 8.11215C10.1304 8.11872 10.1267 8.12379 10.1222 8.12736C10.1177 8.13094 10.113 8.13279 10.1082 8.1329C10.1034 8.13302 10.0975 8.13105 10.0906 8.12698L10.0729 8.11658ZM10.0809 8.11352L10.0873 8.1173C10.0949 8.12181 10.1005 8.12438 10.1039 8.125C10.1088 8.12585 10.1133 8.12491 10.1174 8.12215C10.1216 8.11937 10.1249 8.11496 10.1275 8.10893C10.1302 8.10261 10.1311 8.09644 10.1304 8.09042C10.1297 8.08441 10.1274 8.07921 10.1235 8.07482C10.1206 8.07153 10.1151 8.06754 10.1071 8.06285L10.1032 8.06054L10.0809 8.11352Z", fill: "black" })] }), jsx("defs", { children: jsx("clipPath", { id: "clip0_13_11925", children: jsx("rect", { width: "21", height: "14", fill: "white" }) }) })] }));
|
|
1909
1939
|
};
|
|
1910
1940
|
|
|
1941
|
+
/** Bandera de la Unión Europea (círculo de 12 estrellas sobre azul). */
|
|
1942
|
+
var STAR_D = "M0 -1.05 L0.247 -0.324 L0.998 -0.324 L0.382 0.124 L0.629 0.851 L0 0.393 L-0.629 0.851 L-0.382 0.124 L-0.998 -0.324 L-0.247 -0.324 Z";
|
|
1943
|
+
var EuropeanUnion = function () {
|
|
1944
|
+
return (jsxs("svg", { width: "50", height: "40", viewBox: "0 0 21 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [jsx("rect", { width: "21", height: "14", fill: "#003399" }), jsx("g", { transform: "translate(10.5 7)", children: [0, 30, 60, 90, 120, 150, 180, 210, 240, 270, 300, 330].map(function (deg) { return (jsx("path", { fill: "#FFCC00", d: STAR_D, transform: "rotate(".concat(deg, ") translate(0, -4.1)") }, deg)); }) })] }));
|
|
1945
|
+
};
|
|
1946
|
+
|
|
1911
1947
|
var Finland = function () {
|
|
1912
1948
|
return (jsxs("svg", { width: "50", height: "40", viewBox: "0 0 21 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [jsxs("g", { clipPath: "url(#clip0_13_13506)", children: [jsx("path", { d: "M21 0H0V14H21V0Z", fill: "white" }), jsx("path", { d: "M0 7H21H0ZM7.58333 0V14V0Z", fill: "black" }), jsx("path", { d: "M0 7H21M7.58333 0V14", stroke: "#002F6C", strokeWidth: "4" })] }), jsx("defs", { children: jsx("clipPath", { id: "clip0_13_13506", children: jsx("rect", { width: "21", height: "14", fill: "white" }) }) })] }));
|
|
1913
1949
|
};
|
|
@@ -2136,6 +2172,7 @@ var flagsMap = {
|
|
|
2136
2172
|
CZ: CzechRepublic,
|
|
2137
2173
|
DK: Denmark,
|
|
2138
2174
|
EC: Ecuador,
|
|
2175
|
+
EU: EuropeanUnion,
|
|
2139
2176
|
EG: Egypt,
|
|
2140
2177
|
SV: ElSalvador,
|
|
2141
2178
|
FI: Finland,
|
|
@@ -2674,12 +2711,12 @@ var NotificationButton = function (_a) {
|
|
|
2674
2711
|
};
|
|
2675
2712
|
NotificationButton.displayName = "NotificationButton";
|
|
2676
2713
|
|
|
2677
|
-
var DEFAULT_TRANSLATIONS$
|
|
2714
|
+
var DEFAULT_TRANSLATIONS$7 = {
|
|
2678
2715
|
logout: "Cerrar sesión",
|
|
2679
2716
|
};
|
|
2680
2717
|
var HeaderComponent = function (_a) {
|
|
2681
2718
|
var notificationCount = _a.notificationCount, options = _a.options, onMenuClick = _a.onMenuClick, onLogout = _a.onLogout, _b = _a.translations, translations = _b === void 0 ? {} : _b, breadcrumbs = _a.breadcrumbs, onNotificationClick = _a.onNotificationClick, onOptionSelect = _a.onOptionSelect, onBreadcrumbClick = _a.onBreadcrumbClick;
|
|
2682
|
-
var t = __assign(__assign({}, DEFAULT_TRANSLATIONS$
|
|
2719
|
+
var t = __assign(__assign({}, DEFAULT_TRANSLATIONS$7), translations);
|
|
2683
2720
|
return (jsx("header", { className: "header__container", children: jsxs("div", { className: "flex items-center justify-between w-full", children: [jsxs("div", { className: "flex items-center gap-4", children: [jsx(Button$1, { className: "sm:hidden", isIconOnly: true, variant: "light", startContent: jsx(IconComponent, { icon: "solar:hamburger-menu-linear" }), onPress: onMenuClick }), breadcrumbs && breadcrumbs.length > 0 && (jsx(BreadcrumbsComponent, { items: breadcrumbs, onItemClick: onBreadcrumbClick }))] }), jsxs("div", { className: "flex items-center gap-4", children: [jsx(NotificationButton, { notificationCount: notificationCount, onPress: onNotificationClick }), jsx(ConfigMenu, { options: options, onLogout: onLogout, onOptionSelect: onOptionSelect, translations: t })] })] }) }));
|
|
2684
2721
|
};
|
|
2685
2722
|
HeaderComponent.displayName = "Header";
|
|
@@ -2803,7 +2840,7 @@ KanbanColumn.displayName = "KanbanColumn";
|
|
|
2803
2840
|
* Traducciones por defecto en español.
|
|
2804
2841
|
* Se mezclan con las traducciones proporcionadas por el usuario.
|
|
2805
2842
|
*/
|
|
2806
|
-
var DEFAULT_TRANSLATIONS$
|
|
2843
|
+
var DEFAULT_TRANSLATIONS$6 = {
|
|
2807
2844
|
dropHere: "Soltar aquí",
|
|
2808
2845
|
emptyMessage: "No hay elementos",
|
|
2809
2846
|
};
|
|
@@ -2837,7 +2874,7 @@ var columnGapClasses = {
|
|
|
2837
2874
|
var KanbanComponent = function (_a) {
|
|
2838
2875
|
var columns = _a.columns, renderItem = _a.renderItem, onCardClick = _a.onCardClick, onItemMove = _a.onItemMove, isDraggable = _a.isDraggable, cardClassName = _a.cardClassName, isCardClickable = _a.isCardClickable, className = _a.className, _b = _a.columnWidth, columnWidth = _b === void 0 ? "280px" : _b, _c = _a.columnGap, columnGap = _c === void 0 ? "md" : _c, _d = _a.horizontalScroll, horizontalScroll = _d === void 0 ? true : _d, columnMaxHeight = _a.columnMaxHeight, renderColumnHeader = _a.renderColumnHeader, renderEmptyState = _a.renderEmptyState, _e = _a.translations, translations = _e === void 0 ? {} : _e, onLoadMore = _a.onLoadMore;
|
|
2839
2876
|
// Mezclar traducciones del usuario con las por defecto
|
|
2840
|
-
var t = __assign(__assign({}, DEFAULT_TRANSLATIONS$
|
|
2877
|
+
var t = __assign(__assign({}, DEFAULT_TRANSLATIONS$6), translations);
|
|
2841
2878
|
// Determinar si drag está habilitado
|
|
2842
2879
|
var dragEnabled = isDraggable !== null && isDraggable !== void 0 ? isDraggable : !!onItemMove;
|
|
2843
2880
|
// Estado del drag actual
|
|
@@ -3155,7 +3192,7 @@ var MenuNavList = React.forwardRef(function (_a, ref) {
|
|
|
3155
3192
|
});
|
|
3156
3193
|
MenuNavList.displayName = "MenuNavList";
|
|
3157
3194
|
|
|
3158
|
-
var DEFAULT_TRANSLATIONS$
|
|
3195
|
+
var DEFAULT_TRANSLATIONS$5 = {
|
|
3159
3196
|
menuLabel: "Menú",
|
|
3160
3197
|
closeSidebarAriaLabel: "Cerrar menú lateral",
|
|
3161
3198
|
mobileNavAriaLabel: "Navegación móvil",
|
|
@@ -3173,7 +3210,7 @@ var MenuComponent = React.memo(function Menu(_a) {
|
|
|
3173
3210
|
var commerceInfo = _a.commerceInfo, userInfo = _a.userInfo, helpButton = _a.helpButton, isOpenSidebar = _a.isOpenSidebar, onOpenSidebarChange = _a.onOpenSidebarChange, menuItems = _a.menuItems, mobileBottomBarGroupKey = _a.mobileBottomBarGroupKey, _d = _a.showNativeMenu, showNativeMenu = _d === void 0 ? true : _d, _e = _a.translations, translations = _e === void 0 ? {} : _e;
|
|
3174
3211
|
var _f = React.useState(false), isCollapsed = _f[0], setIsCollapsed = _f[1];
|
|
3175
3212
|
var _g = React.useState(false), logoError = _g[0], setLogoError = _g[1];
|
|
3176
|
-
var t = __assign(__assign({}, DEFAULT_TRANSLATIONS$
|
|
3213
|
+
var t = __assign(__assign({}, DEFAULT_TRANSLATIONS$5), translations);
|
|
3177
3214
|
var selectedKey = React.useMemo(function () {
|
|
3178
3215
|
var _a, _b, _c;
|
|
3179
3216
|
if (menuItems.selectedPath) {
|
|
@@ -4762,7 +4799,7 @@ var AURORAS = [
|
|
|
4762
4799
|
duration: 55,
|
|
4763
4800
|
},
|
|
4764
4801
|
];
|
|
4765
|
-
var DEFAULT_TRANSLATIONS$
|
|
4802
|
+
var DEFAULT_TRANSLATIONS$4 = {
|
|
4766
4803
|
backButtonLabel: "Atras",
|
|
4767
4804
|
};
|
|
4768
4805
|
var BackButton = function (_a) {
|
|
@@ -4798,7 +4835,7 @@ var TwoColumnLayoutAgent = function (_a) {
|
|
|
4798
4835
|
var _b = _a.assistantState, assistantState = _b === void 0 ? "happy" : _b, assistantSpeech = _a.assistantSpeech, _c = _a.assistantSize, assistantSize = _c === void 0 ? "xl" : _c, assistantHint = _a.assistantHint, _d = _a.enableSequence, enableSequence = _d === void 0 ? true : _d, children = _a.children, _e = _a.showBackButton, showBackButton = _e === void 0 ? false : _e, onBack = _a.onBack, _f = _a.translations, translations = _f === void 0 ? {} : _f, _g = _a.className, className = _g === void 0 ? "" : _g;
|
|
4799
4836
|
var _h = useState(!enableSequence), showRightContent = _h[0], setShowRightContent = _h[1];
|
|
4800
4837
|
var isDesktop = useMediaQuery("(min-width: ".concat(DESKTOP_BREAKPOINT_PX, "px)"));
|
|
4801
|
-
var t = useMemo(function () { return (__assign(__assign({}, DEFAULT_TRANSLATIONS$
|
|
4838
|
+
var t = useMemo(function () { return (__assign(__assign({}, DEFAULT_TRANSLATIONS$4), translations)); }, [translations]);
|
|
4802
4839
|
var handleBackPress = onBack !== null && onBack !== void 0 ? onBack : (function () { return undefined; });
|
|
4803
4840
|
useEffect(function () {
|
|
4804
4841
|
if (enableSequence && !showRightContent) {
|
|
@@ -5353,7 +5390,7 @@ var UploadFile = function (_a) {
|
|
|
5353
5390
|
};
|
|
5354
5391
|
UploadFile.displayName = "UploadFile";
|
|
5355
5392
|
|
|
5356
|
-
var DEFAULT_TRANSLATIONS$
|
|
5393
|
+
var DEFAULT_TRANSLATIONS$3 = {
|
|
5357
5394
|
businessName: "Tu Negocio",
|
|
5358
5395
|
businessInitials: "TN",
|
|
5359
5396
|
onlineStatus: "en linea",
|
|
@@ -5378,7 +5415,7 @@ var DEFAULT_TRANSLATIONS$2 = {
|
|
|
5378
5415
|
*/
|
|
5379
5416
|
var WhatsAppPreview = function (_a) {
|
|
5380
5417
|
var imageUrl = _a.imageUrl, caption = _a.caption, _b = _a.variant, variant = _b === void 0 ? "compact" : _b, _c = _a.showHeader, showHeader = _c === void 0 ? false : _c, maxCaptionLength = _a.maxCaptionLength, onToggleCaption = _a.onToggleCaption, _d = _a.showFullCaption, showFullCaption = _d === void 0 ? false : _d, ctaType = _a.ctaType, ctaLabel = _a.ctaLabel, ctaValue = _a.ctaValue, _e = _a.campaignView, campaignView = _e === void 0 ? false : _e, _f = _a.translations, translations = _f === void 0 ? {} : _f, _g = _a.className, className = _g === void 0 ? "" : _g, _h = _a.timeLocale, timeLocale = _h === void 0 ? "es-ES" : _h;
|
|
5381
|
-
var t = __assign(__assign({}, DEFAULT_TRANSLATIONS$
|
|
5418
|
+
var t = __assign(__assign({}, DEFAULT_TRANSLATIONS$3), translations);
|
|
5382
5419
|
var shouldTruncate = maxCaptionLength && caption.length > maxCaptionLength;
|
|
5383
5420
|
var displayCaption = campaignView
|
|
5384
5421
|
? caption
|
|
@@ -5406,10 +5443,10 @@ var WhatsAppPreview = function (_a) {
|
|
|
5406
5443
|
variant === "compact" && (jsx("button", { type: "button", onClick: function (e) {
|
|
5407
5444
|
e.stopPropagation();
|
|
5408
5445
|
onToggleCaption();
|
|
5409
|
-
}, className: "text-gray-600 dark:text-gray-400 hover:text-gray-800 dark:hover:text-gray-300 font-normal mt-1 underline text-xs", children: showFullCaption ? t.viewLess : t.viewMore }))] }), ctaType && ctaLabel && ctaValue && (jsx("div", { className: "mt-3 -mx-1", children: jsx(Button, { size: "sm", color: "primary", variant: "bordered", className: "w-full font-semibold", startContent: ctaType === "CALL_NOW" ? (jsx(IconComponent, { icon: "solar:phone-bold", className: "text-sm" })) : (jsx(IconComponent, { icon: "solar:link-bold", className: "text-sm" })), children: ctaLabel }) })),
|
|
5410
|
-
|
|
5411
|
-
|
|
5412
|
-
|
|
5446
|
+
}, className: "text-gray-600 dark:text-gray-400 hover:text-gray-800 dark:hover:text-gray-300 font-normal mt-1 underline text-xs", children: showFullCaption ? t.viewLess : t.viewMore }))] }), ctaType && ctaLabel && ctaValue && (jsx("div", { className: "mt-3 -mx-1", children: jsx(Button, { size: "sm", color: "primary", variant: "bordered", className: "w-full font-semibold", startContent: ctaType === "CALL_NOW" ? (jsx(IconComponent, { icon: "solar:phone-bold", className: "text-sm" })) : (jsx(IconComponent, { icon: "solar:link-bold", className: "text-sm" })), children: ctaLabel }) })), jsxs("div", { className: "flex items-center justify-end gap-1 mt-1", children: [jsx("span", { className: "text-[10px] text-gray-600 dark:text-gray-400", children: new Date().toLocaleTimeString(timeLocale, {
|
|
5447
|
+
hour: "2-digit",
|
|
5448
|
+
minute: "2-digit",
|
|
5449
|
+
}) }), jsx(IconComponent, { "aria-hidden": true, icon: "solar:check-read-linear", size: "sm", className: "shrink-0 text-gray-600 dark:text-gray-400" })] })] }) }) })] }));
|
|
5413
5450
|
};
|
|
5414
5451
|
|
|
5415
5452
|
/**
|
|
@@ -6185,6 +6222,54 @@ var DrawerFilters = function (_a) {
|
|
|
6185
6222
|
};
|
|
6186
6223
|
DrawerFilters.displayName = "DrawerFilters";
|
|
6187
6224
|
|
|
6225
|
+
var DEFAULT_TRANSLATIONS$2 = {
|
|
6226
|
+
subjectLabel: "Asunto",
|
|
6227
|
+
fromLabel: "De",
|
|
6228
|
+
toLabel: "Para",
|
|
6229
|
+
fromEmail: "noreply@bewe.co",
|
|
6230
|
+
toEmail: "cliente@ejemplo.com",
|
|
6231
|
+
iframeTitle: "Vista previa del email",
|
|
6232
|
+
statusBarTime: "9:41",
|
|
6233
|
+
inboxLabel: "Bandeja de entrada",
|
|
6234
|
+
};
|
|
6235
|
+
/**
|
|
6236
|
+
* EmailPreview - Displays an email HTML preview wrapped in an iPhone device frame.
|
|
6237
|
+
* Supports raw HTML or JSON content compatible with email-template-builder's renderEmail.
|
|
6238
|
+
*
|
|
6239
|
+
* @component
|
|
6240
|
+
* @example
|
|
6241
|
+
* ```tsx
|
|
6242
|
+
* <EmailPreview
|
|
6243
|
+
* htmlContent="<h1>Hello!</h1><p>Welcome to Bewe</p>"
|
|
6244
|
+
* subject="Bienvenido a BeweOS"
|
|
6245
|
+
* />
|
|
6246
|
+
* ```
|
|
6247
|
+
*
|
|
6248
|
+
* @example
|
|
6249
|
+
* ```tsx
|
|
6250
|
+
* // With email-template-builder JSON
|
|
6251
|
+
* import { renderEmail } from "@beweco/email-template-builder";
|
|
6252
|
+
* const html = renderEmail(templateJson);
|
|
6253
|
+
* <EmailPreview htmlContent={html} subject="Tu reporte mensual" />
|
|
6254
|
+
* ```
|
|
6255
|
+
*/
|
|
6256
|
+
var EmailPreview = function (_a) {
|
|
6257
|
+
var htmlContent = _a.htmlContent, subject = _a.subject, from = _a.from, to = _a.to, _b = _a.iframeHeight, iframeHeight = _b === void 0 ? 480 : _b, _c = _a.translations, translations = _c === void 0 ? {} : _c, _d = _a.className, className = _d === void 0 ? "" : _d, _e = _a.showEmailHeader, showEmailHeader = _e === void 0 ? true : _e, _f = _a.deviceColor, deviceColor = _f === void 0 ? "black" : _f;
|
|
6258
|
+
var t = __assign(__assign({}, DEFAULT_TRANSLATIONS$2), translations);
|
|
6259
|
+
var displayFrom = from || t.fromEmail;
|
|
6260
|
+
var displayTo = to || t.toEmail;
|
|
6261
|
+
var deviceFrameColor = deviceColor === "white"
|
|
6262
|
+
? "bg-white border-gray-200"
|
|
6263
|
+
: deviceColor === "silver"
|
|
6264
|
+
? "bg-gray-200 border-gray-300"
|
|
6265
|
+
: "bg-gray-900 border-gray-800";
|
|
6266
|
+
var statusBarTextColor = deviceColor === "black" ? "text-white" : "text-gray-900";
|
|
6267
|
+
return (jsx("div", { className: "inline-flex justify-center ".concat(className), children: jsxs("div", { className: "relative rounded-[3rem] border-[6px] ".concat(deviceFrameColor, " shadow-2xl"), style: { width: "375px" }, children: [jsx("div", { className: "absolute top-2 left-1/2 -translate-x-1/2 z-20", children: jsx("div", { className: "w-28 h-7 rounded-full ".concat(deviceColor === "black" ? "bg-black" : "bg-gray-900") }) }), jsxs("div", { className: "flex items-center justify-between px-8 pt-3 pb-1 ".concat(statusBarTextColor), children: [jsx("span", { className: "text-xs font-semibold", children: t.statusBarTime }), jsxs("div", { className: "flex items-center gap-1", children: [jsx(IconComponent, { icon: "solar:wi-fi-router-bold", className: "text-xs" }), jsx(IconComponent, { icon: "solar:battery-full-bold", className: "text-sm" })] })] }), jsxs("div", { className: "bg-white rounded-b-[2.5rem] overflow-hidden", style: { minHeight: "600px" }, children: [jsx("div", { className: "bg-gray-50 border-b border-gray-200 px-4 py-3", children: jsxs("div", { className: "flex items-center gap-2 mb-1", children: [jsx(IconComponent, { icon: "solar:arrow-left-linear", className: "text-blue-500 text-lg" }), jsx("span", { className: "text-blue-500 text-sm", children: t.inboxLabel })] }) }), showEmailHeader && (jsxs("div", { className: "px-4 py-3 border-b border-gray-100", children: [subject && (jsx("h3", { className: "text-base font-semibold text-gray-900 mb-2", children: subject })), jsxs("div", { className: "flex items-center gap-2 mb-1", children: [jsx("div", { className: "w-8 h-8 rounded-full bg-blue-500 flex items-center justify-center flex-shrink-0", children: jsx(IconComponent, { icon: "solar:letter-bold", className: "text-white text-sm" }) }), jsxs("div", { className: "flex-1 min-w-0", children: [jsxs("div", { className: "flex items-center justify-between", children: [jsx("span", { className: "text-sm font-medium text-gray-900 truncate", children: displayFrom }), jsx("span", { className: "text-xs text-gray-400", children: new Date().toLocaleTimeString("es-ES", {
|
|
6268
|
+
hour: "2-digit",
|
|
6269
|
+
minute: "2-digit",
|
|
6270
|
+
}) })] }), jsxs("span", { className: "text-xs text-gray-500", children: [t.toLabel, ": ", displayTo] })] })] })] })), jsx("div", { className: "w-full overflow-hidden", children: jsx("iframe", { title: t.iframeTitle, srcDoc: htmlContent, className: "w-full border-0", style: { height: "".concat(iframeHeight, "px") }, sandbox: "allow-same-origin" }) })] }), jsx("div", { className: "flex justify-center py-2", children: jsx("div", { className: "w-32 h-1 rounded-full ".concat(deviceColor === "black" ? "bg-gray-600" : "bg-gray-400") }) })] }) }));
|
|
6271
|
+
};
|
|
6272
|
+
|
|
6188
6273
|
var InputPassword = function (_a) {
|
|
6189
6274
|
var _b, _c;
|
|
6190
6275
|
var translations = _a.translations, _d = _a.showCriteria, showCriteria = _d === void 0 ? false : _d, criteria = _a.criteria, _e = _a.isPristine, isPristine = _e === void 0 ? true : _e, renderCriterionLabel = _a.renderCriterionLabel, _f = _a.criteriaId, criteriaId = _f === void 0 ? "password-criteria" : _f, inputProps = __rest(_a, ["translations", "showCriteria", "criteria", "isPristine", "renderCriterionLabel", "criteriaId"]);
|
|
@@ -7290,4 +7375,4 @@ var NavigationLoadingProvider = function (_a) {
|
|
|
7290
7375
|
return (jsxs(NavigationLoadingContext.Provider, { value: value, children: [children, jsx(NavigationLoadingOverlay, { isVisible: isVisible })] }));
|
|
7291
7376
|
};
|
|
7292
7377
|
|
|
7293
|
-
export { ALL_THEMES, AURORA_THEME_FAMILIES, AURORA_THEME_REGISTRY, AccordionList, AddHolidayForm, AnalyticsCard, AreaLineChart, AuraAutocomplete, AuraTable, AuraToastProvider, BreadcrumbsComponent, Button, Card, Chip, ColorPicker, ColorSelector, ContentCarousel, Currency, DEFAULT_PREDEFINED_COLORS, DatePicker, DateRangePicker, DateSelector, DrawerFilters, EnumMenuNavListItem, GlobalToast, H1, H2, H3, H4, HeaderComponent, HolidayType, IconComponent, ImagePreview, Input, InputPassword, Kanban, KanbanCard, KanbanColumn, MenuComponent, Modal, ModalBody, ModalContent, ModalFooter, ModalHeader, MultiStepWizard, NavigationLoadingContext, NavigationLoadingOverlay, NavigationLoadingProvider, P, Pagination, Phone, PromotionalBanner, REGISTERED_THEME_COLORS, RangeFilter, RowSteps, DEFAULT_TRANSLATIONS$1 as SEGMENTATION_DEFAULT_TRANSLATIONS, ScheduleRow, SearchInput, SegmentationBuilder, Select, SimpleLineChart, SocialMediaBar, SocialMediaCarousel, SocialMediaPreview, StepIndicator, Switch as SwitchComponent, THEME_COLOR_HEX_MAP, TagsFilter, Textarea, ThemeContext, ThemePicker, ThemeProvider, TimeInput as TimeInputComponent, ToastContext, TwoColumnLayoutAgent, UploadFile, VerticalSteps, WhatsAppPreview, Wizard, WizardNavigation, WizardSidebar, applyCustomPrimaryColor, uniqueCountries as defaultCountries, defaultCurrencyOptions, defaultTranslations$4 as defaultTranslations, formatAuroraThemeTooltip, generateThemeColorScale, getContrastForeground, getRegisteredThemeColorBases, getSelectedKeyFromPath, hexToThemeColor, hslToCssValue, isAuroraFullThemeId, isExactThemeColor, isGroupState, isHexColor, isSegmentationGroup, removeCustomPrimaryColor, sizeMap, themeColors, useAuraToast, useMediaQuery, useNavigationLoading, useThemeContext };
|
|
7378
|
+
export { ALL_THEMES, AURORA_THEME_FAMILIES, AURORA_THEME_REGISTRY, AccordionList, AddHolidayForm, AnalyticsCard, AreaLineChart, AuraAutocomplete, AuraTable, AuraToastProvider, BreadcrumbsComponent, Button, Card, Chip, ColorPicker, ColorSelector, ContentCarousel, Currency, DEFAULT_PREDEFINED_COLORS, DatePicker, DateRangePicker, DateSelector, DrawerFilters, EmailPreview, EnumMenuNavListItem, GlobalToast, H1, H2, H3, H4, HeaderComponent, HolidayType, IconComponent, ImagePreview, Input, InputPassword, Kanban, KanbanCard, KanbanColumn, MenuComponent, Modal, ModalBody, ModalContent, ModalFooter, ModalHeader, MultiStepWizard, NavigationLoadingContext, NavigationLoadingOverlay, NavigationLoadingProvider, P, Pagination, Phone, PromotionalBanner, REGISTERED_THEME_COLORS, RangeFilter, RowSteps, DEFAULT_TRANSLATIONS$1 as SEGMENTATION_DEFAULT_TRANSLATIONS, ScheduleRow, SearchInput, SegmentationBuilder, Select, SimpleLineChart, SocialMediaBar, SocialMediaCarousel, SocialMediaPreview, StepIndicator, Switch as SwitchComponent, THEME_COLOR_HEX_MAP, TagsFilter, Textarea, ThemeContext, ThemePicker, ThemeProvider, TimeInput as TimeInputComponent, ToastContext, TwoColumnLayoutAgent, UploadFile, VerticalSteps, WhatsAppPreview, Wizard, WizardNavigation, WizardSidebar, applyCustomPrimaryColor, uniqueCountries as defaultCountries, defaultCurrencyOptions, defaultTranslations$4 as defaultTranslations, formatAuroraThemeTooltip, generateThemeColorScale, getContrastForeground, getRegisteredThemeColorBases, getSelectedKeyFromPath, hexToThemeColor, hslToCssValue, isAuroraFullThemeId, isExactThemeColor, isGroupState, isHexColor, isSegmentationGroup, removeCustomPrimaryColor, sizeMap, themeColors, useAuraToast, useMediaQuery, useNavigationLoading, useThemeContext };
|